add gen convo
add gen convo

file:b/.gitattributes (new)
  * text=auto
file:b/.gitignore (new)
  *.wav
  *.pyc
  /nbproject/private/
file:b/.gitmodules (new)
  [submodule "pynma"]
  path = pynma
  url = git://github.com/uskr/pynma.git
  [submodule "js/flotr2"]
  path = js/flotr2
  url = https://github.com/HumbleSoftware/Flotr2.git
 
file:b/.htaccess (new)
  # Apache configuration file
  # httpd.apache.org/docs/2.2/mod/quickreference.html
 
  # Note .htaccess files are an overhead, this logic should be in your Apache
  # config if possible: httpd.apache.org/docs/2.2/howto/htaccess.html
 
  # Techniques in here adapted from all over, including:
  # Kroc Camen: camendesign.com/.htaccess
  # perishablepress.com/press/2006/01/10/stupid-htaccess-tricks/
  # Sample .htaccess file of CMS MODx: modxcms.com
 
 
  # ----------------------------------------------------------------------
  # Better website experience for IE users
  # ----------------------------------------------------------------------
 
  # Force the latest IE version, in various cases when it may fall back to IE7 mode
  # github.com/rails/rails/commit/123eb25#commitcomment-118920
  # Use ChromeFrame if it's installed for a better experience for the poor IE folk
 
  <IfModule mod_headers.c>
  Header set X-UA-Compatible "IE=Edge,chrome=1"
  # mod_headers can't match by content-type, but we don't want to send this header on *everything*...
  <FilesMatch "\.(js|css|gif|png|jpe?g|pdf|xml|oga|ogg|m4a|ogv|mp4|m4v|webm|svg|svgz|eot|ttf|otf|woff|ico|webp|appcache|manifest|htc|crx|oex|xpi|safariextz|vcf)$" >
  Header unset X-UA-Compatible
  </FilesMatch>
  </IfModule>
 
 
  # ----------------------------------------------------------------------
  # Cross-domain AJAX requests
  # ----------------------------------------------------------------------
 
  # Serve cross-domain Ajax requests, disabled by default.
  # enable-cors.org
  # code.google.com/p/html5security/wiki/CrossOriginRequestSecurity
 
  # <IfModule mod_headers.c>
  # Header set Access-Control-Allow-Origin "*"
  # </IfModule>
 
 
  # ----------------------------------------------------------------------
  # CORS-enabled images (@crossorigin)
  # ----------------------------------------------------------------------
 
  # Send CORS headers if browsers request them; enabled by default for images.
  # developer.mozilla.org/en/CORS_Enabled_Image
  # blog.chromium.org/2011/07/using-cross-domain-images-in-webgl-and.html
  # hacks.mozilla.org/2011/11/using-cors-to-load-webgl-textures-from-cross-domain-images/
  # wiki.mozilla.org/Security/Reviews/crossoriginAttribute
 
  <IfModule mod_setenvif.c>
  <IfModule mod_headers.c>
  # mod_headers, y u no match by Content-Type?!
  <FilesMatch "\.(gif|png|jpe?g|svg|svgz|ico|webp)$">
  SetEnvIf Origin ":" IS_CORS
  Header set Access-Control-Allow-Origin "*" env=IS_CORS
  </FilesMatch>
  </IfModule>
  </IfModule>
 
 
  # ----------------------------------------------------------------------
  # Webfont access
  # ----------------------------------------------------------------------
 
  # Allow access from all domains for webfonts.
  # Alternatively you could only whitelist your
  # subdomains like "subdomain.example.com".
 
  <IfModule mod_headers.c>
  <FilesMatch "\.(ttf|ttc|otf|eot|woff|font.css)$">
  Header set Access-Control-Allow-Origin "*"
  </FilesMatch>
  </IfModule>
 
 
  # ----------------------------------------------------------------------
  # Proper MIME type for all files
  # ----------------------------------------------------------------------
 
  # JavaScript
  # Normalize to standard type (it's sniffed in IE anyways)
  # tools.ietf.org/html/rfc4329#section-7.2
  AddType application/javascript js jsonp
  AddType application/json json
 
  # Audio
  AddType audio/ogg oga ogg
  AddType audio/mp4 m4a f4a f4b
 
  # Video
  AddType video/ogg ogv
  AddType video/mp4 mp4 m4v f4v f4p
  AddType video/webm webm
  AddType video/x-flv flv
 
  # SVG
  # Required for svg webfonts on iPad
  # twitter.com/FontSquirrel/status/14855840545
  AddType image/svg+xml svg svgz
  AddEncoding gzip svgz
 
  # Webfonts
  AddType application/vnd.ms-fontobject eot
  AddType application/x-font-ttf ttf ttc
  AddType font/opentype otf
  AddType application/x-font-woff woff
 
  # Assorted types
  AddType image/x-icon ico
  AddType image/webp webp
  AddType text/cache-manifest appcache manifest
  AddType text/x-component htc
  AddType application/xml rss atom xml rdf
  AddType application/x-chrome-extension crx
  AddType application/x-opera-extension oex
  AddType application/x-xpinstall xpi
  AddType application/octet-stream safariextz
  AddType application/x-web-app-manifest+json webapp
  AddType text/x-vcard vcf
  AddType application/x-shockwave-flash swf
  AddType text/vtt vtt
 
 
  # ----------------------------------------------------------------------
  # Allow concatenation from within specific js and css files
  # ----------------------------------------------------------------------
 
  # e.g. Inside of script.combined.js you could have
  # <!--#include file="libs/jquery-1.5.0.min.js" -->
  # <!--#include file="plugins/jquery.idletimer.js" -->
  # and they would be included into this single file.
 
  # This is not in use in the boilerplate as it stands. You may
  # choose to use this technique if you do not have a build process.
 
  #<FilesMatch "\.combined\.js$">
  # Options +Includes
  # AddOutputFilterByType INCLUDES application/javascript application/json
  # SetOutputFilter INCLUDES
  #</FilesMatch>
 
  #<FilesMatch "\.combined\.css$">
  # Options +Includes
  # AddOutputFilterByType INCLUDES text/css
  # SetOutputFilter INCLUDES
  #</FilesMatch>
 
 
  # ----------------------------------------------------------------------
  # Gzip compression
  # ----------------------------------------------------------------------
 
  <IfModule mod_deflate.c>
 
  # Force deflate for mangled headers developer.yahoo.com/blogs/ydn/posts/2010/12/pushing-beyond-gzipping/
  <IfModule mod_setenvif.c>
  <IfModule mod_headers.c>
  SetEnvIfNoCase ^(Accept-EncodXng|X-cept-Encoding|X{15}|~{15}|-{15})$ ^((gzip|deflate)\s*,?\s*)+|[X~-]{4,13}$ HAVE_Accept-Encoding
  RequestHeader append Accept-Encoding "gzip,deflate" env=HAVE_Accept-Encoding
  </IfModule>
  </IfModule>
 
  # Compress all output labeled with one of the following MIME-types
  <IfModule mod_filter.c>
  AddOutputFilterByType DEFLATE application/atom+xml \
  application/javascript \
  application/json \
  application/rss+xml \
  application/vnd.ms-fontobject \
  application/x-font-ttf \
  application/xhtml+xml \
  application/xml \
  font/opentype \
  image/svg+xml \
  image/x-icon \
  text/css \
  text/html \
  text/plain \
  text/x-component \
  text/xml
  </IfModule>
 
  </IfModule>
 
 
  # ----------------------------------------------------------------------
  # Expires headers (for better cache control)
  # ----------------------------------------------------------------------
 
  # These are pretty far-future expires headers.
  # They assume you control versioning with filename-based cache busting
  # Additionally, consider that outdated proxies may miscache
  # www.stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring/
 
  # If you don't use filenames to version, lower the CSS and JS to something like
  # "access plus 1 week".
 
  <IfModule mod_expires.c>
  ExpiresActive on
 
  # Perhaps better to whitelist expires rules? Perhaps.
  ExpiresDefault "access plus 1 month"
 
  # cache.appcache needs re-requests in FF 3.6 (thanks Remy ~Introducing HTML5)
  ExpiresByType text/cache-manifest "access plus 0 seconds"
 
  # Your document html
  ExpiresByType text/html "access plus 0 seconds"
 
  # Data
  ExpiresByType text/xml "access plus 0 seconds"
  ExpiresByType application/xml "access plus 0 seconds"
  ExpiresByType application/json "access plus 0 seconds"
 
  # Feed
  ExpiresByType application/rss+xml "access plus 1 hour"
  ExpiresByType application/atom+xml "access plus 1 hour"
 
  # Favicon (cannot be renamed)
  ExpiresByType image/x-icon "access plus 1 week"
 
  # Media: images, video, audio
  ExpiresByType image/gif "access plus 1 month"
  ExpiresByType image/png "access plus 1 month"
  ExpiresByType image/jpeg "access plus 1 month"
  ExpiresByType video/ogg "access plus 1 month"
  ExpiresByType audio/ogg "access plus 1 month"
  ExpiresByType video/mp4 "access plus 1 month"
  ExpiresByType video/webm "access plus 1 month"
 
  # HTC files (css3pie)
  ExpiresByType text/x-component "access plus 1 month"
 
  # Webfonts
  ExpiresByType application/x-font-ttf "access plus 1 month"
  ExpiresByType font/opentype "access plus 1 month"
  ExpiresByType application/x-font-woff "access plus 1 month"
  ExpiresByType image/svg+xml "access plus 1 month"
  ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
 
  # CSS and JavaScript
  ExpiresByType text/css "access plus 1 year"
  ExpiresByType application/javascript "access plus 1 year"
 
  </IfModule>
 
 
  # ----------------------------------------------------------------------
  # Prevent mobile network providers from modifying your site
  # ----------------------------------------------------------------------
 
  # The following header prevents modification of your code over 3G on some
  # European providers.
  # This is the official 'bypass' suggested by O2 in the UK.
 
  # <IfModule mod_headers.c>
  # Header set Cache-Control "no-transform"
  # </IfModule>
 
 
  # ----------------------------------------------------------------------
  # ETag removal
  # ----------------------------------------------------------------------
 
  # FileETag None is not enough for every server.
  <IfModule mod_headers.c>
  Header unset ETag
  </IfModule>
 
  # Since we're sending far-future expires, we don't need ETags for
  # static content.
  # developer.yahoo.com/performance/rules.html#etags
  FileETag None
 
 
  # ----------------------------------------------------------------------
  # Stop screen flicker in IE on CSS rollovers
  # ----------------------------------------------------------------------
 
  # The following directives stop screen flicker in IE on CSS rollovers - in
  # combination with the "ExpiresByType" rules for images (see above).
 
  # BrowserMatch "MSIE" brokenvary=1
  # BrowserMatch "Mozilla/4.[0-9]{2}" brokenvary=1
  # BrowserMatch "Opera" !brokenvary
  # SetEnvIf brokenvary 1 force-no-vary
 
 
  # ----------------------------------------------------------------------
  # Set Keep-Alive Header
  # ----------------------------------------------------------------------
 
  # Keep-Alive allows the server to send multiple requests through one
  # TCP-connection. Be aware of possible disadvantages of this setting. Turn on
  # if you serve a lot of static content.
 
  # <IfModule mod_headers.c>
  # Header set Connection Keep-Alive
  # </IfModule>
 
 
  # ----------------------------------------------------------------------
  # Cookie setting from iframes
  # ----------------------------------------------------------------------
 
  # Allow cookies to be set from iframes (for IE only)
  # If needed, specify a path or regex in the Location directive.
 
  # <IfModule mod_headers.c>
  # Header set P3P "policyref=\"/w3c/p3p.xml\", CP=\"IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT\""
  # </IfModule>
 
 
  # ----------------------------------------------------------------------
  # Start rewrite engine
  # ----------------------------------------------------------------------
 
  # Turning on the rewrite engine is necessary for the following rules and
  # features. FollowSymLinks must be enabled for this to work.
 
  # Some cloud hosting services require RewriteBase to be set: goo.gl/HOcPN
  # If using the h5bp in a subdirectory, use `RewriteBase /foo` instead where
  # 'foo' is your directory.
 
  # If your web host doesn't allow the FollowSymlinks option, you may need to
  # comment it out and use `Options +SymLinksOfOwnerMatch`, but be aware of the
  # performance impact: http://goo.gl/Mluzd
 
  <IfModule mod_rewrite.c>
  Options +FollowSymlinks
  # Options +SymLinksIfOwnerMatch
  RewriteEngine On
  # RewriteBase /
  </IfModule>
 
 
  # ----------------------------------------------------------------------
  # Suppress or force the "www." at the beginning of URLs
  # ----------------------------------------------------------------------
 
  # The same content should never be available under two different URLs -
  # especially not with and without "www." at the beginning, since this can cause
  # SEO problems (duplicate content). That's why you should choose one of the
  # alternatives and redirect the other one.
 
  # By default option 1 (no "www.") is activated.
  # no-www.org/faq.php?q=class_b
 
  # If you'd prefer to use option 2, just comment out all option 1 lines
  # and uncomment option 2.
 
  # IMPORTANT: NEVER USE BOTH RULES AT THE SAME TIME!
 
  # ----------------------------------------------------------------------
 
  # Option 1:
  # Rewrite "www.example.com -> example.com".
 
  <IfModule mod_rewrite.c>
  RewriteCond %{HTTPS} !=on
  RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
  RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
  </IfModule>
 
  # ----------------------------------------------------------------------
 
  # Option 2:
  # Rewrite "example.com -> www.example.com".
  # Be aware that the following rule might not be a good idea if you use "real"
  # subdomains for certain parts of your website.
 
  # <IfModule mod_rewrite.c>
  # RewriteCond %{HTTPS} !=on
  # RewriteCond %{HTTP_HOST} !^www\..+$ [NC]
  # RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
  # </IfModule>
 
 
  # ----------------------------------------------------------------------
  # Built-in filename-based cache busting
  # ----------------------------------------------------------------------
 
  # If you're not using the build script to manage your filename version revving,
  # you might want to consider enabling this, which will route requests for
  # /css/style.20110203.css to /css/style.css
 
  # To understand why this is important and a better idea than all.css?v1231,
  # read: github.com/h5bp/html5-boilerplate/wiki/cachebusting
 
  # <IfModule mod_rewrite.c>
  # RewriteCond %{REQUEST_FILENAME} !-f
  # RewriteCond %{REQUEST_FILENAME} !-d
  # RewriteRule ^(.+)\.(\d+)\.(js|css|png|jpg|gif)$ $1.$3 [L]
  # </IfModule>
 
 
  # ----------------------------------------------------------------------
  # Prevent SSL cert warnings
  # ----------------------------------------------------------------------
 
  # Rewrite secure requests properly to prevent SSL cert warnings, e.g. prevent
  # https://www.example.com when your cert only allows https://secure.example.com
 
  # <IfModule mod_rewrite.c>
  # RewriteCond %{SERVER_PORT} !^443
  # RewriteRule ^ https://example-domain-please-change-me.com%{REQUEST_URI} [R=301,L]
  # </IfModule>
 
 
  # ----------------------------------------------------------------------
  # Prevent 404 errors for non-existing redirected folders
  # ----------------------------------------------------------------------
 
  # without -MultiViews, Apache will give a 404 for a rewrite if a folder of the
  # same name does not exist.
  # webmasterworld.com/apache/3808792.htm
 
  Options -MultiViews
 
 
  # ----------------------------------------------------------------------
  # Custom 404 page
  # ----------------------------------------------------------------------
 
  # You can add custom pages to handle 500 or 403 pretty easily, if you like.
  # If you are hosting your site in subdirectory, adjust this accordingly
  # e.g. ErrorDocument 404 /subdir/404.html
  ErrorDocument 404 /404.html
 
 
  # ----------------------------------------------------------------------
  # UTF-8 encoding
  # ----------------------------------------------------------------------
 
  # Use UTF-8 encoding for anything served text/plain or text/html
  AddDefaultCharset utf-8
 
  # Force UTF-8 for a number of file formats
  AddCharset utf-8 .atom .css .js .json .rss .vtt .xml
 
 
  # ----------------------------------------------------------------------
  # A little more security
  # ----------------------------------------------------------------------
 
  # To avoid displaying the exact version number of Apache being used, add the
  # following to httpd.conf (it will not work in .htaccess):
  # ServerTokens Prod
 
  # "-Indexes" will have Apache block users from browsing folders without a
  # default document Usually you should leave this activated, because you
  # shouldn't allow everybody to surf through every folder on your server (which
  # includes rather private places like CMS system folders).
  <IfModule mod_autoindex.c>
  Options -Indexes
  </IfModule>
 
  # Block access to "hidden" directories or files whose names begin with a
  # period. This includes directories used by version control systems such as
  # Subversion or Git.
  <IfModule mod_rewrite.c>
  RewriteCond %{SCRIPT_FILENAME} -d [OR]
  RewriteCond %{SCRIPT_FILENAME} -f
  RewriteRule "(^|/)\." - [F]
  </IfModule>
 
  # Block access to backup and source files. These files may be left by some
  # text/html editors and pose a great security danger, when anyone can access
  # them.
  <FilesMatch "(\.(bak|config|sql|fla|psd|ini|log|sh|inc|swp|dist)|~)$">
  Order allow,deny
  Deny from all
  Satisfy All
  </FilesMatch>
 
  # If your server is not already configured as such, the following directive
  # should be uncommented in order to set PHP's register_globals option to OFF.
  # This closes a major security hole that is abused by most XSS (cross-site
  # scripting) attacks. For more information: http://php.net/register_globals
  #
  # IF REGISTER_GLOBALS DIRECTIVE CAUSES 500 INTERNAL SERVER ERRORS:
  #
  # Your server does not allow PHP directives to be set via .htaccess. In that
  # case you must make this change in your php.ini file instead. If you are
  # using a commercial web host, contact the administrators for assistance in
  # doing this. Not all servers allow local php.ini files, and they should
  # include all PHP configurations (not just this one), or you will effectively
  # reset everything to PHP defaults. Consult www.php.net for more detailed
  # information about setting PHP directives.
 
  # php_flag register_globals Off
 
  # Rename session cookie to something else, than PHPSESSID
  # php_value session.name sid
 
  # Disable magic quotes (This feature has been DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0.)
  # php_flag magic_quotes_gpc Off
 
  # Do not show you are using PHP
  # Note: Move this line to php.ini since it won't work in .htaccess
  # php_flag expose_php Off
 
  # Level of log detail - log all errors
  # php_value error_reporting -1
 
  # Write errors to log file
  # php_flag log_errors On
 
  # Do not display errors in browser (production - Off, development - On)
  # php_flag display_errors Off
 
  # Do not display startup errors (production - Off, development - On)
  # php_flag display_startup_errors Off
 
  # Format errors in plain text
  # Note: Leave this setting 'On' for xdebug's var_dump() output
  # php_flag html_errors Off
 
  # Show multiple occurrence of error
  # php_flag ignore_repeated_errors Off
 
  # Show same errors from different sources
  # php_flag ignore_repeated_source Off
 
  # Size limit for error messages
  # php_value log_errors_max_len 1024
 
  # Don't precede error with string (doesn't accept empty string, use whitespace if you need)
  # php_value error_prepend_string " "
 
  # Don't prepend to error (doesn't accept empty string, use whitespace if you need)
  # php_value error_append_string " "
 
  # Increase cookie security
  <IfModule php5_module>
  php_value session.cookie_httponly true
  </IfModule>
 
file:b/.idea/.name (new)
  scannr
  <component name="ProjectDictionaryState">
  <dictionary name="Madoka">
  <words>
  <w>tgid</w>
  <w>timefrom</w>
  <w>timeto</w>
  <w>tzoffset</w>
  </words>
  </dictionary>
  </component>
  <?xml version="1.0" encoding="UTF-8"?>
  <project version="4">
  <component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" />
  </project>
 
 
file:b/.idea/misc.xml (new)
  <?xml version="1.0" encoding="UTF-8"?>
  <project version="4">
  <component name="ProjectResources">
  <default-html-doctype>jar:file:\C:\Program Files (x86)\JetBrains\PhpStorm 5.0.2\lib\webide.jar!\resources\html5-schema\html5.rnc</default-html-doctype>
  </component>
  <component name="ProjectRootManager" version="2" />
  </project>
 
 
file:b/.idea/modules.xml (new)
  <?xml version="1.0" encoding="UTF-8"?>
  <project version="4">
  <component name="ProjectModuleManager">
  <modules>
  <module fileurl="file://$PROJECT_DIR$/.idea/scannr.iml" filepath="$PROJECT_DIR$/.idea/scannr.iml" />
  </modules>
  </component>
  </project>
 
 
file:b/.idea/scannr.iml (new)
  <?xml version="1.0" encoding="UTF-8"?>
  <module type="WEB_MODULE" version="4">
  <component name="NewModuleRootManager">
  <content url="file://$MODULE_DIR$" />
  <orderEntry type="inheritedJdk" />
  <orderEntry type="sourceFolder" forTests="false" />
  </component>
  </module>
 
 
  <component name="DependencyValidationManager">
  <state>
  <option name="SKIP_IMPORT_STATEMENTS" value="false" />
  </state>
  </component>
file:b/.idea/vcs.xml (new)
  <?xml version="1.0" encoding="UTF-8"?>
  <project version="4">
  <component name="VcsDirectoryMappings">
  <mapping directory="$PROJECT_DIR$" vcs="Git" />
  <mapping directory="$PROJECT_DIR$/js/flotr2" vcs="Git" />
  <mapping directory="$PROJECT_DIR$/pynma" vcs="Git" />
  </component>
  </project>
 
 
  <?xml version="1.0" encoding="UTF-8"?>
  <project version="4">
  <component name="ChangeListManager">
  <list default="true" id="f90ee5b5-97e4-47ec-9b14-d4f4e896f100" name="Default" comment="">
  <change type="MODIFICATION" beforePath="$PROJECT_DIR$/output.txt" afterPath="$PROJECT_DIR$/output.txt" />
  <change type="MODIFICATION" beforePath="$PROJECT_DIR$/viewcalls.php" afterPath="$PROJECT_DIR$/viewcalls.php" />
  </list>
  <ignored path="scannr.iws" />
  <ignored path=".idea/workspace.xml" />
  <option name="TRACKING_ENABLED" value="true" />
  <option name="SHOW_DIALOG" value="false" />
  <option name="HIGHLIGHT_CONFLICTS" value="true" />
  <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
  <option name="LAST_RESOLUTION" value="IGNORE" />
  </component>
  <component name="ChangesViewManager" flattened_view="true" show_ignored="false" />
  <component name="CreatePatchCommitExecutor">
  <option name="PATCH_PATH" value="" />
  </component>
  <component name="DaemonCodeAnalyzer">
  <disable_hints />
  </component>
  <component name="ExecutionTargetManager" SELECTED_TARGET="default_target" />
  <component name="FileEditorManager">
  <leaf>
  <file leaf-file-name="viewcalls.php" pinned="false" current="true" current-in-tab="true">
  <entry file="file://$PROJECT_DIR$/viewcalls.php">
  <provider selected="true" editor-type-id="text-editor">
  <state line="41" column="69" selection-start="1388" selection-end="1388" vertical-scroll-proportion="1.2659575">
  <folding>
  <element signature="e#255#287#0" expanded="true" />
  </folding>
  </state>
  </provider>
  </entry>
  </file>
  <file leaf-file-name="common.inc.php" pinned="false" current="false" current-in-tab="false">
  <entry file="file://$PROJECT_DIR$/common.inc.php">
  <provider selected="true" editor-type-id="text-editor">
  <state line="60" column="117" selection-start="2262" selection-end="2262" vertical-scroll-proportion="-39.23077">
  <folding />
  </state>
  </provider>
  </entry>
  </file>
  <file leaf-file-name="calls.json.php" pinned="false" current="false" current-in-tab="false">
  <entry file="file://$PROJECT_DIR$/calls.json.php">
  <provider selected="true" editor-type-id="text-editor">
  <state line="72" column="41" selection-start="2843" selection-end="2843" vertical-scroll-proportion="-43.153847">
  <folding />
  </state>
  </provider>
  </entry>
  </file>
  </leaf>
  </component>
  <component name="FindManager">
  <FindUsagesManager>
  <setting name="OPEN_NEW_TAB" value="false" />
  </FindUsagesManager>
  </component>
  <component name="Git.Settings">
  <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
  </component>
  <component name="IdeDocumentHistory">
  <option name="changedFiles">
  <list>
  <option value="$PROJECT_DIR$/scannr.py" />
  <option value="$PROJECT_DIR$/common.inc.php" />
  <option value="$PROJECT_DIR$/calls.json.php" />
  <option value="$PROJECT_DIR$/viewcalls.php" />
  </list>
  </option>
  </component>
  <component name="PhpWorkspaceProjectConfiguration" backward_compatibility_performed="true" />
  <component name="ProjectFrameBounds">
  <option name="x" value="619" />
  <option name="width" value="825" />
  <option name="height" value="600" />
  </component>
  <component name="ProjectLevelVcsManager" settingsEditedManually="true">
  <OptionsSetting value="true" id="Add" />
  <OptionsSetting value="true" id="Remove" />
  <OptionsSetting value="true" id="Checkout" />
  <OptionsSetting value="true" id="Update" />
  <OptionsSetting value="true" id="Status" />
  <OptionsSetting value="true" id="Edit" />
  <ConfirmationsSetting value="0" id="Add" />
  <ConfirmationsSetting value="0" id="Remove" />
  </component>
  <component name="ProjectReloadState">
  <option name="STATE" value="0" />
  </component>
  <component name="ProjectView">
  <navigator currentView="ProjectPane" proportions="" version="1" splitterProportion="0.5">
  <flattenPackages />
  <showMembers />
  <showModules />
  <showLibraryContents ProjectPane="true" />
  <hideEmptyPackages />
  <abbreviatePackageNames />
  <autoscrollToSource />
  <autoscrollFromSource />
  <sortByType />
  </navigator>
  <panes>
  <pane id="ProjectPane">
  <subPane>
  <PATH>
  <PATH_ELEMENT>
  <option name="myItemId" value="scannr" />
  <option name="myItemType" value="com.intellij.ide.projectView.impl.nodes.ProjectViewProjectNode" />
  </PATH_ELEMENT>
  </PATH>
  </subPane>
  </pane>
  <pane id="Scope" />
  </panes>
  </component>
  <component name="PropertiesComponent">
  <property name="options.splitter.main.proportions" value="0.3" />
  <property name="WebServerToolWindowFactoryState" value="false" />
  <property name="options.lastSelected" value="project.propVCSSupport.Mappings" />
  <property name="last_opened_file_path" value="$PROJECT_DIR$/../busui/myway/myway_timeliness.php" />
  <property name="options.splitter.details.proportions" value="0.2" />
  <property name="options.searchVisible" value="true" />
  </component>
  <component name="RunManager">
  <configuration default="true" type="PHPUnitRunConfigurationType" factoryName="PHPUnit">
  <TestRunner />
  <method />
  </configuration>
  <configuration default="true" type="PhpLocalRunConfigurationType" factoryName="PHP Console">
  <method />
  </configuration>
  <configuration default="true" type="JavascriptDebugSession" factoryName="Local">
  <JSDebuggerConfigurationSettings>
  <option name="engineId" value="embedded" />
  <option name="fileUrl" />
  </JSDebuggerConfigurationSettings>
  <method />
  </configuration>
  <list size="0" />
  </component>
  <component name="ShelveChangesManager" show_recycled="false" />
  <component name="SvnConfiguration" maxAnnotateRevisions="500" myUseAcceleration="nothing" myAutoUpdateAfterCommit="false" cleanupOnStartRun="false">
  <option name="USER" value="" />
  <option name="PASSWORD" value="" />
  <option name="mySSHConnectionTimeout" value="30000" />
  <option name="mySSHReadTimeout" value="30000" />
  <option name="LAST_MERGED_REVISION" />
  <option name="MERGE_DRY_RUN" value="false" />
  <option name="MERGE_DIFF_USE_ANCESTRY" value="true" />
  <option name="UPDATE_LOCK_ON_DEMAND" value="false" />
  <option name="IGNORE_SPACES_IN_MERGE" value="false" />
  <option name="DETECT_NESTED_COPIES" value="true" />
  <option name="CHECK_NESTED_FOR_QUICK_MERGE" value="false" />
  <option name="IGNORE_SPACES_IN_ANNOTATE" value="true" />
  <option name="SHOW_MERGE_SOURCES_IN_ANNOTATE" value="true" />
  <option name="FORCE_UPDATE" value="false" />
  <option name="IGNORE_EXTERNALS" value="false" />
  <myIsUseDefaultProxy>false</myIsUseDefaultProxy>
  </component>
  <component name="TaskManager">
  <task active="true" id="Default" summary="Default task">
  <changelist id="f90ee5b5-97e4-47ec-9b14-d4f4e896f100" name="Default" comment="" />
  <created>1350026709905</created>
  <updated>1350026709905</updated>
  </task>
  <servers />
  </component>
  <component name="ToolWindowManager">
  <frame x="619" y="0" width="825" height="600" extended-state="0" />
  <editor active="false" />
  <layout>
  <window_info id="Changes" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
  <window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
  <window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
  <window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="true" content_ui="tabs" />
  <window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" weight="0.44036698" sideWeight="0.6706349" order="0" side_tool="false" content_ui="combo" />
  <window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
  <window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
  <window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.32936507" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
  <window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
  <window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
  <window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
  <window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
  <window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
  <window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
  <window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
  <window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
  <window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
  </layout>
  </component>
  <component name="VcsContentAnnotationSettings">
  <option name="myLimit" value="2678400000" />
  </component>
  <component name="VcsManagerConfiguration">
  <option name="OFFER_MOVE_TO_ANOTHER_CHANGELIST_ON_PARTIAL_COMMIT" value="true" />
  <option name="CHECK_CODE_SMELLS_BEFORE_PROJECT_COMMIT" value="true" />
  <option name="CHECK_NEW_TODO" value="true" />
  <option name="myTodoPanelSettings">
  <value>
  <are-packages-shown value="false" />
  <are-modules-shown value="false" />
  <flatten-packages value="false" />
  <is-autoscroll-to-source value="false" />
  </value>
  </option>
  <option name="PERFORM_UPDATE_IN_BACKGROUND" value="true" />
  <option name="PERFORM_COMMIT_IN_BACKGROUND" value="true" />
  <option name="PERFORM_EDIT_IN_BACKGROUND" value="true" />
  <option name="PERFORM_CHECKOUT_IN_BACKGROUND" value="true" />
  <option name="PERFORM_ADD_REMOVE_IN_BACKGROUND" value="true" />
  <option name="PERFORM_ROLLBACK_IN_BACKGROUND" value="false" />
  <option name="CHECK_LOCALLY_CHANGED_CONFLICTS_IN_BACKGROUND" value="false" />
  <option name="CHANGED_ON_SERVER_INTERVAL" value="60" />
  <option name="SHOW_ONLY_CHANGED_IN_SELECTION_DIFF" value="true" />
  <option name="CHECK_COMMIT_MESSAGE_SPELLING" value="true" />
  <option name="DEFAULT_PATCH_EXTENSION" value="patch" />
  <option name="SHORT_DIFF_HORISONTALLY" value="true" />
  <option name="SHORT_DIFF_EXTRA_LINES" value="2" />
  <option name="SOFT_WRAPS_IN_SHORT_DIFF" value="true" />
  <option name="INCLUDE_TEXT_INTO_PATCH" value="false" />
  <option name="INCLUDE_TEXT_INTO_SHELF" value="false" />
  <option name="SHOW_FILE_HISTORY_DETAILS" value="true" />
  <option name="SHOW_VCS_ERROR_NOTIFICATIONS" value="true" />
  <option name="FORCE_NON_EMPTY_COMMENT" value="false" />
  <option name="CLEAR_INITIAL_COMMIT_MESSAGE" value="false" />
  <option name="LAST_COMMIT_MESSAGE" />
  <option name="MAKE_NEW_CHANGELIST_ACTIVE" value="false" />
  <option name="OPTIMIZE_IMPORTS_BEFORE_PROJECT_COMMIT" value="false" />
  <option name="CHECK_FILES_UP_TO_DATE_BEFORE_COMMIT" value="false" />
  <option name="REFORMAT_BEFORE_PROJECT_COMMIT" value="false" />
  <option name="REFORMAT_BEFORE_FILE_COMMIT" value="false" />
  <option name="FILE_HISTORY_DIALOG_COMMENTS_SPLITTER_PROPORTION" value="0.8" />
  <option name="FILE_HISTORY_DIALOG_SPLITTER_PROPORTION" value="0.5" />
  <option name="ACTIVE_VCS_NAME" />
  <option name="UPDATE_GROUP_BY_PACKAGES" value="false" />
  <option name="UPDATE_GROUP_BY_CHANGELIST" value="false" />
  <option name="SHOW_FILE_HISTORY_AS_TREE" value="false" />
  <option name="FILE_HISTORY_SPLITTER_PROPORTION" value="0.6" />
  </component>
  <component name="XDebuggerManager">
  <breakpoint-manager />
  </component>
  <component name="editorHistoryManager">
  <entry file="file://$PROJECT_DIR$/viewcalls.php">
  <provider selected="true" editor-type-id="text-editor">
  <state line="2" column="13" selection-start="46" selection-end="46" vertical-scroll-proportion="0.0">
  <folding>
  <element signature="e#255#287#0" expanded="true" />
  </folding>
  </state>
  </provider>
  </entry>
  <entry file="file://$PROJECT_DIR$/common.inc.php">
  <provider selected="true" editor-type-id="text-editor">
  <state line="34" column="0" selection-start="1179" selection-end="1179" vertical-scroll-proportion="0.0">
  <folding />
  </state>
  </provider>
  </entry>
  <entry file="file://$PROJECT_DIR$/calls.json.php">
  <provider selected="true" editor-type-id="text-editor">
  <state line="2" column="9" selection-start="42" selection-end="42" vertical-scroll-proportion="0.0">
  <folding />
  </state>
  </provider>
  </entry>
  <entry file="file://$PROJECT_DIR$/trunklog.php">
  <provider selected="true" editor-type-id="text-editor">
  <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
  </provider>
  </entry>
  <entry file="file://$PROJECT_DIR$/../disclosr/include/template.inc.php">
  <provider selected="true" editor-type-id="text-editor">
  <state line="72" column="93" selection-start="2545" selection-end="2635" vertical-scroll-proportion="0.43404254" />
  </provider>
  </entry>
  <entry file="file://$PROJECT_DIR$/../disclosr/include/common.inc.php">
  <provider selected="true" editor-type-id="text-editor">
  <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
  </provider>
  </entry>
  <entry file="file://C:/tmp/h5bp-html5-boilerplate-2279296/index.html">
  <provider selected="true" editor-type-id="text-editor">
  <state line="38" column="11" selection-start="1245" selection-end="1982" vertical-scroll-proportion="0.93352604" />
  </provider>
  </entry>
  <entry file="file://$PROJECT_DIR$/../busui/myway/myway_timeliness.php">
  <provider selected="true" editor-type-id="text-editor">
  <state line="27" column="5" selection-start="1003" selection-end="1018" vertical-scroll-proportion="26.346153" />
  </provider>
  </entry>
  <entry file="file://$PROJECT_DIR$/scannr.py">
  <provider selected="true" editor-type-id="text-editor">
  <state line="66" column="23" selection-start="2084" selection-end="2084" vertical-scroll-proportion="0.0" />
  </provider>
  </entry>
  <entry file="file://$PROJECT_DIR$/snd.py">
  <provider selected="true" editor-type-id="text-editor">
  <state line="0" column="0" selection-start="0" selection-end="0" vertical-scroll-proportion="0.0" />
  </provider>
  </entry>
  <entry file="file://$PROJECT_DIR$/common.inc.php">
  <provider selected="true" editor-type-id="text-editor">
  <state line="60" column="117" selection-start="2262" selection-end="2262" vertical-scroll-proportion="-39.23077">
  <folding />
  </state>
  </provider>
  </entry>
  <entry file="file://$PROJECT_DIR$/calls.json.php">
  <provider selected="true" editor-type-id="text-editor">
  <state line="72" column="41" selection-start="2843" selection-end="2843" vertical-scroll-proportion="-43.153847">
  <folding />
  </state>
  </provider>
  </entry>
  <entry file="file://$PROJECT_DIR$/viewcalls.php">
  <provider selected="true" editor-type-id="text-editor">
  <state line="41" column="69" selection-start="1388" selection-end="1388" vertical-scroll-proportion="1.2659575">
  <folding>
  <element signature="e#255#287#0" expanded="true" />
  </folding>
  </state>
  </provider>
  </entry>
  </component>
  </project>
 
 
file:b/404.html (new)
  <!DOCTYPE html>
  <html lang="en">
  <head>
  <meta charset="utf-8">
  <title>Page Not Found :(</title>
  <style>
  ::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
  }
 
  ::selection {
  background: #b3d4fc;
  text-shadow: none;
  }
 
  html {
  padding: 30px 10px;
  font-size: 20px;
  line-height: 1.4;
  color: #737373;
  background: #f0f0f0;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  }
 
  html,
  input {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }
 
  body {
  max-width: 500px;
  _width: 500px;
  padding: 30px 20px 50px;
  border: 1px solid #b3b3b3;
  border-radius: 4px;
  margin: 0 auto;
  box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff;
  background: #fcfcfc;
  }
 
  h1 {
  margin: 0 10px;
  font-size: 50px;
  text-align: center;
  }
 
  h1 span {
  color: #bbb;
  }
 
  h3 {
  margin: 1.5em 0 0.5em;
  }
 
  p {
  margin: 1em 0;
  }
 
  ul {
  padding: 0 0 0 40px;
  margin: 1em 0;
  }
 
  .container {
  max-width: 380px;
  _width: 380px;
  margin: 0 auto;
  }
 
  /* google search */
 
  #goog-fixurl ul {
  list-style: none;
  padding: 0;
  margin: 0;
  }
 
  #goog-fixurl form {
  margin: 0;
  }
 
  #goog-wm-qt,
  #goog-wm-sb {
  border: 1px solid #bbb;
  font-size: 16px;
  line-height: normal;
  vertical-align: top;
  color: #444;
  border-radius: 2px;
  }
 
  #goog-wm-qt {
  width: 220px;
  height: 20px;
  padding: 5px;
  margin: 5px 10px 0 0;
  box-shadow: inset 0 1px 1px #ccc;
  }
 
  #goog-wm-sb {
  display: inline-block;
  height: 32px;
  padding: 0 10px;
  margin: 5px 0 0;
  white-space: nowrap;
  cursor: pointer;
  background-color: #f5f5f5;
  background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1);
  background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1);
  background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1);
  background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  *overflow: visible;
  *display: inline;
  *zoom: 1;
  }
 
  #goog-wm-sb:hover,
  #goog-wm-sb:focus {
  border-color: #aaa;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  background-color: #f8f8f8;
  }
 
  #goog-wm-qt:hover,
  #goog-wm-qt:focus {
  border-color: #105cb6;
  outline: 0;
  color: #222;
  }
 
  input::-moz-focus-inner {
  padding: 0;
  border: 0;
  }
  </style>
  </head>
  <body>
  <div class="container">
  <h1>Not found <span>:(</span></h1>
  <p>Sorry, but the page you were trying to view does not exist.</p>
  <p>It looks like this was the result of either:</p>
  <ul>
  <li>a mistyped address</li>
  <li>an out-of-date link</li>
  </ul>
  <script>
  var GOOG_FIXURL_LANG = (navigator.language || '').slice(0,2),GOOG_FIXURL_SITE = location.host;
  </script>
  <script src="http://linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script>
  </div>
  </body>
  </html>
 
file:b/CHANGELOG.md (new)
  ### HEAD
 
  ### 4.0.0 (28 August, 2012)
 
  * Improve the Apache compression configuration ([#1012](https://github.com/h5bp/html5-boilerplate/issues/1012), [#1173](https://github.com/h5bp/html5-boilerplate/issues/1173)).
  * Add a HiDPI example media query ([#1127](https://github.com/h5bp/html5-boilerplate/issues/1127)).
  * Add bundled docs ([#1154](https://github.com/h5bp/html5-boilerplate/issues/1154)).
  * Add MIT license ([#1139](https://github.com/h5bp/html5-boilerplate/issues/1139)).
  * Update to Normalize.css 1.0.1.
  * Separate Normalize.css from the rest of the CSS ([#1160](https://github.com/h5bp/html5-boilerplate/issues/1160)).
  * Improve `console.log` protection ([#1107](https://github.com/h5bp/html5-boilerplate/issues/1107)).
  * Replace hot pink text selection color with a neutral color.
  * Change image replacement technique ([#1149](https://github.com/h5bp/html5-boilerplate/issues/1149)).
  * Code format and consistency changes ([#1112](https://github.com/h5bp/html5-boilerplate/issues/1112)).
  * Rename CSS file and rename JS files and subdirectories.
  * Update to jQuery 1.8 ([#1161](https://github.com/h5bp/html5-boilerplate/issues/1161)).
  * Update to Modernizr 2.6.1 ([#1086](https://github.com/h5bp/html5-boilerplate/issues/1086)).
  * Remove uncompressed jQuery ([#1153](https://github.com/h5bp/html5-boilerplate/issues/1153)).
  * Remove superfluous inline comments ([#1150](https://github.com/h5bp/html5-boilerplate/issues/1150)).
 
  ### 3.0.2 (February 19, 2012)
 
  * Update to Modernizr 2.5.3.
 
  ### 3.0.1 (February 08, 2012).
 
  * Update to Modernizr 2.5.2 (includes html5shiv 3.3).
 
  ### 3.0.0 (February 06, 2012)
 
  * Improvements to `.htaccess`.
  * Improve 404 design.
  * Simplify JS folder structure.
  * Change `html` IE class names changed to target ranges rather than specific versions of IE.
  * Update CSS to include latest normalize.css changes and better typographic defaults ([#825](https://github.com/h5bp/html5-boilerplate/issues/825)).
  * Update to Modernizr 2.5 (includes yepnope 1.5 and html5shiv 3.2).
  * Update to jQuery 1.7.1.
  * Revert to async snippet for the Google Analytics script.
  * Remove the ant build script ([#826](https://github.com/h5bp/html5-boilerplate/issues/826)).
  * Remove Respond.js ([#816](https://github.com/h5bp/html5-boilerplate/issues/816)).
  * Remove the `demo/` directory ([#808](https://github.com/h5bp/html5-boilerplate/issues/808)).
  * Remove the `test/` directory ([#808](https://github.com/h5bp/html5-boilerplate/issues/808)).
  * Remove Google Chrome Frame script for IE6 users; replace with links to Chrome Frame and options for alternative browsers.
  * Remove `initial-scale=1` from the viewport `meta` ([#824](https://github.com/h5bp/html5-boilerplate/issues/824)).
  * Remove `defer` from all scripts to avoid legacy IE bugs.
  * Remove explicit Site Speed tracking for Google Analytics. It's now enabled by default.
 
  ### 2.0.0 (August 10, 2011)
 
  * Change starting CSS to be based on normalize.css instead of reset.css ([#500](https://github.com/h5bp/html5-boilerplate/issues/500)).
  * Add Respond.js media query polyfill.
  * Add Google Chrome Frame script prompt for IE6 users.
  * Simplify the `html` conditional comments for modern browsers and add an `oldie` class.
  * Update clearfix to use "micro clearfix".
  * Add placeholder CSS MQs for mobile-first approach.
  * Add `textarea { resize: vertical; }` to only allow vertical resizing.
  * Add `img { max-width: 100%; }` to the print styles; prevents images being truncated.
  * Add Site Speed tracking for Google Analytics.
  * Update to jQuery 1.6.2 (and use minified by default).
  * Update to Modernizr 2.0 Complete, Production minified (includes yepnope, html5shiv, and Respond.js).
  * Use `Modernizr.load()` to load the Google Analytics script.
  * Much faster build process.
  * Add build script options for CSSLint, JSLint, JSHint tools.
  * Build script now compresses all images in subfolders.
  * Build script now versions files by SHA hash.
  * Many `.htaccess` improvements including: disable directory browsing, improved support for all versions of Apache, more robust and extensive HTTP compression rules.
  * Remove `handheld.css` as it has very poor device support.
  * Remove touch-icon `link` elements from the HTML and include improved touch-icon support.
  * Remove the cache-busting query paramaters from files references in the HTML.
  * Remove IE6 PNGFix.
 
  ### 1.0.0 (March 21, 2011)
 
  * Rewrite build script to make it more customizable and flexible.
  * Add a humans.txt.
  * Numerous `.htaccess` improvements (including inline documentation).
  * Move the alternative server configurations to the H5BP server configs repo.
  * Use a protocol-relative url to reference jQuery and prevent mixed content warnings.
  * Optimize the Google Analytics snippet.
  * Use Eric Meyer's recent CSS reset update and the HTML5 Doctor reset.
  * More robust `sub`/`sup` CSS styles.
  * Add keyboard `.focusable` helper class that extends `.visuallyhidden`.
  * Print styles no longer print hash or JavaScript links.
  * Add a print reset for IE's proprietary filters.
  * Remove IE9-specific conditional class on the `html` element.
  * Remove margins from lists within `nav` elements.
  * Remove YUI profiling.
 
file:b/LICENSE.md (new)
  Copyright (c) HTML5 Boilerplate
 
  Permission is hereby granted, free of charge, to any person obtaining a copy of
  this software and associated documentation files (the "Software"), to deal in
  the Software without restriction, including without limitation the rights to
  use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  of the Software, and to permit persons to whom the Software is furnished to do
  so, subject to the following conditions:
 
  The above copyright notice and this permission notice shall be included in all
  copies or substantial portions of the Software.
 
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  SOFTWARE.
 
file:b/README.md (new)
  # [HTML5 Boilerplate](http://html5boilerplate.com)
 
  HTML5 Boilerplate is a professional front-end template for building fast,
  robust, and adaptable web apps or sites.
 
  This project is the product of many years of iterative development and combined
  community knowledge. It does not impose a specific development philosophy or
  framework, so you're free to architect your code in the way that you want.
 
  * Source: [https://github.com/h5bp/html5-boilerplate](https://github.com/h5bp/html5-boilerplate)
  * Homepage: [http://html5boilerplate.com](http://html5boilerplate.com)
  * Twitter: [@h5bp](http://twitter.com/h5bp)
 
 
  ## Quick start
 
  Choose one of the following options:
 
  1. Download the latest stable release from
  [html5boilerplate.com](http://html5boilerplate.com/) or a custom build from
  [Initializr](http://www.initializr.com).
  2. Clone the git repo — `git clone
  https://github.com/h5bp/html5-boilerplate.git` - and checkout the tagged
  release you'd like to use.
 
 
  ## Features
 
  * HTML5 ready. Use the new elements with confidence.
  * Cross-browser compatible (Chrome, Opera, Safari, Firefox 3.6+, IE6+).
  * Designed with progressive enhancement in mind.
  * Includes [Normalize.css](http://necolas.github.com/normalize.css/) for CSS
  normalizations and common bug fixes.
  * The latest [jQuery](http://jquery.com/) via CDN, with a local fallback.
  * The latest [Modernizr](http://modernizr.com/) build for feature detection.
  * IE-specific classes for easier cross-browser control.
  * Placeholder CSS Media Queries.
  * Useful CSS helpers.
  * Default print CSS, performance optimized.
  * Protection against any stray `console.log` causing JavaScript errors in
  IE6/7.
  * An optimized Google Analytics snippet.
  * Apache server caching, compression, and other configuration defaults for
  Grade-A performance.
  * Cross-domain Ajax and Flash.
  * "Delete-key friendly." Easy to strip out parts you don't need.
  * Extensive inline and accompanying documentation.
 
 
  ## Documentation
 
  Take a look at the [documentation table of
  contents](/h5bp/html5-boilerplate/blob/master/doc/README.md). This
  documentation is bundled with the project, which makes it readily available for
  offline reading and provides a useful starting point for any documentation
  you want to write about your project.
 
 
  ## Contributing
 
  Anyone and everyone is welcome to
  [contribute](/h5bp/html5-boilerplate/blob/master/doc/contribute.md). Hundreds
  of developers have helped make the HTML5 Boilerplate what it is today.
 
file:b/README.txt (new)
  ffmpeg from http://ffmpeg.zeranoe.com/builds/
 Binary files /dev/null and b/apple-touch-icon-114x114-precomposed.png differ
 Binary files /dev/null and b/apple-touch-icon-144x144-precomposed.png differ
 Binary files /dev/null and b/apple-touch-icon-57x57-precomposed.png differ
 Binary files /dev/null and b/apple-touch-icon-72x72-precomposed.png differ
 Binary files /dev/null and b/apple-touch-icon-precomposed.png differ
 Binary files /dev/null and b/apple-touch-icon.png differ
file:b/calllog.php (new)
  <?php
  include ('common.inc.php');
  $sth = $conn->prepare( 'select * from recordings
  order by call_timestamp desc limit 10');
 
  $sth->execute(Array());
 
  $row = 0;
  echo "<table>";
  foreach ($sth->fetchAll() as $data) {
 
 
  echo "<tr>";
  for ($c=0; $c < count($data); $c++) {
  echo '<td>'.$data[$c] . "</td>\n";
  }
  echo "</tr>";
  }
  $row++;
  echo "</table>";
  ?>
 
file:b/calls.json.php (new)
  <?php
  include('common.inc.php');
  function getTGIDValuesByHour($TGID, $timeFrom, $timeTo) {
  global $conn;
  $sth = $conn->prepare( 'select tgid, min(call_timestamp) as time, count(*), min(length), max(length), avg(length), stddev(length) from recordings
  group by tgid, date_trunc(\'hour\', call_timestamp) order by time');
 
  $sth->execute( );
  //Array($TGID, $timeFrom, $timeTo)
  return $sth->fetchAll();
 
 
  }
 
  function getTGIDValuesByDay($TGID, $dayFrom, $dayTo) {
  global $conn;
  $sth = $conn->prepare('select min(time) as time, min(value), max(value), avg(value), stddev(value) from sensor_values where sensor_id = ?
  group by sensor_id, date_trunc(\'day\', time) order by time');
 
  $sth->execute( Array($TGID));
  return $sth->fetchAll();
  }
  function getTGIDDataYears($TGID, $timeFrom, $timeTo) {
  global $conn;
  $sth = $conn->prepare("select distinct extract('year' from call_timestamp) as year from recordings where tgid = ? order by year");
 
  $sth->execute(Array($TGID));
  return $sth->fetchAll();
  }
 
  function getTGIDDataMonths($TGID, $timeFrom, $timeTo) {
  global $conn;
  $sth = $conn->prepare("select distinct extract('month' from call_timestamp) as month, extract('year' from call_timestamp) as year from recordings where tgid = ? order by year, month");
 
  $sth->execute(Array($TGID));
  return $sth->fetchAll();
  }
 
  function getTGIDDataDays($TGID, $timeFrom, $timeTo) {
  global $conn;
  $sth = $conn->prepare("select distinct extract('day' from call_timestamp) as day, extract('month' from call_timestamp) as month, extract('year' from call_timestamp) as year from recordings where tgid = ? order by year,month,day");
 
 
  $sth->execute(Array($TGID));
  return $sth->fetchAll();
  }
  $action = (isset($_REQUEST['action']) ? $_REQUEST['action'] : '');
  $TGID = (isset($_REQUEST['tgid']) ? $_REQUEST['tgid'] : '');
  $timefrom = (isset($_REQUEST['from']) ? $_REQUEST['from'] : '');
  $timeto = (isset($_REQUEST['to']) ? $_REQUEST['to'] : '');
 
  if ($action == "data_description") {
  $timefrom = strtotime($timefrom);
  $timeto = strtotime($timeto);
  $years = getTGIDDataYears($TGID, $timefrom, $timeto);
 
  $months = getTGIDDataMonths($TGID, $timefrom, $timeto);
  $days = getTGIDDataDays($TGID, $timefrom, $timeto);
 
  echo json_encode(Array("years" => $years, "months" => $months, "days" => $days
  ));
  }
 
 
  if (strpos($action,"graph") !== false) {
  $values = getTGIDValuesByHour($TGID, $timefrom, $timeto);
  $label = $TGID;
  $data = Array();
  $tzoffset = get_timezone_offset("UTC");
  foreach ($values as $value) {
  if ($action == "graphlength") {
  $data[$value['tgid']][] = Array((strtotime($value['time']) + $tzoffset) * 1000, intval($value['avg']));
  } else if ($action == "graphcount") {
  $data[$value['tgid']][] = Array((strtotime($value['time']) + $tzoffset) * 1000, intval($value['count']));
  }
  }
  echo json_encode(Array("label" => $label, "data" => $data,
  "previous" => Array(
  "from" => $timefrom - (24 * 60 * 60),
  "to" => $timefrom)
  ,
  "next" => Array(
  "to" => $timeto + (24 * 60 * 60),
  "from" => $timeto)
  )
  );
  }
 
 
 
  ?>
 
file:b/common.inc.php (new)
  <?php
  date_default_timezone_set("Australia/Sydney");
  try {
  $conn = new PDO("pgsql:dbname=scannr;user=postgres;password=snmc;host=localhost");
  $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  }
  catch(PDOException $e) {
  die('Unable to connect to database server.');
  }
  catch(Exception $e) {
  die('Unknown error in ' . __FILE__ . '.');
  }
  $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
  $basePath = "";
  $DATA_DIR = "./data";
 
  /** Returns the offset from the origin timezone to the remote timezone, in seconds.
  * @param $remote_tz;
  * @param $origin_tz; If null the servers current timezone is used as the origin.
  * @return int;
  */
  function get_timezone_offset($remote_tz, $origin_tz = null) {
  if ($origin_tz === null) {
  if (!is_string($origin_tz = date_default_timezone_get())) {
  return false; // A UTC timestamp was returned -- bail out!
  }
  }
  $origin_dtz = new DateTimeZone($origin_tz);
  $remote_dtz = new DateTimeZone($remote_tz);
  $origin_dt = new DateTime("now", $origin_dtz);
  $remote_dt = new DateTime("now", $remote_dtz);
  $offset = $origin_dtz->getOffset($origin_dt) - $remote_dtz->getOffset($remote_dt);
  return $offset;
  }
 
 
 
 
 
  function include_header($title) {
  global $basePath;
  ?>
  <!DOCTYPE html>
  <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
  <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
  <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
  <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
  <head>
  <meta charset="utf-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <title></title>
  <meta name="description" content="">
  <meta name="viewport" content="width=device-width">
 
  <!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
 
  <link rel="stylesheet" href="css/normalize.css">
  <link rel="stylesheet" href="css/main.css">
  <script src="js/vendor/modernizr-2.6.1.min.js"></script>
  <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
  <!--<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.8.0.min.js"><\/script>')</script>-->
  <script type="text/javascript" src="<?php echo $basePath ?>js/flotr2/flotr2.js"></script>
  <script src="js/plugins.js"></script>
  <script src="js/main.js"></script>
  </head>
  <body>
  <!--[if lt IE 7]>
  <p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p>
  <![endif]-->
 
  <!-- Add your site or application content here -->
  <?php
  }
 
  function include_footer() {
  global $basePath;
  ?>
 
 
  <!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
  <script>
  var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
  (function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
  g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
  s.parentNode.insertBefore(g,s)}(document,'script'));
  </script>
  </body>
  </html>
 
  <?php
 
  }
 
 
file:b/cron.php (new)
  <?php
  /*- scheduled tasks
  - combine recordings into conversations
  - using ffmpeg
  - conversations and recordings_to_conversations tables
  - remove all other wav files
  - delete old uninteresting conversations*/
  ?>
 
file:b/crossdomain.xml (new)
  <?xml version="1.0"?>
  <!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
  <cross-domain-policy>
  <!-- Read this: www.adobe.com/devnet/articles/crossdomain_policy_file_spec.html -->
 
  <!-- Most restrictive policy: -->
  <site-control permitted-cross-domain-policies="none"/>
 
  <!-- Least restrictive policy: -->
  <!--
  <site-control permitted-cross-domain-policies="all"/>
  <allow-access-from domain="*" to-ports="*" secure="false"/>
  <allow-http-request-headers-from domain="*" headers="*" secure="false"/>
  -->
  </cross-domain-policy>
 
file:b/css/main.css (new)
  /*
  * HTML5 Boilerplate
  *
  * What follows is the result of much research on cross-browser styling.
  * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
  * Kroc Camen, and the H5BP dev community and team.
  */
 
  /* ==========================================================================
  Base styles: opinionated defaults
  ========================================================================== */
 
  html,
  button,
  input,
  select,
  textarea {
  color: #222;
  }
 
  body {
  font-size: 1em;
  line-height: 1.4;
  }
 
  /*
  * Remove text-shadow in selection highlight: h5bp.com/i
  * These selection declarations have to be separate.
  * Customize the background color to match your design.
  */
 
  ::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
  }
 
  ::selection {
  background: #b3d4fc;
  text-shadow: none;
  }
 
  /*
  * A better looking default horizontal rule
  */
 
  hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
  }
 
  /*
  * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
  */
 
  img {
  vertical-align: middle;
  }
 
  /*
  * Remove default fieldset styles.
  */
 
  fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  }
 
  /*
  * Allow only vertical resizing of textareas.
  */
 
  textarea {
  resize: vertical;
  }
 
  /* ==========================================================================
  Chrome Frame prompt
  ========================================================================== */
 
  .chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
  }
 
  /* ==========================================================================
  Author's custom styles
  ========================================================================== */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  /* ==========================================================================
  Helper classes
  ========================================================================== */
 
  /*
  * Image replacement
  */
 
  .ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
  }
 
  .ir:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  }
 
  /*
  * Hide from both screenreaders and browsers: h5bp.com/u
  */
 
  .hidden {
  display: none !important;
  visibility: hidden;
  }
 
  /*
  * Hide only visually, but have it available for screenreaders: h5bp.com/v
  */
 
  .visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  }
 
  /*
  * Extends the .visuallyhidden class to allow the element to be focusable
  * when navigated to via the keyboard: h5bp.com/p
  */
 
  .visuallyhidden.focusable:active,
  .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  }
 
  /*
  * Hide visually and from screenreaders, but maintain layout
  */
 
  .invisible {
  visibility: hidden;
  }
 
  /*
  * Clearfix: contain floats
  *
  * For modern browsers
  * 1. The space content is one way to avoid an Opera bug when the
  * `contenteditable` attribute is included anywhere else in the document.
  * Otherwise it causes space to appear at the top and bottom of elements
  * that receive the `clearfix` class.
  * 2. The use of `table` rather than `block` is only necessary if using
  * `:before` to contain the top-margins of child elements.
  */
 
  .clearfix:before,
  .clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
  }
 
  .clearfix:after {
  clear: both;
  }
 
  /*
  * For IE 6/7 only
  * Include this rule to trigger hasLayout and contain floats.
  */
 
  .clearfix {
  *zoom: 1;
  }
 
  /* ==========================================================================
  EXAMPLE Media Queries for Responsive Design.
  Theses examples override the primary ('mobile first') styles.
  Modify as content requires.
  ========================================================================== */
 
  @media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
  }
 
  @media only screen and (-webkit-min-device-pixel-ratio: 1.5),
  only screen and (min-resolution: 144dpi) {
  /* Style adjustments for high resolution devices */
  }
 
  /* ==========================================================================
  Print styles.
  Inlined to avoid required HTTP connection: h5bp.com/r
  ========================================================================== */
 
  @media print {
  * {
  background: transparent !important;
  color: #000 !important; /* Black prints faster: h5bp.com/s */
  box-shadow:none !important;
  text-shadow: none !important;
  }
 
  a,
  a:visited {
  text-decoration: underline;
  }
 
  a[href]:after {
  content: " (" attr(href) ")";
  }
 
  abbr[title]:after {
  content: " (" attr(title) ")";
  }
 
  /*
  * Don't show links for images, or javascript/internal links
  */
 
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
  content: "";
  }
 
  pre,
  blockquote {
  border: 1px solid #999;
  page-break-inside: avoid;
  }
 
  thead {
  display: table-header-group; /* h5bp.com/t */
  }
 
  tr,
  img {
  page-break-inside: avoid;
  }
 
  img {
  max-width: 100% !important;
  }
 
  @page {
  margin: 0.5cm;
  }
 
  p,
  h2,
  h3 {
  orphans: 3;
  widows: 3;
  }
 
  h2,
  h3 {
  page-break-after: avoid;
  }
  }
 
file:b/css/normalize.css (new)
  /*! normalize.css v1.0.1 | MIT License | git.io/normalize */
 
  /* ==========================================================================
  HTML5 display definitions
  ========================================================================== */
 
  /*
  * Corrects `block` display not defined in IE 6/7/8/9 and Firefox 3.
  */
 
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  nav,
  section,
  summary {
  display: block;
  }
 
  /*
  * Corrects `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
  */
 
  audio,
  canvas,
  video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  }
 
  /*
  * Prevents modern browsers from displaying `audio` without controls.
  * Remove excess height in iOS 5 devices.
  */
 
  audio:not([controls]) {
  display: none;
  height: 0;
  }
 
  /*
  * Addresses styling for `hidden` attribute not present in IE 7/8/9, Firefox 3,
  * and Safari 4.
  * Known issue: no IE 6 support.
  */
 
  [hidden] {
  display: none;
  }
 
  /* ==========================================================================
  Base
  ========================================================================== */
 
  /*
  * 1. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
  * `em` units.
  * 2. Prevents iOS text size adjust after orientation change, without disabling
  * user zoom.
  */
 
  html {
  font-size: 100%; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -ms-text-size-adjust: 100%; /* 2 */
  }
 
  /*
  * Addresses `font-family` inconsistency between `textarea` and other form
  * elements.
  */
 
  html,
  button,
  input,
  select,
  textarea {
  font-family: sans-serif;
  }
 
  /*
  * Addresses margins handled incorrectly in IE 6/7.
  */
 
  body {
  margin: 0;
  }
 
  /* ==========================================================================
  Links
  ========================================================================== */
 
  /*
  * Addresses `outline` inconsistency between Chrome and other browsers.
  */
 
  a:focus {
  outline: thin dotted;
  }
 
  /*
  * Improves readability when focused and also mouse hovered in all browsers.
  */
 
  a:active,
  a:hover {
  outline: 0;
  }
 
  /* ==========================================================================
  Typography
  ========================================================================== */
 
  /*
  * Addresses font sizes and margins set differently in IE 6/7.
  * Addresses font sizes within `section` and `article` in Firefox 4+, Safari 5,
  * and Chrome.
  */
 
  h1 {
  font-size: 2em;
  margin: 0.67em 0;
  }
 
  h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
  }
 
  h3 {
  font-size: 1.17em;
  margin: 1em 0;
  }
 
  h4 {
  font-size: 1em;
  margin: 1.33em 0;
  }
 
  h5 {
  font-size: 0.83em;
  margin: 1.67em 0;
  }
 
  h6 {
  font-size: 0.75em;
  margin: 2.33em 0;
  }
 
  /*
  * Addresses styling not present in IE 7/8/9, Safari 5, and Chrome.
  */
 
  abbr[title] {
  border-bottom: 1px dotted;
  }
 
  /*
  * Addresses style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
  */
 
  b,
  strong {
  font-weight: bold;
  }
 
  blockquote {
  margin: 1em 40px;
  }
 
  /*
  * Addresses styling not present in Safari 5 and Chrome.
  */
 
  dfn {
  font-style: italic;
  }
 
  /*
  * Addresses styling not present in IE 6/7/8/9.
  */
 
  mark {
  background: #ff0;
  color: #000;
  }
 
  /*
  * Addresses margins set differently in IE 6/7.
  */
 
  p,
  pre {
  margin: 1em 0;
  }
 
  /*
  * Corrects font family set oddly in IE 6, Safari 4/5, and Chrome.
  */
 
  code,
  kbd,
  pre,
  samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
  }
 
  /*
  * Improves readability of pre-formatted text in all browsers.
  */
 
  pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
  }
 
  /*
  * Addresses CSS quotes not supported in IE 6/7.
  */
 
  q {
  quotes: none;
  }
 
  /*
  * Addresses `quotes` property not supported in Safari 4.
  */
 
  q:before,
  q:after {
  content: '';
  content: none;
  }
 
  /*
  * Addresses inconsistent and variable font size in all browsers.
  */
 
  small {
  font-size: 80%;
  }
 
  /*
  * Prevents `sub` and `sup` affecting `line-height` in all browsers.
  */
 
  sub,
  sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  }
 
  sup {
  top: -0.5em;
  }
 
  sub {
  bottom: -0.25em;
  }
 
  /* ==========================================================================
  Lists
  ========================================================================== */
 
  /*
  * Addresses margins set differently in IE 6/7.
  */
 
  dl,
  menu,
  ol,
  ul {
  margin: 1em 0;
  }
 
  dd {
  margin: 0 0 0 40px;
  }
 
  /*
  * Addresses paddings set differently in IE 6/7.
  */
 
  menu,
  ol,
  ul {
  padding: 0 0 0 40px;
  }
 
  /*
  * Corrects list images handled incorrectly in IE 7.
  */
 
  nav ul,
  nav ol {
  list-style: none;
  list-style-image: none;
  }
 
  /* ==========================================================================
  Embedded content
  ========================================================================== */
 
  /*
  * 1. Removes border when inside `a` element in IE 6/7/8/9 and Firefox 3.
  * 2. Improves image quality when scaled in IE 7.
  */
 
  img {
  border: 0; /* 1 */
  -ms-interpolation-mode: bicubic; /* 2 */
  }
 
  /*
  * Corrects overflow displayed oddly in IE 9.
  */
 
  svg:not(:root) {
  overflow: hidden;
  }
 
  /* ==========================================================================
  Figures
  ========================================================================== */
 
  /*
  * Addresses margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
  */
 
  figure {
  margin: 0;
  }
 
  /* ==========================================================================
  Forms
  ========================================================================== */
 
  /*
  * Corrects margin displayed oddly in IE 6/7.
  */
 
  form {
  margin: 0;
  }
 
  /*
  * Define consistent border, margin, and padding.
  */
 
  fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
  }
 
  /*
  * 1. Corrects color not being inherited in IE 6/7/8/9.
  * 2. Corrects text not wrapping in Firefox 3.
  * 3. Corrects alignment displayed oddly in IE 6/7.
  */
 
  legend {
  border: 0; /* 1 */
  padding: 0;
  white-space: normal; /* 2 */
  *margin-left: -7px; /* 3 */
  }
 
  /*
  * 1. Corrects font size not being inherited in all browsers.
  * 2. Addresses margins set differently in IE 6/7, Firefox 3+, Safari 5,
  * and Chrome.
  * 3. Improves appearance and consistency in all browsers.
  */
 
  button,
  input,
  select,
  textarea {
  font-size: 100%; /* 1 */
  margin: 0; /* 2 */
  vertical-align: baseline; /* 3 */
  *vertical-align: middle; /* 3 */
  }
 
  /*
  * Addresses Firefox 3+ setting `line-height` on `input` using `!important` in
  * the UA stylesheet.
  */
 
  button,
  input {
  line-height: normal;
  }
 
  /*
  * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
  * and `video` controls.
  * 2. Corrects inability to style clickable `input` types in iOS.
  * 3. Improves usability and consistency of cursor style between image-type
  * `input` and others.
  * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
  * Known issue: inner spacing remains in IE 6.
  */
 
  button,
  html input[type="button"], /* 1 */
  input[type="reset"],
  input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
  *overflow: visible; /* 4 */
  }
 
  /*
  * Re-set default cursor for disabled elements.
  */
 
  button[disabled],
  input[disabled] {
  cursor: default;
  }
 
  /*
  * 1. Addresses box sizing set to content-box in IE 8/9.
  * 2. Removes excess padding in IE 8/9.
  * 3. Removes excess padding in IE 7.
  * Known issue: excess padding remains in IE 6.
  */
 
  input[type="checkbox"],
  input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
  *height: 13px; /* 3 */
  *width: 13px; /* 3 */
  }
 
  /*
  * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
  * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
  * (include `-moz` to future-proof).
  */
 
  input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
  }
 
  /*
  * Removes inner padding and search cancel button in Safari 5 and Chrome
  * on OS X.
  */
 
  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  }
 
  /*
  * Removes inner padding and border in Firefox 3+.
  */
 
  button::-moz-focus-inner,
  input::-moz-focus-inner {
  border: 0;
  padding: 0;
  }
 
  /*
  * 1. Removes default vertical scrollbar in IE 6/7/8/9.
  * 2. Improves readability and alignment in all browsers.
  */
 
  textarea {
  overflow: auto; /* 1 */
  vertical-align: top; /* 2 */
  }
 
  /* ==========================================================================
  Tables
  ========================================================================== */
 
  /*
  * Remove most spacing between table cells.
  */
 
  table {
  border-collapse: collapse;
  border-spacing: 0;
  }
 
file:b/db.sql (new)
  --
  -- PostgreSQL database dump
  --
 
  -- Dumped from database version 9.1.2
  -- Dumped by pg_dump version 9.1.2
  -- Started on 2012-10-21 18:20:20
 
  SET statement_timeout = 0;
  SET client_encoding = 'UTF8';
  SET standard_conforming_strings = on;
  SET check_function_bodies = false;
  SET client_min_messages = warning;
 
  --
  -- TOC entry 162 (class 3079 OID 11639)
  -- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
  --
 
  CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
 
 
  --
  -- TOC entry 1856 (class 0 OID 0)
  -- Dependencies: 162
  -- Name: EXTENSION plpgsql; Type: COMMENT; Schema: -; Owner:
  --
 
  COMMENT ON EXTENSION plpgsql IS 'PL/pgSQL procedural language';
 
 
  SET search_path = public, pg_catalog;
 
  SET default_tablespace = '';
 
  SET default_with_oids = false;
 
  --
  -- TOC entry 161 (class 1259 OID 62391)
  -- Dependencies: 1847 6
  -- Name: recordings; Type: TABLE; Schema: public; Owner: postgres; Tablespace:
  --
 
  CREATE TABLE recordings (
  filename text NOT NULL,
  tgid text,
  tgname text,
  sitename text,
  call_timestamp timestamp with time zone DEFAULT now(),
  length integer
  );
 
 
  ALTER TABLE public.recordings OWNER TO postgres;
 
  --
  -- TOC entry 1850 (class 0 OID 62391)
  -- Dependencies: 161
  -- Data for Name: recordings; Type: TABLE DATA; Schema: public; Owner: postgres
  --
 
  COPY recordings (filename, tgid, tgname, sitename, call_timestamp, length) FROM stdin;
  2012-09-30-1348998992.35-demo.wav 44028 CanberraBlackMnt 2012-09-30 19:56:35.268+10 254088
  2012-09-30-1348998995.69-demo.wav 44028 CanberraBlackMnt 2012-09-30 19:56:38.733+10 256136
  2012-09-30-1348998999.93-demo.wav 44028 CanberraBlackMnt 2012-09-30 19:56:45.913+10 587902
  2012-09-30-1348999006.13-demo.wav 44028 CanberraBlackMnt 2012-09-30 19:56:54.567+10 698570
  2012-09-30-1348999016.18-demo.wav 44028 CanberraBlackMnt 2012-09-30 19:57:00.87+10 481854
  2012-09-30-1348999732.25-demo.wav 44028 CanberraBlackMnt 2012-09-30 20:09:14.875+10 234110
  2012-10-01-1349049204.29-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 09:53:26.799+10 208816
  2012-10-01-1349049226.73-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 09:53:51.106+10 368776
  2012-10-01-1349049233.21-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 09:54:09.788+10 1388118
  2012-10-01-1349049249.98-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 09:54:17.872+10 663688
  2012-10-01-1349049264.24-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 09:54:30.636+10 538760
  2012-10-01-1349049270.91-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 09:54:33.547+10 223368
  2012-10-01-1349049332.89-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 09:55:35.416+10 211876
  2012-10-01-1349049500.43-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 09:58:24.513+10 342452
  2012-10-01-1349049504.69-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 09:58:26.976+10 194696
  2012-10-01-1349049507.06-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 09:58:29.354+10 194670
  2012-10-01-1349049509.44-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 09:58:34.742+10 396850
  2012-10-01-1349049779.09-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:03:04.97+10 492576
  2012-10-01-1349049786.9-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:03:12.308+10 452698
  2012-10-01-1349049792.46-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:03:25.6+10 1095920
  2012-10-01-1349049807.7-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:03:31.677+10 290840
  2012-10-01-1349049861.14-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:04:25.582+10 373762
  2012-10-01-1349049865.67-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:04:28.013+10 198792
  2012-10-01-1349049868.1-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:04:39.641+10 964280
  2012-10-01-1349049882.76-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 10:05:00.226+10 1464278
  2012-10-01-1349049900.31-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 10:05:10.501+10 856174
  2012-10-01-1349049931.19-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 10:05:33.892+10 194482
  2012-10-01-1349050089.47-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:08:12.583+10 258960
  2012-10-01-1349050092.74-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:08:14.999+10 190600
  2012-10-01-1349050095.28-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:08:20.876+10 469114
  2012-10-01-1349050101.01-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:08:25.274+10 360540
  2012-10-01-1349050181.52-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 10:09:44.577+10 257894
  2012-10-01-1349050559.5-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:16:02.327+10 234682
  2012-10-01-1349050565.45-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:16:09.695+10 358536
  2012-10-01-1349050569.81-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:16:13.005+10 270436
  2012-10-01-1349051158.46-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:26:02.008+10 297526
  2012-10-01-1349051163.5-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:26:18.926+10 1243718
  2012-10-01-1349051179.11-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:26:22.771+10 248802
  2012-10-01-1349051328.94-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 10:28:54.168+10 437650
  2012-10-01-1349051335.09-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 10:28:59.01+10 331850
  2012-10-01-1349051339.22-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 10:29:08.43+10 774258
  2012-10-01-1349051348.6-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 10:29:12.398+10 265692
  2012-10-01-1349051352.59-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 10:29:18.435+10 435010
  2012-10-01-1349051358.85-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 10:29:24.367+10 417732
  2012-10-01-1349051364.58-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 10:29:27.978+10 224558
  2012-10-01-1349051368.18-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 10:29:32.295+10 280020
  2012-10-01-1349051408.58-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 10:30:12.993+10 371612
  2012-10-01-1349051417.13-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 10:30:19.93+10 233608
  2012-10-01-1349051420.43-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 10:30:25.975+10 464998
  2012-10-01-1349051426.17-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 10:30:33.558+10 570774
  2012-10-01-1349051433.87-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 10:30:38.878+10 356748
  2012-10-01-1349051661.64-demo.wav 40092 PCL CNP CanberraMtAinsli 2012-10-01 10:34:25.365+10 311050
  2012-10-01-1349051687.5-demo.wav 40092 PCL CNP CanberraBlackMnt 2012-10-01 10:34:51.165+10 307336
  2012-10-01-1349051692.82-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:35:06.313+10 1132378
  2012-10-01-1349051706.91-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:35:11.48+10 383112
  2012-10-01-1349051712.82-demo.wav 40092 PCL CNP CanberraBlackMnt 2012-10-01 10:35:20.369+10 630920
  2012-10-01-1349051720.67-demo.wav 40092 PCL CNP CanberraBlackMnt 2012-10-01 10:35:26.837+10 518280
  2012-10-01-1349051727.62-demo.wav 40092 PCL CNP CanberraBlackMnt 2012-10-01 10:35:32.323+10 371982
  2012-10-01-1349051732.52-demo.wav 40092 PCL CNP CanberraBlackMnt 2012-10-01 10:35:39.776+10 563772
  2012-10-01-1349051739.99-demo.wav 40092 PCL CNP CanberraBlackMnt 2012-10-01 10:35:44.011+10 278058
  2012-10-01-1349052320.63-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:45:23.371+10 228088
  2012-10-01-1349052323.61-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:45:26.073+10 202888
  2012-10-01-1349052326.25-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:45:29.615+10 280712
  2012-10-01-1349052329.84-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:45:33.261+10 286856
  2012-10-01-1349052425.45-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:47:08.005+10 208910
  2012-10-01-1349052588.09-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:49:51.15+10 252292
  2012-10-01-1349052982.53-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 10:56:25.009+10 208422
  2012-10-01-1349053083.64-demo.wav 44028 CanberraBlackMnt 2012-10-01 10:58:06.325+10 224230
  2012-10-01-1349053087.85-demo.wav 44028 CanberraBlackMnt 2012-10-01 10:58:15.186+10 616584
  2012-10-01-1349053095.42-demo.wav 44028 CanberraBlackMnt 2012-10-01 10:58:21.824+10 538760
  2012-10-01-1349053101.98-demo.wav 44028 CanberraBlackMnt 2012-10-01 10:58:27.439+10 458888
  2012-10-01-1349053108.38-demo.wav 44028 CanberraBlackMnt 2012-10-01 10:58:32.606+10 290786
  2012-10-01-1349053112.84-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:58:38.485+10 471176
  2012-10-01-1349053118.6-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 10:58:40.803+10 182408
  2012-10-01-1349053121.57-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-01 10:59:08.084+10 2219500
  2012-10-01-1349053148.85-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 10:59:31.16+10 1873712
  2012-10-01-1349053194.38-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 10:59:57.401+10 249992
  2012-10-01-1349053229.68-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:00:32.22+10 211302
  2012-10-01-1349053232.42-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:00:34.938+10 211080
  2012-10-01-1349053235.13-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:00:49.239+10 1166940
  2012-10-01-1349053251.51-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:01:00.19+10 716456
  2012-10-01-1349053260.38-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:01:13.722+10 1062998
  2012-10-01-1349053273.91-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:01:20.854+10 521240
  2012-10-01-1349053281.11-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:01:28.628+10 631066
  2012-10-01-1349053289.38-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:01:32.989+10 300338
  2012-10-01-1349053293.72-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:01:47.926+10 1164052
  2012-10-01-1349053308.28-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:01:54.435+10 481286
  2012-10-01-1349053314.62-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:02:10.055+10 1243078
  2012-10-01-1349053330.23-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:02:18.207+10 617062
  2012-10-01-1349053338.39-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:02:24.235+10 437862
  2012-10-01-1349053344.43-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:02:27.792+10 227072
  2012-10-01-1349053378.45-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:03:00.957+10 208906
  2012-10-01-1349053381.98-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:03:10.89+10 741428
  2012-10-01-1349053391.12-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:03:16.936+10 485512
  2012-10-01-1349053397.63-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:03:22.497+10 378714
  2012-10-01-1349053442.93-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:04:06.485+10 300452
  2012-10-01-1349053447.24-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:04:11.091+10 323720
  2012-10-01-1349053452.12-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:04:36.892+10 2075594
  2012-10-01-1349053477.08-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:04:51.991+10 1199338
  2012-10-01-1349053492.21-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:05:06.299+10 1148336
  2012-10-01-1349053506.47-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:05:19.217+10 1007996
  2012-10-01-1349053519.45-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:05:34.935+10 1236016
  2012-10-01-1349053535.12-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:05:52.706+10 1414680
  2012-10-01-1349053553.0-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:05:57.772+10 347100
  2012-10-01-1349053558.49-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:06:06.996+10 687676
  2012-10-01-1349053567.17-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:06:15.592+10 646950
  2012-10-01-1349053575.78-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:06:19.957+10 289264
  2012-10-01-1349053580.14-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:06:23.365+10 206564
  2012-10-01-1349053785.31-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:09:47.819+10 209218
  2012-10-01-1349053903.59-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:11:46.162+10 214728
  2012-10-01-1349053907.37-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:11:54.624+10 606638
  2012-10-01-1349053914.77-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:12:03.686+10 749704
  2012-10-01-1349053923.93-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:12:11.842+10 665736
  2012-10-01-1349053959.78-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 11:12:42.289+10 209032
  2012-10-01-1349054048.61-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:14:11.87+10 270084
  2012-10-01-1349054053.38-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:14:19.771+10 534664
  2012-10-01-1349054059.95-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:14:25.471+10 460936
  2012-10-01-1349054065.66-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:14:35.964+10 806756
  2012-10-01-1349054076.78-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:14:42.058+10 438154
  2012-10-01-1349054174.16-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:16:17.712+10 298116
  2012-10-01-1349054179.25-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:16:39.385+10 1663806
  2012-10-01-1349054200.2-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:16:49.676+10 792848
  2012-10-01-1349054272.0-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:17:54.583+10 216380
  2012-10-01-1349054276.47-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:18:06.338+10 825480
  2012-10-01-1349054286.53-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:18:21.896+10 1289220
  2012-10-01-1349054302.08-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:18:28.465+10 527554
  2012-10-01-1349054308.7-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:18:32.185+10 273720
  2012-10-01-1349054312.35-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:18:37.09+10 370086
  2012-10-01-1349054365.83-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:19:28.394+10 211410
  2012-10-01-1349054435.92-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:20:38.677+10 231264
  2012-10-01-1349054439.91-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:20:43.627+10 311432
  2012-10-01-1349054445.03-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:21:03.791+10 1573892
  2012-10-01-1349054464.79-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:21:11.468+10 555534
  2012-10-01-1349054471.64-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:21:16.227+10 385160
  2012-10-01-1349054506.64-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:21:49.152+10 210136
  2012-10-01-1349054509.33-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:21:52.142+10 233608
  2012-10-01-1349054512.74-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:22:00.838+10 675976
  2012-10-01-1349054523.93-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:22:13.928+10 815424
  2012-10-01-1349054534.28-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:22:24.609+10 860902
  2012-10-01-1349054545.82-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:22:29.086+10 268420
  2012-10-01-1349054549.31-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:22:38.523+10 772188
  2012-10-01-1349054558.71-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:22:42.202+10 236470
  2012-10-01-1349054562.97-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:22:48.771+10 476580
  2012-10-01-1349054569.61-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:22:56.464+10 528910
  2012-10-01-1349054577.29-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:23:03.285+10 502540
  2012-10-01-1349054583.76-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:23:08.514+10 395400
  2012-10-01-1349054588.77-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:23:13.612+10 407688
  2012-10-01-1349054594.98-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:23:21.082+10 512136
  2012-10-01-1349054602.75-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:23:31.444+10 731246
  2012-10-01-1349054612.19-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:23:36.499+10 360278
  2012-10-01-1349054617.19-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:23:41.807+10 387196
  2012-10-01-1349054622.42-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:23:54.467+10 1011848
  2012-10-01-1349054634.71-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:23:56.893+10 180360
  2012-10-01-1349054637.63-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:24:12.616+10 1259490
  2012-10-01-1349054652.79-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:24:18.466+10 474092
  2012-10-01-1349054659.29-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:24:23.695+10 366308
  2012-10-01-1349054663.88-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:24:26.535+10 221320
  2012-10-01-1349054667.72-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:24:35.586+10 661640
  2012-10-01-1349054677.48-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:24:41.229+10 311108
  2012-10-01-1349054681.37-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:24:44.685+10 274568
  2012-10-01-1349054684.81-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:24:48.807+10 336008
  2012-10-01-1349054691.32-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:24:55.423+10 290732
  2012-10-01-1349054695.61-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:24:58.893+10 218670
  2012-10-01-1349054701.32-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:25:06.184+10 407552
  2012-10-01-1349054706.36-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:25:08.881+10 204906
  2012-10-01-1349054709.08-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:25:12.172+10 205534
  2012-10-01-1349054712.35-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:25:19.034+10 554106
  2012-10-01-1349054821.84-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:27:04.403+10 213796
  2012-10-01-1349054825.29-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:27:07.98+10 223368
  2012-10-01-1349054828.26-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:27:14.049+10 485512
  2012-10-01-1349054834.35-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:27:18.063+10 309384
  2012-10-01-1349054936.0-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:28:58.874+10 238184
  2012-10-01-1349054940.78-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:29:04.295+10 295048
  2012-10-01-1349054944.62-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:29:09.174+10 381064
  2012-10-01-1349054949.57-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:29:16.58+10 587792
  2012-10-01-1349054957.8-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:29:27.531+10 814364
  2012-10-01-1349054968.35-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:29:32.921+10 385160
  2012-10-01-1349054973.27-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 11:29:39.751+10 542856
  2012-10-01-1349054981.46-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 11:29:49.38+10 663688
  2012-10-01-1349054990.52-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 11:29:54.834+10 362632
  2012-10-01-1349054998.71-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 11:30:06.333+10 636652
  2012-10-01-1349055006.53-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 11:30:13.146+10 504120
  2012-10-01-1349055013.54-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 11:30:27.487+10 1170396
  2012-10-01-1349055029.7-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 11:30:35.772+10 509094
  2012-10-01-1349055038.66-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 11:30:44.688+10 502386
  2012-10-01-1349055044.85-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 11:30:47.238+10 198792
  2012-10-01-1349055048.48-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 11:30:52.7+10 335712
  2012-10-01-1349055209.56-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:33:32.286+10 223634
  2012-10-01-1349055212.63-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:33:37.318+10 393352
  2012-10-01-1349055217.73-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:33:43.564+10 487560
  2012-10-01-1349055223.76-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:33:48.122+10 363704
  2012-10-01-1349055228.28-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:33:53.983+10 469666
  2012-10-01-1349055345.9-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:35:49.471+10 294656
  2012-10-01-1349055399.92-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:36:43.261+10 279846
  2012-10-01-1349055422.28-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:37:05.117+10 235656
  2012-10-01-1349055448.11-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:37:30.987+10 239752
  2012-10-01-1349055452.58-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:37:48.238+10 1314952
  2012-10-01-1349055468.42-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:37:57.317+10 747640
  2012-10-01-1349055477.5-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:38:00.727+10 237402
  2012-10-01-1349055481.34-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:38:05.883+10 383092
  2012-10-01-1349055486.08-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:38:10.81+10 397232
  2012-10-01-1349055491.26-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:38:15.606+10 310856
  2012-10-01-1349055601.39-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:40:04.337+10 247196
  2012-10-01-1349055606.53-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:40:09.853+10 275554
  2012-10-01-1349055610.06-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:40:14.059+10 333960
  2012-10-01-1349055614.89-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:40:18.824+10 329864
  2012-10-01-1349055619.26-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:40:22.519+10 272520
  2012-10-01-1349055702.82-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:41:45.664+10 234078
  2012-10-01-1349055706.93-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:41:51.279+10 357196
  2012-10-01-1349055711.75-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:41:56.41+10 391304
  2012-10-01-1349055717.03-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:42:01.796+10 395852
  2012-10-01-1349055776.42-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:43:00.319+10 324158
  2012-10-01-1349055781.05-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:43:04.679+10 303240
  2012-10-01-1349055785.08-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:43:11.732+10 559236
  2012-10-01-1349055897.19-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-01 11:44:59.686+10 208760
  2012-10-01-1349055926.58-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-01 11:45:29.093+10 209506
  2012-10-01-1349055958.61-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-01 11:46:02.738+10 342430
  2012-10-01-1349056074.7-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 11:48:02.252+10 634454
  2012-10-01-1349056169.04-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:49:31.545+10 208840
  2012-10-01-1349056174.0-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:49:39.778+10 483904
  2012-10-01-1349056181.22-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:49:55.677+10 1214600
  2012-10-01-1349056195.95-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:49:59.847+10 323720
  2012-10-01-1349056200.05-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:50:16.066+10 1282630
  2012-10-01-1349056216.89-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:50:20.477+10 300148
  2012-10-01-1349056220.75-demo.wav 44028 CanberraBlackMnt 2012-10-01 11:50:26.508+10 483464
  2012-10-01-1349056227.26-demo.wav 44028 CanberraBlackMnt 2012-10-01 11:50:33.017+10 477320
  2012-10-01-1349056234.42-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:50:42.231+10 653480
  2012-10-01-1349056242.42-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:50:46.555+10 346248
  2012-10-01-1349056246.76-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:50:49.061+10 188552
  2012-10-01-1349056251.53-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:50:59.992+10 710792
  2012-10-01-1349056262.09-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:51:07.701+10 417782
  2012-10-01-1349056267.92-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:51:12.081+10 284970
  2012-10-01-1349056272.32-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 11:51:22.905+10 886918
  2012-10-01-1349056285.13-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 11:51:28.151+10 252040
  2012-10-01-1349056288.34-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 11:51:37.188+10 723324
  2012-10-01-1349056297.92-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 11:51:46.385+10 703478
  2012-10-01-1349056330.97-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:52:14.563+10 301192
  2012-10-01-1349056336.15-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:52:20.752+10 384366
  2012-10-01-1349056341.24-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:52:26.87+10 473224
  2012-10-01-1349056347.5-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:52:33.259+10 483464
  2012-10-01-1349056353.45-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:52:36.216+10 227464
  2012-10-01-1349056356.69-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 11:52:41.871+10 434312
  2012-10-01-1349056364.74-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:52:58.549+10 1157636
  2012-10-01-1349056379.44-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:53:06.141+10 557938
  2012-10-01-1349056386.53-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:53:17.059+10 878728
  2012-10-01-1349056397.52-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:53:30.17+10 1058952
  2012-10-01-1349056411.08-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:53:34.065+10 249992
  2012-10-01-1349056414.47-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:53:38.393+10 328230
  2012-10-01-1349056418.84-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:53:43.661+10 405640
  2012-10-01-1349056423.81-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:53:46.853+10 256136
  2012-10-01-1349056427.7-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:53:51.214+10 293000
  2012-10-01-1349056432.34-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:53:57.734+10 450682
  2012-10-01-1349056438.25-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:54:01.891+10 303874
  2012-10-01-1349056446.1-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:54:12.57+10 544122
  2012-10-01-1349056453.49-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:54:18.439+10 414004
  2012-10-01-1349056488.89-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:54:52.26+10 281516
  2012-10-01-1349056492.46-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:54:55.083+10 221320
  2012-10-01-1349056496.26-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:55:04.238+10 669832
  2012-10-01-1349056504.4-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:55:09.436+10 421880
  2012-10-01-1349056548.66-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:55:51.888+10 269972
  2012-10-01-1349056552.12-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:55:54.303+10 182408
  2012-10-01-1349056554.42-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:55:56.684+10 186504
  2012-10-01-1349056558.42-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:56:08.125+10 811088
  2012-10-01-1349056568.45-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:56:17.338+10 742338
  2012-10-01-1349056578.89-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:56:26.515+10 621072
  2012-10-01-1349056586.72-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:56:30.434+10 244848
  2012-10-01-1349056590.63-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 11:56:37.535+10 547922
  2012-10-01-1349056719.46-demo.wav 10019 ESO 10 CanberraMtAinsli 2012-10-01 11:58:41.99+10 211308
  2012-10-01-1349056723.48-demo.wav 10019 ESO 10 CanberraMtAinsli 2012-10-01 11:58:47.581+10 338908
  2012-10-01-1349056727.78-demo.wav 10019 ESO 10 CanberraMtAinsli 2012-10-01 11:58:55.307+10 632968
  2012-10-01-1349056735.47-demo.wav 10019 ESO 10 CanberraMtAinsli 2012-10-01 11:59:01.743+10 528446
  2012-10-01-1349056927.6-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:02:10.122+10 209538
  2012-10-01-1349056953.92-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:02:37.138+10 270472
  2012-10-01-1349056958.34-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:02:42.187+10 321672
  2012-10-01-1349056962.37-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:02:50.504+10 683642
  2012-10-01-1349056970.77-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:02:57.852+10 594056
  2012-10-01-1349056980.62-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:03:10.242+10 807326
  2012-10-01-1349056991.54-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:03:24.589+10 1092296
  2012-10-01-1349057004.88-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:03:27.331+10 202888
  2012-10-01-1349057007.53-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:03:36.695+10 767384
  2012-10-01-1349057016.85-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:03:42.449+10 467832
  2012-10-01-1349057022.65-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:03:47.183+10 322002
  2012-10-01-1349057027.44-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:03:51.102+10 249250
  2012-10-01-1349057129.77-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:05:33.833+10 342022
  2012-10-01-1349057191.67-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:06:35.015+10 279932
  2012-10-01-1349057197.04-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:06:40.342+10 276616
  2012-10-01-1349057200.93-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:06:49.331+10 706646
  2012-10-01-1349057209.53-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:06:55.566+10 449656
  2012-10-01-1349057215.82-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:07:02.772+10 540132
  2012-10-01-1349057224.78-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:07:13.035+10 632814
  2012-10-01-1349057233.73-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:07:19.12+10 417804
  2012-10-01-1349057239.77-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:07:26.428+10 554744
  2012-10-01-1349057247.23-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:07:31.176+10 327816
  2012-10-01-1349057253.84-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:07:52.238+10 1548424
  2012-10-01-1349057273.22-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:07:57.595+10 366728
  2012-10-01-1349057279.05-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:08:04.536+10 456028
  2012-10-01-1349057285.44-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:08:11.057+10 469368
  2012-10-01-1349057291.32-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:08:19.47+10 686216
  2012-10-01-1349057300.55-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:08:25.044+10 355930
  2012-10-01-1349057305.92-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:08:34.093+10 683950
  2012-10-01-1349057393.81-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:09:56.796+10 249268
  2012-10-01-1349057397.71-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:10:01.766+10 336564
  2012-10-01-1349057402.18-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:10:08.018+10 491656
  2012-10-01-1349057408.44-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:10:11.833+10 282756
  2012-10-01-1349057412.25-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:10:15.328+10 258184
  2012-10-01-1349057519.01-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:12:03.258+10 355496
  2012-10-01-1349057563.91-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:12:47.976+10 337224
  2012-10-01-1349057569.35-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:12:53.702+10 364680
  2012-10-01-1349057574.27-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:12:58.91+10 389256
  2012-10-01-1349057617.66-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 12:13:45.888+10 690422
  2012-10-01-1349057735.66-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:15:38.817+10 264430
  2012-10-01-1349057739.36-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:15:43.312+10 331912
  2012-10-01-1349057744.03-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:15:47.742+10 311432
  2012-10-01-1349057748.84-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:15:56.331+10 626564
  2012-10-01-1349058442.91-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:27:28.44+10 460274
  2012-10-01-1349058471.87-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:27:56.975+10 424072
  2012-10-01-1349058480.28-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:28:02.951+10 217224
  2012-10-01-1349058483.1-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:28:10.931+10 592714
  2012-10-01-1349058491.12-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:28:26.554+10 1238134
  2012-10-01-1349058506.74-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:28:45.484+10 1511528
  2012-10-01-1349058525.66-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:28:50.242+10 319848
  2012-10-01-1349058910.35-demo.wav 44028 CanberraBlackMnt 2012-10-01 12:35:13.462+10 259024
  2012-10-01-1349058915.75-demo.wav 44028 CanberraBlackMnt 2012-10-01 12:35:18.293+10 213128
  2012-10-01-1349058918.57-demo.wav 44028 CanberraBlackMnt 2012-10-01 12:35:24.596+10 505992
  2012-10-01-1349058924.8-demo.wav 44028 CanberraBlackMnt 2012-10-01 12:35:36.961+10 1011150
  2012-10-01-1349058937.16-demo.wav 44028 CanberraBlackMnt 2012-10-01 12:35:41.887+10 345386
  2012-10-01-1349058942.31-demo.wav 44028 CanberraBlackMnt 2012-10-01 12:35:49.549+10 545038
  2012-10-01-1349058951.68-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-01 12:36:11.527+10 1663284
  2012-10-01-1349059035.35-demo.wav 44028 CanberraBlackMnt 2012-10-01 12:37:18.789+10 280130
  2012-10-01-1349059039.23-demo.wav 44028 CanberraBlackMnt 2012-10-01 12:37:21.732+10 211080
  2012-10-01-1349059042.4-demo.wav 44028 CanberraBlackMnt 2012-10-01 12:37:31.473+10 764040
  2012-10-01-1349059052.2-demo.wav 44028 CanberraBlackMnt 2012-10-01 12:37:38.687+10 510406
  2012-10-01-1349059061.93-demo.wav 44028 CanberraBlackMnt 2012-10-01 12:37:49.132+10 544806
  2012-10-01-1349059069.39-demo.wav 44028 CanberraBlackMnt 2012-10-01 12:37:54.571+10 416704
  2012-10-01-1349059075.27-demo.wav 44028 CanberraBlackMnt 2012-10-01 12:37:58.81+10 227344
  2012-10-01-1349059079.63-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:38:07.653+10 666364
  2012-10-01-1349059087.86-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:38:13.071+10 438408
  2012-10-01-1349059093.49-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:38:17.796+10 362632
  2012-10-01-1349059098.01-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:38:22.114+10 344200
  2012-10-01-1349059102.48-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:38:41.655+10 1609864
  2012-10-01-1349059123.26-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:38:55.15+10 993728
  2012-10-01-1349059136.17-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:39:07.562+10 954216
  2012-10-01-1349059148.52-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:39:13.44+10 411624
  2012-10-01-1349059154.27-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:39:32.021+10 1481848
  2012-10-01-1349059172.21-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:39:36.932+10 348494
  2012-10-01-1349059177.28-demo.wav 44028 CanberraMtAinsli 2012-10-01 12:39:47.281+10 838788
  2012-10-01-1349059187.47-demo.wav 44028 CanberraMtAinsli 2012-10-01 12:40:02.46+10 1229664
  2012-10-01-1349059202.67-demo.wav 44028 CanberraMtAinsli 2012-10-01 12:40:12.186+10 765156
  2012-10-01-1349059212.64-demo.wav 44028 CanberraMtAinsli 2012-10-01 12:40:16.217+10 296754
  2012-10-01-1349059217.04-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:40:26.382+10 784520
  2012-10-01-1349059226.57-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:40:37.57+10 915472
  2012-10-01-1349059237.73-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:40:40.768+10 228468
  2012-10-01-1349059469.52-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:44:32.733+10 267698
  2012-10-01-1349059472.91-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:44:48.389+10 1266876
  2012-10-01-1349059572.74-demo.wav 10301 CanberraMtAinsli 2012-10-01 12:46:17.611+10 408684
  2012-10-01-1349059577.79-demo.wav 10301 CanberraMtAinsli 2012-10-01 12:46:20.476+10 225416
  2012-10-01-1349059580.94-demo.wav 10301 CanberraMtAinsli 2012-10-01 12:46:29.289+10 700524
  2012-10-01-1349059589.5-demo.wav 10301 CanberraMtAinsli 2012-10-01 12:46:36.056+10 553096
  2012-10-01-1349059596.86-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:46:55.554+10 1565640
  2012-10-01-1349059616.51-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:47:09.725+10 1107882
  2012-10-01-1349059630.87-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:47:14.827+10 327730
  2012-10-01-1349059635.04-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 12:47:21.535+10 544904
  2012-10-01-1349059757.9-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:49:20.413+10 209472
  2012-10-01-1349059764.11-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:49:35.689+10 966792
  2012-10-01-1349059776.77-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:49:39.803+10 254088
  2012-10-01-1349059780.8-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:49:45.25+10 374920
  2012-10-01-1349059787.33-demo.wav 10301 CanberraMtAinsli 2012-10-01 12:49:55.087+10 651400
  2012-10-01-1349059796.6-demo.wav 10301 CanberraMtAinsli 2012-10-01 12:49:59.374+10 233608
  2012-10-01-1349059800.23-demo.wav 10301 CanberraMtAinsli 2012-10-01 12:50:03.036+10 233608
  2012-10-01-1349059861.23-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:51:03.796+10 212596
  2012-10-01-1349059863.98-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:51:06.85+10 233608
  2012-10-01-1349059867.06-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:51:10.124+10 256136
  2012-10-01-1349059871.31-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:51:18.753+10 624776
  2012-10-01-1349059879.13-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:51:23.59+10 370824
  2012-10-01-1349059883.87-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:51:27.266+10 282760
  2012-10-01-1349060079.55-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:54:44.988+10 456822
  2012-10-01-1349060086.27-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:54:50.538+10 358536
  2012-10-01-1349060091.02-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:55:02.208+10 925116
  2012-10-01-1349060102.84-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:55:11.179+10 680672
  2012-10-01-1349060156.8-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:56:00.362+10 295874
  2012-10-01-1349060161.9-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:56:09.59+10 645256
  2012-10-01-1349060170.39-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:56:17.94+10 577360
  2012-10-01-1349060287.48-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:58:10.046+10 213172
  2012-10-01-1349060290.49-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:58:14.715+10 350344
  2012-10-01-1349060295.56-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:58:23.667+10 682120
  2012-10-01-1349060304.03-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 12:58:31.455+10 576678
  2012-10-01-1349060712.54-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-01 13:05:16.167+10 302064
  2012-10-01-1349060716.4-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-01 13:05:22.02+10 471176
  2012-10-01-1349060761.76-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:06:04.277+10 210468
  2012-10-01-1349060764.57-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:06:07.458+10 241800
  2012-10-01-1349060767.57-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:06:14.441+10 575624
  2012-10-01-1349060775.87-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:06:22.256+10 500334
  2012-10-01-1349060901.07-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-01 13:08:25.06+10 330604
  2012-10-01-1349060906.22-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-01 13:08:30.459+10 354440
  2012-10-01-1349060910.65-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-01 13:08:35.929+10 438408
  2012-10-01-1349061214.36-demo.wav 44028 CanberraMtAinsli 2012-10-01 13:13:36.915+10 209832
  2012-10-01-1349061486.79-demo.wav 44028 CanberraMtAinsli 2012-10-01 13:18:10.999+10 348712
  2012-10-01-1349061492.07-demo.wav 44028 CanberraMtAinsli 2012-10-01 13:18:24.803+10 1066686
  2012-10-01-1349061505.13-demo.wav 44028 CanberraMtAinsli 2012-10-01 13:18:35.153+10 839816
  2012-10-01-1349061515.36-demo.wav 44028 CanberraMtAinsli 2012-10-01 13:18:40.08+10 372472
  2012-10-01-1349061520.28-demo.wav 44028 CanberraMtAinsli 2012-10-01 13:18:43.855+10 268614
  2012-10-01-1349061524.73-demo.wav 44028 CanberraMtAinsli 2012-10-01 13:18:48.397+10 243142
  2012-10-01-1349061788.95-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:23:11.413+10 208810
  2012-10-01-1349061795.36-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:23:22.77+10 622728
  2012-10-01-1349061803.15-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:23:26.993+10 321672
  2012-10-01-1349061807.96-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:23:32.191+10 354440
  2012-10-01-1349061813.04-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:23:44.939+10 999962
  2012-10-01-1349061825.88-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:24:04.261+10 1542376
  2012-10-01-1349061845.26-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:24:10.356+10 420518
  2012-10-01-1349061853.0-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:24:16.466+10 293000
  2012-10-01-1349061857.83-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:24:21.521+10 311424
  2012-10-01-1349061863.27-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:24:27.087+10 314936
  2012-10-01-1349061867.25-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:24:30.175+10 196572
  2012-10-01-1349061916.88-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:25:22.553+10 473014
  2012-10-01-1349061923.59-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:25:26.311+10 227464
  2012-10-01-1349061928.05-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:25:40.914+10 1075404
  2012-10-01-1349061941.72-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:25:44.489+10 231560
  2012-10-01-1349061944.69-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:25:47.174+10 206984
  2012-10-01-1349061947.99-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:25:54.768+10 567432
  2012-10-01-1349061954.94-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:26:05.085+10 788552
  2012-10-01-1349061965.25-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:26:16.824+10 908658
  2012-10-01-1349061977.15-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:26:22.892+10 417858
  2012-10-01-1349061983.14-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:26:30.762+10 639728
  2012-10-01-1349061991.76-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:26:39.174+10 620680
  2012-10-01-1349061999.86-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:26:44.427+10 382156
  2012-10-01-1349062005.19-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:26:49.048+10 322902
  2012-10-01-1349062010.74-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:27:01.89+10 932322
  2012-10-01-1349062022.08-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:27:04.269+10 180360
  2012-10-01-1349062024.76-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:27:08.316+10 301180
  2012-10-01-1349062028.47-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:27:13.193+10 395348
  2012-10-01-1349062066.04-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:27:49.334+10 276058
  2012-10-01-1349062069.53-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:27:52.132+10 219272
  2012-10-01-1349062073.14-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:27:56.722+10 297096
  2012-10-01-1349062102.05-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 13:28:24.841+10 233608
  2012-10-01-1349062127.34-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:28:50.609+10 274568
  2012-10-01-1349062131.6-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:28:55.44+10 323720
  2012-10-01-1349062135.81-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:29:00.398+10 385160
  2012-10-01-1349062142.57-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 13:29:07.941+10 450696
  2012-10-01-1349062148.27-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 13:29:14.427+10 514184
  2012-10-01-1349062155.0-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 13:29:19.935+10 357152
  2012-10-01-1349062160.56-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 13:29:24.602+10 306618
  2012-10-01-1349062165.33-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:29:31.48+10 511594
  2012-10-01-1349062172.26-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:29:35.367+10 262280
  2012-10-01-1349062175.56-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:29:38.565+10 252040
  2012-10-01-1349062178.75-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:29:48.387+10 790672
  2012-10-01-1349062188.75-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:29:51.266+10 200344
  2012-10-01-1349062192.28-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:30:13.667+10 1793836
  2012-10-01-1349062215.19-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:30:20.576+10 452744
  2012-10-01-1349062220.94-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:30:41.195+10 1353040
  2012-10-01-1349062241.41-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:30:43.882+10 209032
  2012-10-01-1349062246.11-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:30:57.974+10 993590
  2012-10-01-1349062258.82-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:31:04.74+10 458766
  2012-10-01-1349062264.88-demo.wav 44028 CanberraBlackMnt 2012-10-01 13:31:09.458+10 359722
  2012-10-01-1349062333.26-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:32:15.977+10 226978
  2012-10-01-1349062336.33-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:32:18.807+10 206984
  2012-10-01-1349062339.53-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:32:23.996+10 370824
  2012-10-01-1349062344.19-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:32:32.641+10 676840
  2012-10-01-1349062353.46-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:32:38.844+10 438904
  2012-10-01-1349062454.05-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:34:19.103+10 398808
  2012-10-01-1349062459.33-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:34:30.492+10 931298
  2012-10-01-1349062470.92-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:34:37.113+10 465550
  2012-10-01-1349062689.17-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:38:11.726+10 213556
  2012-10-01-1349062691.92-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:38:15.453+10 297096
  2012-10-01-1349062695.91-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:38:22.305+10 538760
  2012-10-01-1349062703.48-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:38:44.134+10 1730798
  2012-10-01-1349062724.25-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:38:46.847+10 219272
  2012-10-01-1349062727.45-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:38:53.385+10 497800
  2012-10-01-1349062733.94-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:39:04.414+10 828452
  2012-10-01-1349062745.25-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:39:14.533+10 777180
  2012-10-01-1349062755.9-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:39:19.074+10 266376
  2012-10-01-1349062847.2-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:40:49.925+10 223282
  2012-10-01-1349062850.28-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:40:53.914+10 303240
  2012-10-01-1349062854.05-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:40:58.568+10 381064
  2012-10-01-1349062859.16-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:41:09.349+10 823346
  2012-10-01-1349062870.2-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:41:19.561+10 784060
  2012-10-01-1349062880.65-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:41:23.736+10 258184
  2012-10-01-1349062884.42-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:41:28.085+10 307336
  2012-10-01-1349062888.45-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:41:30.9+10 204936
  2012-10-01-1349062891.31-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:41:34.7+10 282760
  2012-10-01-1349062894.9-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:41:37.435+10 207504
  2012-10-01-1349062897.94-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:41:42.265+10 308322
  2012-10-01-1349062902.49-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:41:45.956+10 229536
  2012-10-01-1349062906.13-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:41:51.954+10 458114
  2012-10-01-1349062964.42-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:42:47.826+10 287248
  2012-10-01-1349062967.97-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:42:50.45+10 206984
  2012-10-01-1349062971.27-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:42:59.016+10 645256
  2012-10-01-1349062979.31-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:43:13.715+10 1208456
  2012-10-01-1349062994.84-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:43:19.361+10 379016
  2012-10-01-1349062999.57-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:43:27.752+10 685220
  2012-10-01-1349063008.96-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:43:36.399+10 620744
  2012-10-01-1349063016.7-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:43:41.108+10 370824
  2012-10-01-1349063100.99-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:45:07.572+10 550632
  2012-10-01-1349063107.86-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:45:10.799+10 241800
  2012-10-01-1349063111.06-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:45:26.617+10 1294862
  2012-10-01-1349063127.52-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:45:34.598+10 591890
  2012-10-01-1349063135.95-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:45:39.906+10 333606
  2012-10-01-1349063140.22-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:45:44.381+10 350344
  2012-10-01-1349063144.57-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:45:47.468+10 209104
  2012-10-01-1349063147.77-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:45:51.238+10 226848
  2012-10-01-1349063152.15-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:46:08.048+10 1333268
  2012-10-01-1349063168.21-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:46:11.016+10 237704
  2012-10-01-1349063171.28-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:46:14.7+10 287538
  2012-10-01-1349063175.15-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:46:22.678+10 622728
  2012-10-01-1349063183.48-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:46:25.999+10 211080
  2012-10-01-1349063186.2-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:46:29.581+10 284808
  2012-10-01-1349063190.22-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:46:45.175+10 1255560
  2012-10-01-1349063205.32-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:46:54.666+10 784518
  2012-10-01-1349063215.01-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:47:03.216+10 672630
  2012-10-01-1349063341.62-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:49:06.342+10 397230
  2012-10-01-1349063346.7-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:49:11.347+10 389256
  2012-10-01-1349063351.89-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:49:17.538+10 475272
  2012-10-01-1349063358.02-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:49:23.057+10 359558
  2012-10-01-1349063363.9-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:49:29.869+10 497442
  2012-10-01-1349063370.52-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:49:38.241+10 633692
  2012-10-01-1349063378.38-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:49:41.534+10 202964
  2012-10-01-1349063381.83-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 13:49:55.497+10 1149064
  2012-10-01-1349063397.07-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:50:02.542+10 459456
  2012-10-01-1349063402.92-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:50:08.109+10 436360
  2012-10-01-1349063409.12-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:50:14.193+10 424072
  2012-10-01-1349063416.31-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:50:20.233+10 327816
  2012-10-01-1349063420.95-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:50:33.282+10 1032328
  2012-10-01-1349063433.45-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:50:36.112+10 223368
  2012-10-01-1349063436.77-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:50:45.511+10 728834
  2012-10-01-1349063446.01-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:50:54.542+10 687870
  2012-10-01-1349063623.36-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 13:53:49.668+10 526824
  2012-10-01-1349063630.1-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:53:57.102+10 585864
  2012-10-01-1349063637.28-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:53:59.894+10 221320
  2012-10-01-1349063640.09-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:54:11.569+10 915490
  2012-10-01-1349063651.72-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:54:19.485+10 591602
  2012-10-01-1349063660.27-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:54:32.385+10 1016228
  2012-10-01-1349063672.63-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:54:35.078+10 204936
  2012-10-01-1349063675.88-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:54:42.363+10 544904
  2012-10-01-1349063683.04-demo.wav 10123 GOULB1 CanberraMtAinsli 2012-10-01 13:54:48.977+10 497762
  2012-10-01-1349063779.65-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 13:56:23.183+10 294676
  2012-10-01-1349063784.16-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 13:56:30.216+10 506402
  2012-10-01-1349063790.43-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 13:56:34.973+10 383112
  2012-10-01-1349063796.69-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 13:56:41.146+10 374920
  2012-10-01-1349063802.49-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 13:56:47.311+10 370274
  2012-10-01-1349063807.97-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 13:56:53.211+10 435508
  2012-10-01-1349063816.88-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 13:56:59.96+10 256136
  2012-10-01-1349064151.97-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:02:35.531+10 298506
  2012-10-01-1349064156.72-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:02:40.618+10 324392
  2012-10-01-1349064161.0-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:02:47.398+10 534664
  2012-10-01-1349064167.98-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:03:09.984+10 1831908
  2012-10-01-1349064190.13-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:03:20.651+10 820074
  2012-10-01-1349064274.49-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:04:37.477+10 248332
  2012-10-01-1349064278.75-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 14:04:44.554+10 484490
  2012-10-01-1349064284.68-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 14:04:48.824+10 344200
  2012-10-01-1349064289.69-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 14:04:53.287+10 301192
  2012-10-01-1349064293.82-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 14:04:57.469+10 307024
  2012-10-01-1349064299.38-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 14:05:03.062+10 274952
  2012-10-01-1349064303.22-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 14:05:07.86+10 325596
  2012-10-01-1349064452.76-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:07:36.715+10 330622
  2012-10-01-1349064496.9-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:08:20.111+10 267388
  2012-10-01-1349064501.1-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:08:28.732+10 641160
  2012-10-01-1349064509.04-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:08:34.236+10 436268
  2012-10-01-1349064514.46-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:08:38.218+10 282788
  2012-10-01-1349064518.49-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:09:03.411+10 2032046
  2012-10-01-1349064543.68-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:09:06.211+10 191586
  2012-10-01-1349064969.22-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 14:16:12.476+10 272110
  2012-10-01-1349064974.22-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:16:19.03+10 403592
  2012-10-01-1349064979.22-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:16:22.268+10 252040
  2012-10-01-1349064982.65-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:16:25.674+10 252040
  2012-10-01-1349064986.26-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:16:46.447+10 1693832
  2012-10-01-1349065008.69-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:17:03.234+10 1222792
  2012-10-01-1349065024.02-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:17:07.612+10 299144
  2012-10-01-1349065027.96-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:17:12.005+10 338056
  2012-10-01-1349065360.81-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:22:46.265+10 455862
  2012-10-01-1349065367.17-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:22:49.688+10 213102
  2012-10-01-1349065369.95-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:23:07.124+10 1438484
  2012-10-01-1349065387.33-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:23:24.958+10 1412854
  2012-10-01-1349065405.16-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:23:28.366+10 233950
  2012-10-01-1349065999.04-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:33:21.883+10 240692
  2012-10-01-1349066003.42-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:33:27.033+10 305288
  2012-10-01-1349066007.51-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:33:31.32+10 321672
  2012-10-01-1349066011.41-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:33:34.295+10 245870
  2012-10-01-1349066015.28-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:33:40.756+10 450654
  2012-10-01-1349066021.23-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:33:44.435+10 270088
  2012-10-01-1349066024.56-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:33:47.043+10 191038
  2012-10-01-1349066028.0-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:33:56.273+10 663414
  2012-10-01-1349066036.47-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:34:02.303+10 439306
  2012-10-01-1349066042.39-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:34:10.733+10 696308
  2012-10-01-1349066051.94-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:34:20.49+10 703598
  2012-10-01-1349066061.53-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:34:32.519+10 916812
  2012-10-01-1349066073.18-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:34:43.428+10 842782
  2012-10-01-1349066084.46-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:34:48.85+10 370800
  2012-10-01-1349066276.25-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:37:59.103+10 240024
  2012-10-01-1349066279.91-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:38:02.557+10 225416
  2012-10-01-1349066282.64-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:38:14.411+10 987184
  2012-10-01-1349066294.5-demo.wav 44028 CanberraMtAinsli 2012-10-01 14:38:19.369+10 411546
  2012-10-01-1349066467.41-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 14:41:11.577+10 350040
  2012-10-01-1349066472.52-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 14:41:17.752+10 440456
  2012-10-01-1349066478.77-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 14:41:23.318+10 383112
  2012-10-01-1349066483.4-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 14:41:30.556+10 600152
  2012-10-01-1349066490.66-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 14:41:34.01+10 282682
  2012-10-01-1349066495.58-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 14:41:40.68+10 386096
  2012-10-01-1349066654.0-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:44:17.276+10 276468
  2012-10-01-1349066658.94-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:44:23.579+10 388518
  2012-10-01-1349066663.66-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:44:26.219+10 217196
  2012-10-01-1349066666.3-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:44:29.466+10 266350
  2012-10-01-1349066670.96-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:44:41.175+10 839330
  2012-10-01-1349066681.33-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:44:44.502+10 268052
  2012-10-01-1349066684.59-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:44:47.509+10 241804
  2012-10-01-1349066687.81-demo.wav 44028 CanberraBlackMnt 2012-10-01 14:44:50.628+10 234188
  2012-10-01-1349067069.83-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:51:12.316+10 209738
  2012-10-01-1349067389.37-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:56:32.859+10 294758
  2012-10-01-1349067394.52-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:56:48.98+10 1210672
  2012-10-01-1349067410.73-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 14:56:54.882+10 350344
  2012-10-01-1349067955.96-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:05:58.427+10 208376
  2012-10-01-1349067960.11-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:06:03.721+10 305288
  2012-10-01-1349067964.33-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:06:11.796+10 626824
  2012-10-01-1349067973.4-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:06:18.528+10 432264
  2012-10-01-1349067980.29-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:06:30.212+10 818630
  2012-10-01-1349067990.87-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:06:34.875+10 338000
  2012-10-01-1349068029.13-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:07:15.387+10 525352
  2012-10-01-1349068035.86-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:07:19.423+10 301192
  2012-10-01-1349068039.52-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:07:22.892+10 284808
  2012-10-01-1349068081.97-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:08:04.46+10 209752
  2012-10-01-1349068084.54-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:08:08.097+10 301192
  2012-10-01-1349068093.08-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:08:16.011+10 247942
  2012-10-01-1349068096.46-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:08:20.905+10 374618
  2012-10-01-1349068100.98-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:08:27.186+10 484838
  2012-10-01-1349068107.27-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:08:35.599+10 657172
  2012-10-01-1349068115.68-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:08:44.051+10 638426
  2012-10-01-1349068124.13-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:08:53.24+10 699688
  2012-10-01-1349068133.34-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:09:08.914+10 1302896
  2012-10-01-1349068151.36-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:09:14.576+10 272520
  2012-10-01-1349068154.72-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:09:21.655+10 576696
  2012-10-01-1349068162.54-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:09:27.541+10 420460
  2012-10-01-1349068167.62-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:09:30.276+10 225416
  2012-10-01-1349068170.35-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:09:35.768+10 456192
  2012-10-01-1349068175.96-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:09:40.111+10 298688
  2012-10-01-1349068180.65-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:09:48.867+10 690146
  2012-10-01-1349068188.95-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:09:52.736+10 319624
  2012-10-01-1349068192.81-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:10:00.713+10 658210
  2012-10-01-1349068200.98-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:10:21.008+10 1644990
  2012-10-01-1349068221.18-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:10:31.093+10 776646
  2012-10-01-1349068231.21-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:10:37.018+10 428414
  2012-10-01-1349068237.25-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:10:46.78+10 750052
  2012-10-01-1349068377.89-demo.wav 44028 CanberraMtAinsli 2012-10-01 15:13:02.311+10 369212
  2012-10-01-1349068383.56-demo.wav 44028 CanberraMtAinsli 2012-10-01 15:13:08.036+10 373368
  2012-10-01-1349068388.19-demo.wav 44028 CanberraMtAinsli 2012-10-01 15:13:14.115+10 495752
  2012-10-01-1349068395.96-demo.wav 44028 CanberraMtAinsli 2012-10-01 15:13:22.306+10 475724
  2012-10-01-1349068402.56-demo.wav 44028 CanberraMtAinsli 2012-10-01 15:13:28+10 413134
  2012-10-01-1349068408.16-demo.wav 44028 CanberraMtAinsli 2012-10-01 15:13:31.31+10 193464
  2012-10-01-1349068411.95-demo.wav 44028 CanberraMtAinsli 2012-10-01 15:13:35.022+10 243046
  2012-10-01-1349068454.62-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:14:19.28+10 388036
  2012-10-01-1349068460.79-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:14:25.21+10 370824
  2012-10-01-1349068466.42-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:14:30.638+10 352392
  2012-10-01-1349068470.79-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:14:34.169+10 282760
  2012-10-01-1349068474.73-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:14:40.914+10 517006
  2012-10-01-1349068579.67-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:16:26.207+10 548838
  2012-10-01-1349068586.56-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:16:32.826+10 526472
  2012-10-01-1349068593.18-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:16:41.272+10 680072
  2012-10-01-1349068601.9-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:16:45.716+10 282874
  2012-10-01-1349068608.16-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:16:52.276+10 344286
  2012-10-01-1349068612.56-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:16:55.239+10 223368
  2012-10-01-1349068615.5-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:16:58.117+10 221224
  2012-10-01-1349068618.34-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:17:04.53+10 464384
  2012-10-01-1349068624.68-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:17:10.463+10 428170
  2012-10-01-1349068630.73-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:17:14.046+10 215934
  2012-10-01-1349068634.3-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:17:27.941+10 1082870
  2012-10-01-1349068648.15-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:17:35.744+10 566894
  2012-10-01-1349068901.2-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 15:21:43.699+10 208194
  2012-10-01-1349069041.42-demo.wav 10301 CanberraMtAinsli 2012-10-01 15:24:03.915+10 208952
  2012-10-01-1349069153.1-demo.wav 44028 CanberraBlackMnt 2012-10-01 15:25:56.54+10 287980
  2012-10-01-1349069159.02-demo.wav 44028 CanberraBlackMnt 2012-10-01 15:26:03.115+10 346248
  2012-10-01-1349069163.48-demo.wav 44028 CanberraBlackMnt 2012-10-01 15:26:08.425+10 411784
  2012-10-01-1349069168.62-demo.wav 44028 CanberraBlackMnt 2012-10-01 15:26:13.4+10 397400
  2012-10-01-1349069173.6-demo.wav 44028 CanberraBlackMnt 2012-10-01 15:26:16.6+10 235838
  2012-10-01-1349069176.83-demo.wav 44028 CanberraBlackMnt 2012-10-01 15:26:20.678+10 270794
  2012-10-01-1349069298.2-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:28:22.788+10 383772
  2012-10-01-1349069304.89-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:28:34.992+10 850056
  2012-10-01-1349069316.01-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:28:39.706+10 307620
  2012-10-01-1349069319.98-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:28:42.614+10 219272
  2012-10-01-1349069325.03-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:29:02.486+10 1460140
  2012-10-01-1349069343.67-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:29:21.392+10 1331626
  2012-10-01-1349069361.6-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:29:24.053+10 209032
  2012-10-01-1349069386.97-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:29:50.245+10 274568
  2012-10-01-1349069392.98-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:29:56.281+10 270472
  2012-10-01-1349069397.43-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:30:00.371+10 241800
  2012-10-01-1349069400.74-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:30:14.247+10 1131450
  2012-10-01-1349069414.49-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:30:18.227+10 300216
  2012-10-01-1349069418.43-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:30:27.375+10 694654
  2012-10-01-1349069427.53-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:30:35.73+10 682708
  2012-10-01-1349069435.99-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:30:41.26+10 386284
  2012-10-01-1349069441.51-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:30:48.057+10 527788
  2012-10-01-1349069449.58-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:30:55.237+10 433642
  2012-10-01-1349069455.8-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:31:06.707+10 916184
  2012-10-01-1349069468.09-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:31:12.423+10 353428
  2012-10-01-1349069474.2-demo.wav 10301 CanberraMtAinsli 2012-10-01 15:31:33.921+10 1656908
  2012-10-01-1349069494.81-demo.wav 10301 CanberraMtAinsli 2012-10-01 15:31:39.6+10 401440
  2012-10-01-1349069499.97-demo.wav 10301 CanberraMtAinsli 2012-10-01 15:31:43.918+10 331912
  2012-10-01-1349069504.17-demo.wav 10301 CanberraMtAinsli 2012-10-01 15:31:47.038+10 224242
  2012-10-01-1349069507.23-demo.wav 10301 CanberraMtAinsli 2012-10-01 15:31:50.206+10 199510
  2012-10-01-1349069672.15-demo.wav 10301 CanberraMtAinsli 2012-10-01 15:34:34.64+10 207788
  2012-10-01-1349069770.74-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:36:14.861+10 345252
  2012-10-01-1349069776.53-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:36:19.891+10 280712
  2012-10-01-1349069780.14-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:36:24.449+10 362632
  2012-10-01-1349069785.44-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:36:32.713+10 577544
  2012-10-01-1349069792.96-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:36:40.021+10 529092
  2012-10-01-1349069800.3-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:36:49.827+10 778648
  2012-10-01-1349069810.42-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:36:59.993+10 802432
  2012-10-01-1349069821.54-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 15:37:10.334+10 736672
  2012-10-01-1349069833.5-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:37:20.612+10 594960
  2012-10-01-1349069841.01-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:37:28+10 585864
  2012-10-01-1349069851.52-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:37:36.789+10 401826
  2012-10-01-1349069857.34-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:37:50.747+10 1108302
  2012-10-01-1349069872.05-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:37:57.089+10 422014
  2012-10-01-1349069879.1-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:38:06.931+10 650378
  2012-10-01-1349069887.2-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:38:14.479+10 590802
  2012-10-01-1349069895.15-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:38:20.548+10 451822
  2012-10-01-1349069900.67-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:38:25.902+10 395212
  2012-10-01-1349069906.11-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:38:32.36+10 519292
  2012-10-01-1349069912.64-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:38:39.747+10 577458
  2012-10-01-1349069920.5-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:38:54.01+10 1136502
  2012-10-01-1349069935.32-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:38:59.522+10 352392
  2012-10-01-1349069940.3-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:39:10.619+10 859786
  2012-10-01-1349069950.79-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:39:27.74+10 1384776
  2012-10-01-1349069967.93-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:39:37.567+10 748056
  2012-10-01-1349069977.83-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:39:43.773+10 454596
  2012-10-01-1349070748.71-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:52:32.025+10 277572
  2012-10-01-1349070753.52-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:52:40.783+10 608182
  2012-10-01-1349070761.02-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:52:43.655+10 221320
  2012-10-01-1349070764.92-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:52:56.035+10 930620
  2012-10-01-1349070776.47-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:53:01.191+10 395390
  2012-10-01-1349070784.23-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:53:07.669+10 243130
  2012-10-01-1349070855.39-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:54:17.901+10 208494
  2012-10-01-1349070889.95-demo.wav 10301 CanberraMtAinsli 2012-10-01 15:54:54.849+10 411566
  2012-10-01-1349070895.03-demo.wav 10301 CanberraMtAinsli 2012-10-01 15:54:58.176+10 262280
  2012-10-01-1349071175.51-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 15:59:39.537+10 333338
  2012-10-01-1349071181.34-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:59:47.724+10 536712
  2012-10-01-1349071188.2-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 15:59:55.713+10 630920
  2012-10-01-1349071196.74-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 16:00:00.831+10 295630
  2012-10-01-1349071201.45-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 16:00:06.021+10 385076
  2012-10-01-1349071426.16-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:03:48.79+10 220090
  2012-10-01-1349071431.81-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:04:00.052+10 692360
  2012-10-01-1349071440.28-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:04:08.272+10 669832
  2012-10-01-1349071448.44-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:04:12.433+10 336008
  2012-10-01-1349071452.67-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:04:21.534+10 696750
  2012-10-01-1349071461.79-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:04:29.356+10 580078
  2012-10-01-1349071469.61-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:04:43.368+10 1097000
  2012-10-01-1349071483.59-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:04:46.776+10 245752
  2012-10-01-1349071487.0-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:04:59.059+10 941946
  2012-10-01-1349071500.73-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:05:05.522+10 396524
  2012-10-01-1349071506.22-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:05:08.993+10 229512
  2012-10-01-1349071509.23-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:05:19.71+10 868360
  2012-10-01-1349071519.97-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:05:28.028+10 655584
  2012-10-01-1349071528.29-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:05:36.762+10 652372
  2012-10-01-1349071537.58-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:05:42.92+10 441816
  2012-10-01-1349071543.19-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:05:46.966+10 317554
  2012-10-01-1349071549.65-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:05:59.938+10 856254
  2012-10-01-1349071560.17-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:06:05.633+10 398242
  2012-10-01-1349072088.19-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 16:14:52.183+10 335894
  2012-10-01-1349072093.16-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 16:14:59.54+10 534640
  2012-10-01-1349072101.17-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 16:15:08.843+10 643208
  2012-10-01-1349072109.1-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 16:15:14.409+10 446344
  2012-10-01-1349072114.89-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 16:15:23.11+10 667046
  2012-10-01-1349072123.3-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 16:15:31.074+10 600614
  2012-10-01-1349072131.25-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 16:15:37.708+10 484090
  2012-10-01-1349072247.61-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:17:31.451+10 322546
  2012-10-01-1349072252.45-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:17:35.116+10 223340
  2012-10-01-1349072255.56-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:17:45.88+10 865604
  2012-10-01-1349072266.14-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:17:50.551+10 327958
  2012-10-01-1349072273.02-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:18:04.515+10 909976
  2012-10-01-1349072284.84-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:18:11.361+10 545702
  2012-10-01-1349072292.33-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:18:16.927+10 385060
  2012-10-01-1349072297.1-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:18:20.335+10 270472
  2012-10-01-1349072301.08-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:18:29.901+10 743560
  2012-10-01-1349072310.08-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:18:39.529+10 772432
  2012-10-01-1349072320.13-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:18:46.823+10 562394
  2012-10-01-1349072424.9-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:20:28.652+10 312780
  2012-10-01-1349072430.0-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:20:33.866+10 323720
  2012-10-01-1349072434.88-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:20:42.31+10 622704
  2012-10-01-1349072442.55-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:20:45.398+10 237704
  2012-10-01-1349072445.6-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:20:49.638+10 336008
  2012-10-01-1349072450.11-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:20:52.485+10 198702
  2012-10-01-1349072452.69-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:21:17.806+10 2062712
  2012-10-01-1349072478.0-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:21:28.794+10 839208
  2012-10-01-1349072488.94-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:21:35.448+10 485880
  2012-10-01-1349072495.66-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:21:39.944+10 334984
  2012-10-01-1349072501.53-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:21:58.515+10 1423888
  2012-10-01-1349072518.67-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:22:08.159+10 796786
  2012-10-01-1349072530.13-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:22:14.59+10 372872
  2012-10-01-1349072535.35-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:22:18.142+10 235460
  2012-10-01-1349072613.61-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:23:36.071+10 208850
  2012-10-01-1349072664.74-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:24:27.961+10 271590
  2012-10-01-1349072669.07-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:24:34.312+10 438480
  2012-10-01-1349072674.44-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:24:38.263+10 323720
  2012-10-01-1349072678.63-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:24:41.014+10 200840
  2012-10-01-1349072681.21-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:25:19.403+10 3132642
  2012-10-01-1349072719.67-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:25:22.41+10 181760
  2012-10-01-1349072722.67-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:25:41.573+10 1521916
  2012-10-01-1349072741.83-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:25:44.645+10 201424
  2012-10-01-1349072744.8-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:25:55.233+10 817118
  2012-10-01-1349072755.99-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:26:11.34+10 1288844
  2012-10-01-1349072771.53-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:26:19.211+10 638562
  2012-10-01-1349072780.63-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:26:38.63+10 1449838
  2012-10-01-1349072798.8-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:26:43.556+10 351108
  2012-10-01-1349072804.11-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:26:51.986+10 658940
  2012-10-01-1349072812.36-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:26:54.802+10 203670
  2012-10-01-1349072815.49-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 16:27:01.413+10 497798
  2012-10-01-1349072822.75-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 16:27:08.543+10 485512
  2012-10-01-1349072828.71-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 16:27:11.605+10 218616
  2012-10-01-1349072832.21-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 16:27:16.507+10 323306
  2012-10-01-1349072889.36-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:28:12.523+10 264612
  2012-10-01-1349072892.78-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:28:15.658+10 241800
  2012-10-01-1349072896.04-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:28:25.175+10 766088
  2012-10-01-1349072905.38-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:28:35.364+10 837768
  2012-10-01-1349072946.48-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:29:10.714+10 354374
  2012-10-01-1349072951.64-demo.wav 10301 CanberraMtAinsli 2012-10-01 16:29:15.033+10 282760
  2012-10-01-1349072956.23-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 16:29:31.489+10 1277822
  2012-10-01-1349073044.14-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:30:47.226+10 259450
  2012-10-01-1349073047.45-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:30:49.994+10 213128
  2012-10-01-1349073050.11-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:30:58.936+10 743560
  2012-10-01-1349073059.11-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:31:09.397+10 826768
  2012-10-01-1349073072.03-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:31:20.642+10 687708
  2012-10-01-1349073081.08-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:31:24+10 199298
  2012-10-01-1349073084.63-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:31:39.245+10 1224950
  2012-10-01-1349073100.55-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:31:44.107+10 299144
  2012-10-01-1349073104.26-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:31:53.913+10 813136
  2012-10-01-1349073114.44-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:32:01.894+10 621110
  2012-10-01-1349073122.02-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:32:06.565+10 318672
  2012-10-01-1349073126.7-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:32:11.123+10 323834
  2012-10-01-1349073476.87-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:37:59.347+10 208508
  2012-10-01-1349073481.12-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:38:08.257+10 600200
  2012-10-01-1349073488.48-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:38:14.382+10 487522
  2012-10-01-1349073494.58-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:38:19.519+10 413820
  2012-10-01-1349073499.71-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:38:23.117+10 274130
  2012-10-01-1349073503.38-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:38:31.162+10 643512
  2012-10-01-1349073511.42-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:38:41.768+10 843194
  2012-10-01-1349073521.95-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:38:50.614+10 684664
  2012-10-01-1349073530.88-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:39:01.826+10 878878
  2012-10-01-1349073542.1-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:39:09.665+10 617266
  2012-10-01-1349073550.87-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:39:21.117+10 798766
  2012-10-01-1349073561.38-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:39:24.684+10 249548
  2012-10-01-1349073564.82-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:39:31.674+10 510450
  2012-10-01-1349073571.9-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:39:37.896+10 450908
  2012-10-01-1349073855.95-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:44:21.002+10 422872
  2012-10-01-1349073862.03-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:44:26.281+10 356488
  2012-10-01-1349073866.57-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:44:43.253+10 1337302
  2012-10-01-1349073883.49-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:44:48.451+10 373622
  2012-10-01-1349073888.7-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:44:52.05+10 216418
  2012-10-01-1349073892.3-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:45:14.155+10 1824770
  2012-10-01-1349073914.36-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:45:40.309+10 2114228
  2012-10-01-1349073940.56-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:45:44.675+10 331526
  2012-10-01-1349073944.81-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:45:47.746+10 183824
  2012-10-01-1349073947.9-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:45:51.81+10 265356
  2012-10-01-1349073951.99-demo.wav 44028 CanberraMtAinsli 2012-10-01 16:45:57.456+10 396920
  2012-10-01-1349074076.12-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:47:58.622+10 210794
  2012-10-01-1349074080.26-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:48:13.562+10 1112200
  2012-10-01-1349074093.86-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:48:20.344+10 542856
  2012-10-01-1349074100.59-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:48:24.455+10 303520
  2012-10-01-1349074104.71-demo.wav 44028 CanberraBlackMnt 2012-10-01 16:48:30.422+10 416844
  2012-10-01-1349074644.64-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 16:57:31.831+10 604194
  2012-10-01-1349074694.17-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 16:58:20.975+10 570280
  2012-10-01-1349074701.95-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 16:58:30.364+10 702888
  2012-10-01-1349074710.58-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 16:58:43.571+10 1037094
  2012-10-01-1349074723.73-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 16:58:56.823+10 1037490
  2012-10-01-1349074737.13-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 16:59:17.233+10 1630004
  2012-10-01-1349074757.49-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 16:59:20.472+10 184482
  2012-10-01-1349075309.02-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 17:08:33.19+10 351220
  2012-10-01-1349075313.46-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 17:08:36.992+10 297096
  2012-10-01-1349075317.27-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 17:08:53.218+10 1277604
  2012-10-01-1349075333.48-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 17:09:12.523+10 1543156
  2012-10-01-1349075352.77-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 17:09:26.318+10 1081412
  2012-10-01-1349075366.47-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 17:09:33.41+10 520122
  2012-10-01-1349075589.46-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-01 17:13:13.056+10 300178
  2012-10-01-1349075593.31-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-01 17:13:17.006+10 309384
  2012-10-01-1349075864.02-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-01 17:17:49.695+10 473702
  2012-10-01-1349075869.91-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-01 17:17:55.901+10 497800
  2012-10-01-1349078506.84-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 18:01:52.925+10 510088
  2012-10-01-1349078513.38-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 18:01:56.78+10 286856
  2012-10-01-1349078518.1-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 18:02:05.428+10 611342
  2012-10-01-1349078526.62-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 18:02:10.687+10 339750
  2012-10-01-1349078531.31-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 18:02:14.877+10 295048
  2012-10-01-1349078535.37-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 18:02:17.995+10 221256
  2012-10-01-1349078538.39-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 18:02:26.916+10 679076
  2012-10-01-1349078547.06-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 18:02:36.617+10 741308
  2012-10-01-1349078556.81-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 18:02:45.014+10 625236
  2012-10-01-1349078565.3-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-01 18:02:51.314+10 441204
  2012-10-01-1349079229.09-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 18:13:57.063+10 668306
  2012-10-01-1349079385.99-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 18:16:29.179+10 267492
  2012-10-01-1349079389.9-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 18:16:33.035+10 260232
  2012-10-01-1349079393.22-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 18:16:43.471+10 802234
  2012-10-01-1349079403.78-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-01 18:16:51.646+10 595020
  2012-10-01-1349079980.36-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 18:26:22.848+10 209174
  2012-10-01-1349080027.94-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 18:27:10.458+10 208146
  2012-10-01-1349080418.08-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:33:41.616+10 296550
  2012-10-01-1349080422.82-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:33:53.849+10 920506
  2012-10-01-1349080434.17-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:34:21.629+10 2249698
  2012-10-01-1349080461.86-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:34:26.468+10 339968
  2012-10-01-1349080466.69-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:34:32.059+10 386706
  2012-10-01-1349080472.23-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:34:35.174+10 227228
  2012-10-01-1349080475.43-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:34:39.422+10 301370
  2012-10-01-1349080479.65-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:34:48.224+10 656006
  2012-10-01-1349080830.54-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:40:34.219+10 309048
  2012-10-01-1349080834.45-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:40:40.761+10 530568
  2012-10-01-1349080841.9-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:40:49.326+10 616834
  2012-10-01-1349080876.42-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:41:19.057+10 222326
  2012-10-01-1349080879.28-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:41:40.365+10 1759352
  2012-10-01-1349081159.01-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:46:01.591+10 218870
  2012-10-01-1349081161.69-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:46:04.512+10 239728
  2012-10-01-1349081164.61-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:46:10.355+10 483436
  2012-10-01-1349081170.59-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:46:17.107+10 548988
  2012-10-01-1349081177.2-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:46:19.98+10 235102
  2012-10-01-1349081180.08-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:46:22.246+10 182458
  2012-10-01-1349081182.34-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:46:30.531+10 623040
  2012-10-01-1349081190.93-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:46:35.016+10 321014
  2012-10-01-1349081195.99-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:46:41.879+10 452436
  2012-10-01-1349081201.98-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:46:45.871+10 264410
  2012-10-01-1349081206.18-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:46:53.692+10 624082
  2012-10-01-1349081793.98-demo.wav 40067 CanberraBlackMnt 2012-10-01 18:56:36.471+10 209346
  2012-10-01-1349081910.49-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:58:34.523+10 338934
  2012-10-01-1349081915.26-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:58:38.577+10 280712
  2012-10-01-1349081918.67-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:58:42.011+10 282726
  2012-10-01-1349081922.26-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:58:44.868+10 221320
  2012-10-01-1349081924.96-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:58:50.359+10 454048
  2012-10-01-1349081930.47-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:58:53.568+10 253008
  2012-10-01-1349081933.65-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:59:17.913+10 1954976
  2012-10-01-1349081958.07-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:59:23.437+10 432182
  2012-10-01-1349081963.52-demo.wav 44028 CanberraBlackMnt 2012-10-01 18:59:30.716+10 536282
  2012-10-01-1349082633.19-demo.wav 44028 CanberraBlackMnt 2012-10-01 19:10:35.649+10 208430
  2012-10-01-1349082639.5-demo.wav 44028 CanberraBlackMnt 2012-10-01 19:10:43.551+10 342152
  2012-10-01-1349082643.64-demo.wav 44028 CanberraBlackMnt 2012-10-01 19:10:46.361+10 231560
  2012-10-01-1349082646.44-demo.wav 44028 CanberraBlackMnt 2012-10-01 19:10:56.003+10 802896
  2012-10-01-1349082656.09-demo.wav 44028 CanberraBlackMnt 2012-10-01 19:10:59.579+10 294256
  2012-10-01-1349082659.67-demo.wav 44028 CanberraBlackMnt 2012-10-01 19:11:06.554+10 553266
  2012-10-01-1349082666.64-demo.wav 44028 CanberraBlackMnt 2012-10-01 19:11:32.544+10 2099254
  2012-10-01-1349082692.63-demo.wav 44028 CanberraBlackMnt 2012-10-01 19:11:44.133+10 962590
  2012-10-01-1349082704.22-demo.wav 44028 CanberraBlackMnt 2012-10-01 19:11:54.925+10 842024
  2012-10-01-1349082715.02-demo.wav 44028 CanberraBlackMnt 2012-10-01 19:12:00.767+10 449722
  2012-10-01-1349082720.85-demo.wav 44028 CanberraBlackMnt 2012-10-01 19:12:10.745+10 734004
  2012-10-01-1349082959.72-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 19:16:02.199+10 208934
  2012-10-01-1349082989.51-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 19:16:38.254+10 733238
  2012-10-01-1349082998.83-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 19:16:41.536+10 229512
  2012-10-01-1349083002.71-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 19:16:49.292+10 553096
  2012-10-01-1349083292.9-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 19:21:36.259+10 281698
  2012-10-01-1349083296.35-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 19:21:38.886+10 215148
  2012-10-01-1349083298.97-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 19:21:42.588+10 305260
  2012-10-01-1349083302.68-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 19:21:45.045+10 200840
  2012-10-01-1349083305.8-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 19:22:03.222+10 1458312
  2012-10-01-1349084903.43-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 19:48:28.198+10 400568
  2012-10-01-1349084908.51-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 19:48:30.796+10 190600
  2012-10-01-1349085634.34-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:00:36.837+10 208356
  2012-10-01-1349086091.45-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 20:08:14.096+10 222528
  2012-10-01-1349086095.34-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 20:08:23.917+10 716270
  2012-10-01-1349086312.57-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 20:11:55.42+10 235380
  2012-10-01-1349086316.28-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 20:11:58.973+10 227464
  2012-10-01-1349086319.76-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 20:12:02.338+10 215176
  2012-10-01-1349086386.84-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:13:09.698+10 239108
  2012-10-01-1349086391.28-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:13:18.629+10 615574
  2012-10-01-1349086398.81-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:13:21.389+10 213128
  2012-10-01-1349087037.51-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:24:01.028+10 290074
  2012-10-01-1349087042.84-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:24:07.872+10 424044
  2012-10-01-1349087048.09-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:24:12.498+10 366728
  2012-10-01-1349087052.66-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:24:15.289+10 217200
  2012-10-01-1349087055.44-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:24:19.851+10 372826
  2012-10-01-1349087060.07-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:24:22.292+10 180060
  2012-10-01-1349087136.27-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:25:38.901+10 220602
  2012-10-01-1349087139.14-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:25:43.367+10 356488
  2012-10-01-1349087145.29-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:25:49.972+10 393352
  2012-10-01-1349087150.94-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:26:11.952+10 1705544
  2012-10-01-1349087172.78-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:26:16.003+10 266376
  2012-10-01-1349087177.21-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:26:20.278+10 259908
  2012-10-01-1349087180.44-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:26:23.261+10 212548
  2012-10-01-1349087183.46-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:26:47.349+10 1939322
  2012-10-01-1349087207.59-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:26:50.97+10 272478
  2012-10-01-1349087417.66-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-01 20:30:28.117+10 877634
  2012-10-01-1349087430.02-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:30:39.919+10 825480
  2012-10-01-1349087441.03-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:30:45.039+10 331886
  2012-10-01-1349087445.17-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:30:48.949+10 317576
  2012-10-01-1349087449.13-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:30:51.517+10 200840
  2012-10-01-1349087451.64-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:30:58.582+10 525714
  2012-10-01-1349087459.4-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:31:13.624+10 1190026
  2012-10-01-1349087473.83-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:31:22.811+10 749674
  2012-10-01-1349087483.04-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:31:27.516+10 343276
  2012-10-01-1349087487.75-demo.wav 44028 CanberraBlackMnt 2012-10-01 20:31:31.027+10 218756
  2012-10-01-1349087693.19-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 20:35:01.109+10 662618
  2012-10-01-1349087956.97-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-01 20:39:25.435+10 707728
  2012-10-01-1349092642.58-demo.wav 10301 CanberraMtAinsli 2012-10-01 21:57:25.443+10 236208
  2012-10-01-1349099640.68-demo.wav 10301 CanberraMtAinsli 2012-10-01 23:54:03.503+10 236510
  2012-10-01-1349099645.09-demo.wav 10301 CanberraMtAinsli 2012-10-01 23:54:12.452+10 620680
  2012-10-01-1349099653.68-demo.wav 10301 CanberraMtAinsli 2012-10-01 23:54:29.373+10 1317182
  2012-10-01-1349099669.65-demo.wav 10301 CanberraMtAinsli 2012-10-01 23:54:34.254+10 325830
  2012-10-01-1349099674.79-demo.wav 10301 CanberraMtAinsli 2012-10-01 23:54:39.31+10 323736
  2012-10-02-1349119076.14-demo.wav 44028 CanberraBlackMnt 2012-10-02 05:17:58.661+10 209034
  2012-10-02-1349121763.96-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:02:46.488+10 209710
  2012-10-02-1349121767.19-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:02:50.922+10 313480
  2012-10-02-1349121800.6-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:03:24.225+10 303266
  2012-10-02-1349121805.27-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:03:29.089+10 317846
  2012-10-02-1349121809.38-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:03:31.706+10 196744
  2012-10-02-1349121811.98-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:03:34.418+10 204936
  2012-10-02-1349121815.0-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:03:41.644+10 558214
  2012-10-02-1349121822.67-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:03:47.37+10 384198
  2012-10-02-1349122370.28-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 06:12:53.826+10 295796
  2012-10-02-1349122374.51-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 06:12:57.872+10 282760
  2012-10-02-1349122378.47-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 06:13:02.315+10 323720
  2012-10-02-1349122382.57-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 06:13:16.961+10 1146110
  2012-10-02-1349122397.16-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 06:13:20.183+10 200648
  2012-10-02-1349122400.52-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 06:13:46.568+10 2148368
  2012-10-02-1349122426.88-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 06:14:08.176+10 1734836
  2012-10-02-1349122449.06-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 06:14:12.912+10 323654
  2012-10-02-1349122453.19-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 06:14:29.52+10 1365422
  2012-10-02-1349122469.78-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 06:14:41.225+10 899006
  2012-10-02-1349122481.6-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 06:14:45.579+10 267488
  2012-10-02-1349122714.58-demo.wav 40067 CanberraBlackMnt 2012-10-02 06:18:37.08+10 210002
  2012-10-02-1349122868.6-demo.wav 44014 CanberraBlackMnt 2012-10-02 06:21:15.621+10 588260
  2012-10-02-1349122876.53-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 06:21:25.216+10 727662
  2012-10-02-1349122952.85-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 06:22:37.109+10 357372
  2012-10-02-1349122978.97-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 06:23:02.817+10 321672
  2012-10-02-1349123062.02-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 06:24:24.53+10 209874
  2012-10-02-1349123159.61-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:26:03.489+10 327654
  2012-10-02-1349123163.87-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:26:06.68+10 237704
  2012-10-02-1349123166.97-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:26:15.962+10 757548
  2012-10-02-1349123176.14-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:26:20.841+10 390552
  2012-10-02-1349123181.09-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:26:24.973+10 265356
  2012-10-02-1349123185.27-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:26:29.312+10 331418
  2012-10-02-1349123190.27-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:26:37.525+10 596770
  2012-10-02-1349123197.83-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:26:45.437+10 614118
  2012-10-02-1349123267.39-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 06:27:51.055+10 305552
  2012-10-02-1349123273.83-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 06:28:09.507+10 1319048
  2012-10-02-1349123672.64-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 06:34:35.913+10 272330
  2012-10-02-1349123740.31-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 06:35:44.289+10 330588
  2012-10-02-1349123745.43-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 06:35:50.761+10 447272
  2012-10-02-1349123751.02-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 06:35:53.68+10 223368
  2012-10-02-1349123755.97-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 06:36:00.619+10 387274
  2012-10-02-1349123761.3-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 06:36:09.769+10 708646
  2012-10-02-1349123770.04-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 06:36:15.557+10 462984
  2012-10-02-1349123775.72-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 06:36:19.6+10 327772
  2012-10-02-1349123780.26-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 06:36:26.836+10 555144
  2012-10-02-1349123788.69-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 06:36:35.019+10 531366
  2012-10-02-1349123795.4-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 06:36:44.788+10 756580
  2012-10-02-1349123807.57-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 06:36:51.278+10 310470
  2012-10-02-1349123811.69-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 06:36:54.277+10 217098
  2012-10-02-1349123814.55-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 06:36:56.892+10 188898
  2012-10-02-1349123942.77-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:39:06.674+10 325956
  2012-10-02-1349123948.45-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:39:13.118+10 390428
  2012-10-02-1349123953.42-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:39:18.796+10 452744
  2012-10-02-1349123959.11-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:39:22.48+10 282760
  2012-10-02-1349123964.23-demo.wav 44028 CanberraBlackMnt 2012-10-02 06:39:31.046+10 514784
  2012-10-02-1349124076.79-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:41:20.402+10 301390
  2012-10-02-1349124080.67-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:41:23.608+10 247944
  2012-10-02-1349124083.78-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:41:26.256+10 206984
  2012-10-02-1349124088.47-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:41:30.801+10 196744
  2012-10-02-1349124092.24-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:41:44.231+10 1006370
  2012-10-02-1349124105.34-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:41:51.855+10 546952
  2012-10-02-1349124112.15-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:41:55.955+10 309732
  2012-10-02-1349124116.58-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:42:04.853+10 672338
  2012-10-02-1349124125.13-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:42:12.271+10 590238
  2012-10-02-1349124132.81-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:42:17.151+10 305504
  2012-10-02-1349124414.97-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:47:01.545+10 552574
  2012-10-02-1349124421.84-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:47:05.82+10 336008
  2012-10-02-1349124427.73-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:47:10.636+10 245852
  2012-10-02-1349124430.97-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:47:17.415+10 519458
  2012-10-02-1349124437.62-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:47:26.154+10 703668
  2012-10-02-1349124446.44-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:47:29.855+10 256494
  2012-10-02-1349124450.72-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:47:33.348+10 195542
  2012-10-02-1349124925.99-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 06:55:31.344+10 449924
  2012-10-02-1349124932.01-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 06:55:43.952+10 1003656
  2012-10-02-1349124945.59-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 06:55:48.621+10 254088
  2012-10-02-1349124949.18-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 06:55:57.607+10 708744
  2012-10-02-1349124958.64-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 06:56:01.722+10 258184
  2012-10-02-1349124962.24-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 06:56:05.064+10 237704
  2012-10-02-1349124965.66-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 06:56:10.469+10 403522
  2012-10-02-1349124970.75-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 06:56:18.29+10 591022
  2012-10-02-1349124978.56-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 06:56:22.507+10 268250
  2012-10-02-1349125009.37-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:56:53.241+10 325768
  2012-10-02-1349125014.54-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:56:57.851+10 278664
  2012-10-02-1349125018.14-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:57:04.71+10 553022
  2012-10-02-1349125025.32-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:57:11.441+10 514162
  2012-10-02-1349125031.89-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:57:24.487+10 1055746
  2012-10-02-1349125044.82-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:57:30.5+10 451626
  2012-10-02-1349125155.87-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:59:20.781+10 411440
  2012-10-02-1349125162.89-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:59:27.64+10 399496
  2012-10-02-1349125168.2-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:59:31.756+10 299014
  2012-10-02-1349125173.46-demo.wav 44036 CanberraBlackMnt 2012-10-02 06:59:35.87+10 195702
  2012-10-02-1349125246.55-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:00:52.054+10 462218
  2012-10-02-1349125252.25-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:00:55.004+10 229512
  2012-10-02-1349125255.52-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:00:59.726+10 352392
  2012-10-02-1349125260.52-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:01:05.309+10 400132
  2012-10-02-1349125266.15-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:01:10.094+10 318742
  2012-10-02-1349125324.96-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:02:07.445+10 208582
  2012-10-02-1349125328.34-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:02:11.608+10 276616
  2012-10-02-1349125332.67-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:02:17.765+10 425912
  2012-10-02-1349125338.05-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:02:22.024+10 333960
  2012-10-02-1349125342.2-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:02:27.128+10 413682
  2012-10-02-1349125347.42-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:02:31.132+10 273706
  2012-10-02-1349125357.6-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:02:44.258+10 497128
  2012-10-02-1349125364.44-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:02:49.091+10 369926
  2012-10-02-1349125415.32-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:03:38.818+10 294102
  2012-10-02-1349125420.24-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:03:48.054+10 653918
  2012-10-02-1349125428.31-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:03:50.447+10 180360
  2012-10-02-1349125430.73-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:03:54.738+10 336008
  2012-10-02-1349125437.35-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:04:05.422+10 678024
  2012-10-02-1349125447.44-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:04:13.7+10 526472
  2012-10-02-1349125454.85-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:04:28.278+10 1123846
  2012-10-02-1349125470.39-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:04:32.681+10 192648
  2012-10-02-1349125537.83-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:05:41.818+10 333010
  2012-10-02-1349125543.5-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:05:49.905+10 535568
  2012-10-02-1349125551.56-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:05:54.8+10 272520
  2012-10-02-1349125555.05-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:05:58.118+10 258182
  2012-10-02-1349125558.52-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:06:02.043+10 264860
  2012-10-02-1349125562.36-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:06:07.721+10 434372
  2012-10-02-1349125652.85-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:07:36.603+10 314550
  2012-10-02-1349125658.07-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:07:44.498+10 535978
  2012-10-02-1349125664.69-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:08:01.978+10 1417414
  2012-10-02-1349125682.21-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:08:05.344+10 229180
  2012-10-02-1349125757.11-demo.wav 44036 CanberraMtAinsli 2012-10-02 07:09:21.322+10 352450
  2012-10-02-1349125765.24-demo.wav 44036 CanberraMtAinsli 2012-10-02 07:09:29.742+10 379016
  2012-10-02-1349125770.44-demo.wav 44036 CanberraMtAinsli 2012-10-02 07:09:35.406+10 417902
  2012-10-02-1349125775.67-demo.wav 44036 CanberraMtAinsli 2012-10-02 07:09:41.881+10 497614
  2012-10-02-1349125782.87-demo.wav 44036 CanberraMtAinsli 2012-10-02 07:09:48.405+10 452680
  2012-10-02-1349125788.92-demo.wav 44036 CanberraMtAinsli 2012-10-02 07:09:56.697+10 622842
  2012-10-02-1349125797.01-demo.wav 44036 CanberraMtAinsli 2012-10-02 07:10:03.269+10 510310
  2012-10-02-1349125804.1-demo.wav 44036 CanberraMtAinsli 2012-10-02 07:10:07.735+10 302678
  2012-10-02-1349125837.77-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:10:40.252+10 206984
  2012-10-02-1349125843.57-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 07:10:51.152+10 637064
  2012-10-02-1349125851.61-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:11:01.21+10 805000
  2012-10-02-1349125861.39-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:11:07.68+10 528520
  2012-10-02-1349125868.28-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:11:15.894+10 590224
  2012-10-02-1349125876.11-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:11:20.831+10 337296
  2012-10-02-1349125881.12-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:11:25.357+10 292968
  2012-10-02-1349125885.62-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:11:29.662+10 275976
  2012-10-02-1349125974.66-demo.wav 44036 CanberraMtAinsli 2012-10-02 07:12:57.842+10 266666
  2012-10-02-1349125979.44-demo.wav 44036 CanberraMtAinsli 2012-10-02 07:13:02.149+10 227464
  2012-10-02-1349126084.21-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:14:46.83+10 220264
  2012-10-02-1349126087.16-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:14:51.089+10 329864
  2012-10-02-1349126093.28-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:15:05.778+10 1046014
  2012-10-02-1349126107.48-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:15:24.086+10 1334184
  2012-10-02-1349126125.0-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:15:29.334+10 362130
  2012-10-02-1349126129.85-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:15:31.983+10 180360
  2012-10-02-1349126132.32-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 07:15:38.889+10 551048
  2012-10-02-1349126139.03-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 07:15:41.34+10 192648
  2012-10-02-1349126308.14-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 07:18:31.781+10 304136
  2012-10-02-1349126312.93-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:18:38.24+10 444894
  2012-10-02-1349126318.63-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 07:18:45.919+10 612488
  2012-10-02-1349126326.48-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 07:18:52.058+10 469128
  2012-10-02-1349126332.32-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 07:19:01.571+10 748942
  2012-10-02-1349126341.84-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 07:19:04.688+10 183076
  2012-10-02-1349126345.47-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 07:19:09.356+10 290824
  2012-10-02-1349126349.58-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 07:19:12.767+10 206114
  2012-10-02-1349126353.06-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 07:19:26.303+10 1049238
  2012-10-02-1349126366.54-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 07:19:30.92+10 304752
  2012-10-02-1349126371.14-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 07:19:34.183+10 195450
  2012-10-02-1349126374.37-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 07:19:39.136+10 335120
  2012-10-02-1349126381.56-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 07:19:44.874+10 255774
  2012-10-02-1349126526.12-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:22:09.647+10 296886
  2012-10-02-1349126530.89-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:22:14.863+10 331878
  2012-10-02-1349126535.83-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:22:19.583+10 313362
  2012-10-02-1349126542.34-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:22:24.704+10 200840
  2012-10-02-1349126545.02-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:22:29.409+10 368720
  2012-10-02-1349126549.7-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:22:32.518+10 204812
  2012-10-02-1349126553.33-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:22:43.285+10 836734
  2012-10-02-1349126563.98-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:22:46.747+10 231560
  2012-10-02-1349126568.61-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:22:51.868+10 276616
  2012-10-02-1349127134.03-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 07:32:17.401+10 281438
  2012-10-02-1349127137.66-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 07:32:20.989+10 280712
  2012-10-02-1349127226.95-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:33:49.677+10 228198
  2012-10-02-1349127231.46-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:33:54.653+10 268424
  2012-10-02-1349127235.33-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:34:00.078+10 399496
  2012-10-02-1349127241.14-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:34:04.447+10 278664
  2012-10-02-1349127244.74-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:34:07.319+10 215720
  2012-10-02-1349127248.04-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:34:11.083+10 236974
  2012-10-02-1349127292.08-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:34:57.941+10 492108
  2012-10-02-1349127298.23-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:35:01.132+10 243848
  2012-10-02-1349127301.42-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:35:10.83+10 754836
  2012-10-02-1349127313.84-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 07:35:23.09+10 774300
  2012-10-02-1349127324.09-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 07:35:29.643+10 462482
  2012-10-02-1349127330.16-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 07:35:33.918+10 315528
  2012-10-02-1349127334.7-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 07:35:38.012+10 278654
  2012-10-02-1349127338.92-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 07:35:44.08+10 430984
  2012-10-02-1349127345.0-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 07:35:53.421+10 707126
  2012-10-02-1349127353.71-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 07:35:57.574+10 325768
  2012-10-02-1349127357.83-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 07:36:00.077+10 188474
  2012-10-02-1349127360.35-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 07:36:05.976+10 472118
  2012-10-02-1349127366.67-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 07:36:15.828+10 768136
  2012-10-02-1349127376.04-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 07:36:21.87+10 468004
  2012-10-02-1349127382.16-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 07:36:26.604+10 350414
  2012-10-02-1349127386.82-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 07:36:45.838+10 1594092
  2012-10-02-1349127502.43-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:38:25.55+10 260424
  2012-10-02-1349127507.19-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:38:35.152+10 669832
  2012-10-02-1349127515.46-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:38:39.81+10 364680
  2012-10-02-1349127520.11-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:38:42.729+10 221320
  2012-10-02-1349127522.94-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:38:50.688+10 622578
  2012-10-02-1349127535.09-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:39:00.562+10 415002
  2012-10-02-1349127543.15-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:39:16.575+10 1125972
  2012-10-02-1349127556.79-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:39:21.248+10 304012
  2012-10-02-1349127561.45-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:39:30.705+10 739366
  2012-10-02-1349127570.94-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:39:34.168+10 217930
  2012-10-02-1349127575.22-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:39:38.793+10 236042
  2012-10-02-1349127580.21-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:39:44.104+10 313106
  2012-10-02-1349127585.59-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:39:50.214+10 360088
  2012-10-02-1349127592.18-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:39:56.928+10 361756
  2012-10-02-1349127597.22-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:40:05.476+10 658698
  2012-10-02-1349127605.77-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:40:10.086+10 345056
  2012-10-02-1349127610.41-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:40:19.638+10 755040
  2012-10-02-1349127619.94-demo.wav 44028 CanberraMtAinsli 2012-10-02 07:40:23.611+10 278920
  2012-10-02-1349127624.39-demo.wav 40067 CanberraBlackMnt 2012-10-02 07:40:35.286+10 916120
  2012-10-02-1349127653.64-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:40:57.677+10 340104
  2012-10-02-1349127659.56-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 07:41:13.867+10 1204360
  2012-10-02-1349127674.64-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 07:41:18.184+10 297096
  2012-10-02-1349127679.58-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 07:41:23.41+10 321672
  2012-10-02-1349127684.11-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 07:41:28.736+10 354902
  2012-10-02-1349127689.09-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:41:36.787+10 647304
  2012-10-02-1349127697.46-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:41:43.164+10 479368
  2012-10-02-1349127703.49-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:41:48.17+10 333260
  2012-10-02-1349127708.41-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:41:52.118+10 247852
  2012-10-02-1349127712.57-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:41:57.523+10 415836
  2012-10-02-1349127718.7-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:42:01.878+10 263312
  2012-10-02-1349127722.16-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:42:10.109+10 611272
  2012-10-02-1349127730.41-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:42:13.981+10 238268
  2012-10-02-1349127734.24-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:42:17.792+10 242044
  2012-10-02-1349127738.28-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:42:22.812+10 380456
  2012-10-02-1349127743.77-demo.wav 44036 CanberraBlackMnt 2012-10-02 07:42:29.542+10 485512
  2012-10-02-1349127750.51-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:42:42.731+10 1028232
  2012-10-02-1349127763.87-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:42:46.734+10 237704
  2012-10-02-1349127767.53-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:42:54.053+10 533048
  2012-10-02-1349127774.3-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:42:59.162+10 353410
  2012-10-02-1349127779.6-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:43:04.575+10 415874
  2012-10-02-1349127785.16-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:43:09.533+10 340410
  2012-10-02-1349127837.39-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:44:00.401+10 248160
  2012-10-02-1349127841.81-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 07:44:05.393+10 301192
  2012-10-02-1349128013.49-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:46:55.988+10 207652
  2012-10-02-1349128128.48-demo.wav 40067 CanberraBlackMnt 2012-10-02 07:48:51.703+10 272076
  2012-10-02-1349128477.43-demo.wav 40067 CanberraBlackMnt 2012-10-02 07:54:39.992+10 213326
  2012-10-02-1349128537.29-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 07:55:39.766+10 208388
  2012-10-02-1349128612.24-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:56:56.508+10 357398
  2012-10-02-1349128617.87-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:57:02.983+10 428156
  2012-10-02-1349128623.26-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:57:09.013+10 483464
  2012-10-02-1349128629.5-demo.wav 44028 CanberraBlackMnt 2012-10-02 07:57:11.98+10 209032
  2012-10-02-1349128984.03-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:03:08.385+10 365720
  2012-10-02-1349128990.43-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:03:14.733+10 362632
  2012-10-02-1349128995.9-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:03:21.495+10 471156
  2012-10-02-1349129001.77-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:03:26.393+10 388368
  2012-10-02-1349129006.66-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:03:46.296+10 1626118
  2012-10-02-1349129030.58-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:03:57.413+10 556468
  2012-10-02-1349129037.71-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:04:05.579+10 632988
  2012-10-02-1349129045.85-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:04:09.582+10 284134
  2012-10-02-1349129053.18-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:04:16.234+10 226552
  2012-10-02-1349129057.9-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:04:24.13+10 523088
  2012-10-02-1349129065.66-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:04:28.692+10 256136
  2012-10-02-1349129068.98-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:04:31.61+10 222584
  2012-10-02-1349129075.21-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:04:43.604+10 705290
  2012-10-02-1349129083.82-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:04:46.459+10 223368
  2012-10-02-1349129087.1-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:04:51.324+10 354440
  2012-10-02-1349129091.59-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:04:57.417+10 486288
  2012-10-02-1349129099.41-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:05:07.592+10 687284
  2012-10-02-1349129107.8-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:05:10.496+10 227464
  2012-10-02-1349129111.26-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:05:13.877+10 221320
  2012-10-02-1349129114.8-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:05:19.045+10 358536
  2012-10-02-1349129123.32-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:05:26.684+10 284592
  2012-10-02-1349129126.95-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:05:32.744+10 455558
  2012-10-02-1349129133.92-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:05:38.152+10 356430
  2012-10-02-1349129138.5-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:05:41.915+10 286856
  2012-10-02-1349129143.25-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:05:49.939+10 552518
  2012-10-02-1349129155.61-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:06:13.701+10 1519972
  2012-10-02-1349129173.95-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:06:16.556+10 219272
  2012-10-02-1349129177.01-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:06:20.8+10 319624
  2012-10-02-1349129184.21-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 08:06:33.727+10 792710
  2012-10-02-1349129194.77-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 08:06:52.893+10 1521354
  2012-10-02-1349129213.86-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 08:07:07.201+10 1119798
  2012-10-02-1349129227.92-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 08:07:26.139+10 1532040
  2012-10-02-1349129333.62-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:08:56.099+10 207936
  2012-10-02-1349129336.34-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:08:59.561+10 272520
  2012-10-02-1349129341.61-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:09:04.202+10 219272
  2012-10-02-1349129345.49-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:09:10.772+10 444534
  2012-10-02-1349129354.19-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:09:16.867+10 202012
  2012-10-02-1349129697.75-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 08:15:00.268+10 209464
  2012-10-02-1349129703.67-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:15:19.469+10 1327138
  2012-10-02-1349129720.41-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:15:26.487+10 510344
  2012-10-02-1349129726.7-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:15:33.346+10 553096
  2012-10-02-1349129733.59-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:15:35.85+10 190600
  2012-10-02-1349129736.45-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-02 08:15:43.817+10 618632
  2012-10-02-1349129743.99-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-02 08:15:50.542+10 551048
  2012-10-02-1349129750.74-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-02 08:15:56.251+10 462854
  2012-10-02-1349129756.42-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-02 08:16:01.541+10 400356
  2012-10-02-1349130137.28-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:22:20.127+10 239360
  2012-10-02-1349130141.25-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:22:23.733+10 209032
  2012-10-02-1349130144.03-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:22:28.166+10 348296
  2012-10-02-1349130148.43-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:22:41.133+10 1065424
  2012-10-02-1349130161.32-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:22:45.422+10 304058
  2012-10-02-1349130165.69-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:22:54.672+10 749360
  2012-10-02-1349130177.93-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:23:07.735+10 767234
  2012-10-02-1349130188.01-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:23:13.908+10 475232
  2012-10-02-1349130194.13-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:23:21.228+10 547808
  2012-10-02-1349130202.1-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:23:44.37+10 1872008
  2012-10-02-1349130224.59-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:23:47.034+10 206984
  2012-10-02-1349130227.35-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:23:51.58+10 354440
  2012-10-02-1349130231.81-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:23:59.506+10 647226
  2012-10-02-1349130243.02-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:24:08.963+10 498598
  2012-10-02-1349130251.02-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:24:17.575+10 551048
  2012-10-02-1349130258.04-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:24:22.695+10 391304
  2012-10-02-1349130265.81-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:24:35.167+10 788598
  2012-10-02-1349130276.61-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:24:40.973+10 368776
  2012-10-02-1349130281.27-demo.wav 44028 CanberraMtAinsli 2012-10-02 08:24:44.307+10 254082
  2012-10-02-1349130363.85-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:26:08.881+10 419192
  2012-10-02-1349130369.05-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:26:13.63+10 385160
  2012-10-02-1349130373.93-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:26:16.758+10 239752
  2012-10-02-1349130377.03-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:26:26.263+10 776160
  2012-10-02-1349130386.56-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:26:36.98+10 852244
  2012-10-02-1349130397.14-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:26:46.215+10 728628
  2012-10-02-1349130406.6-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:26:50.282+10 257416
  2012-10-02-1349130410.87-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:26:55.689+10 404908
  2012-10-02-1349131017.75-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 08:37:00.263+10 209882
  2012-10-02-1349131173.84-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:39:36.325+10 208984
  2012-10-02-1349131179.54-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:39:47.887+10 699332
  2012-10-02-1349131267.16-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:41:09.636+10 207684
  2012-10-02-1349131271.47-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:41:27.244+10 1327240
  2012-10-02-1349131287.52-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:41:30.052+10 213128
  2012-10-02-1349131550.59-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:45:53.118+10 210266
  2012-10-02-1349131553.39-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:45:56.053+10 223368
  2012-10-02-1349131557.98-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:46:00.233+10 190600
  2012-10-02-1349131561.76-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:46:13.74+10 996696
  2012-10-02-1349131576.14-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:46:19.181+10 243374
  2012-10-02-1349131580.5-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:46:24.332+10 316346
  2012-10-02-1349131585.5-demo.wav 44028 CanberraBlackMnt 2012-10-02 08:46:29.292+10 249504
  2012-10-02-1349131591.44-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:46:37.922+10 544980
  2012-10-02-1349131604.21-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:46:59.867+10 1317000
  2012-10-02-1349131620.26-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:47:05.72+10 456840
  2012-10-02-1349131625.95-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:47:14.684+10 731994
  2012-10-02-1349131637.49-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:47:29.135+10 977878
  2012-10-02-1349131678.8-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:48:01.53+10 229464
  2012-10-02-1349131682.21-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:48:06.76+10 383112
  2012-10-02-1349131687.43-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:48:31.036+10 1932416
  2012-10-02-1349131711.94-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:48:37.019+10 427082
  2012-10-02-1349131958.84-demo.wav 44036 CanberraBlackMnt 2012-10-02 08:52:41.325+10 207964
  2012-10-02-1349131961.62-demo.wav 44036 CanberraBlackMnt 2012-10-02 08:52:44.547+10 245896
  2012-10-02-1349131965.75-demo.wav 44036 CanberraBlackMnt 2012-10-02 08:52:49.3+10 299144
  2012-10-02-1349131970.07-demo.wav 44036 CanberraBlackMnt 2012-10-02 08:52:53.255+10 260990
  2012-10-02-1349132025.52-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:53:49.22+10 310104
  2012-10-02-1349132030.38-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:53:53.638+10 274568
  2012-10-02-1349132034.82-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:54:16.429+10 1813832
  2012-10-02-1349132057.24-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:54:21.086+10 323720
  2012-10-02-1349132061.55-demo.wav 40067 CanberraMtAinsli 2012-10-02 08:54:25.745+10 354440
  2012-10-02-1349132067.56-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:54:33.113+10 465520
  2012-10-02-1349132073.38-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:54:37.707+10 364680
  2012-10-02-1349132078.68-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:54:48.298+10 776538
  2012-10-02-1349132088.59-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:54:52.158+10 251034
  2012-10-02-1349132360.26-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:59:22.734+10 207704
  2012-10-02-1349132363.24-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:59:25.62+10 200840
  2012-10-02-1349132365.93-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:59:30.804+10 409736
  2012-10-02-1349132371.09-demo.wav 40067 CanberraBlackMnt 2012-10-02 08:59:34.919+10 323708
  2012-10-02-1349132375.51-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 08:59:52.093+10 1385706
  2012-10-02-1349132393.07-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:00:02.109+10 757328
  2012-10-02-1349132403.25-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:00:05.984+10 229512
  2012-10-02-1349132448.34-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:00:52.029+10 307654
  2012-10-02-1349132453.82-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:01:07.58+10 1157256
  2012-10-02-1349132467.91-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:01:12.222+10 362632
  2012-10-02-1349132531.44-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 09:02:26.177+10 1240548
  2012-10-02-1349132547.1-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 09:02:31.228+10 344570
  2012-10-02-1349132551.72-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 09:02:38.434+10 563336
  2012-10-02-1349132559.74-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:02:54.048+10 1202312
  2012-10-02-1349132681.11-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:04:43.866+10 229442
  2012-10-02-1349132685.52-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:05:21.154+10 2968332
  2012-10-02-1349132758.52-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 09:06:03.01+10 376388
  2012-10-02-1349132763.43-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 09:06:05.729+10 192648
  2012-10-02-1349132994.72-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:09:57.244+10 208436
  2012-10-02-1349133000.76-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:10:04.964+10 354440
  2012-10-02-1349133074.34-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 09:11:18.1+10 315576
  2012-10-02-1349133079.1-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 09:11:24.655+10 467080
  2012-10-02-1349133086.81-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 09:11:35.893+10 764038
  2012-10-02-1349133096.5-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 09:11:41.109+10 387208
  2012-10-02-1349133101.27-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 09:11:43.83+10 215176
  2012-10-02-1349133104.25-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 09:11:52.122+10 607892
  2012-10-02-1349133113.04-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:12:13.589+10 1728096
  2012-10-02-1349133151.64-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:12:34.1+10 206984
  2012-10-02-1349133173.84-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:12:56.142+10 194696
  2012-10-02-1349133201.96-demo.wav 44036 CanberraMtAinsli 2012-10-02 09:13:25.773+10 321384
  2012-10-02-1349133207.18-demo.wav 44036 CanberraMtAinsli 2012-10-02 09:13:29.537+10 198792
  2012-10-02-1349133210.52-demo.wav 44036 CanberraMtAinsli 2012-10-02 09:13:34.578+10 342152
  2012-10-02-1349133215.3-demo.wav 44036 CanberraMtAinsli 2012-10-02 09:13:43.558+10 692036
  2012-10-02-1349133224.0-demo.wav 44036 CanberraMtAinsli 2012-10-02 09:13:48.23+10 306892
  2012-10-02-1349133228.76-demo.wav 44036 CanberraBlackMnt 2012-10-02 09:13:54.897+10 512184
  2012-10-02-1349133236.91-demo.wav 44036 CanberraBlackMnt 2012-10-02 09:14:02.92+10 505990
  2012-10-02-1349133243.49-demo.wav 44036 CanberraBlackMnt 2012-10-02 09:14:06.748+10 269158
  2012-10-02-1349133247.91-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:14:25.551+10 1483470
  2012-10-02-1349133288.17-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:14:51.134+10 247944
  2012-10-02-1349133292.65-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:14:59.157+10 545992
  2012-10-02-1349133345.64-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:15:48.708+10 255920
  2012-10-02-1349133350.41-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:15:58.277+10 661640
  2012-10-02-1349133358.48-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:16:06.061+10 637064
  2012-10-02-1349133366.4-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:16:11.818+10 453092
  2012-10-02-1349133372.11-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:16:21.771+10 757522
  2012-10-02-1349133429.3-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 09:17:11.817+10 209676
  2012-10-02-1349133435.56-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 09:17:26.005+10 878728
  2012-10-02-1349133446.59-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 09:17:30.447+10 323720
  2012-10-02-1349133451.34-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 09:17:35.109+10 317560
  2012-10-02-1349133455.86-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 09:17:40.139+10 339822
  2012-10-02-1349133537.16-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 09:18:59.675+10 209556
  2012-10-02-1349133543.05-demo.wav 44028 CanberraMtAinsli 2012-10-02 09:19:08.286+10 440456
  2012-10-02-1349133549.34-demo.wav 44028 CanberraMtAinsli 2012-10-02 09:19:16.453+10 593604
  2012-10-02-1349133556.66-demo.wav 44028 CanberraMtAinsli 2012-10-02 09:19:22.513+10 493704
  2012-10-02-1349133562.7-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:19:28.528+10 485880
  2012-10-02-1349133568.75-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:19:39.324+10 888966
  2012-10-02-1349133579.6-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:19:45.018+10 397776
  2012-10-02-1349133585.3-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:19:49.9+10 328352
  2012-10-02-1349133592.88-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 09:20:00.004+10 598310
  2012-10-02-1349133600.25-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 09:20:17.449+10 1442208
  2012-10-02-1349133643.38-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:20:45.838+10 206984
  2012-10-02-1349133647.08-demo.wav i1045263 CanberraBlackMnt 2012-10-02 09:21:08.978+10 1840640
  2012-10-02-1349133669.1-demo.wav i1045263 CanberraBlackMnt 2012-10-02 09:21:11.817+10 227464
  2012-10-02-1349133673.14-demo.wav i1045263 CanberraBlackMnt 2012-10-02 09:21:26.667+10 1136776
  2012-10-02-1349133686.94-demo.wav i1045263 CanberraBlackMnt 2012-10-02 09:21:31.835+10 411784
  2012-10-02-1349133694.53-demo.wav i1045263 CanberraBlackMnt 2012-10-02 09:21:44.72+10 855076
  2012-10-02-1349133819.14-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:23:42.018+10 240038
  2012-10-02-1349133858.25-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:24:20.773+10 209976
  2012-10-02-1349133862.08-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:24:27.475+10 450074
  2012-10-02-1349133868.03-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:24:31.479+10 290952
  2012-10-02-1349133956.42-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:25:58.988+10 209610
  2012-10-02-1349133962.36-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:26:17.394+10 1265800
  2012-10-02-1349133978.39-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:26:25.113+10 562390
  2012-10-02-1349133985.7-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:26:29.644+10 331912
  2012-10-02-1349133990.47-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:26:43.758+10 1116144
  2012-10-02-1349134006.4-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:26:51.767+10 451046
  2012-10-02-1349134012.81-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:26:56.568+10 315528
  2012-10-02-1349134017.61-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:27:06.68+10 764040
  2012-10-02-1349134027.14-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:27:11.483+10 364680
  2012-10-02-1349134031.76-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:27:20.559+10 695816
  2012-10-02-1349134044.05-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:27:31.913+10 660726
  2012-10-02-1349134052.94-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:27:41.277+10 702600
  2012-10-02-1349134062.41-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:27:47.13+10 399496
  2012-10-02-1349134104.95-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:28:27.434+10 208792
  2012-10-02-1349134108.32-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:28:32.794+10 376968
  2012-10-02-1349134113.5-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:28:37.898+10 368776
  2012-10-02-1349134118.52-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:28:53.193+10 1235080
  2012-10-02-1349134134.28-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:28:58.854+10 380402
  2012-10-02-1349134139.54-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:29:03.4+10 317030
  2012-10-02-1349134144.84-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:29:14.452+10 807662
  2012-10-02-1349134156.97-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:29:22.57+10 451486
  2012-10-02-1349134163.41-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:29:27.022+10 290612
  2012-10-02-1349134167.64-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:29:38.727+10 934024
  2012-10-02-1349134179.78-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:29:46.176+10 538760
  2012-10-02-1349134188.47-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:29:52.38+10 327816
  2012-10-02-1349134192.64-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:29:57.261+10 389256
  2012-10-02-1349134197.45-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:30:06.096+10 722070
  2012-10-02-1349134206.95-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:30:10.499+10 285040
  2012-10-02-1349134211.21-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:30:17.181+10 500988
  2012-10-02-1349134218.14-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:30:23.721+10 467352
  2012-10-02-1349134224.35-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:30:27.644+10 274568
  2012-10-02-1349134229.17-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:30:33.434+10 356986
  2012-10-02-1349134233.73-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:30:42.031+10 697834
  2012-10-02-1349134284.31-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:31:26.801+10 209004
  2012-10-02-1349134305.76-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:31:48.285+10 210692
  2012-10-02-1349134309.39-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:31:58.906+10 796840
  2012-10-02-1349134319.19-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:32:03.373+10 352392
  2012-10-02-1349134323.67-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:32:06.754+10 254088
  2012-10-02-1349134348.94-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:32:31.41+10 209032
  2012-10-02-1349134352.37-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:32:37.185+10 401918
  2012-10-02-1349134476.15-demo.wav 40032 ESA 1 CanberraMtAinsli 2012-10-02 09:34:41.177+10 419996
  2012-10-02-1349134508.66-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:35:13.937+10 442854
  2012-10-02-1349134514.53-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:35:27.428+10 1081380
  2012-10-02-1349134528.43-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:35:35.244+10 573576
  2012-10-02-1349134535.65-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:35:41.496+10 491576
  2012-10-02-1349134542.49-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:36:00.825+10 1540120
  2012-10-02-1349134627.86-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 09:37:11.131+10 273606
  2012-10-02-1349134632.21-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 09:37:20.25+10 672638
  2012-10-02-1349134640.55-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 09:37:28.883+10 702600
  2012-10-02-1349134649.17-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 09:37:38.73+10 758534
  2012-10-02-1349134659.08-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 09:37:42.936+10 264084
  2012-10-02-1349134663.38-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 09:37:47.991+10 387062
  2012-10-02-1349134766.89-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:39:30.408+10 297676
  2012-10-02-1349134771.93-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:39:39.292+10 618632
  2012-10-02-1349134780.25-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:39:44.38+10 348296
  2012-10-02-1349134784.6-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:39:53.774+10 772232
  2012-10-02-1349134794.99-demo.wav 44028 CanberraMtAinsli 2012-10-02 09:40:02.225+10 607352
  2012-10-02-1349134803.91-demo.wav 44028 CanberraMtAinsli 2012-10-02 09:40:06.597+10 225416
  2012-10-02-1349134861.18-demo.wav 44036 CanberraBlackMnt 2012-10-02 09:41:05.113+10 328464
  2012-10-02-1349134866.07-demo.wav 44036 CanberraBlackMnt 2012-10-02 09:41:09.418+10 280712
  2012-10-02-1349134869.69-demo.wav 44036 CanberraBlackMnt 2012-10-02 09:41:12.736+10 256136
  2012-10-02-1349134874.23-demo.wav 44036 CanberraBlackMnt 2012-10-02 09:41:17.441+10 268364
  2012-10-02-1349134882.47-demo.wav 44036 CanberraMtAinsli 2012-10-02 09:41:31.127+10 727834
  2012-10-02-1349134893.25-demo.wav 44036 CanberraMtAinsli 2012-10-02 09:41:36.566+10 277166
  2012-10-02-1349134897.46-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:41:45.162+10 645264
  2012-10-02-1349134906.12-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:41:48.943+10 237704
  2012-10-02-1349134909.48-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:41:55.721+10 524424
  2012-10-02-1349134916.01-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:41:58.323+10 194696
  2012-10-02-1349134918.59-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:42:02.836+10 355280
  2012-10-02-1349134923.33-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:42:10.699+10 620680
  2012-10-02-1349135137.03-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:45:40.074+10 257334
  2012-10-02-1349135165.15-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:46:08.417+10 273336
  2012-10-02-1349135187.07-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:46:29.964+10 243848
  2012-10-02-1349135190.18-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:46:33.839+10 309384
  2012-10-02-1349135194.47-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:46:38.354+10 323096
  2012-10-02-1349135199.75-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:46:44.972+10 434312
  2012-10-02-1349135205.26-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:46:50.443+10 426674
  2012-10-02-1349135211.51-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:46:56.903+10 417518
  2012-10-02-1349135217.56-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:47:10.875+10 1120340
  2012-10-02-1349135231.09-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:47:16.744+10 475272
  2012-10-02-1349135237.13-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:47:20.493+10 280712
  2012-10-02-1349135240.97-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:47:24.528+10 299144
  2012-10-02-1349135245.49-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:47:27.958+10 208808
  2012-10-02-1349135273.9-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:47:56.588+10 227464
  2012-10-02-1349135278.15-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:48:08.584+10 878728
  2012-10-02-1349135289.59-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:48:14.23+10 383408
  2012-10-02-1349135295.78-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:48:18.823+10 256136
  2012-10-02-1349135299.42-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:48:22.684+10 274568
  2012-10-02-1349135303.1-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:48:30.674+10 579166
  2012-10-02-1349135310.95-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:48:34.279+10 216908
  2012-10-02-1349135314.51-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:48:42.35+10 625592
  2012-10-02-1349135322.59-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:48:49.271+10 513332
  2012-10-02-1349135329.53-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:48:53.801+10 298526
  2012-10-02-1349135334.84-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:49:02.605+10 650860
  2012-10-02-1349135343.04-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:49:10.978+10 666090
  2012-10-02-1349135351.27-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:49:15.046+10 290164
  2012-10-02-1349135355.33-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:49:18.62+10 238558
  2012-10-02-1349135361.9-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:49:26.513+10 338378
  2012-10-02-1349135367.42-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-02 09:49:49.274+10 1837058
  2012-10-02-1349135389.49-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-02 09:49:58.885+10 788616
  2012-10-02-1349135645.18-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:54:09.265+10 343316
  2012-10-02-1349135650.52-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:54:15.054+10 377884
  2012-10-02-1349135655.4-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:54:23.65+10 692360
  2012-10-02-1349135664.86-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:54:29.377+10 376968
  2012-10-02-1349135670.16-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 09:54:51.082+10 1757320
  2012-10-02-1349135691.3-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 09:54:58.666+10 616582
  2012-10-02-1349135698.86-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 09:55:03.187+10 362632
  2012-10-02-1349135704.13-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 09:55:23.417+10 1620230
  2012-10-02-1349135751.47-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 09:55:55.969+10 378622
  2012-10-02-1349135757.67-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 09:56:14.16+10 1382478
  2012-10-02-1349135775.21-demo.wav 44028 CanberraMtAinsli 2012-10-02 09:56:22.66+10 623920
  2012-10-02-1349135783.16-demo.wav 44028 CanberraMtAinsli 2012-10-02 09:56:26.552+10 284808
  2012-10-02-1349135788.05-demo.wav 44028 CanberraMtAinsli 2012-10-02 09:56:37.86+10 825410
  2012-10-02-1349135868.19-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:57:50.695+10 209024
  2012-10-02-1349135895.75-demo.wav 44028 CanberraMtAinsli 2012-10-02 09:58:19.565+10 321664
  2012-10-02-1349135900.69-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:58:38.607+10 1505678
  2012-10-02-1349135919.62-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:58:45.163+10 464892
  2012-10-02-1349135926.0-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:58:48.513+10 211080
  2012-10-02-1349135930.09-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:59:02.116+10 991100
  2012-10-02-1349135942.38-demo.wav 44028 CanberraBlackMnt 2012-10-02 09:59:06.041+10 304324
  2012-10-02-1349135949.91-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:59:24.941+10 1261828
  2012-10-02-1349135966.06-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:59:31.894+10 489608
  2012-10-02-1349135973.25-demo.wav 40067 CanberraMtAinsli 2012-10-02 09:59:35.881+10 221320
  2012-10-02-1349135976.93-demo.wav 40067 CanberraBlackMnt 2012-10-02 09:59:48.146+10 944050
  2012-10-02-1349135988.88-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:00:07.284+10 1542704
  2012-10-02-1349136007.49-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:00:14.907+10 624776
  2012-10-02-1349136015.65-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:00:18.592+10 247920
  2012-10-02-1349136131.51-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:02:14.102+10 219224
  2012-10-02-1349136136.05-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:02:18.983+10 245896
  2012-10-02-1349136139.75-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:02:29.158+10 791998
  2012-10-02-1349136149.56-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:02:44.756+10 1278088
  2012-10-02-1349136167.52-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:02:52.204+10 395400
  2012-10-02-1349136225.08-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:03:50.003+10 413006
  2012-10-02-1349136234.13-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:03:58.519+10 368776
  2012-10-02-1349136239.96-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:04:04.804+10 405064
  2012-10-02-1349136245.73-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:04:10.1+10 357278
  2012-10-02-1349136250.62-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:04:13.194+10 217224
  2012-10-02-1349136253.48-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:04:16.574+10 199886
  2012-10-02-1349136256.89-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:04:24.312+10 577958
  2012-10-02-1349136264.78-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 10:04:37.86+10 1099232
  2012-10-02-1349136278.13-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 10:04:42.253+10 316072
  2012-10-02-1349136282.53-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 10:04:46.368+10 262006
  2012-10-02-1349136313.81-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:05:19.239+10 455266
  2012-10-02-1349136319.68-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:05:22.987+10 278664
  2012-10-02-1349136323.96-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:05:30.754+10 569480
  2012-10-02-1349136330.96-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:05:36.416+10 403980
  2012-10-02-1349136336.88-demo.wav 40067 CanberraBlackMnt 2012-10-02 10:05:47.755+10 913390
  2012-10-02-1349136399.73-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:06:42.251+10 209350
  2012-10-02-1349136403.44-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:06:52.217+10 733114
  2012-10-02-1349136414.29-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:06:57.194+10 243848
  2012-10-02-1349136417.72-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:07:03.702+10 503944
  2012-10-02-1349136424.55-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:07:07.354+10 231350
  2012-10-02-1349136428.24-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:07:17.641+10 791896
  2012-10-02-1349136438.48-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:07:25.663+10 604296
  2012-10-02-1349136445.96-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:07:30.209+10 356488
  2012-10-02-1349136450.53-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:07:35.696+10 434312
  2012-10-02-1349136456.29-demo.wav 40067 CanberraBlackMnt 2012-10-02 10:07:42.108+10 489608
  2012-10-02-1349136462.39-demo.wav 40067 CanberraBlackMnt 2012-10-02 10:07:45.25+10 237704
  2012-10-02-1349136465.84-demo.wav 40067 CanberraBlackMnt 2012-10-02 10:07:49.221+10 280712
  2012-10-02-1349136469.45-demo.wav 40067 CanberraBlackMnt 2012-10-02 10:07:55.267+10 441126
  2012-10-02-1349136475.56-demo.wav 40067 CanberraBlackMnt 2012-10-02 10:07:58.601+10 192502
  2012-10-02-1349136592.73-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 10:09:55.292+10 213154
  2012-10-02-1349136598.19-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 10:10:07.361+10 766786
  2012-10-02-1349136610.07-demo.wav 40067 CanberraBlackMnt 2012-10-02 10:10:20.264+10 858248
  2012-10-02-1349136620.54-demo.wav 40067 CanberraBlackMnt 2012-10-02 10:10:24.921+10 368776
  2012-10-02-1349136625.8-demo.wav 40067 CanberraBlackMnt 2012-10-02 10:10:28.766+10 249992
  2012-10-02-1349136629.48-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:10:43.676+10 1194120
  2012-10-02-1349136644.92-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:10:55.032+10 852104
  2012-10-02-1349136655.51-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:11:00.629+10 430216
  2012-10-02-1349136661.29-demo.wav 40067 CanberraBlackMnt 2012-10-02 10:11:06.771+10 460936
  2012-10-02-1349136762.39-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:12:45.073+10 225092
  2012-10-02-1349136766.09-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:12:48.855+10 233608
  2012-10-02-1349136769.67-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:13:01.787+10 994608
  2012-10-02-1349136782.0-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:13:07.099+10 409254
  2012-10-02-1349136788.26-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:13:16.285+10 675532
  2012-10-02-1349136796.61-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:13:24.293+10 647304
  2012-10-02-1349136805.08-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:13:30.321+10 440456
  2012-10-02-1349137002.73-demo.wav 40067 CanberraBlackMnt 2012-10-02 10:16:50.43+10 646514
  2012-10-02-1349137011.76-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 10:17:06.918+10 1271714
  2012-10-02-1349137027.11-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 10:17:11.276+10 350344
  2012-10-02-1349137052.16-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 10:17:35.646+10 293000
  2012-10-02-1349137073.03-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 10:17:55.497+10 206984
  2012-10-02-1349137104.55-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 10:18:27.044+10 209250
  2012-10-02-1349137128.42-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:18:51.032+10 217234
  2012-10-02-1349137131.43-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:18:55.42+10 336008
  2012-10-02-1349137165.97-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:19:28.532+10 214688
  2012-10-02-1349137168.88-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:19:31.706+10 237704
  2012-10-02-1349137172.27-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:19:45.374+10 1103990
  2012-10-02-1349137185.64-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:19:59.026+10 1120558
  2012-10-02-1349137199.25-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:20:09.728+10 875936
  2012-10-02-1349137210.02-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:20:15.071+10 421156
  2012-10-02-1349137218.4-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:20:30.717+10 973482
  2012-10-02-1349137233.48-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 10:20:46.706+10 1111474
  2012-10-02-1349137311.15-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 10:21:57.116+10 501186
  2012-10-02-1349137318.26-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 10:22:10.569+10 1034724
  2012-10-02-1349137331.26-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 10:22:14.955+10 311432
  2012-10-02-1349137335.38-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 10:22:22.275+10 579720
  2012-10-02-1349137343.13-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 10:22:27.077+10 331574
  2012-10-02-1349137347.49-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 10:22:35.711+10 633938
  2012-10-02-1349137355.88-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 10:22:46.029+10 788654
  2012-10-02-1349137366.24-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 10:22:50.558+10 302536
  2012-10-02-1349137424.22-demo.wav 40067 CanberraBlackMnt 2012-10-02 10:23:47.717+10 293198
  2012-10-02-1349137469.98-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:24:33.552+10 298318
  2012-10-02-1349137474.86-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:24:43.392+10 716936
  2012-10-02-1349137484.52-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:24:48.083+10 289866
  2012-10-02-1349137489.39-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:24:52.66+10 274564
  2012-10-02-1349137493.24-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:24:57.253+10 338056
  2012-10-02-1349137497.57-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:25:06.855+10 729560
  2012-10-02-1349137513.09-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:25:16.393+10 220798
  2012-10-02-1349137516.9-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:25:30.89+10 1175932
  2012-10-02-1349137531.12-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:25:34.113+10 252040
  2012-10-02-1349137534.39-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:25:36.569+10 184456
  2012-10-02-1349137537.94-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:25:40.175+10 188552
  2012-10-02-1349137580.62-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:26:23.713+10 259456
  2012-10-02-1349137584.97-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:26:27.668+10 225416
  2012-10-02-1349137589.87-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:26:33.156+10 273450
  2012-10-02-1349137657.04-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 10:27:39.523+10 208396
  2012-10-02-1349137783.96-demo.wav 40032 ESA 1 CanberraMtAinsli 2012-10-02 10:29:49.524+10 468724
  2012-10-02-1349137790.51-demo.wav 40032 ESA 1 CanberraMtAinsli 2012-10-02 10:29:57.108+10 553096
  2012-10-02-1349137863.06-demo.wav 40067 CanberraBlackMnt 2012-10-02 10:31:05.588+10 209268
  2012-10-02-1349137869.02-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:31:19.751+10 903304
  2012-10-02-1349137880.68-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:31:22.813+10 180360
  2012-10-02-1349137883.41-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:31:29.129+10 479368
  2012-10-02-1349137889.41-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:31:33.836+10 374920
  2012-10-02-1349137894.14-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:31:36.739+10 215176
  2012-10-02-1349137897.77-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:31:41.923+10 336802
  2012-10-02-1349137902.64-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:31:46.405+10 286266
  2012-10-02-1349137907.77-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:31:50.871+10 243086
  2012-10-02-1349137911.83-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:31:59.482+10 642390
  2012-10-02-1349137919.89-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:32:02.514+10 221320
  2012-10-02-1349137923.93-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:32:09.164+10 440452
  2012-10-02-1349137929.86-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:32:13.456+10 290308
  2012-10-02-1349137933.61-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:32:17.108+10 287778
  2012-10-02-1349137937.93-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:32:24.365+10 533974
  2012-10-02-1349137945.37-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:32:29.486+10 346018
  2012-10-02-1349137978.36-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 10:33:00.516+10 180360
  2012-10-02-1349137980.81-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 10:33:03.945+10 264328
  2012-10-02-1349137984.69-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 10:33:07.884+10 268424
  2012-10-02-1349137988.2-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 10:33:13.37+10 434312
  2012-10-02-1349137993.85-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 10:33:20.154+10 527590
  2012-10-02-1349138000.44-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 10:33:26.533+10 454706
  2012-10-02-1349138006.89-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 10:33:30.011+10 204010
  2012-10-02-1349138010.51-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 10:33:36.592+10 511784
  2012-10-02-1349138017.89-demo.wav 40032 ESA 1 CanberraMtAinsli 2012-10-02 10:33:53.671+10 1325192
  2012-10-02-1349138034.05-demo.wav 40032 ESA 1 CanberraMtAinsli 2012-10-02 10:33:56.621+10 215176
  2012-10-02-1349138037.49-demo.wav 40032 ESA 1 CanberraMtAinsli 2012-10-02 10:34:05.942+10 710762
  2012-10-02-1349138046.92-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:34:12.321+10 452108
  2012-10-02-1349138054.05-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:34:17.95+10 327816
  2012-10-02-1349138058.58-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:34:21.842+10 274568
  2012-10-02-1349138062.03-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:34:25.192+10 242072
  2012-10-02-1349138066.08-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:34:30.615+10 333072
  2012-10-02-1349138071.1-demo.wav 40032 ESA 1 CanberraMtAinsli 2012-10-02 10:34:36.267+10 432498
  2012-10-02-1349138076.84-demo.wav 40032 ESA 1 CanberraMtAinsli 2012-10-02 10:34:46.085+10 776218
  2012-10-02-1349138124.77-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:35:29.304+10 380518
  2012-10-02-1349138129.6-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:35:31.762+10 182408
  2012-10-02-1349138132.06-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:35:39.529+10 628872
  2012-10-02-1349138140.47-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 10:36:01.314+10 1751350
  2012-10-02-1349138162.29-demo.wav 40032 ESA 1 CanberraMtAinsli 2012-10-02 10:36:09.432+10 597378
  2012-10-02-1349138170.5-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 10:36:16.567+10 507510
  2012-10-02-1349138177.59-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 10:36:28.314+10 901256
  2012-10-02-1349138191.38-demo.wav 40032 ESA 1 CanberraBlackMnt 2012-10-02 10:36:37.102+10 481416
  2012-10-02-1349138245.07-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:37:29.363+10 359464
  2012-10-02-1349138251.43-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:37:34.915+10 288388
  2012-10-02-1349138256.12-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:37:52.952+10 1415634
  2012-10-02-1349138274.1-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:38:01.547+10 628872
  2012-10-02-1349138306.97-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:38:30.815+10 323720
  2012-10-02-1349138312.42-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:38:42.76+10 868488
  2012-10-02-1349138323.33-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:38:50.4+10 594056
  2012-10-02-1349138330.59-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:39:01.213+10 884618
  2012-10-02-1349138342.07-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:39:10.83+10 672000
  2012-10-02-1349138354.61-demo.wav 40032 ESA 1 CanberraMtAinsli 2012-10-02 10:39:25.024+10 872690
  2012-10-02-1349138365.95-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:39:36.411+10 878566
  2012-10-02-1349138377.39-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:39:47.894+10 883248
  2012-10-02-1349138389.95-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:39:52.169+10 186504
  2012-10-02-1349138437.04-demo.wav 44028 CanberraMtAinsli 2012-10-02 10:40:51.13+10 1185536
  2012-10-02-1349138452.06-demo.wav 44028 CanberraMtAinsli 2012-10-02 10:41:06.568+10 1218628
  2012-10-02-1349138467.04-demo.wav 44028 CanberraMtAinsli 2012-10-02 10:41:11.752+10 395400
  2012-10-02-1349138471.94-demo.wav 44028 CanberraMtAinsli 2012-10-02 10:41:15.436+10 295024
  2012-10-02-1349138523.49-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:42:08.576+10 427770
  2012-10-02-1349138529.17-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 10:42:14.805+10 473224
  2012-10-02-1349138535.11-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 10:42:18.852+10 313480
  2012-10-02-1349138539.08-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 10:42:29.595+10 884872
  2012-10-02-1349138587.61-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:43:12.131+10 380606
  2012-10-02-1349138592.41-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:43:17.044+10 389256
  2012-10-02-1349138598.07-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:43:32.242+10 1189576
  2012-10-02-1349138612.76-demo.wav 44028 CanberraBlackMnt 2012-10-02 10:43:35.848+10 258184
  2012-10-02-1349138768.46-demo.wav 40032 ESA 1 CanberraBlackMnt 2012-10-02 10:46:19.292+10 908032
  2012-10-02-1349138856.31-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 10:47:42.323+10 500128
  2012-10-02-1349138862.81-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 10:47:46.061+10 274568
  2012-10-02-1349138938.98-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 10:49:01.497+10 209674
  2012-10-02-1349138945.22-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:49:22.311+10 1437832
  2012-10-02-1349138966.01-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:49:30.684+10 395400
  2012-10-02-1349138971.81-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:49:35.342+10 297052
  2012-10-02-1349138975.76-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:49:38.276+10 213128
  2012-10-02-1349138978.95-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:49:41.195+10 190600
  2012-10-02-1349138981.52-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:49:44.162+10 207404
  2012-10-02-1349139049.53-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 10:50:52.986+10 289836
  2012-10-02-1349139053.6-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 10:51:04.978+10 956552
  2012-10-02-1349139065.26-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 10:51:09.933+10 393352
  2012-10-02-1349139070.22-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 10:51:19.577+10 727052
  2012-10-02-1349139079.8-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 10:51:26.537+10 510258
  2012-10-02-1349139086.84-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 10:51:30.295+10 226994
  2012-10-02-1349139133.07-demo.wav 40066 CanberraMtAinsli 2012-10-02 10:52:15.591+10 209182
  2012-10-02-1349139137.18-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:52:28.78+10 977032
  2012-10-02-1349139151.4-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:52:36.468+10 422024
  2012-10-02-1349139157.69-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:52:41.333+10 305288
  2012-10-02-1349139162.31-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:52:44.636+10 194696
  2012-10-02-1349139165.9-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 10:52:53.865+10 666896
  2012-10-02-1349139174.81-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 10:53:13.426+10 1561936
  2012-10-02-1349139193.72-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 10:53:16.077+10 198792
  2012-10-02-1349139196.61-demo.wav 44027 CanberraBlackMnt 2012-10-02 10:53:22.888+10 528520
  2012-10-02-1349139205.93-demo.wav 44027 CanberraMtAinsli 2012-10-02 10:53:44.722+10 1581192
  2012-10-02-1349139228.21-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:53:55.105+10 577672
  2012-10-02-1349139237.04-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:53:59.331+10 192648
  2012-10-02-1349139240.22-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:54:02.426+10 186504
  2012-10-02-1349139243.22-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:54:06.605+10 286854
  2012-10-02-1349139247.14-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:54:10.577+10 285102
  2012-10-02-1349139250.88-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:54:14.405+10 255546
  2012-10-02-1349139255.12-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:54:19.669+10 382198
  2012-10-02-1349139260.89-demo.wav 44036 CanberraBlackMnt 2012-10-02 10:54:23.466+10 217224
  2012-10-02-1349139269.99-demo.wav 44027 CanberraMtAinsli 2012-10-02 10:54:37.216+10 603338
  2012-10-02-1349139280.19-demo.wav 44027 CanberraBlackMnt 2012-10-02 10:54:46.05+10 491656
  2012-10-02-1349139287.77-demo.wav 44027 CanberraBlackMnt 2012-10-02 10:54:56.511+10 735330
  2012-10-02-1349139297.09-demo.wav 44027 CanberraBlackMnt 2012-10-02 10:55:02.349+10 405250
  2012-10-02-1349139302.8-demo.wav 44027 CanberraBlackMnt 2012-10-02 10:55:11.377+10 707398
  2012-10-02-1349139311.74-demo.wav 44027 CanberraBlackMnt 2012-10-02 10:55:16.114+10 320602
  2012-10-02-1349139316.85-demo.wav 44027 CanberraBlackMnt 2012-10-02 10:55:21.904+10 421146
  2012-10-02-1349139322.69-demo.wav 44027 CanberraBlackMnt 2012-10-02 10:55:26.322+10 274948
  2012-10-02-1349139390.24-demo.wav 40067 CanberraMtAinsli 2012-10-02 10:56:35.459+10 438492
  2012-10-02-1349139491.39-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 10:58:15.368+10 329940
  2012-10-02-1349139498.34-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 10:58:22.938+10 387208
  2012-10-02-1349139658.67-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:01:02.827+10 348702
  2012-10-02-1349139664.93-demo.wav 44028 CanberraMtAinsli 2012-10-02 11:01:12.747+10 657544
  2012-10-02-1349139675.7-demo.wav 44028 CanberraMtAinsli 2012-10-02 11:01:30.753+10 1265800
  2012-10-02-1349139692.5-demo.wav 44028 CanberraMtAinsli 2012-10-02 11:01:34.757+10 190600
  2012-10-02-1349139695.78-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:01:41.616+10 493704
  2012-10-02-1349139702.39-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:01:46.354+10 333960
  2012-10-02-1349139707.61-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:01:58.06+10 878728
  2012-10-02-1349139739.81-demo.wav 44028 CanberraMtAinsli 2012-10-02 11:02:23.77+10 333960
  2012-10-02-1349139744.18-demo.wav 44028 CanberraMtAinsli 2012-10-02 11:02:26.864+10 225416
  2012-10-02-1349139747.19-demo.wav 44028 CanberraMtAinsli 2012-10-02 11:02:30.133+10 245896
  2012-10-02-1349139752.47-demo.wav 44036 CanberraBlackMnt 2012-10-02 11:02:38.985+10 544904
  2012-10-02-1349139761.87-demo.wav 44036 CanberraBlackMnt 2012-10-02 11:02:44.072+10 184456
  2012-10-02-1349139765.33-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:03:04.247+10 1591432
  2012-10-02-1349139785.41-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:03:11.056+10 470430
  2012-10-02-1349139791.6-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:03:19.494+10 665736
  2012-10-02-1349139799.83-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:03:22.796+10 249736
  2012-10-02-1349139803.62-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:03:28.346+10 356052
  2012-10-02-1349139808.58-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:03:34.678+10 454882
  2012-10-02-1349139815.07-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:03:38.284+10 214296
  2012-10-02-1349139818.59-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:03:49.225+10 836684
  2012-10-02-1349139830.55-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:03:56.929+10 497228
  2012-10-02-1349139837.53-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:04:04.824+10 611354
  2012-10-02-1349139846.42-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:04:15.046+10 708678
  2012-10-02-1349139856.48-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:04:26.609+10 840724
  2012-10-02-1349139867.01-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:04:34.87+10 646260
  2012-10-02-1349139877.37-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:04:41.14+10 304732
  2012-10-02-1349139882.12-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:04:50.279+10 685296
  2012-10-02-1349139891.42-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:04:55.461+10 340104
  2012-10-02-1349139895.67-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:05:00.534+10 409018
  2012-10-02-1349139900.8-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:05:03.389+10 212386
  2012-10-02-1349139903.69-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:05:09.259+10 452342
  2012-10-02-1349139909.91-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:05:18.095+10 684606
  2012-10-02-1349139918.3-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:05:21.796+10 295048
  2012-10-02-1349139922.06-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:05:24.618+10 215176
  2012-10-02-1349139927.43-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:05:48.301+10 1755422
  2012-10-02-1349139978.9-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:06:22.846+10 331902
  2012-10-02-1349139983.25-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:06:35.876+10 1060978
  2012-10-02-1349139996.16-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:06:39.338+10 253862
  2012-10-02-1349139999.78-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:06:46.595+10 562414
  2012-10-02-1349140007.14-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:06:50.711+10 274930
  2012-10-02-1349140011.24-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:06:56.245+10 417302
  2012-10-02-1349140016.46-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:06:59.451+10 218402
  2012-10-02-1349140019.74-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:07:09.085+10 762766
  2012-10-02-1349140029.35-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:07:17.745+10 698170
  2012-10-02-1349140038.02-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:07:23.933+10 489530
  2012-10-02-1349140044.2-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:07:28.08+10 314514
  2012-10-02-1349140048.42-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:07:32.354+10 299458
  2012-10-02-1349140053.02-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:07:37.284+10 319610
  2012-10-02-1349140058.05-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:07:48.049+10 839318
  2012-10-02-1349140068.61-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:07:53.201+10 387178
  2012-10-02-1349140073.65-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:07:57.523+10 325768
  2012-10-02-1349140077.72-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:08:02.419+10 395396
  2012-10-02-1349140085.5-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 11:08:17.019+10 967882
  2012-10-02-1349140097.83-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 11:08:23.776+10 501896
  2012-10-02-1349140106.67-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 11:08:30.34+10 307282
  2012-10-02-1349140110.73-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 11:08:40.303+10 803678
  2012-10-02-1349140120.64-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 11:08:45.356+10 393068
  2012-10-02-1349140125.62-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 11:08:49.492+10 280872
  2012-10-02-1349140130.0-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 11:08:57.498+10 585350
  2012-10-02-1349140137.94-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 11:09:06.888+10 751396
  2012-10-02-1349140149.54-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 11:09:13.96+10 370824
  2012-10-02-1349140154.66-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 11:09:17.707+10 252040
  2012-10-02-1349140250.82-demo.wav i1045311 CanberraBlackMnt 2012-10-02 11:10:53.302+10 208648
  2012-10-02-1349140277.01-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:11:20.415+10 285982
  2012-10-02-1349140303.61-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:11:46.063+10 206984
  2012-10-02-1349140348.06-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:12:30.67+10 218098
  2012-10-02-1349140414.62-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:13:37.316+10 224122
  2012-10-02-1349140417.94-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:13:40.236+10 194696
  2012-10-02-1349140421.35-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:13:58.416+10 1433736
  2012-10-02-1349140441.31-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:14:19.229+10 1504860
  2012-10-02-1349140459.5-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:14:22.548+10 256136
  2012-10-02-1349140463.23-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:14:25.881+10 223368
  2012-10-02-1349140466.08-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:14:31.638+10 467080
  2012-10-02-1349140472.08-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:14:35.053+10 249982
  2012-10-02-1349140475.35-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:14:38.929+10 241072
  2012-10-02-1349140479.17-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:14:41.832+10 196624
  2012-10-02-1349140482.74-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:14:46.409+10 308388
  2012-10-02-1349140487.09-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:15:09.646+10 1840808
  2012-10-02-1349140608.65-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:16:53.864+10 438034
  2012-10-02-1349140614.47-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:16:56.897+10 204936
  2012-10-02-1349140617.49-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:17:04.137+10 559240
  2012-10-02-1349140624.43-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:17:11.523+10 598152
  2012-10-02-1349140631.83-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:17:16.386+10 383082
  2012-10-02-1349140637.69-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:17:23.405+10 473950
  2012-10-02-1349140643.7-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:17:26.707+10 205972
  2012-10-02-1349140648.92-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:17:35.145+10 490374
  2012-10-02-1349140655.43-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:17:44.969+10 792516
  2012-10-02-1349140665.23-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:17:49.021+10 275364
  2012-10-02-1349140669.32-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:17:54.858+10 406822
  2012-10-02-1349140675.08-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:17:59.819+10 392976
  2012-10-02-1349140680.27-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:18:03.646+10 259012
  2012-10-02-1349140684.46-demo.wav 44036 CanberraBlackMnt 2012-10-02 11:18:25.956+10 1807088
  2012-10-02-1349140706.23-demo.wav 44036 CanberraBlackMnt 2012-10-02 11:18:28.446+10 186504
  2012-10-02-1349140709.87-demo.wav 44036 CanberraBlackMnt 2012-10-02 11:18:32.513+10 223368
  2012-10-02-1349140713.67-demo.wav 44036 CanberraBlackMnt 2012-10-02 11:18:37.123+10 290952
  2012-10-02-1349140894.23-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:21:37.282+10 254010
  2012-10-02-1349140898.76-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:21:40.887+10 180360
  2012-10-02-1349140901.02-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:21:47.459+10 542856
  2012-10-02-1349140908.38-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:21:52.292+10 321542
  2012-10-02-1349140912.65-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:21:55.976+10 218914
  2012-10-02-1349141079.45-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:24:43.218+10 316322
  2012-10-02-1349141259.11-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:27:41.604+10 209760
  2012-10-02-1349141345.41-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:29:08.024+10 217424
  2012-10-02-1349141349.01-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:29:12.603+10 299106
  2012-10-02-1349141452.49-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:30:56.788+10 360792
  2012-10-02-1349141479.05-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:31:22.626+10 299144
  2012-10-02-1349141505.08-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:31:47.557+10 209032
  2012-10-02-1349141507.83-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:31:54.351+10 546952
  2012-10-02-1349141515.2-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:32:00.045+10 405640
  2012-10-02-1349141520.99-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:32:05.708+10 379146
  2012-10-02-1349141528.43-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:32:12.088+10 306470
  2012-10-02-1349141532.38-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:32:18.706+10 522002
  2012-10-02-1349141538.9-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:32:21.387+10 195966
  2012-10-02-1349141541.93-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:32:25.582+10 289732
  2012-10-02-1349141546.05-demo.wav i1045214 CanberraBlackMnt 2012-10-02 11:32:29.855+10 314192
  2012-10-02-1349141551.0-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:32:49.169+10 1529326
  2012-10-02-1349141593.26-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:33:17.13+10 323720
  2012-10-02-1349141627.5-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:33:51.15+10 307238
  2012-10-02-1349141755.63-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:35:59.499+10 325710
  2012-10-02-1349141759.88-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:36:02.194+10 194696
  2012-10-02-1349141763.04-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:36:06.74+10 311432
  2012-10-02-1349141766.93-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:36:11.191+10 358536
  2012-10-02-1349141771.45-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:36:16.438+10 397440
  2012-10-02-1349141776.81-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:36:22.722+10 435398
  2012-10-02-1349141785.63-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:36:45.832+10 1694570
  2012-10-02-1349141806.1-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:36:49.978+10 325768
  2012-10-02-1349141810.57-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 11:36:59.777+10 774280
  2012-10-02-1349141821.29-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 11:37:18.157+10 1414388
  2012-10-02-1349141964.08-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 11:39:26.576+10 208676
  2012-10-02-1349142037.46-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:40:39.996+10 209942
  2012-10-02-1349142041.39-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:40:51.469+10 847238
  2012-10-02-1349142052.21-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:40:56.143+10 329864
  2012-10-02-1349142056.91-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:41:04.231+10 612480
  2012-10-02-1349142064.34-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:41:09.306+10 417338
  2012-10-02-1349142069.44-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:41:14.174+10 363016
  2012-10-02-1349142108.28-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:41:51.959+10 307668
  2012-10-02-1349142113.24-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:42:06.32+10 1093808
  2012-10-02-1349142126.6-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:42:08.808+10 186504
  2012-10-02-1349142128.94-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:42:12.541+10 303240
  2012-10-02-1349142133.07-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:42:17.695+10 387208
  2012-10-02-1349142141.15-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:42:23.662+10 211080
  2012-10-02-1349142201.88-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:43:25.07+10 268938
  2012-10-02-1349142323.13-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:45:27.737+10 383316
  2012-10-02-1349142355.21-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:45:59.5+10 358622
  2012-10-02-1349142360.87-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:46:08.098+10 602826
  2012-10-02-1349142368.47-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:46:13.395+10 413832
  2012-10-02-1349142373.95-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:46:17.384+10 278304
  2012-10-02-1349142459.94-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:47:44.387+10 371664
  2012-10-02-1349142466.01-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:47:50.243+10 356488
  2012-10-02-1349142470.75-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:47:54.79+10 340104
  2012-10-02-1349142474.92-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:47:58.81+10 325768
  2012-10-02-1349142479.06-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:48:01.666+10 219272
  2012-10-02-1349142481.98-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:48:05.066+10 258080
  2012-10-02-1349142521.54-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:48:44.213+10 221044
  2012-10-02-1349142525.81-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 11:49:00.379+10 1218696
  2012-10-02-1349142540.57-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 11:49:04.04+10 290952
  2012-10-02-1349142544.98-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:49:22.303+10 1454644
  2012-10-02-1349142562.46-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:49:25.541+10 256136
  2012-10-02-1349142566.05-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:49:32.847+10 571528
  2012-10-02-1349142573.13-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:49:36.611+10 290922
  2012-10-02-1349142576.74-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:49:39.292+10 211114
  2012-10-02-1349142579.58-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:49:42.402+10 185366
  2012-10-02-1349142645.48-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:50:48.884+10 288904
  2012-10-02-1349142650.24-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:50:59.012+10 733710
  2012-10-02-1349142660.0-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:51:02.157+10 180360
  2012-10-02-1349142663.2-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:51:10.243+10 592004
  2012-10-02-1349142730.37-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:52:16.919+10 548586
  2012-10-02-1349142737.28-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:52:22.598+10 448648
  2012-10-02-1349142743.06-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:52:25.9+10 239748
  2012-10-02-1349142746.18-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:52:30.846+10 329412
  2012-10-02-1349142751.16-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:52:36.428+10 444552
  2012-10-02-1349142757.06-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:52:41.404+10 364680
  2012-10-02-1349142761.71-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:52:46.143+10 370824
  2012-10-02-1349142766.58-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:52:52.939+10 524492
  2012-10-02-1349142775.53-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:53:13.644+10 1517486
  2012-10-02-1349142795.8-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:53:23.024+10 608392
  2012-10-02-1349142803.17-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:53:28.751+10 469128
  2012-10-02-1349142810.23-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:53:34.032+10 317564
  2012-10-02-1349142816.71-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:53:52.106+10 1292416
  2012-10-02-1349142881.88-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:54:46.359+10 375622
  2012-10-02-1349142887.77-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:54:55.945+10 684364
  2012-10-02-1349142896.65-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:55:03.81+10 602248
  2012-10-02-1349142903.95-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:55:10.112+10 486168
  2012-10-02-1349142911.09-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:55:14.164+10 227172
  2012-10-02-1349142914.94-demo.wav 40067 CanberraBlackMnt 2012-10-02 11:55:20.019+10 427904
  2012-10-02-1349142920.96-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:55:37.327+10 1372214
  2012-10-02-1349142937.77-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:55:42.848+10 426120
  2012-10-02-1349142964.11-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:56:06.632+10 213128
  2012-10-02-1349142966.83-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:56:12.04+10 434312
  2012-10-02-1349142973.61-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:56:18.197+10 387208
  2012-10-02-1349142979.15-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:56:23.812+10 391304
  2012-10-02-1349142985.8-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:56:32.714+10 582326
  2012-10-02-1349142993.89-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:56:41.041+10 599208
  2012-10-02-1349143004.18-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:56:55.796+10 976930
  2012-10-02-1349143016.32-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:57:00.933+10 370732
  2012-10-02-1349143021.19-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:57:10.792+10 754400
  2012-10-02-1349143031.08-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:57:18.623+10 619682
  2012-10-02-1349143038.82-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:57:24.797+10 449066
  2012-10-02-1349143045.19-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:57:29.248+10 333440
  2012-10-02-1349143050.32-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:57:33.666+10 270316
  2012-10-02-1349143055.05-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:57:39.775+10 395398
  2012-10-02-1349143060.38-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:57:43.669+10 270308
  2012-10-02-1349143064.27-demo.wav 40067 CanberraMtAinsli 2012-10-02 11:57:47.131+10 188442
  2012-10-02-1349143098.84-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:58:22.164+10 280676
  2012-10-02-1349143102.43-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:58:28.785+10 530568
  2012-10-02-1349143109.07-demo.wav 44028 CanberraBlackMnt 2012-10-02 11:58:32.645+10 303240
  2012-10-02-1349143216.41-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:00:18.944+10 208892
  2012-10-02-1349143277.55-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 12:01:20.077+10 208996
  2012-10-02-1349143281.19-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:01:25.691+10 371864
  2012-10-02-1349143286.66-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:01:34.563+10 662836
  2012-10-02-1349143295.65-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:01:41.501+10 491656
  2012-10-02-1349143303.39-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:01:46.687+10 272520
  2012-10-02-1349143307.48-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:02:07.216+10 1321990
  2012-10-02-1349143327.44-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:02:09.928+10 209032
  2012-10-02-1349143330.85-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:02:18.35+10 619586
  2012-10-02-1349143339.32-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:02:30.665+10 949844
  2012-10-02-1349143352.35-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:02:34.542+10 184456
  2012-10-02-1349143354.84-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:02:40.013+10 434312
  2012-10-02-1349143361.12-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:02:43.3+10 184154
  2012-10-02-1349143403.18-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:03:27.102+10 328932
  2012-10-02-1349143409.08-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:03:39.944+10 913708
  2012-10-02-1349143420.85-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:03:44.554+10 313480
  2012-10-02-1349143477.29-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 12:04:41.462+10 347960
  2012-10-02-1349143481.8-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 12:04:45.063+10 272520
  2012-10-02-1349143485.63-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 12:04:50.469+10 405640
  2012-10-02-1349143491.38-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:05:04.362+10 1089840
  2012-10-02-1349143634.93-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:07:20.468+10 463922
  2012-10-02-1349143642.77-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:07:26.88+10 345114
  2012-10-02-1349143647.05-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:07:33.181+10 516232
  2012-10-02-1349143683.04-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:08:09.087+10 507432
  2012-10-02-1349143691.27-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:08:16.65+10 450696
  2012-10-02-1349143697.33-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:08:22.807+10 458888
  2012-10-02-1349143788.53-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:09:51.176+10 222650
  2012-10-02-1349143792.51-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:10:02.185+10 810180
  2012-10-02-1349143803.13-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:10:08.407+10 438974
  2012-10-02-1349143808.68-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:10:12.685+10 327816
  2012-10-02-1349143813.8-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:10:21.14+10 615480
  2012-10-02-1349143821.79-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:10:26.005+10 356488
  2012-10-02-1349143828.89-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:10:32.147+10 274568
  2012-10-02-1349143832.69-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:10:36.614+10 329156
  2012-10-02-1349143838.97-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:10:45.212+10 521860
  2012-10-02-1349143845.37-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:10:55.58+10 808578
  2012-10-02-1349143856.46-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:11:00.493+10 335374
  2012-10-02-1349143861.39-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:11:17.306+10 1336336
  2012-10-02-1349143880.02-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:11:28.792+10 731272
  2012-10-02-1349143889.99-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:11:32.764+10 231560
  2012-10-02-1349143922.85-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:12:05.53+10 223982
  2012-10-02-1349143925.7-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:12:10.412+10 393352
  2012-10-02-1349143930.64-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:12:13.284+10 221320
  2012-10-02-1349143934.19-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:12:19.093+10 409736
  2012-10-02-1349143942.83-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:12:25.107+10 191974
  2012-10-02-1349144012.47-demo.wav 44036 CanberraBlackMnt 2012-10-02 12:13:34.974+10 209412
  2012-10-02-1349144017.63-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:13:43.445+10 485512
  2012-10-02-1349144024.25-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:13:48.692+10 372872
  2012-10-02-1349144028.89-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:13:51.117+10 188552
  2012-10-02-1349144031.72-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:13:55.057+10 280712
  2012-10-02-1349144035.19-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:13:57.562+10 200840
  2012-10-02-1349144040.92-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:14:08.712+10 652794
  2012-10-02-1349144049.73-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:14:12.302+10 217224
  2012-10-02-1349144052.58-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:14:15.316+10 229512
  2012-10-02-1349144055.44-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:14:18.508+10 259982
  2012-10-02-1349144058.9-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:14:28.269+10 779210
  2012-10-02-1349144068.45-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:14:37.059+10 690274
  2012-10-02-1349144077.74-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:14:40.855+10 199316
  2012-10-02-1349144081.1-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:14:43.917+10 227242
  2012-10-02-1349144085.28-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:14:49.389+10 322464
  2012-10-02-1349144089.54-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:14:53.107+10 233372
  2012-10-02-1349144093.39-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:15:09.887+10 1372266
  2012-10-02-1349144110.01-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:15:13.541+10 243990
  2012-10-02-1349144113.84-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:15:17.896+10 279476
  2012-10-02-1349144655.11-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:24:18.275+10 263928
  2012-10-02-1349144659.66-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:24:23.619+10 331912
  2012-10-02-1349144663.84-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:24:27.479+10 307336
  2012-10-02-1349144668.76-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:24:31.612+10 239752
  2012-10-02-1349144671.79-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:24:36.492+10 395230
  2012-10-02-1349144676.88-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:24:40.178+10 267760
  2012-10-02-1349144680.4-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:24:44.645+10 356488
  2012-10-02-1349144685.09-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:24:48.139+10 196678
  2012-10-02-1349144689.21-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:25:09.004+10 1658710
  2012-10-02-1349144709.92-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:25:24.796+10 1247978
  2012-10-02-1349144724.99-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:25:27.508+10 213128
  2012-10-02-1349144728.68-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:25:51.371+10 1902870
  2012-10-02-1349144752.38-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:26:01.693+10 782570
  2012-10-02-1349144762.64-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:26:16.242+10 1140108
  2012-10-02-1349144776.47-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:26:21.25+10 405640
  2012-10-02-1349144781.71-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:26:26.323+10 391304
  2012-10-02-1349144843.35-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:27:30.961+10 639624
  2012-10-02-1349144851.59-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:27:33.977+10 198792
  2012-10-02-1349144854.11-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:27:39.32+10 433800
  2012-10-02-1349144859.67-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:27:47.489+10 601488
  2012-10-02-1349144867.85-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:27:53.853+10 484088
  2012-10-02-1349144874.12-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:28:04.731+10 835358
  2012-10-02-1349144885.01-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:28:14.461+10 751208
  2012-10-02-1349144894.59-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:28:26.696+10 958062
  2012-10-02-1349144906.84-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:28:29.887+10 192296
  2012-10-02-1349144911.18-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:28:39.427+10 629840
  2012-10-02-1349144919.56-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:28:47.546+10 653144
  2012-10-02-1349144928.37-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:28:59.988+10 976176
  2012-10-02-1349144940.49-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:29:03.705+10 268424
  2012-10-02-1349144943.91-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:29:09.001+10 426120
  2012-10-02-1349144949.14-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:29:13.708+10 354722
  2012-10-02-1349145027.49-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:30:30.099+10 218954
  2012-10-02-1349145075.35-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 12:31:20.045+10 391934
  2012-10-02-1349145080.57-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 12:31:25.308+10 397448
  2012-10-02-1349145085.45-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 12:31:28.48+10 252040
  2012-10-02-1349145088.8-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 12:31:36.436+10 642316
  2012-10-02-1349145097.3-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 12:31:40.088+10 217904
  2012-10-02-1349145100.29-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 12:31:48.12+10 642316
  2012-10-02-1349145182.43-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:33:06.042+10 303328
  2012-10-02-1349145187.48-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:33:11.035+10 301192
  2012-10-02-1349145191.29-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:33:15.55+10 358536
  2012-10-02-1349145195.82-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:33:19.826+10 335028
  2012-10-02-1349145203.64-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 12:33:31.67+10 675738
  2012-10-02-1349145212.4-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 12:33:36.822+10 372868
  2012-10-02-1349145217.65-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 12:33:41.535+10 303000
  2012-10-02-1349145283.22-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:34:47.174+10 332756
  2012-10-02-1349145324.76-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:35:28.536+10 314384
  2012-10-02-1349145363.56-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:36:06.213+10 224630
  2012-10-02-1349145394.19-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:36:38.42+10 354490
  2012-10-02-1349145429.78-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:37:13.594+10 320626
  2012-10-02-1349145433.92-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:37:16.991+10 260232
  2012-10-02-1349145438.14-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:37:21.761+10 304732
  2012-10-02-1349145442.38-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:37:25.893+10 295048
  2012-10-02-1349145446.13-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:37:29.801+10 307336
  2012-10-02-1349145450.05-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:37:36.293+10 525586
  2012-10-02-1349145458.23-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:37:59.615+10 1794930
  2012-10-02-1349145479.88-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:38:04.497+10 389256
  2012-10-02-1349145484.67-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:38:11.403+10 567424
  2012-10-02-1349145520.59-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:38:43.962+10 282760
  2012-10-02-1349145525.65-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:39:00.072+10 1209278
  2012-10-02-1349145542.28-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:39:07.826+10 467080
  2012-10-02-1349145550.47-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:39:16.392+10 499848
  2012-10-02-1349145557.54-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:39:19.917+10 196744
  2012-10-02-1349145560.71-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:39:30.222+10 782976
  2012-10-02-1349145570.57-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:39:39.618+10 696400
  2012-10-02-1349145579.89-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:39:47.753+10 663688
  2012-10-02-1349145589.49-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:39:51.757+10 192648
  2012-10-02-1349145592.39-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:39:56.255+10 323720
  2012-10-02-1349145703.7-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:41:46.414+10 228508
  2012-10-02-1349145707.9-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:42:01.745+10 1163400
  2012-10-02-1349145722.55-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:42:06.642+10 346248
  2012-10-02-1349145727.15-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:42:09.546+10 200840
  2012-10-02-1349145829.54-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 12:43:55.33+10 484782
  2012-10-02-1349145835.73-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 12:43:59.653+10 327816
  2012-10-02-1349145927.61-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:45:31.019+10 285372
  2012-10-02-1349145932.04-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:45:38.5+10 540808
  2012-10-02-1349145939.16-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:45:44.928+10 452930
  2012-10-02-1349145945.32-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:45:49.842+10 315940
  2012-10-02-1349145979.04-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:46:21.587+10 209268
  2012-10-02-1349146042.8-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 12:47:25.323+10 209444
  2012-10-02-1349146048.32-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:47:42.471+10 1190024
  2012-10-02-1349146063.5-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:47:49.268+10 482454
  2012-10-02-1349146069.51-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:47:56.126+10 557192
  2012-10-02-1349146077.05-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:48:01.98+10 407688
  2012-10-02-1349146083.32-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:48:09.988+10 561288
  2012-10-02-1349146090.5-demo.wav 44028 CanberraMtAinsli 2012-10-02 12:48:14.007+10 292998
  2012-10-02-1349146130.37-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:48:56.008+10 474562
  2012-10-02-1349146136.77-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:49:00.985+10 352392
  2012-10-02-1349146143.0-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:49:07.684+10 395400
  2012-10-02-1349146147.97-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:49:14.385+10 540664
  2012-10-02-1349146154.65-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:49:18.31+10 253318
  2012-10-02-1349146158.85-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:49:23.59+10 390356
  2012-10-02-1349146167.14-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:49:31.661+10 378186
  2012-10-02-1349146172.4-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:49:35.699+10 278664
  2012-10-02-1349146175.89-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:49:39.702+10 321672
  2012-10-02-1349146180.95-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:49:46.289+10 447148
  2012-10-02-1349146186.95-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:49:49.768+10 233608
  2012-10-02-1349146189.91-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:49:56.516+10 552958
  2012-10-02-1349146197.15-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:50:04.156+10 560492
  2012-10-02-1349146204.6-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:50:12.58+10 659476
  2012-10-02-1349146213.12-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:50:15.914+10 226430
  2012-10-02-1349146216.14-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:50:19.041+10 219874
  2012-10-02-1349146221.65-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:50:28.405+10 568742
  2012-10-02-1349146230.77-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:50:35.806+10 424072
  2012-10-02-1349146236.01-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:50:42.538+10 549000
  2012-10-02-1349146243.34-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:50:48.888+10 462984
  2012-10-02-1349146250.06-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:50:54.631+10 385160
  2012-10-02-1349146256.69-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:51:10.489+10 1154624
  2012-10-02-1349146270.75-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:51:17.796+10 594042
  2012-10-02-1349146278.33-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:51:23.172+10 407586
  2012-10-02-1349146283.67-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:51:28.596+10 415880
  2012-10-02-1349146289.09-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:51:38.569+10 745472
  2012-10-02-1349146301.72-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:51:52.271+10 881798
  2012-10-02-1349146313.61-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:51:59.068+10 457176
  2012-10-02-1349146320.68-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:52:03.966+10 278664
  2012-10-02-1349146324.44-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:52:07.125+10 225416
  2012-10-02-1349146328.62-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:52:18.689+10 846096
  2012-10-02-1349146460.22-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:54:22.68+10 208350
  2012-10-02-1349146542.92-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:55:46.139+10 268700
  2012-10-02-1349146547.31-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:55:49.538+10 186504
  2012-10-02-1349146549.74-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:55:56.922+10 604278
  2012-10-02-1349146557.15-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:55:59.747+10 194076
  2012-10-02-1349146560.26-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:56:12.221+10 1005704
  2012-10-02-1349146576.3-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:56:21.554+10 442504
  2012-10-02-1349146582.97-demo.wav 44028 CanberraBlackMnt 2012-10-02 12:56:27.265+10 362632
  2012-10-02-1349146707.72-demo.wav 40067 CanberraBlackMnt 2012-10-02 12:58:33.902+10 520082
  2012-10-02-1349146786.6-demo.wav 40067 CanberraMtAinsli 2012-10-02 12:59:49.099+10 210418
  2012-10-02-1349146963.1-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:02:48.801+10 478850
  2012-10-02-1349147072.96-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:04:35.53+10 210654
  2012-10-02-1349147075.84-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:04:40.683+10 407688
  2012-10-02-1349147081.63-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:04:44.385+10 233608
  2012-10-02-1349147084.61-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:04:49.409+10 405638
  2012-10-02-1349147090.28-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:05:07.419+10 1421342
  2012-10-02-1349147107.69-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:05:11.311+10 287706
  2012-10-02-1349147173.54-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 13:06:16.569+10 252180
  2012-10-02-1349147176.86-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 13:06:20.23+10 282760
  2012-10-02-1349147181.51-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 13:06:28.228+10 561288
  2012-10-02-1349147189.12-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 13:06:40.869+10 959228
  2012-10-02-1349147201.11-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 13:06:48.844+10 615570
  2012-10-02-1349147212.18-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 13:06:57.756+10 465306
  2012-10-02-1349147218.38-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 13:07:05.516+10 598152
  2012-10-02-1349147225.85-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 13:07:14.103+10 665214
  2012-10-02-1349147344.52-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 13:09:13.37+10 741406
  2012-10-02-1349147353.51-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 13:09:16.614+10 260232
  2012-10-02-1349147357.18-demo.wav i1045264 CanberraBlackMnt 2012-10-02 13:09:29.822+10 1063048
  2012-10-02-1349147370.12-demo.wav i1045264 CanberraBlackMnt 2012-10-02 13:09:36.458+10 534664
  2012-10-02-1349147376.91-demo.wav i1045264 CanberraBlackMnt 2012-10-02 13:09:46.22+10 768022
  2012-10-02-1349147409.68-demo.wav i1045264 CanberraBlackMnt 2012-10-02 13:10:21.649+10 1007752
  2012-10-02-1349147422.84-demo.wav i1045264 CanberraBlackMnt 2012-10-02 13:10:28.109+10 429346
  2012-10-02-1349147429.56-demo.wav i1045264 CanberraBlackMnt 2012-10-02 13:10:32.736+10 255544
  2012-10-02-1349147435.55-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:10:55.53+10 1681102
  2012-10-02-1349147613.88-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:13:36.366+10 208368
  2012-10-02-1349147670.57-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:14:33.33+10 229870
  2012-10-02-1349147674.25-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:14:51.657+10 1455050
  2012-10-02-1349147691.88-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:14:54.433+10 215176
  2012-10-02-1349147695.02-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:15:02.265+10 608392
  2012-10-02-1349147702.53-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:15:04.675+10 182158
  2012-10-02-1349147705.75-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:15:25.523+10 1655090
  2012-10-02-1349147726.42-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:15:30.996+10 385160
  2012-10-02-1349147913.27-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 13:18:37.029+10 317272
  2012-10-02-1349147920.16-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 13:18:53.809+10 1144046
  2012-10-02-1349147935.98-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 13:18:59.689+10 311432
  2012-10-02-1349147940.36-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 13:19:03.683+10 278664
  2012-10-02-1349147943.87-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 13:19:12.742+10 703320
  2012-10-02-1349147953.22-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 13:19:22.459+10 776304
  2012-10-02-1349147964.09-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 13:19:29.253+10 434312
  2012-10-02-1349147969.74-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 13:19:33.688+10 320690
  2012-10-02-1349147974.13-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 13:19:41.288+10 602248
  2012-10-02-1349147983.06-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 13:19:46.297+10 272520
  2012-10-02-1349147987.16-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 13:19:56.06+10 721864
  2012-10-02-1349147996.62-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 13:20:03.104+10 539358
  2012-10-02-1349148004.52-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 13:20:07.41+10 241800
  2012-10-02-1349148007.87-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 13:20:24.238+10 1374344
  2012-10-02-1349148025.3-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 13:20:35.793+10 876984
  2012-10-02-1349148385.38-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:26:27.958+10 210002
  2012-10-02-1349148389.0-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:26:33.03+10 334494
  2012-10-02-1349148393.51-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:26:40.432+10 583816
  2012-10-02-1349148401.19-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:26:43.576+10 200840
  2012-10-02-1349148441.59-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 13:27:26.516+10 413974
  2012-10-02-1349148447.96-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 13:27:33.864+10 490226
  2012-10-02-1349148454.28-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 13:27:40.189+10 495752
  2012-10-02-1349148460.54-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 13:27:46.41+10 472456
  2012-10-02-1349148466.77-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 13:27:52.36+10 407392
  2012-10-02-1349148472.56-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 13:27:55.369+10 181518
  2012-10-02-1349148475.52-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 13:28:00.551+10 364720
  2012-10-02-1349148480.69-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 13:28:04.9+10 289050
  2012-10-02-1349148507.67-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:28:30.119+10 206982
  2012-10-02-1349148510.26-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:28:32.768+10 213128
  2012-10-02-1349148514.35-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:28:38.384+10 333960
  2012-10-02-1349148518.67-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:28:46.838+10 686216
  2012-10-02-1349148528.44-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:28:55.262+10 539864
  2012-10-02-1349148535.4-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:29:00.063+10 334598
  2012-10-02-1349148541.71-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:29:04.323+10 204792
  2012-10-02-1349148545.86-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:29:09.108+10 254378
  2012-10-02-1349148550.02-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:29:16.208+10 518576
  2012-10-02-1349148556.5-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:29:19.861+10 284808
  2012-10-02-1349148561.45-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:29:23.833+10 200840
  2012-10-02-1349148608.82-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:30:13.668+10 406174
  2012-10-02-1349148615.05-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:30:25.792+10 903304
  2012-10-02-1349148626.89-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:30:30.131+10 272520
  2012-10-02-1349148630.27-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:30:35.731+10 458878
  2012-10-02-1349148636.08-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:30:41.746+10 475480
  2012-10-02-1349148642.7-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:30:45.638+10 211282
  2012-10-02-1349148674.73-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:31:17.002+10 194696
  2012-10-02-1349148677.24-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:31:19.712+10 206984
  2012-10-02-1349148699.12-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:31:41.997+10 243848
  2012-10-02-1349148702.75-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:31:46.368+10 305288
  2012-10-02-1349148707.2-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:31:51.395+10 354440
  2012-10-02-1349148711.59-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:31:55.318+10 313480
  2012-10-02-1349148715.45-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:32:02.977+10 631956
  2012-10-02-1349148723.27-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:32:13.601+10 859712
  2012-10-02-1349148735.77-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:32:25.996+10 830642
  2012-10-02-1349148746.13-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:32:43.001+10 1401626
  2012-10-02-1349148763.31-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:32:47.739+10 321344
  2012-10-02-1349148768.03-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:32:52.764+10 355884
  2012-10-02-1349148773.37-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 13:33:19.046+10 2149408
  2012-10-02-1349148799.35-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 13:33:31.733+10 986892
  2012-10-02-1349148812.04-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 13:33:36.654+10 354378
  2012-10-02-1349148877.81-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:34:40.315+10 209622
  2012-10-02-1349148880.61-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:34:44.464+10 321672
  2012-10-02-1349148885.1-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:34:48.913+10 321672
  2012-10-02-1349148889.62-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:34:52.583+10 252040
  2012-10-02-1349148893.52-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:34:57.927+10 366728
  2012-10-02-1349148901.08-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:35:03.702+10 221320
  2012-10-02-1349148937.17-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:35:40.376+10 269130
  2012-10-02-1349149224.89-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 13:40:27.386+10 209346
  2012-10-02-1349149230.74-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:40:39.528+10 739464
  2012-10-02-1349149242.21-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:40:50.089+10 661340
  2012-10-02-1349149250.4-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:40:55.035+10 331230
  2012-10-02-1349149255.31-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:40:58.385+10 247498
  2012-10-02-1349149258.89-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 13:41:10.967+10 1012524
  2012-10-02-1349149453.06-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:44:18.647+10 467116
  2012-10-02-1349149662.98-demo.wav 44028 CanberraBlackMnt 2012-10-02 13:47:45.473+10 208508
  2012-10-02-1349149666.73-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:47:53.595+10 575600
  2012-10-02-1349149675.83-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:47:59.767+10 331912
  2012-10-02-1349149679.96-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:48:02.495+10 215176
  2012-10-02-1349149683.01-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:48:09.148+10 511942
  2012-10-02-1349149689.33-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:48:20.155+10 847208
  2012-10-02-1349149700.37-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:48:33.651+10 1054684
  2012-10-02-1349149713.93-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:48:42.535+10 659360
  2012-10-02-1349149983.39-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:53:05.906+10 210310
  2012-10-02-1349150120.38-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:55:23.758+10 284198
  2012-10-02-1349150124.26-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:55:31.003+10 567432
  2012-10-02-1349150132.94-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:55:39.01+10 510088
  2012-10-02-1349150139.16-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:55:44.322+10 387250
  2012-10-02-1349150144.68-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:55:51.629+10 521124
  2012-10-02-1349150151.77-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:55:55.792+10 272588
  2012-10-02-1349150299.36-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:58:23.742+10 370286
  2012-10-02-1349150303.97-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:58:28.416+10 358536
  2012-10-02-1349150310.61-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:58:32.739+10 180360
  2012-10-02-1349150313.19-demo.wav 40067 CanberraBlackMnt 2012-10-02 13:58:45.677+10 989734
  2012-10-02-1349150351.41-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:59:17.104+10 481416
  2012-10-02-1349150358.07-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:59:23.006+10 413832
  2012-10-02-1349150363.14-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:59:25.32+10 182408
  2012-10-02-1349150393.24-demo.wav 40067 CanberraMtAinsli 2012-10-02 13:59:55.871+10 221320
  2012-10-02-1349150423.77-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:00:27.377+10 302932
  2012-10-02-1349150474.79-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:01:18.871+10 340970
  2012-10-02-1349150480.31-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:01:26.113+10 487560
  2012-10-02-1349150486.47-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:01:34.281+10 655496
  2012-10-02-1349150494.5-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:01:37.6+10 259946
  2012-10-02-1349150497.91-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:01:41.365+10 226402
  2012-10-02-1349150501.63-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:01:44.492+10 208240
  2012-10-02-1349150507.85-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 14:02:05.541+10 1487444
  2012-10-02-1349150601.95-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:03:25.589+10 303442
  2012-10-02-1349150633.25-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:03:55.788+10 209674
  2012-10-02-1349150664.54-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:04:27.564+10 255108
  2012-10-02-1349150669.14-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:04:41.921+10 1075336
  2012-10-02-1349150684.42-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:05:03.441+10 1597576
  2012-10-02-1349150703.57-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:05:10.684+10 600200
  2012-10-02-1349150710.99-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:05:20.767+10 765018
  2012-10-02-1349151253.71-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-02 14:14:19.205+10 459696
  2012-10-02-1349151259.36-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-02 14:14:21.773+10 202888
  2012-10-02-1349151296.72-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-02 14:15:00.947+10 354596
  2012-10-02-1349151301.21-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-02 14:15:04.542+10 274568
  2012-10-02-1349151305.14-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-02 14:15:11.109+10 501896
  2012-10-02-1349151312.03-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:15:21.018+10 751044
  2012-10-02-1349151322.18-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:15:29.219+10 592008
  2012-10-02-1349151329.79-demo.wav 44028 CanberraMtAinsli 2012-10-02 14:15:50.573+10 1421954
  2012-10-02-1349151350.69-demo.wav 44028 CanberraMtAinsli 2012-10-02 14:15:56.621+10 499848
  2012-10-02-1349151356.83-demo.wav 44028 CanberraMtAinsli 2012-10-02 14:16:04.551+10 649352
  2012-10-02-1349151364.68-demo.wav 44028 CanberraMtAinsli 2012-10-02 14:16:07.138+10 196582
  2012-10-02-1349151450.13-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:17:33.709+10 302386
  2012-10-02-1349151454.43-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:17:37.109+10 227464
  2012-10-02-1349151458.13-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:17:43.46+10 448648
  2012-10-02-1349151463.62-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:17:48.662+10 418734
  2012-10-02-1349151468.78-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:17:51.552+10 199286
  2012-10-02-1349151471.78-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:17:54.727+10 209320
  2012-10-02-1349151475.48-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:17:59.179+10 274802
  2012-10-02-1349151480.16-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:18:05.035+10 370398
  2012-10-02-1349151486.3-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:18:10.19+10 328586
  2012-10-02-1349151546.87-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:19:10.304+10 290780
  2012-10-02-1349151550.64-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:19:19.241+10 723080
  2012-10-02-1349151559.36-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:19:23.758+10 370652
  2012-10-02-1349151564.1-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:19:26.71+10 220690
  2012-10-02-1349151568.14-demo.wav 44031 CanberraBlackMnt 2012-10-02 14:19:49.455+10 1791938
  2012-10-02-1349151634.64-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:20:38.33+10 308204
  2012-10-02-1349151640.21-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:20:50.407+10 858248
  2012-10-02-1349151650.54-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:20:56.229+10 481416
  2012-10-02-1349151657.51-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:21:01.349+10 325660
  2012-10-02-1349151661.58-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:21:10.204+10 722260
  2012-10-02-1349151670.38-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:21:21.72+10 938560
  2012-10-02-1349151682.08-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:21:26.554+10 363240
  2012-10-02-1349151686.83-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:21:30.35+10 235662
  2012-10-02-1349151690.83-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:21:36.092+10 442678
  2012-10-02-1349151696.38-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:21:41.868+10 462984
  2012-10-02-1349151702.5-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:21:51.806+10 754244
  2012-10-02-1349151714.09-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:21:58.475+10 354326
  2012-10-02-1349151771.13-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:22:54.471+10 282122
  2012-10-02-1349151775.77-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:22:58.891+10 260538
  2012-10-02-1349151780.15-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:23:07.652+10 629440
  2012-10-02-1349151787.92-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:23:10.493+10 219272
  2012-10-02-1349151790.76-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:23:12.886+10 182408
  2012-10-02-1349151846.89-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:24:09.824+10 247778
  2012-10-02-1349151851.16-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:24:14.181+10 252202
  2012-10-02-1349151854.3-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:24:18.634+10 366728
  2012-10-02-1349151859.26-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:24:23.899+10 389256
  2012-10-02-1349151865.5-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:24:27.745+10 190600
  2012-10-02-1349151921.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:25:28.109+10 515198
  2012-10-02-1349151928.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:25:36.978+10 715412
  2012-10-02-1349152009.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:26:52.643+10 275792
  2012-10-02-1349152013.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:26:55.54+10 200840
  2012-10-02-1349152015.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:27:01.721+10 499848
  2012-10-02-1349152021.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:27:05.413+10 290952
  2012-10-02-1349152025.72-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 14:27:21.28+10 1296520
  2012-10-02-1349152041.57-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 14:27:24.448+10 235656
  2012-10-02-1349152045.83-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 14:27:50.831+10 2060920
  2012-10-02-1349152071.6-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 14:28:00.236+10 719218
  2012-10-02-1349152080.37-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 14:28:04.903+10 381064
  2012-10-02-1349152085.12-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 14:28:11.171+10 484132
  2012-10-02-1349152091.31-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 14:28:26.021+10 1173532
  2012-10-02-1349152106.17-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 14:28:33.02+10 510832
  2012-10-02-1349152113.89-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 14:28:40.913+10 588198
  2012-10-02-1349152121.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:29:02.814+10 1763464
  2012-10-02-1349152142.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:29:05.488+10 209032
  2012-10-02-1349152145.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:29:07.956+10 192648
  2012-10-02-1349152148.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:29:12.436+10 362632
  2012-10-02-1349152152.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:29:19.071+10 532412
  2012-10-02-1349152159.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:29:25.188+10 442724
  2012-10-02-1349152165.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:29:38.516+10 1077290
  2012-10-02-1349152178.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:29:46.14+10 566482
  2012-10-02-1349152186.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:29:54.43+10 664978
  2012-10-02-1349152194.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:30:01.957+10 586306
  2012-10-02-1349152202.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:30:08.095+10 483362
  2012-10-02-1349152208.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:30:11.98+10 265118
  2012-10-02-1349152212.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:30:23.463+10 914908
  2012-10-02-1349152250.04-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-02 14:30:54.108+10 344200
  2012-10-02-1349152254.65-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-02 14:30:59.284+10 389256
  2012-10-02-1349152259.59-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-02 14:31:05.69+10 510044
  2012-10-02-1349152267.42-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-02 14:31:09.606+10 182408
  2012-10-02-1349152271.83-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-02 14:31:16.736+10 413042
  2012-10-02-1349152277.05-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-02 14:31:22.488+10 458558
  2012-10-02-1349152282.81-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-02 14:31:25.486+10 197786
  2012-10-02-1349152286.07-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-02 14:31:29.83+10 263150
  2012-10-02-1349152291.68-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-02 14:31:54.124+10 1884296
  2012-10-02-1349152314.34-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-02 14:31:59.458+10 430216
  2012-10-02-1349152320.75-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-02 14:32:06.055+10 446600
  2012-10-02-1349152326.18-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-02 14:32:11.781+10 446688
  2012-10-02-1349152334.8-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-02 14:32:19.688+10 409020
  2012-10-02-1349152341.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:32:37.106+10 1292424
  2012-10-02-1349152357.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:32:41.285+10 323720
  2012-10-02-1349152394.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:33:18.142+10 286856
  2012-10-02-1349152400.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:33:26.819+10 546952
  2012-10-02-1349152407.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:33:30.292+10 204936
  2012-10-02-1349152410.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:33:36.606+10 460838
  2012-10-02-1349152596.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:36:40.914+10 367020
  2012-10-02-1349152601.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:36:45.046+10 337852
  2012-10-02-1349152606.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:36:53.369+10 529120
  2012-10-02-1349152614.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:36:58.004+10 308826
  2012-10-02-1349152618.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:37:04.129+10 492154
  2012-10-02-1349152624.5-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:37:16.018+10 966792
  2012-10-02-1349152638.08-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:37:28.051+10 837768
  2012-10-02-1349152648.19-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:37:33.636+10 458888
  2012-10-02-1349152654.21-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:37:38.055+10 315542
  2012-10-02-1349152658.74-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:37:48.302+10 801564
  2012-10-02-1349152668.63-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:37:51.796+10 208084
  2012-10-02-1349152672.24-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:38:05.25+10 1091552
  2012-10-02-1349152687.85-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:38:11.153+10 277144
  2012-10-02-1349152691.28-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:38:14.17+10 245896
  2012-10-02-1349152694.57-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:38:17.01+10 206984
  2012-10-02-1349152697.73-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 14:38:40.629+10 1917064
  2012-10-02-1349152720.89-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 14:38:48.624+10 649352
  2012-10-02-1349152728.86-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 14:38:59.698+10 908228
  2012-10-02-1349152749.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:39:18.328+10 749210
  2012-10-02-1349152758.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:39:25.739+10 589770
  2012-10-02-1349152766.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:39:31.713+10 458826
  2012-10-02-1349152773.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:39:36.873+10 267356
  2012-10-02-1349152777.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:39:41.786+10 398078
  2012-10-02-1349152781.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:39:59.483+10 1429932
  2012-10-02-1349152800.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:40:06.712+10 543336
  2012-10-02-1349152892.12-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:41:35.022+10 241222
  2012-10-02-1349152896.5-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:41:49.108+10 1063048
  2012-10-02-1349152909.41-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:41:51.883+10 209032
  2012-10-02-1349152913.12-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 14:42:14.135+10 1759150
  2012-10-02-1349152935.14-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 14:42:20.253+10 428168
  2012-10-02-1349153001.85-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 14:43:26.046+10 353438
  2012-10-02-1349153007.65-demo.wav 44028 CanberraBlackMnt 2012-10-02 14:43:39.435+10 987272
  2012-10-02-1349153061.2-demo.wav 44036 CanberraBlackMnt 2012-10-02 14:44:25.237+10 340280
  2012-10-02-1349153125.49-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:45:29.467+10 335326
  2012-10-02-1349153130.76-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:45:35.707+10 417928
  2012-10-02-1349153136.04-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:45:40.191+10 350344
  2012-10-02-1349153141.24-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:45:47.372+10 513312
  2012-10-02-1349153147.5-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:45:52.911+10 456840
  2012-10-02-1349153153.06-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:45:57.06+10 338056
  2012-10-02-1349153158.16-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:46:02.661+10 377368
  2012-10-02-1349153163.76-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:46:10.864+10 596586
  2012-10-02-1349153174.21-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:46:22.002+10 651282
  2012-10-02-1349153207.74-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:46:51.747+10 331912
  2012-10-02-1349153212.08-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:46:57.206+10 432264
  2012-10-02-1349153218.12-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:47:00.638+10 213128
  2012-10-02-1349153220.79-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:47:04.34+10 291078
  2012-10-02-1349153228.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:47:29.341+10 1438738
  2012-10-02-1349153249.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:47:32.032+10 206984
  2012-10-02-1349153252.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:47:34.726+10 213128
  2012-10-02-1349153254.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:47:38.298+10 280712
  2012-10-02-1349153258.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:47:40.873+10 204936
  2012-10-02-1349153261.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:47:50.441+10 689530
  2012-10-02-1349153271.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:48:12.403+10 1763862
  2012-10-02-1349153292.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:48:15.249+10 219272
  2012-10-02-1349153295.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:48:18.416+10 241800
  2012-10-02-1349153298.9-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:48:32.276+10 1126536
  2012-10-02-1349153315.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:48:48.092+10 1047778
  2012-10-02-1349153328.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:48:50.867+10 206984
  2012-10-02-1349153331.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:48:54.357+10 276606
  2012-10-02-1349153334.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:48:57.706+10 207466
  2012-10-02-1349153389.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:49:52.315+10 215746
  2012-10-02-1349153392.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:49:55.006+10 198792
  2012-10-02-1349153395.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:50:02.17+10 573712
  2012-10-02-1349153402.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:50:08.033+10 414640
  2012-10-02-1349153408.16-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 14:50:13.628+10 458888
  2012-10-02-1349153413.75-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 14:50:18.206+10 374920
  2012-10-02-1349153418.33-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 14:50:22.513+10 352392
  2012-10-02-1349153423.47-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 14:50:26.833+10 280038
  2012-10-02-1349153426.95-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 14:50:32.425+10 440546
  2012-10-02-1349153432.56-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 14:50:41.357+10 701030
  2012-10-02-1349153441.48-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 14:50:55.504+10 1162946
  2012-10-02-1349153455.63-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 14:51:12.175+10 1376854
  2012-10-02-1349153472.3-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 14:51:24.874+10 1046020
  2012-10-02-1349153485.62-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:51:46.432+10 1744490
  2012-10-02-1349153506.55-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:51:49.002+10 209032
  2012-10-02-1349153509.93-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:51:52.608+10 227464
  2012-10-02-1349153512.73-demo.wav 40067 CanberraMtAinsli 2012-10-02 14:51:55.018+10 194696
  2012-10-02-1349153563.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:52:48.509+10 414218
  2012-10-02-1349153568.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:52:52.476+10 323714
  2012-10-02-1349153572.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:52:57.466+10 365994
  2012-10-02-1349153578.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:53:04.688+10 497230
  2012-10-02-1349153585.44-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:53:11.023+10 469354
  2012-10-02-1349153591.21-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:53:13.496+10 194696
  2012-10-02-1349153594.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:53:24.601+10 812222
  2012-10-02-1349153605.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 14:53:33.791+10 698744
  2012-10-02-1349153677.49-demo.wav 40067 CanberraBlackMnt 2012-10-02 14:54:40.528+10 254516
  2012-10-02-1349153738.93-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 14:55:45.031+10 512908
  2012-10-02-1349153784.15-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 14:56:29.079+10 411850
  2012-10-02-1349153973.43-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 14:59:36.319+10 242072
  2012-10-02-1349153976.44-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 14:59:40.032+10 303240
  2012-10-02-1349153980.45-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 14:59:52.877+10 1042568
  2012-10-02-1349153993.51-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 15:00:01.396+10 598162
  2012-10-02-1349154093.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:01:38.251+10 412456
  2012-10-02-1349154098.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:01:40.939+10 213128
  2012-10-02-1349154101.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:01:48.42+10 577642
  2012-10-02-1349154109.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:01:56.5+10 595286
  2012-10-02-1349154117.42-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 15:02:02.79+10 450694
  2012-10-02-1349154124.24-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 15:02:09.106+10 405036
  2012-10-02-1349154189.53-demo.wav 44036 CanberraBlackMnt 2012-10-02 15:03:13.693+10 349000
  2012-10-02-1349154194.33-demo.wav 44036 CanberraBlackMnt 2012-10-02 15:03:16.565+10 186504
  2012-10-02-1349154197.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:03:35.898+10 1548424
  2012-10-02-1349154216.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:03:39.647+10 305288
  2012-10-02-1349154242.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:04:07.609+10 456840
  2012-10-02-1349154249.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:04:26.86+10 1482888
  2012-10-02-1349154267.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:04:39.461+10 966788
  2012-10-02-1349154279.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:04:42.587+10 221984
  2012-10-02-1349154282.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:04:52.407+10 807048
  2012-10-02-1349154292.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:04:55.908+10 266376
  2012-10-02-1349154297.14-demo.wav 44036 CanberraBlackMnt 2012-10-02 15:05:09.544+10 1042568
  2012-10-02-1349154311.93-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:05:21.19+10 780424
  2012-10-02-1349154321.37-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:05:23.758+10 200840
  2012-10-02-1349154323.89-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:05:27.14+10 274568
  2012-10-02-1349154327.43-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:05:30.011+10 219272
  2012-10-02-1349154330.27-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:05:35.371+10 411080
  2012-10-02-1349154336.24-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:05:40.11+10 327698
  2012-10-02-1349154340.31-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:05:45.741+10 458724
  2012-10-02-1349154346.03-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:05:55.216+10 765690
  2012-10-02-1349154355.46-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:05:59.683+10 303890
  2012-10-02-1349154360.0-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 15:06:08.191+10 686258
  2012-10-02-1349154368.85-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 15:06:13.167+10 362632
  2012-10-02-1349154373.39-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 15:06:17.043+10 309268
  2012-10-02-1349154460.83-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:07:48.266+10 626352
  2012-10-02-1349154502.8-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:08:25.578+10 234416
  2012-10-02-1349154505.93-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:08:28.097+10 182408
  2012-10-02-1349154508.46-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:08:33.618+10 430216
  2012-10-02-1349154513.77-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:08:42.535+10 735186
  2012-10-02-1349154523.56-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:08:47.16+10 299930
  2012-10-02-1349154527.33-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:08:58.504+10 924540
  2012-10-02-1349154538.77-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:09:05.156+10 483936
  2012-10-02-1349154545.58-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:09:08.299+10 191864
  2012-10-02-1349154550.3-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 15:09:27.791+10 1470600
  2012-10-02-1349154568.76-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 15:09:41.039+10 1029912
  2012-10-02-1349154582.18-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 15:09:47.021+10 400778
  2012-10-02-1349154588.0-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 15:10:02.521+10 1220744
  2012-10-02-1349154602.76-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 15:10:05.063+10 190600
  2012-10-02-1349154605.92-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 15:10:12.217+10 527048
  2012-10-02-1349154613.15-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 15:10:17.668+10 379016
  2012-10-02-1349154617.94-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 15:10:21.504+10 299144
  2012-10-02-1349154623.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:10:29.303+10 528520
  2012-10-02-1349154631.8-demo.wav 44036 CanberraBlackMnt 2012-10-02 15:10:37.217+10 456840
  2012-10-02-1349154637.78-demo.wav 44036 CanberraBlackMnt 2012-10-02 15:10:43.677+10 491656
  2012-10-02-1349154643.89-demo.wav 44036 CanberraBlackMnt 2012-10-02 15:10:50.312+10 529354
  2012-10-02-1349154650.65-demo.wav 44036 CanberraBlackMnt 2012-10-02 15:11:04.05+10 1124488
  2012-10-02-1349154667.93-demo.wav 10076 WARINGH CanberraBlackMnt 2012-10-02 15:11:23.757+10 1325642
  2012-10-02-1349154684.88-demo.wav 40067 CanberraBlackMnt 2012-10-02 15:11:41.312+10 1373436
  2012-10-02-1349154701.61-demo.wav 40067 CanberraBlackMnt 2012-10-02 15:11:43.833+10 188552
  2012-10-02-1349154703.95-demo.wav 40067 CanberraBlackMnt 2012-10-02 15:12:04.579+10 1672544
  2012-10-02-1349154726.56-demo.wav 40067 CanberraBlackMnt 2012-10-02 15:12:09.941+10 243160
  2012-10-02-1349154730.62-demo.wav 44036 CanberraBlackMnt 2012-10-02 15:12:19.963+10 784386
  2012-10-02-1349154740.58-demo.wav 44036 CanberraBlackMnt 2012-10-02 15:12:25.023+10 374920
  2012-10-02-1349154745.68-demo.wav 44036 CanberraBlackMnt 2012-10-02 15:12:33.144+10 587876
  2012-10-02-1349154753.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:12:42.512+10 741086
  2012-10-02-1349154763.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:12:47.265+10 340092
  2012-10-02-1349154803.5-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 15:13:28.459+10 416866
  2012-10-02-1349154809.67-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 15:13:34.344+10 390588
  2012-10-02-1349154814.47-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 15:13:39.855+10 452744
  2012-10-02-1349154819.98-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 15:13:43.987+10 336156
  2012-10-02-1349154968.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:16:11.703+10 265638
  2012-10-02-1349154972.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:16:16.137+10 325768
  2012-10-02-1349154976.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:16:23.029+10 555142
  2012-10-02-1349154983.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:16:27.79+10 314074
  2012-10-02-1349154988.7-demo.wav 10076 WARINGH CanberraBlackMnt 2012-10-02 15:16:47.442+10 1574330
  2012-10-02-1349155008.5-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:16:55.242+10 562906
  2012-10-02-1349155015.39-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:17:00.409+10 422024
  2012-10-02-1349155020.69-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:17:07.381+10 561282
  2012-10-02-1349155027.59-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:17:14.16+10 541518
  2012-10-02-1349155040.22-demo.wav 10076 WARINGH CanberraBlackMnt 2012-10-02 15:17:24.633+10 366104
  2012-10-02-1349155045.46-demo.wav 10076 WARINGH CanberraBlackMnt 2012-10-02 15:17:33.032+10 630656
  2012-10-02-1349155054.5-demo.wav 10076 WARINGH CanberraBlackMnt 2012-10-02 15:17:41.534+10 589000
  2012-10-02-1349155063.11-demo.wav 40067 CanberraMtAinsli 2012-10-02 15:17:54.71+10 971040
  2012-10-02-1349155074.85-demo.wav 40067 CanberraMtAinsli 2012-10-02 15:18:01.011+10 517336
  2012-10-02-1349155081.42-demo.wav 40067 CanberraMtAinsli 2012-10-02 15:18:04.568+10 198856
  2012-10-02-1349155085.01-demo.wav 10076 WARINGH CanberraBlackMnt 2012-10-02 15:18:10.531+10 460936
  2012-10-02-1349155138.89-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:19:02.753+10 325544
  2012-10-02-1349155144.7-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:19:17.851+10 1104008
  2012-10-02-1349155158.11-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:19:22.735+10 389256
  2012-10-02-1349155162.86-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:19:27.044+10 354440
  2012-10-02-1349155167.16-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:19:40.816+10 1139836
  2012-10-02-1349155180.94-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:19:46.225+10 429432
  2012-10-02-1349155186.52-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:19:54.906+10 638918
  2012-10-02-1349155195.04-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:19:58.274+10 223244
  2012-10-02-1349155201.53-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:20:21.749+10 1690966
  2012-10-02-1349155222.24-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:20:25.052+10 237704
  2012-10-02-1349155225.29-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:20:27.845+10 217224
  2012-10-02-1349155228.0-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:20:30.782+10 235656
  2012-10-02-1349155231.02-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:20:42.318+10 948360
  2012-10-02-1349155242.44-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:20:46.818+10 368776
  2012-10-02-1349155246.94-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:20:50.107+10 268424
  2012-10-02-1349155255.82-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:21:01.708+10 495752
  2012-10-02-1349155262.13-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:21:06.656+10 381064
  2012-10-02-1349155266.8-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:21:09.305+10 213128
  2012-10-02-1349155269.42-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:21:15.481+10 504852
  2012-10-02-1349155275.61-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:21:22.199+10 516074
  2012-10-02-1349155282.48-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:21:26.78+10 362326
  2012-10-02-1349155288.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:21:35.25+10 530568
  2012-10-02-1349155295.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:21:44.816+10 790500
  2012-10-02-1349155305.05-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:21:51.661+10 555144
  2012-10-02-1349155311.78-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:21:55.283+10 297096
  2012-10-02-1349155315.41-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:22:05.609+10 859878
  2012-10-02-1349155326.38-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:22:13.84+10 623926
  2012-10-02-1349155334.0-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:22:18.084+10 342152
  2012-10-02-1349155338.39-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:22:30.67+10 1031884
  2012-10-02-1349155350.82-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:22:37.595+10 534178
  2012-10-02-1349155358.05-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:22:42.094+10 338420
  2012-10-02-1349155362.55-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:22:46.894+10 306652
  2012-10-02-1349155423.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:23:46.008+10 244682
  2012-10-02-1349155426.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:23:56.183+10 817268
  2012-10-02-1349155437.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:24:01.814+10 400560
  2012-10-02-1349155444.22-demo.wav 44036 CanberraBlackMnt 2012-10-02 15:24:13.714+10 794760
  2012-10-02-1349155454.54-demo.wav 44036 CanberraBlackMnt 2012-10-02 15:24:19.411+10 409736
  2012-10-02-1349155461.07-demo.wav 44036 CanberraBlackMnt 2012-10-02 15:24:25.553+10 370738
  2012-10-02-1349155466.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:24:31.774+10 458888
  2012-10-02-1349155471.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:24:36.607+10 387208
  2012-10-02-1349155477.33-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:24:43.339+10 501896
  2012-10-02-1349155484.57-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:24:50.437+10 493704
  2012-10-02-1349155490.57-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:24:54.458+10 323720
  2012-10-02-1349155495.54-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:24:58.655+10 258184
  2012-10-02-1349155499.59-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:25:02.325+10 231530
  2012-10-02-1349155503.75-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:25:08.657+10 354826
  2012-10-02-1349155509.55-demo.wav 40067 CanberraBlackMnt 2012-10-02 15:25:17.847+10 696264
  2012-10-02-1349155518.22-demo.wav 40067 CanberraBlackMnt 2012-10-02 15:25:20.559+10 196744
  2012-10-02-1349155520.99-demo.wav 40067 CanberraMtAinsli 2012-10-02 15:25:40.995+10 1675400
  2012-10-02-1349155541.12-demo.wav 40067 CanberraMtAinsli 2012-10-02 15:25:43.628+10 213128
  2012-10-02-1349155565.47-demo.wav 40067 CanberraMtAinsli 2012-10-02 15:26:07.661+10 186504
  2012-10-02-1349155567.78-demo.wav 40067 CanberraMtAinsli 2012-10-02 15:26:10.263+10 211080
  2012-10-02-1349155571.38-demo.wav 40067 CanberraMtAinsli 2012-10-02 15:26:26.812+10 1288762
  2012-10-02-1349155587.67-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:26:34.407+10 562758
  2012-10-02-1349155594.71-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:26:39.547+10 407688
  2012-10-02-1349155600.06-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:26:52.361+10 1020304
  2012-10-02-1349155612.9-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:26:58.712+10 479074
  2012-10-02-1349155621.1-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:27:09.004+10 624176
  2012-10-02-1349155629.52-demo.wav 40067 CanberraBlackMnt 2012-10-02 15:27:17.16+10 639962
  2012-10-02-1349155637.29-demo.wav 40067 CanberraBlackMnt 2012-10-02 15:27:23.559+10 528502
  2012-10-02-1349155643.68-demo.wav 40067 CanberraBlackMnt 2012-10-02 15:27:28.537+10 371426
  2012-10-02-1349155649.15-demo.wav 40067 CanberraBlackMnt 2012-10-02 15:27:33.518+10 368460
  2012-10-02-1349155787.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:29:50.531+10 292572
  2012-10-02-1349155792.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:29:55.802+10 309384
  2012-10-02-1349155796.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:30:04.086+10 630850
  2012-10-02-1349155804.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:30:14.308+10 766244
  2012-10-02-1349155815.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:30:22.576+10 625598
  2012-10-02-1349155944.77-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 15:32:28.333+10 300004
  2012-10-02-1349155950.15-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 15:32:36.708+10 549000
  2012-10-02-1349155956.84-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 15:32:45.683+10 741512
  2012-10-02-1349155966.62-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 15:32:50.595+10 331672
  2012-10-02-1349155970.78-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 15:32:55.77+10 358040
  2012-10-02-1349155975.94-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 15:32:59.768+10 284930
  2012-10-02-1349155980.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:33:12.697+10 1023858
  2012-10-02-1349155992.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:33:15.089+10 192648
  2012-10-02-1349155995.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:33:17.462+10 190424
  2012-10-02-1349155998.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:33:35.297+10 1433714
  2012-10-02-1349156015.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:33:37.643+10 188552
  2012-10-02-1349156017.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:33:49.314+10 967932
  2012-10-02-1349156031.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:33:55.914+10 290754
  2012-10-02-1349156036.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:33:59.816+10 266472
  2012-10-02-1349156085.09-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:34:48.409+10 280294
  2012-10-02-1349156089.99-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:34:56.738+10 567432
  2012-10-02-1349156096.87-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:35:03.856+10 587908
  2012-10-02-1349156104.02-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:35:08.293+10 360584
  2012-10-02-1349156109.17-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:35:11.931+10 233550
  2012-10-02-1349156112.06-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:35:16.143+10 342400
  2012-10-02-1349156116.56-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:35:20.356+10 308328
  2012-10-02-1349156121.36-demo.wav 40067 CanberraBlackMnt 2012-10-02 15:35:38.214+10 1410556
  2012-10-02-1349156160.59-demo.wav i1045200 CanberraMtAinsli 2012-10-02 15:36:07.242+10 559240
  2012-10-02-1349156168.85-demo.wav i1045200 CanberraMtAinsli 2012-10-02 15:36:21.81+10 1085576
  2012-10-02-1349156235.65-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 15:37:18.149+10 209526
  2012-10-02-1349156287.5-demo.wav 40067 CanberraBlackMnt 2012-10-02 15:38:17.536+10 839796
  2012-10-02-1349156297.76-demo.wav 40067 CanberraBlackMnt 2012-10-02 15:38:21.413+10 309384
  2012-10-02-1349156304.55-demo.wav 40067 CanberraMtAinsli 2012-10-02 15:38:34.287+10 818520
  2012-10-02-1349156341.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:39:06.811+10 448204
  2012-10-02-1349156348.1-demo.wav 10076 WARINGH CanberraBlackMnt 2012-10-02 15:39:15.952+10 654240
  2012-10-02-1349156357.36-demo.wav 10076 WARINGH CanberraBlackMnt 2012-10-02 15:39:21.949+10 383112
  2012-10-02-1349156363.01-demo.wav 10076 WARINGH CanberraBlackMnt 2012-10-02 15:39:27.052+10 340094
  2012-10-02-1349156369.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:39:45.045+10 1278444
  2012-10-02-1349156385.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:39:51.469+10 509676
  2012-10-02-1349156392.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:39:59.157+10 585024
  2012-10-02-1349156399.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:40:06.623+10 567432
  2012-10-02-1349156408.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:40:21.389+10 997176
  2012-10-02-1349156422.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:40:29.668+10 630568
  2012-10-02-1349156431.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:40:43.77+10 1041856
  2012-10-02-1349156444.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:40:48.149+10 272520
  2012-10-02-1349156448.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:40:53.71+10 428168
  2012-10-02-1349156453.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:40:56.423+10 219058
  2012-10-02-1349156456.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:41:02.429+10 428850
  2012-10-02-1349156494.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:41:37.377+10 211664
  2012-10-02-1349156498.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:41:44.811+10 530300
  2012-10-02-1349156504.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:41:59.317+10 1200240
  2012-10-02-1349156519.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:42:02.451+10 253568
  2012-10-02-1349156522.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:42:08.817+10 513172
  2012-10-02-1349156553.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:42:36.147+10 198792
  2012-10-02-1349156557.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:42:40.164+10 245896
  2012-10-02-1349156560.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:42:49.938+10 785022
  2012-10-02-1349156570.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:43:03.719+10 1085144
  2012-10-02-1349156585.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:43:16.372+10 870536
  2012-10-02-1349156596.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:43:19.303+10 235656
  2012-10-02-1349156599.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:43:28.685+10 775916
  2012-10-02-1349156608.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:43:33.075+10 358536
  2012-10-02-1349156613.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:43:39.186+10 483450
  2012-10-02-1349156619.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:44:00.237+10 1478404
  2012-10-02-1349156640.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:44:03.058+10 211080
  2012-10-02-1349156644.28-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:44:13.171+10 744890
  2012-10-02-1349156655.32-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:44:18.261+10 247944
  2012-10-02-1349156658.82-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:44:28.341+10 790334
  2012-10-02-1349156669.88-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:44:35.567+10 475232
  2012-10-02-1349156676.75-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:44:40.384+10 283544
  2012-10-02-1349156682.13-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:44:45.474+10 245262
  2012-10-02-1349156685.76-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:44:50.259+10 312152
  2012-10-02-1349156692.4-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:44:55.013+10 207614
  2012-10-02-1349156695.35-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:45:01.412+10 504094
  2012-10-02-1349156702.65-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:45:06.931+10 340538
  2012-10-02-1349156707.22-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:45:11.35+10 346248
  2012-10-02-1349156711.86-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:45:14.747+10 243754
  2012-10-02-1349156716.46-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:45:26.616+10 852276
  2012-10-02-1349156749.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:45:53.57+10 348296
  2012-10-02-1349156754.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:46:00.008+10 449990
  2012-10-02-1349156760.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:46:10.55+10 860134
  2012-10-02-1349156770.75-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:46:16.628+10 491656
  2012-10-02-1349156778.48-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:46:25.623+10 602234
  2012-10-02-1349156788.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:46:34.888+10 524532
  2012-10-02-1349156880.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:48:03.934+10 261986
  2012-10-02-1349156887.36-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 15:48:18.196+10 909448
  2012-10-02-1349156898.32-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 15:48:23.037+10 397448
  2012-10-02-1349156903.65-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 15:48:28.718+10 426112
  2012-10-02-1349156908.84-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-02 15:48:34.412+10 424838
  2012-10-02-1349156915.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:48:41.425+10 499548
  2012-10-02-1349156921.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:48:49.367+10 655450
  2012-10-02-1349156929.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:48:58.842+10 756930
  2012-10-02-1349156939.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:49:03.837+10 397448
  2012-10-02-1349156944.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:49:22.858+10 1530860
  2012-10-02-1349156965.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:49:30.685+10 394772
  2012-10-02-1349156970.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:49:35.423+10 376916
  2012-10-02-1349156976.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:49:57.815+10 1488482
  2012-10-02-1349156997.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:50:01.102+10 266376
  2012-10-02-1349157001.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:50:05.292+10 325768
  2012-10-02-1349157005.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:50:10.956+10 460936
  2012-10-02-1349157011.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:50:14.592+10 261386
  2012-10-02-1349157014.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:50:17.247+10 209466
  2012-10-02-1349157017.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:50:26.283+10 687344
  2012-10-02-1349157026.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:50:29.17+10 194986
  2012-10-02-1349157054.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:50:58.202+10 286856
  2012-10-02-1349157058.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:51:01.392+10 252040
  2012-10-02-1349157061.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:51:08.074+10 532616
  2012-10-02-1349157068.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:51:11.023+10 227420
  2012-10-02-1349157071.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:51:13.73+10 180852
  2012-10-02-1349157073.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:51:17.637+10 305964
  2012-10-02-1349157077.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:51:28.765+10 902432
  2012-10-02-1349157088.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:51:33.151+10 291622
  2012-10-02-1349157093.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:51:36.899+10 245486
  2012-10-02-1349157120.67-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 15:52:06.92+10 526472
  2012-10-02-1349157127.67-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 15:52:11.527+10 325768
  2012-10-02-1349157219.8-demo.wav 40067 CanberraBlackMnt 2012-10-02 15:53:43.34+10 295404
  2012-10-02-1349157224.55-demo.wav 40067 CanberraBlackMnt 2012-10-02 15:53:48.429+10 316024
  2012-10-02-1349157231.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:54:05.318+10 1187976
  2012-10-02-1349157245.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:54:12.821+10 575624
  2012-10-02-1349157255.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:54:24.689+10 759944
  2012-10-02-1349157266.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:54:32.475+10 515122
  2012-10-02-1349157273.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:54:43.96+10 901256
  2012-10-02-1349157284.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:54:51.676+10 583236
  2012-10-02-1349157377.87-demo.wav 44028 CanberraBlackMnt 2012-10-02 15:56:21.602+10 314638
  2012-10-02-1349157383.3-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:56:35.022+10 983176
  2012-10-02-1349157395.18-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:56:37.591+10 204936
  2012-10-02-1349157398.4-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:56:42.156+10 317576
  2012-10-02-1349157403.57-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:56:46.465+10 243826
  2012-10-02-1349157406.59-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:56:55.225+10 717680
  2012-10-02-1349157416.15-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:56:59.453+10 248272
  2012-10-02-1349157419.85-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:57:02.882+10 228694
  2012-10-02-1349157423.09-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:57:06.28+10 256244
  2012-10-02-1349157465.01-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:57:51.535+10 544904
  2012-10-02-1349157471.83-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:57:57.868+10 505992
  2012-10-02-1349157478.06-demo.wav 44028 CanberraMtAinsli 2012-10-02 15:58:04.455+10 535768
  2012-10-02-1349157485.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:58:14.592+10 782388
  2012-10-02-1349157540.5-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-02 15:59:06.303+10 486190
  2012-10-02-1349157547.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:59:13.698+10 508040
  2012-10-02-1349157554.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:59:18.43+10 303240
  2012-10-02-1349157558.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:59:27.061+10 700530
  2012-10-02-1349157567.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:59:37.042+10 768648
  2012-10-02-1349157577.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 15:59:49.529+10 967958
  2012-10-02-1349157670.57-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:01:13.099+10 209032
  2012-10-02-1349157673.45-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:01:16.513+10 256136
  2012-10-02-1349157676.74-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:01:19.72+10 247944
  2012-10-02-1349157680.18-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:01:22.528+10 196744
  2012-10-02-1349157683.08-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-02 16:01:39.437+10 1370248
  2012-10-02-1349157699.56-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-02 16:01:43.082+10 297096
  2012-10-02-1349157704.99-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:01:58.353+10 1117818
  2012-10-02-1349157720.91-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:02:03.764+10 241800
  2012-10-02-1349157723.89-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:02:12.095+10 676432
  2012-10-02-1349157732.85-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:02:15.446+10 212852
  2012-10-02-1349157736.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:02:26.24+10 807748
  2012-10-02-1349157746.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:02:30.613+10 311416
  2012-10-02-1349157750.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:02:42.05+10 870490
  2012-10-02-1349157762.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:02:46.956+10 351176
  2012-10-02-1349157767.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:02:50.977+10 276552
  2012-10-02-1349157772.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:02:58.317+10 401922
  2012-10-02-1349157778.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:03:03.664+10 387696
  2012-10-02-1349157784.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:03:16.647+10 1003656
  2012-10-02-1349157799.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:03:23.812+10 385160
  2012-10-02-1349157803.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:03:29.22+10 443356
  2012-10-02-1349157809.51-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-02 16:03:36.682+10 602248
  2012-10-02-1349157818.24-demo.wav 40067 CanberraMtAinsli 2012-10-02 16:03:43.766+10 465032
  2012-10-02-1349157824.62-demo.wav 40067 CanberraMtAinsli 2012-10-02 16:03:48.505+10 327816
  2012-10-02-1349157828.91-demo.wav 40067 CanberraMtAinsli 2012-10-02 16:03:55.609+10 563180
  2012-10-02-1349157835.85-demo.wav 40067 CanberraMtAinsli 2012-10-02 16:04:02.005+10 458150
  2012-10-02-1349157842.31-demo.wav 40067 CanberraMtAinsli 2012-10-02 16:04:05.737+10 226122
  2012-10-02-1349157846.2-demo.wav 40067 CanberraBlackMnt 2012-10-02 16:04:15.404+10 770284
  2012-10-02-1349157855.71-demo.wav 40067 CanberraBlackMnt 2012-10-02 16:04:18.627+10 243848
  2012-10-02-1349157858.86-demo.wav 40067 CanberraBlackMnt 2012-10-02 16:04:35.202+10 1316446
  2012-10-02-1349157875.34-demo.wav 40067 CanberraBlackMnt 2012-10-02 16:04:38.902+10 239172
  2012-10-02-1349157879.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:04:45.392+10 508726
  2012-10-02-1349157885.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:04:49.455+10 321672
  2012-10-02-1349157889.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:04:53.562+10 319604
  2012-10-02-1349157894.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:05:07.057+10 1085576
  2012-10-02-1349157940.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:05:44.296+10 328708
  2012-10-02-1349157944.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:05:47.164+10 217224
  2012-10-02-1349157947.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:05:56.635+10 722328
  2012-10-02-1349157956.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:06:05.152+10 671018
  2012-10-02-1349157965.49-demo.wav 40067 CanberraBlackMnt 2012-10-02 16:06:11.966+10 543662
  2012-10-02-1349157974.83-demo.wav 40067 CanberraBlackMnt 2012-10-02 16:06:20.23+10 453650
  2012-10-02-1349157980.67-demo.wav 40067 CanberraBlackMnt 2012-10-02 16:06:27.965+10 612472
  2012-10-02-1349157988.62-demo.wav 40067 CanberraBlackMnt 2012-10-02 16:06:38.844+10 860296
  2012-10-02-1349158001.04-demo.wav 40067 CanberraBlackMnt 2012-10-02 16:06:45.864+10 405168
  2012-10-02-1349158006.14-demo.wav 40067 CanberraBlackMnt 2012-10-02 16:06:50.267+10 348296
  2012-10-02-1349158010.68-demo.wav 40067 CanberraBlackMnt 2012-10-02 16:06:53.506+10 235656
  2012-10-02-1349158013.8-demo.wav 40067 CanberraBlackMnt 2012-10-02 16:06:57.079+10 272870
  2012-10-02-1349158017.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:07:04.17+10 557192
  2012-10-02-1349158024.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:07:07.07+10 219272
  2012-10-02-1349158027.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:07:10.624+10 282760
  2012-10-02-1349158031.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:07:15.473+10 354296
  2012-10-02-1349158035.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:07:19.477+10 269934
  2012-10-02-1349158040.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:07:27.771+10 610756
  2012-10-02-1349158049.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:07:40.581+10 911036
  2012-10-02-1349158061.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:07:46.125+10 397772
  2012-10-02-1349158066.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:07:53.551+10 587912
  2012-10-02-1349158073.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:07:56.656+10 243848
  2012-10-02-1349158076.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:08:02.01+10 438408
  2012-10-02-1349158082.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:08:06.934+10 375456
  2012-10-02-1349158164.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:09:27.36+10 245584
  2012-10-02-1349158168.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:09:31.017+10 241800
  2012-10-02-1349158172.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:09:37.494+10 462978
  2012-10-02-1349158177.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:09:42.242+10 388340
  2012-10-02-1349158214.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:10:17.191+10 213156
  2012-10-02-1349158218.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:10:25.003+10 546952
  2012-10-02-1349158247.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:10:50.609+10 300624
  2012-10-02-1349158251.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:10:54.69+10 307336
  2012-10-02-1349158256.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:11:13.546+10 1409276
  2012-10-02-1349158274.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:11:19.575+10 429820
  2012-10-02-1349158280.91-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:11:32.878+10 1003390
  2012-10-02-1349158295.21-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:11:46.993+10 991336
  2012-10-02-1349158307.29-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:11:51.925+10 387302
  2012-10-02-1349158312.14-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:11:57.236+10 409064
  2012-10-02-1349158317.55-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:12:02.692+10 412118
  2012-10-02-1349158323.38-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:12:06.825+10 274804
  2012-10-02-1349158328.27-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:12:11.611+10 236034
  2012-10-02-1349158331.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:12:17.545+10 467100
  2012-10-02-1349158337.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:12:25.736+10 665736
  2012-10-02-1349158345.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:12:28.582+10 229390
  2012-10-02-1349158348.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:12:32.277+10 260966
  2012-10-02-1349158352.73-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:12:39.549+10 571722
  2012-10-02-1349158359.78-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:12:43.427+10 305288
  2012-10-02-1349158363.73-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:12:48.691+10 411160
  2012-10-02-1349158368.82-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:12:55.135+10 524924
  2012-10-02-1349158525.9-demo.wav 40067 CanberraMtAinsli 2012-10-02 16:15:28.441+10 214804
  2012-10-02-1349158530.17-demo.wav 40067 CanberraMtAinsli 2012-10-02 16:15:34.137+10 336008
  2012-10-02-1349158534.37-demo.wav 40067 CanberraMtAinsli 2012-10-02 16:15:36.66+10 194696
  2012-10-02-1349158559.66-demo.wav 40067 CanberraMtAinsli 2012-10-02 16:16:04.491+10 407688
  2012-10-02-1349158564.61-demo.wav 40067 CanberraMtAinsli 2012-10-02 16:16:07.603+10 254088
  2012-10-02-1349158567.76-demo.wav 40067 CanberraMtAinsli 2012-10-02 16:16:13.045+10 444552
  2012-10-02-1349158573.75-demo.wav 40067 CanberraMtAinsli 2012-10-02 16:16:17.003+10 274556
  2012-10-02-1349158577.35-demo.wav 40067 CanberraMtAinsli 2012-10-02 16:16:24.838+10 609490
  2012-10-02-1349158586.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:16:33.967+10 646350
  2012-10-02-1349158594.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:16:41.815+10 620680
  2012-10-02-1349158602.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:16:53.494+10 948354
  2012-10-02-1349158613.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:16:59.51+10 478604
  2012-10-02-1349158620.74-demo.wav 40067 CanberraBlackMnt 2012-10-02 16:17:06.565+10 488212
  2012-10-02-1349158627.82-demo.wav 40067 CanberraBlackMnt 2012-10-02 16:17:11.096+10 276616
  2012-10-02-1349158659.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:17:47.685+10 675370
  2012-10-02-1349158668.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:18:00.675+10 1044616
  2012-10-02-1349158754.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:19:17.565+10 245650
  2012-10-02-1349158759.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:19:25.486+10 538760
  2012-10-02-1349158766.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:19:41.197+10 1241028
  2012-10-02-1349158781.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:19:47.208+10 485512
  2012-10-02-1349158787.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:19:52.153+10 374914
  2012-10-02-1349158889.73-demo.wav i1045200 CanberraMtAinsli 2012-10-02 16:21:32.184+10 208116
  2012-10-02-1349158894.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:21:52.179+10 1505416
  2012-10-02-1349158989.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:23:12.489+10 209548
  2012-10-02-1349158993.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:23:19.74+10 498826
  2012-10-02-1349159000.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:23:36.177+10 1252286
  2012-10-02-1349159016.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:23:41.14+10 352198
  2012-10-02-1349159024.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:23:48.702+10 391304
  2012-10-02-1349159028.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:23:52.527+10 303190
  2012-10-02-1349159033.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:24:10.128+10 1427014
  2012-10-02-1349159051.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:24:21.975+10 905134
  2012-10-02-1349159086.94-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:24:50.908+10 336008
  2012-10-02-1349159092.77-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:24:55.566+10 235656
  2012-10-02-1349159096.69-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:25:03.541+10 573576
  2012-10-02-1349159106.87-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:25:10.017+10 256272
  2012-10-02-1349159110.2-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:25:12.604+10 190866
  2012-10-02-1349159112.86-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:25:19.256+10 531426
  2012-10-02-1349159120.14-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:25:28.236+10 679628
  2012-10-02-1349159128.41-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:25:30.71+10 194696
  2012-10-02-1349159131.82-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:25:37.729+10 499848
  2012-10-02-1349159138.41-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:25:42.099+10 304700
  2012-10-02-1349159143.41-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:25:56.376+10 1089092
  2012-10-02-1349159156.51-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:26:05.995+10 794760
  2012-10-02-1349159166.16-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:26:10.669+10 371066
  2012-10-02-1349159170.95-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:26:21.038+10 829552
  2012-10-02-1349159181.19-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:26:30.227+10 752672
  2012-10-02-1349159193.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:26:48.825+10 1263178
  2012-10-02-1349159210.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:26:53.938+10 305288
  2012-10-02-1349159214.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:26:58.972+10 407688
  2012-10-02-1349159219.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:27:03.006+10 329864
  2012-10-02-1349159224.21-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:27:28.715+10 2048204
  2012-10-02-1349159248.88-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:27:34.169+10 444552
  2012-10-02-1349159254.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:27:58.857+10 1988932
  2012-10-02-1349159279.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:28:05.491+10 482996
  2012-10-02-1349159396.22-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:30:01.531+10 446098
  2012-10-02-1349159401.7-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:30:04.249+10 215176
  2012-10-02-1349159404.38-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:30:06.802+10 204936
  2012-10-02-1349159406.93-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:30:09.078+10 182406
  2012-10-02-1349159409.2-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:30:13.973+10 401544
  2012-10-02-1349159414.18-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:30:27.282+10 1097864
  2012-10-02-1349159427.59-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:30:31.187+10 303240
  2012-10-02-1349159431.31-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:30:34.091+10 235656
  2012-10-02-1349159434.22-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:30:36.467+10 190600
  2012-10-02-1349159436.64-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:30:39.191+10 215176
  2012-10-02-1349159439.45-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:30:44.628+10 398772
  2012-10-02-1349159445.38-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:30:54.338+10 748606
  2012-10-02-1349159454.95-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:30:58.318+10 284808
  2012-10-02-1349159459.09-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:31:06+10 577446
  2012-10-02-1349159466.23-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:31:08.879+10 223368
  2012-10-02-1349159469.16-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:31:12.9+10 315528
  2012-10-02-1349159473.13-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:31:18.353+10 438300
  2012-10-02-1349159478.47-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:31:30.377+10 998822
  2012-10-02-1349159490.68-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:31:40.61+10 835720
  2012-10-02-1349159501.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:31:49.712+10 719436
  2012-10-02-1349159512.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:31:58.862+10 517990
  2012-10-02-1349159519.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:32:07.49+10 695180
  2012-10-02-1349159528.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:32:13.776+10 481240
  2012-10-02-1349159534.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:32:18.705+10 340104
  2012-10-02-1349159538.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:32:22.588+10 300494
  2012-10-02-1349159574.02-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:32:57.283+10 268224
  2012-10-02-1349159595.73-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:33:17.989+10 192648
  2012-10-02-1349159598.22-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:33:20.765+10 213128
  2012-10-02-1349159602.22-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:33:27.037+10 407688
  2012-10-02-1349159607.53-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:33:31.633+10 346248
  2012-10-02-1349159611.84-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:33:34.378+10 215176
  2012-10-02-1349159614.5-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:33:39.82+10 442458
  2012-10-02-1349159620.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:33:55.178+10 1218086
  2012-10-02-1349159635.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:33:59.309+10 303240
  2012-10-02-1349159639.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:34:05.739+10 528168
  2012-10-02-1349159645.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:34:15.599+10 816924
  2012-10-02-1349159658.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:34:26.032+10 598014
  2012-10-02-1349159666.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:34:29.989+10 295048
  2012-10-02-1349159670.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:34:39.733+10 788616
  2012-10-02-1349159680.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:34:43.315+10 249992
  2012-10-02-1349159683.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:35:06.509+10 1901320
  2012-10-02-1349159707.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:35:18.879+10 963756
  2012-10-02-1349159844.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:37:26.778+10 218914
  2012-10-02-1349159846.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:37:30.176+10 276616
  2012-10-02-1349159850.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:37:34.668+10 362632
  2012-10-02-1349159855.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:37:39.503+10 360584
  2012-10-02-1349159862.2-demo.wav 40067 CanberraMtAinsli 2012-10-02 16:37:59.515+10 1450120
  2012-10-02-1349159882.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:38:19.894+10 1466504
  2012-10-02-1349159900.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:38:23.068+10 258184
  2012-10-02-1349159903.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:38:32.799+10 805000
  2012-10-02-1349159912.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:38:38.383+10 455446
  2012-10-02-1349159919.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:38:42.665+10 195422
  2012-10-02-1349159922.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:38:49.132+10 516908
  2012-10-02-1349159929.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:38:52.282+10 194452
  2012-10-02-1349159932.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:38:57.911+10 425678
  2012-10-02-1349159938.99-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:39:09.077+10 850056
  2012-10-02-1349160008.99-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:40:13.041+10 340520
  2012-10-02-1349160014.3-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:40:16.646+10 198792
  2012-10-02-1349160016.81-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:40:18.959+10 182404
  2012-10-02-1349160019.45-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:40:23.426+10 333960
  2012-10-02-1349160023.56-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:40:27.287+10 315318
  2012-10-02-1349160027.76-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:40:31.07+10 276474
  2012-10-02-1349160032.84-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:40:38.857+10 504712
  2012-10-02-1349160039.63-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:40:42.512+10 201268
  2012-10-02-1349160042.87-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:40:52.677+10 823362
  2012-10-02-1349160055.58-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:41:00.546+10 413080
  2012-10-02-1349160061.6-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:41:04.025+10 190040
  2012-10-02-1349160066.36-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:41:10.137+10 304218
  2012-10-02-1349160070.41-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:41:13.008+10 221320
  2012-10-02-1349160130.44-demo.wav 44028 CanberraMtAinsli 2012-10-02 16:42:14.677+10 354468
  2012-10-02-1349160134.97-demo.wav 44028 CanberraMtAinsli 2012-10-02 16:42:21.759+10 567432
  2012-10-02-1349160142.03-demo.wav 44028 CanberraMtAinsli 2012-10-02 16:42:24.313+10 194694
  2012-10-02-1349160144.6-demo.wav 44028 CanberraMtAinsli 2012-10-02 16:42:29.673+10 428036
  2012-10-02-1349160213.54-demo.wav 40067 CanberraMtAinsli 2012-10-02 16:43:36.029+10 209542
  2012-10-02-1349160219.41-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:43:44.675+10 442504
  2012-10-02-1349160225.91-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:43:49.602+10 311432
  2012-10-02-1349160230.22-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:43:54.179+10 333960
  2012-10-02-1349160234.51-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:44:09.898+10 1261846
  2012-10-02-1349160250.65-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:44:21.654+10 921492
  2012-10-02-1349160261.85-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:44:24.996+10 266376
  2012-10-02-1349160265.68-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:44:31.06+10 452744
  2012-10-02-1349160271.18-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:44:40.853+10 789186
  2012-10-02-1349160281.41-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:44:45.255+10 322436
  2012-10-02-1349160286.1-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:44:49.673+10 301192
  2012-10-02-1349160290.77-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:44:57.984+10 604296
  2012-10-02-1349160298.2-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:45:01.352+10 266376
  2012-10-02-1349160302.16-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:45:10.013+10 656018
  2012-10-02-1349160310.92-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 16:45:13.641+10 229512
  2012-10-02-1349160314.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:45:29.52+10 1265800
  2012-10-02-1349160330.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:45:33.088+10 258184
  2012-10-02-1349160333.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:45:43.372+10 812766
  2012-10-02-1349160343.89-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:45:51.381+10 630920
  2012-10-02-1349160352.92-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:45:58.335+10 454888
  2012-10-02-1349160359.59-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:46:04.717+10 432264
  2012-10-02-1349160365.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:46:24.879+10 1588410
  2012-10-02-1349160386.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:46:29.966+10 297080
  2012-10-02-1349160390.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:46:35.118+10 368776
  2012-10-02-1349160395.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:46:38.165+10 202172
  2012-10-02-1349160435.51-demo.wav i1045200 CanberraMtAinsli 2012-10-02 16:47:18.012+10 208072
  2012-10-02-1349160461.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:47:46.04+10 342270
  2012-10-02-1349160467.75-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:48:02.047+10 1197482
  2012-10-02-1349160483.42-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:48:06.404+10 249580
  2012-10-02-1349160488.21-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:48:11.127+10 245896
  2012-10-02-1349160492.76-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:48:17.687+10 410162
  2012-10-02-1349160498.44-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:48:24.741+10 521572
  2012-10-02-1349160506.34-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:48:29.113+10 195506
  2012-10-02-1349160509.87-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:48:34.81+10 390554
  2012-10-02-1349160515.26-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:48:38.082+10 198246
  2012-10-02-1349160522.17-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:48:48.577+10 513036
  2012-10-02-1349160529.66-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:48:56.952+10 561208
  2012-10-02-1349160538.28-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:49:01.243+10 188904
  2012-10-02-1349160542.11-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:49:23.448+10 1793646
  2012-10-02-1349160564.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:49:42.772+10 1500300
  2012-10-02-1349160583.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:49:49.933+10 528794
  2012-10-02-1349160590.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:49:56.208+10 512136
  2012-10-02-1349160596.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:50:01.26+10 385160
  2012-10-02-1349160601.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:50:04.807+10 274568
  2012-10-02-1349160666.1-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:51:08.583+10 210012
  2012-10-02-1349160669.57-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:51:19.292+10 812320
  2012-10-02-1349160679.42-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:51:25.453+10 508040
  2012-10-02-1349160685.57-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:51:30.799+10 439770
  2012-10-02-1349160690.96-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:51:35.363+10 326834
  2012-10-02-1349160695.99-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:51:39.798+10 271438
  2012-10-02-1349160701.4-demo.wav 40067 CanberraBlackMnt 2012-10-02 16:52:02.844+10 1794272
  2012-10-02-1349160773.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:52:55.956+10 208216
  2012-10-02-1349160776.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:52:58.875+10 227464
  2012-10-02-1349160779.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:53:04.887+10 495752
  2012-10-02-1349160785.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:53:09.966+10 354572
  2012-10-02-1349160912.14-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:55:16.067+10 329996
  2012-10-02-1349160917.04-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:55:19.895+10 241800
  2012-10-02-1349160920.19-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:55:27.893+10 647302
  2012-10-02-1349160928.19-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:55:31.474+10 253266
  2012-10-02-1349160931.73-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 16:55:35.141+10 227570
  2012-10-02-1349161007.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 16:56:51.091+10 282682
  2012-10-02-1349161012.68-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:56:57.919+10 442504
  2012-10-02-1349161018.21-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:57:04.427+10 522376
  2012-10-02-1349161024.56-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:57:10.36+10 489544
  2012-10-02-1349161030.63-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:57:16.854+10 522306
  2012-10-02-1349161036.97-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:57:23.842+10 545940
  2012-10-02-1349161044.07-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:57:27.928+10 323160
  2012-10-02-1349161048.05-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:57:31.519+10 227614
  2012-10-02-1349161052.27-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:57:36.976+10 337336
  2012-10-02-1349161057.79-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:57:46.121+10 684940
  2012-10-02-1349161066.24-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:57:51.005+10 391054
  2012-10-02-1349161071.81-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:57:55.09+10 227242
  2012-10-02-1349161078.22-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-02 16:58:35.114+10 3082834
  2012-10-02-1349161190.6-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:59:53.491+10 240052
  2012-10-02-1349161195.13-demo.wav 44028 CanberraBlackMnt 2012-10-02 16:59:59.058+10 329864
  2012-10-02-1349161200.8-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:00:03.061+10 192648
  2012-10-02-1349161204.33-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:00:09.17+10 405640
  2012-10-02-1349161209.83-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:00:12.441+10 219272
  2012-10-02-1349161212.57-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:00:15.217+10 223368
  2012-10-02-1349161215.52-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:00:18.072+10 215110
  2012-10-02-1349161590.45-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:06:33.861+10 286920
  2012-10-02-1349161596.32-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:06:41.602+10 444552
  2012-10-02-1349161602.44-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:06:48.894+10 542856
  2012-10-02-1349161609.02-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:06:58.31+10 774834
  2012-10-02-1349161621.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:07:09.446+10 701450
  2012-10-02-1349161629.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:07:12.491+10 215176
  2012-10-02-1349161632.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:07:19.269+10 538720
  2012-10-02-1349161639.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:07:24.674+10 374240
  2012-10-02-1349161645.56-demo.wav i1045200 CanberraMtAinsli 2012-10-02 17:07:43.464+10 1503268
  2012-10-02-1349161663.77-demo.wav i1045200 CanberraMtAinsli 2012-10-02 17:07:50.675+10 579720
  2012-10-02-1349161671.05-demo.wav i1045200 CanberraMtAinsli 2012-10-02 17:07:55.141+10 344188
  2012-10-02-1349161676.97-demo.wav i1045200 CanberraMtAinsli 2012-10-02 17:08:04.17+10 602636
  2012-10-02-1349161707.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:08:30.185+10 231560
  2012-10-02-1349161710.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:08:33.175+10 221320
  2012-10-02-1349161713.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:08:35.945+10 209032
  2012-10-02-1349161716.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:08:42.575+10 485510
  2012-10-02-1349161722.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:08:46.733+10 305488
  2012-10-02-1349161727.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:08:51.965+10 362162
  2012-10-02-1349161732.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:09:15.677+10 1912254
  2012-10-02-1349161756.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:09:18.669+10 223368
  2012-10-02-1349161758.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:09:43.869+10 2062974
  2012-10-02-1349161784.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:09:49.381+10 382904
  2012-10-02-1349161789.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:09:53.512+10 330102
  2012-10-02-1349161793.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:09:56.559+10 186182
  2012-10-02-1349161797.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:10:06.271+10 767934
  2012-10-02-1349161807.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:10:16.575+10 805000
  2012-10-02-1349161817.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:10:26.446+10 792706
  2012-10-02-1349161827.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:10:37.447+10 851966
  2012-10-02-1349161878.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:11:20.762+10 228906
  2012-10-02-1349161881.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:11:24.542+10 258184
  2012-10-02-1349161885.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:11:29.064+10 338056
  2012-10-02-1349161889.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:11:34.081+10 372684
  2012-10-02-1349161924.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:12:07.073+10 231340
  2012-10-02-1349161928.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:12:11.412+10 268424
  2012-10-02-1349161931.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:12:16.101+10 385160
  2012-10-02-1349161936.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:12:29.696+10 1109064
  2012-10-02-1349161949.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:12:34.451+10 331132
  2012-10-02-1349161955.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:12:40.602+10 417824
  2012-10-02-1349162000.89-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:13:25.6+10 395570
  2012-10-02-1349162005.83-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:13:28.36+10 215176
  2012-10-02-1349162008.92-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:13:34.28+10 450696
  2012-10-02-1349162014.4-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:13:40.84+10 542854
  2012-10-02-1349162021.24-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:13:44.015+10 227794
  2012-10-02-1349162024.13-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:13:50.525+10 481168
  2012-10-02-1349162033.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:14:01.691+10 687328
  2012-10-02-1349162042.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:14:08.232+10 469128
  2012-10-02-1349162049.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:14:16.239+10 592236
  2012-10-02-1349162057.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:14:33.449+10 1237268
  2012-10-02-1349162074.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:14:40.372+10 510776
  2012-10-02-1349162086.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:14:50.47+10 364718
  2012-10-02-1349162090.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:14:58.86+10 617890
  2012-10-02-1349162099.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:15:02.608+10 246652
  2012-10-02-1349162103.06-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:15:19.324+10 1365642
  2012-10-02-1349162121.61-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:15:30.839+10 770090
  2012-10-02-1349162131.33-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:15:46.563+10 1237380
  2012-10-02-1349162146.74-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:15:57.49+10 839128
  2012-10-02-1349162157.71-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:16:16.017+10 1525322
  2012-10-02-1349162176.14-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:16:22.631+10 493120
  2012-10-02-1349162182.91-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:16:26.746+10 257264
  2012-10-02-1349162218.17-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:17:01.74+10 293388
  2012-10-02-1349162246.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:17:29.429+10 229512
  2012-10-02-1349162249.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:17:34.899+10 411784
  2012-10-02-1349162255.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:17:40.633+10 422024
  2012-10-02-1349162260.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:17:43.258+10 196744
  2012-10-02-1349162263.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:17:47.5+10 329850
  2012-10-02-1349162267.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:17:51.344+10 298650
  2012-10-02-1349162271.87-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:18:03.096+10 942216
  2012-10-02-1349162283.38-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:18:05.725+10 194696
  2012-10-02-1349162286.4-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:18:26.552+10 1627170
  2012-10-02-1349162306.67-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:18:43.307+10 1328194
  2012-10-02-1349162323.43-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:18:47.263+10 264378
  2012-10-02-1349162327.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:18:58.012+10 863470
  2012-10-02-1349162338.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:19:03.595+10 409736
  2012-10-02-1349162344.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:19:23.325+10 1540044
  2012-10-02-1349162363.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:19:25.879+10 202888
  2012-10-02-1349162366.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:19:39.37+10 1074852
  2012-10-02-1349162379.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:19:48.386+10 739464
  2012-10-02-1349162388.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:19:51.514+10 251976
  2012-10-02-1349162391.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:19:55.269+10 281176
  2012-10-02-1349162396.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:20:01.093+10 411370
  2012-10-02-1349162402.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:20:07.547+10 456830
  2012-10-02-1349162407.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:20:13.719+10 487560
  2012-10-02-1349162414.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:20:19.391+10 436360
  2012-10-02-1349162445.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:20:48.486+10 276616
  2012-10-02-1349162448.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:20:51.067+10 209032
  2012-10-02-1349162451.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:20:58.039+10 551048
  2012-10-02-1349162458.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:21:02.871+10 334318
  2012-10-02-1349162502.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:21:46.527+10 329128
  2012-10-02-1349162507.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:21:55.139+10 600120
  2012-10-02-1349162515.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:22:03.322+10 663682
  2012-10-02-1349162525.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:22:11.06+10 448642
  2012-10-02-1349162533.15-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:22:18.889+10 481416
  2012-10-02-1349162557.81-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:22:41.301+10 295048
  2012-10-02-1349162562.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:22:54.786+10 1051064
  2012-10-02-1349162575.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:22:58.819+10 290952
  2012-10-02-1349162579.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:23:07.941+10 731610
  2012-10-02-1349162588.26-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:23:15.089+10 573576
  2012-10-02-1349162596.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:23:25.964+10 776328
  2012-10-02-1349162606.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:23:29.864+10 301192
  2012-10-02-1349162610.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:23:41.214+10 871096
  2012-10-02-1349162622.1-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 17:23:51.467+10 784242
  2012-10-02-1349162632.33-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:23:56.726+10 367016
  2012-10-02-1349162637.57-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:24:13.734+10 1353104
  2012-10-02-1349162688.3-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:24:53.365+10 425258
  2012-10-02-1349162693.58-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:24:57.161+10 301192
  2012-10-02-1349162697.98-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:25:10.277+10 963262
  2012-10-02-1349162711.18-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:25:29.719+10 1547700
  2012-10-02-1349162730.6-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:25:34.361+10 315984
  2012-10-02-1349162734.76-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:25:45.643+10 913544
  2012-10-02-1349162764.94-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:26:11.343+10 538760
  2012-10-02-1349162772.25-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:26:34.4+10 1851624
  2012-10-02-1349162849.4-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:27:33.02+10 303636
  2012-10-02-1349162854.53-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:27:37.71+10 265994
  2012-10-02-1349162857.83-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:27:41.935+10 346248
  2012-10-02-1349162862.5-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:27:48.246+10 483272
  2012-10-02-1349162868.37-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:27:52.169+10 264656
  2012-10-02-1349162872.45-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:27:55.966+10 233084
  2012-10-02-1349162876.54-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:27:59.378+10 195500
  2012-10-02-1349162879.5-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:28:04.3+10 340618
  2012-10-02-1349162884.42-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:28:10.282+10 433678
  2012-10-02-1349162890.63-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:28:23.406+10 1070612
  2012-10-02-1349162903.69-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:28:31.784+10 679614
  2012-10-02-1349162912.41-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:28:35.588+10 227644
  2012-10-02-1349162915.79-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:28:39.074+10 214696
  2012-10-02-1349162919.51-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:28:55.948+10 1381298
  2012-10-02-1349162936.29-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:29:01.323+10 422024
  2012-10-02-1349162942.2-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:29:13.587+10 954834
  2012-10-02-1349162953.88-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:29:16.059+10 182408
  2012-10-02-1349162956.52-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:29:25.194+10 729114
  2012-10-02-1349162965.48-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:29:31.699+10 468666
  2012-10-02-1349162972.0-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:29:42.672+10 835582
  2012-10-02-1349162982.88-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:29:46.396+10 225890
  2012-10-02-1349163074.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:31:16.942+10 210026
  2012-10-02-1349163078.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:31:33.131+10 1262486
  2012-10-02-1349163093.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:31:36.458+10 235656
  2012-10-02-1349163097.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:32:40.698+10 5308736
  2012-10-02-1349163160.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:32:43.538+10 200408
  2012-10-02-1349163165.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:32:58.588+10 1111774
  2012-10-02-1349163252.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:34:14.696+10 207760
  2012-10-02-1349163296.86-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:35:08.536+10 979628
  2012-10-02-1349163308.66-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:35:17.021+10 699390
  2012-10-02-1349163317.3-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:35:23.322+10 502814
  2012-10-02-1349163323.52-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:35:27.645+10 336106
  2012-10-02-1349163328.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:35:57.208+10 2380182
  2012-10-02-1349163358.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:36:04.61+10 542364
  2012-10-02-1349163446.02-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:37:28.486+10 208524
  2012-10-02-1349163449.56-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:37:34.868+10 443840
  2012-10-02-1349163454.99-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:37:41.059+10 512134
  2012-10-02-1349163461.2-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:37:57.472+10 1354224
  2012-10-02-1349163477.78-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:38:08.479+10 863974
  2012-10-02-1349163490.47-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:38:13.377+10 198390
  2012-10-02-1349163542.5-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:39:06.336+10 320632
  2012-10-02-1349163548.71-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:39:12.271+10 297272
  2012-10-02-1349163553.4-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:39:25.461+10 1008778
  2012-10-02-1349163565.74-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:39:31.142+10 420892
  2012-10-02-1349163571.76-demo.wav 44028 CanberraMtAinsli 2012-10-02 17:39:35.336+10 278022
  2012-10-02-1349163577.23-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:39:45.957+10 731350
  2012-10-02-1349163586.5-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:39:50.106+10 305288
  2012-10-02-1349163590.86-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:40:01.323+10 878728
  2012-10-02-1349163602.65-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:40:11.647+10 753092
  2012-10-02-1349163611.77-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:40:19.794+10 661160
  2012-10-02-1349163723.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:42:06.034+10 208184
  2012-10-02-1349163801.65-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:43:25.452+10 315862
  2012-10-02-1349163810.0-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:43:32.614+10 219272
  2012-10-02-1349163813.41-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:43:41.898+10 686694
  2012-10-02-1349163822.19-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:44:01.168+10 1580082
  2012-10-02-1349163841.47-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:44:04.74+10 233416
  2012-10-02-1349163847.89-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 17:44:42.443+10 2880452
  2012-10-02-1349163883.19-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:44:53.166+10 835302
  2012-10-02-1349163893.29-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:44:57.146+10 285090
  2012-10-02-1349163945.81-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:45:49.772+10 329972
  2012-10-02-1349163950.19-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:45:53.592+10 282760
  2012-10-02-1349163953.9-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:46:00.002+10 509652
  2012-10-02-1349163960.16-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:46:05.039+10 352724
  2012-10-02-1349163968.78-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 17:46:17.83+10 757696
  2012-10-02-1349164053.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:47:36.093+10 210234
  2012-10-02-1349164102.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:48:26.473+10 376272
  2012-10-02-1349164107.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:48:31.149+10 312654
  2012-10-02-1349164112.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:48:46.134+10 1133456
  2012-10-02-1349164126.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:48:50.802+10 378666
  2012-10-02-1349164196.43-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:49:59.006+10 209750
  2012-10-02-1349164200.04-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:50:03.013+10 248304
  2012-10-02-1349164203.17-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:50:09.317+10 516232
  2012-10-02-1349164211.48-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:50:19.083+10 639112
  2012-10-02-1349164219.72-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:50:28.865+10 768136
  2012-10-02-1349164229.44-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:50:37.467+10 673542
  2012-10-02-1349164237.59-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:50:44.09+10 490610
  2012-10-02-1349164244.24-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:50:48.605+10 348982
  2012-10-02-1349164248.86-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:50:54.033+10 430260
  2012-10-02-1349164254.31-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:50:57.383+10 252842
  2012-10-02-1349164258.29-demo.wav 44028 CanberraBlackMnt 2012-10-02 17:51:08.489+10 798836
  2012-10-02-1349164270.12-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 17:51:17.899+10 650756
  2012-10-02-1349164356.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:52:38.821+10 210098
  2012-10-02-1349164470.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:54:33.964+10 257584
  2012-10-02-1349164475.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:54:39.98+10 371786
  2012-10-02-1349164480.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:55:01.955+10 1767254
  2012-10-02-1349164502.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:55:05.009+10 189200
  2012-10-02-1349164567.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:56:09.948+10 210054
  2012-10-02-1349164571.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:56:14.702+10 297442
  2012-10-02-1349164575.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:56:18.011+10 249992
  2012-10-02-1349164579.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:56:23.48+10 364680
  2012-10-02-1349164583.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:56:27.338+10 301162
  2012-10-02-1349164587.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:56:30.162+10 204926
  2012-10-02-1349164590.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:56:32.763+10 181796
  2012-10-02-1349164594.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 17:56:39.481+10 434224
  2012-10-02-1349164628.98-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 17:57:14.825+10 491070
  2012-10-02-1349164635.31-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 17:57:21.52+10 520328
  2012-10-02-1349164642.8-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 17:57:27.415+10 386516
  2012-10-02-1349164650.44-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 17:57:36.438+10 503944
  2012-10-02-1349164657.06-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 17:57:50.217+10 1057496
  2012-10-02-1349164670.38-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-02 17:57:54.191+10 318880
  2012-10-02-1349164773.29-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 17:59:37.982+10 393818
  2012-10-02-1349164999.36-demo.wav 44028 CanberraMtAinsli 2012-10-02 18:03:22.969+10 302788
  2012-10-02-1349165004.5-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:03:29.847+10 445182
  2012-10-02-1349165010.0-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:03:38.703+10 731270
  2012-10-02-1349165019.43-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:03:45.006+10 463956
  2012-10-02-1349165026.02-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:03:53.001+10 585352
  2012-10-02-1349165035.03-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:03:58.139+10 262226
  2012-10-02-1349165039.94-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:04:03.678+10 315528
  2012-10-02-1349165044.67-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:04:14.527+10 827528
  2012-10-02-1349165055.97-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:04:20.352+10 368776
  2012-10-02-1349165182.72-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 18:06:26.195+10 290272
  2012-10-02-1349165186.76-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 18:06:36.293+10 798856
  2012-10-02-1349165198.04-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 18:06:46.482+10 704064
  2012-10-02-1349165207.42-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 18:06:55.305+10 660290
  2012-10-02-1349165215.9-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 18:07:01.579+10 475272
  2012-10-02-1349165223.86-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 18:07:10.473+10 554946
  2012-10-02-1349165230.86-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 18:07:15.459+10 383026
  2012-10-02-1349165276.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:08:08.086+10 952112
  2012-10-02-1349165288.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:08:10.603+10 202888
  2012-10-02-1349165291.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:08:26.863+10 1292424
  2012-10-02-1349165308.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:08:34.79+10 538410
  2012-10-02-1349165315.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:08:53.344+10 1479310
  2012-10-02-1349165335.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:08:58.106+10 198792
  2012-10-02-1349165338.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:09:01.936+10 313480
  2012-10-02-1349165342.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:09:06.634+10 384968
  2012-10-02-1349165348.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:09:15.938+10 635584
  2012-10-02-1349165356.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:09:20.26+10 354440
  2012-10-02-1349165361.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:09:29.05+10 630920
  2012-10-02-1349165369.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:09:33.802+10 336008
  2012-10-02-1349165374.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:09:39.408+10 429770
  2012-10-02-1349165379.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:09:42.385+10 197950
  2012-10-02-1349165706.04-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:15:10.324+10 361558
  2012-10-02-1349165710.44-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:15:12.606+10 184456
  2012-10-02-1349165713.17-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:15:18.143+10 419976
  2012-10-02-1349165718.63-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:15:24.526+10 494950
  2012-10-02-1349165725.6-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:15:30.686+10 417712
  2012-10-02-1349165730.81-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:15:36.526+10 435780
  2012-10-02-1349165736.77-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:15:46.484+10 801428
  2012-10-02-1349165748.06-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:15:52.693+10 370152
  2012-10-02-1349165753.56-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:15:56.716+10 211376
  2012-10-02-1349165806.71-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:16:49.662+10 243524
  2012-10-02-1349165911.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:18:33.991+10 240460
  2012-10-02-1349165915.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:18:42.868+10 600200
  2012-10-02-1349165923.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:19:06.414+10 1861464
  2012-10-02-1349165947.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:19:11.151+10 333696
  2012-10-02-1349165951.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:19:32.517+10 1720318
  2012-10-02-1349165972.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:19:36.075+10 288904
  2012-10-02-1349165976.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:19:41.476+10 404530
  2012-10-02-1349165981.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:19:45.513+10 299144
  2012-10-02-1349165986.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:19:58.914+10 1020040
  2012-10-02-1349166001.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:20:08.268+10 584252
  2012-10-02-1349166008.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:20:12.264+10 307336
  2012-10-02-1349166015.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:20:19.084+10 331912
  2012-10-02-1349166019.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:20:22.012+10 210866
  2012-10-02-1349166022.41-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:20:30.561+10 684168
  2012-10-02-1349166031.21-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:20:33.559+10 192648
  2012-10-02-1349166034.92-demo.wav 44012 ACTION 44012 CanberraMtAinsli 2012-10-02 18:20:46.059+10 931074
  2012-10-02-1349166046.27-demo.wav 44012 ACTION 44012 CanberraMtAinsli 2012-10-02 18:20:50.598+10 360534
  2012-10-02-1349166050.9-demo.wav 44012 ACTION 44012 CanberraMtAinsli 2012-10-02 18:20:56.222+10 430044
  2012-10-02-1349166057.11-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 18:21:04.705+10 635622
  2012-10-02-1349166065.39-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 18:21:13.797+10 704648
  2012-10-02-1349166075.25-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 18:21:24.67+10 790664
  2012-10-02-1349166086.27-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 18:21:29.743+10 286856
  2012-10-02-1349166090.4-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 18:21:42.178+10 929244
  2012-10-02-1349166103.07-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 18:21:55.307+10 1024000
  2012-10-02-1349166116.12-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 18:22:08.55+10 1039762
  2012-10-02-1349166128.95-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 18:22:18.778+10 819336
  2012-10-02-1349166141.31-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 18:22:27.569+10 523750
  2012-10-02-1349166168.19-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 18:22:50.713+10 213128
  2012-10-02-1349166172.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:23:06.873+10 1235080
  2012-10-02-1349166187.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:23:12.114+10 369840
  2012-10-02-1349166192.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:23:20.187+10 661188
  2012-10-02-1349166201.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:23:25.576+10 322478
  2012-10-02-1349166352.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:25:56.422+10 330852
  2012-10-02-1349166356.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:25:59.818+10 276616
  2012-10-02-1349166359.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:26:12.022+10 950258
  2012-10-02-1349166372.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:26:17.974+10 436304
  2012-10-02-1349166378.19-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:26:23.863+10 477320
  2012-10-02-1349166384.67-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:26:39.263+10 1222060
  2012-10-02-1349166401.24-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:26:47.193+10 454228
  2012-10-02-1349166408.5-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:26:52.09+10 289586
  2012-10-02-1349166413.97-demo.wav 44028 CanberraMtAinsli 2012-10-02 18:27:15.442+10 1802376
  2012-10-02-1349166435.71-demo.wav 44028 CanberraMtAinsli 2012-10-02 18:27:20.293+10 383112
  2012-10-02-1349166441.44-demo.wav 44028 CanberraMtAinsli 2012-10-02 18:27:24.474+10 256136
  2012-10-02-1349166444.67-demo.wav 44028 CanberraMtAinsli 2012-10-02 18:27:32.723+10 677920
  2012-10-02-1349166452.86-demo.wav 44028 CanberraMtAinsli 2012-10-02 18:27:35.565+10 224740
  2012-10-02-1349166456.01-demo.wav 44028 CanberraMtAinsli 2012-10-02 18:27:40.75+10 388960
  2012-10-02-1349166462.03-demo.wav 44028 CanberraMtAinsli 2012-10-02 18:27:45.089+10 211456
  2012-10-02-1349166531.57-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:28:54.623+10 256808
  2012-10-02-1349166536.05-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:28:58.309+10 192648
  2012-10-02-1349166538.43-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:29:04.342+10 497800
  2012-10-02-1349166544.47-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:29:08.508+10 338832
  2012-10-02-1349166550.11-demo.wav 44028 CanberraBlackMnt 2012-10-02 18:29:13.854+10 312816
  2012-10-02-1349166990.04-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-02 18:36:32.507+10 207980
  2012-10-02-1349167218.03-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-02 18:40:23.003+10 415220
  2012-10-02-1349167224.4-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 18:40:35.57+10 938120
  2012-10-02-1349167262.23-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 18:41:06.187+10 330528
  2012-10-02-1349167267.79-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 18:41:15.995+10 690312
  2012-10-02-1349167276.27-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 18:41:19.611+10 278664
  2012-10-02-1349167280.57-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 18:41:28.743+10 682120
  2012-10-02-1349167360.83-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-02 18:42:44.115+10 275612
  2012-10-02-1349167386.67-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 18:43:10.95+10 360584
  2012-10-02-1349167392.6-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 18:43:16.661+10 342152
  2012-10-02-1349167397.82-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 18:43:29.488+10 974586
  2012-10-02-1349167409.62-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 18:43:38.984+10 723928
  2012-10-02-1349167419.39-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 18:43:44.297+10 352126
  2012-10-02-1349167424.67-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-02 18:43:51.036+10 533154
  2012-10-02-1349167431.38-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-02 18:44:01.516+10 850028
  2012-10-02-1349167441.71-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-02 18:44:04.584+10 181710
  2012-10-02-1349167710.55-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 18:48:37.245+10 557418
  2012-10-02-1349167718.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:48:46.988+10 737416
  2012-10-02-1349167727.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:49:19.856+10 2665288
  2012-10-02-1349167760.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:49:26.332+10 479182
  2012-10-02-1349167826.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:50:32.264+10 481012
  2012-10-02-1349167832.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:50:35.949+10 288902
  2012-10-02-1349167837.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:50:46.638+10 749966
  2012-10-02-1349167847.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:50:52.47+10 428166
  2012-10-02-1349167985.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:53:08.828+10 265888
  2012-10-02-1349167989.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:53:18.785+10 745398
  2012-10-02-1349167999.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:53:25.912+10 572948
  2012-10-02-1349168007.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:53:30.138+10 249692
  2012-10-02-1349168011.0-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 18:53:39.498+10 715792
  2012-10-02-1349168055.77-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 18:54:19.117+10 279422
  2012-10-02-1349168060.38-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 18:54:37.219+10 1413256
  2012-10-02-1349168080.09-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 18:54:52.078+10 1007748
  2012-10-02-1349168092.29-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 18:54:55.47+10 264182
  2012-10-02-1349168143.23-demo.wav 44028 CanberraMtAinsli 2012-10-02 18:55:46.209+10 250906
  2012-10-02-1349168146.77-demo.wav 44028 CanberraMtAinsli 2012-10-02 18:55:50.629+10 325768
  2012-10-02-1349168150.75-demo.wav 44028 CanberraMtAinsli 2012-10-02 18:55:54.826+10 344200
  2012-10-02-1349168155.6-demo.wav 44028 CanberraMtAinsli 2012-10-02 18:55:57.938+10 198792
  2012-10-02-1349168238.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:57:23.373+10 448412
  2012-10-02-1349168244.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:57:27.569+10 266376
  2012-10-02-1349168248.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:57:42.2+10 1181504
  2012-10-02-1349168263.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:57:48.847+10 417822
  2012-10-02-1349168269.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:57:53.048+10 319624
  2012-10-02-1349168274.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:58:15.014+10 1706120
  2012-10-02-1349168297.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:58:24.75+10 637064
  2012-10-02-1349168304.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:58:30.876+10 491656
  2012-10-02-1349168312.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:58:38.504+10 491656
  2012-10-02-1349168319.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 18:58:44.885+10 419958
  2012-10-02-1349168485.38-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 19:01:31.13+10 479970
  2012-10-02-1349168676.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:04:39.419+10 279130
  2012-10-02-1349168679.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:04:42.461+10 241800
  2012-10-02-1349168683.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:04:48.298+10 444552
  2012-10-02-1349168688.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:04:51.406+10 228234
  2012-10-02-1349168718.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:05:21.985+10 315528
  2012-10-02-1349168723.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:05:26.986+10 309384
  2012-10-02-1349168727.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:05:33.475+10 475272
  2012-10-02-1349168733.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:05:36.553+10 237676
  2012-10-02-1349168737.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:05:46.696+10 805000
  2012-10-02-1349168746.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:05:49.527+10 223368
  2012-10-02-1349168749.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:05:53.882+10 352292
  2012-10-02-1349168862.69-demo.wav 44028 CanberraBlackMnt 2012-10-02 19:07:45.961+10 275992
  2012-10-02-1349168867.34-demo.wav 44028 CanberraMtAinsli 2012-10-02 19:07:52.87+10 465222
  2012-10-02-1349168873.06-demo.wav 44028 CanberraMtAinsli 2012-10-02 19:08:02.617+10 802952
  2012-10-02-1349168884.54-demo.wav 44028 CanberraMtAinsli 2012-10-02 19:08:09.254+10 392916
  2012-10-02-1349168889.8-demo.wav 44028 CanberraMtAinsli 2012-10-02 19:08:15.78+10 470986
  2012-10-02-1349168896.03-demo.wav 44028 CanberraMtAinsli 2012-10-02 19:08:20.135+10 276158
  2012-10-02-1349168900.39-demo.wav 44028 CanberraMtAinsli 2012-10-02 19:08:28.752+10 693058
  2012-10-02-1349168908.96-demo.wav 44028 CanberraMtAinsli 2012-10-02 19:08:32.931+10 278972
  2012-10-02-1349168913.79-demo.wav 44028 CanberraMtAinsli 2012-10-02 19:08:37.222+10 227170
  2012-10-02-1349168917.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:08:57.924+10 1709392
  2012-10-02-1349168939.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:09:21.343+10 1869960
  2012-10-02-1349168961.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:09:24.2+10 194184
  2012-10-02-1349169021.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:10:24.94+10 256776
  2012-10-02-1349169046.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:10:49.371+10 223368
  2012-10-02-1349169049.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:10:52.146+10 215176
  2012-10-02-1349169052.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:10:56.047+10 290952
  2012-10-02-1349169056.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:11:06.334+10 798786
  2012-10-02-1349169066.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:11:11.31+10 355626
  2012-10-02-1349169071.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:11:34.162+10 1864876
  2012-10-02-1349169094.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:11:37.22+10 247944
  2012-10-02-1349169097.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:11:40.3+10 249992
  2012-10-02-1349169101.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:11:43.827+10 237704
  2012-10-02-1349169151.43-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:12:33.959+10 210934
  2012-10-02-1349169197.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:13:19.613+10 208586
  2012-10-02-1349169200.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:13:26.547+10 487480
  2012-10-02-1349169206.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:13:30.864+10 336008
  2012-10-02-1349169212.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:13:49.156+10 1370758
  2012-10-02-1349169230.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:13:55.984+10 498672
  2012-10-02-1349169282.25-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:14:46.064+10 318808
  2012-10-02-1349169287.74-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:14:55.27+10 631702
  2012-10-02-1349169298.49-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:15:01.764+10 278664
  2012-10-02-1349169301.97-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:15:07.796+10 448472
  2012-10-02-1349169308.05-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:15:10.971+10 185412
  2012-10-02-1349169311.12-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:15:14.802+10 295030
  2012-10-02-1349169315.33-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:15:19.382+10 306684
  2012-10-02-1349169319.71-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:15:25.413+10 428170
  2012-10-02-1349169439.12-demo.wav 44028 CanberraBlackMnt 2012-10-02 19:17:21.787+10 223402
  2012-10-02-1349169441.9-demo.wav 44028 CanberraBlackMnt 2012-10-02 19:17:27.181+10 444552
  2012-10-02-1349169449.23-demo.wav 44028 CanberraBlackMnt 2012-10-02 19:17:32.943+10 313480
  2012-10-02-1349169532.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:18:56.954+10 346350
  2012-10-02-1349169538.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:19:02.035+10 317576
  2012-10-02-1349169543.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:19:31.417+10 2330654
  2012-10-02-1349169571.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:19:34.891+10 216776
  2012-10-02-1349169679.88-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:21:25.003+10 430858
  2012-10-02-1349169686.23-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:21:30.015+10 314496
  2012-10-02-1349169690.7-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:21:44.55+10 1116662
  2012-10-02-1349169704.82-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:21:47.885+10 203572
  2012-10-02-1349169799.28-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 19:23:30.64+10 951072
  2012-10-02-1349169959.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:26:02.619+10 254176
  2012-10-02-1349169962.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:26:05.947+10 258184
  2012-10-02-1349169966.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:26:23.239+10 1398920
  2012-10-02-1349169983.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:26:26.581+10 231560
  2012-10-02-1349170173.46-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-02 19:29:37.4+10 329116
  2012-10-02-1349170179.46-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-02 19:29:46.152+10 561288
  2012-10-02-1349170187.12-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-02 19:29:53.075+10 497340
  2012-10-02-1349170194.54-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:30:15.559+10 1762918
  2012-10-02-1349170218.07-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:30:22.021+10 331912
  2012-10-02-1349170222.28-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:30:25.611+10 282760
  2012-10-02-1349170226.12-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:30:30.173+10 342152
  2012-10-02-1349170230.37-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:30:35.201+10 407688
  2012-10-02-1349170235.96-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:30:41.997+10 445046
  2012-10-02-1349170242.39-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:30:47.869+10 460936
  2012-10-02-1349170248.93-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:30:53.488+10 385148
  2012-10-02-1349170255.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:31:14.517+10 1605414
  2012-10-02-1349170274.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:31:17.848+10 262280
  2012-10-02-1349170277.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:31:33.542+10 1291410
  2012-10-02-1349170293.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:31:38.289+10 370824
  2012-10-02-1349170299.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:31:44.812+10 444552
  2012-10-02-1349170305.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:31:48.589+10 266376
  2012-10-02-1349170309.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:31:55.974+10 498204
  2012-10-02-1349170316.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:31:58.406+10 183242
  2012-10-02-1349170359.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:32:41.917+10 239668
  2012-10-02-1349170363.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:32:48.278+10 411784
  2012-10-02-1349170368.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:32:54.853+10 499848
  2012-10-02-1349170377.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:33:01.635+10 379888
  2012-10-02-1349170382.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:33:14.847+10 1067144
  2012-10-02-1349170395.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:33:17.437+10 200840
  2012-10-02-1349170398.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:33:24.39+10 473226
  2012-10-02-1349170404.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:33:37.685+10 1085534
  2012-10-02-1349170418.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:33:44.546+10 481322
  2012-10-02-1349170425.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:34:02.589+10 1470738
  2012-10-02-1349170442.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:34:06.192+10 254878
  2012-10-02-1349170446.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:34:12.079+10 451404
  2012-10-02-1349170452.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:34:15.421+10 239752
  2012-10-02-1349170456.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:34:23.793+10 645256
  2012-10-02-1349170464.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:34:27.478+10 270472
  2012-10-02-1349170467.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:34:32.998+10 440456
  2012-10-02-1349170473.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:34:36.605+10 233608
  2012-10-02-1349170478.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:34:43.443+10 387858
  2012-10-02-1349170483.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:34:48.612+10 409562
  2012-10-02-1349170488.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:34:52.39+10 243250
  2012-10-02-1349170492.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:34:56.458+10 274262
  2012-10-02-1349170641.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:37:24.094+10 250800
  2012-10-02-1349170644.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:37:27.826+10 262280
  2012-10-02-1349170648.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:37:32.798+10 321672
  2012-10-02-1349170653.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:37:36.411+10 280712
  2012-10-02-1349170657.8-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-02 19:37:46.417+10 720906
  2012-10-02-1349170673.39-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-02 19:37:58.126+10 394974
  2012-10-02-1349170679.26-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-02 19:38:02.881+10 305288
  2012-10-02-1349170683.41-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-02 19:38:06.234+10 239752
  2012-10-02-1349170687.16-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:38:14.979+10 653448
  2012-10-02-1349170700.29-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:38:25.242+10 413794
  2012-10-02-1349170706.49-demo.wav 42006 CanberraMtAinsli 2012-10-02 19:38:31.816+10 417690
  2012-10-02-1349170712.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:38:54.046+10 1472430
  2012-10-02-1349170734.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:38:57.969+10 321672
  2012-10-02-1349170738.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:39:10.254+10 966792
  2012-10-02-1349170750.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:39:14.834+10 326342
  2012-10-02-1349171159.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:46:01.812+10 210038
  2012-10-02-1349171162.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:46:04.185+10 182408
  2012-10-02-1349171164.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:46:08.333+10 315528
  2012-10-02-1349171169.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:46:18.102+10 729604
  2012-10-02-1349171178.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:46:24.22+10 444118
  2012-10-02-1349171238.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:47:22.952+10 338900
  2012-10-02-1349171243.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:47:26.463+10 245896
  2012-10-02-1349171247.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:47:31.26+10 354440
  2012-10-02-1349171251.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:47:35.008+10 293000
  2012-10-02-1349171421.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:50:24.208+10 266150
  2012-10-02-1349171425.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:50:29.186+10 301192
  2012-10-02-1349171430.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:50:34.92+10 403592
  2012-10-02-1349171435.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:50:39.897+10 354440
  2012-10-02-1349171441.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:50:47.204+10 489608
  2012-10-02-1349171448.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:50:51.623+10 247944
  2012-10-02-1349171452.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:51:10.779+10 1514028
  2012-10-02-1349171471.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:51:15.312+10 317822
  2012-10-02-1349171592.76-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 19:53:16.403+10 306188
  2012-10-02-1349171597.83-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 19:53:25.192+10 618632
  2012-10-02-1349171606.05-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 19:53:32.05+10 501206
  2012-10-02-1349171612.95-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 19:53:36.547+10 303240
  2012-10-02-1349171617.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:53:57.062+10 1653430
  2012-10-02-1349171637.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:53:59.755+10 202888
  2012-10-02-1349171640.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:54:11.812+10 950408
  2012-10-02-1349171653.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:54:17.37+10 360584
  2012-10-02-1349171657.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 19:54:20.202+10 217224
  2012-10-02-1349171804.71-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 19:56:49.933+10 436640
  2012-10-02-1349171810.91-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 19:56:55.816+10 409814
  2012-10-02-1349171816.82-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 19:57:01.278+10 368776
  2012-10-02-1349171821.63-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 19:57:05.677+10 340104
  2012-10-02-1349171825.8-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-02 19:57:08.276+10 209032
  2012-10-02-1349172101.56-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 20:01:46.528+10 414948
  2012-10-02-1349172106.74-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-02 20:01:49.746+10 254088
  2012-10-02-1349172282.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 20:04:44.618+10 208278
  2012-10-02-1349172284.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 20:04:47.343+10 202888
  2012-10-02-1349172288.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 20:04:52.783+10 370824
  2012-10-02-1349172293.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 20:05:08.371+10 1244360
  2012-10-02-1349172308.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 20:05:12.601+10 279168
  2012-10-02-1349172313.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 20:05:21.05+10 608304
  2012-10-02-1349172321.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 20:05:26.234+10 354634
  2012-10-02-1349173142.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 20:19:05.689+10 254170
  2012-10-02-1349173146.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 20:19:09.199+10 239752
  2012-10-02-1349173150.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 20:19:18.804+10 735368
  2012-10-02-1349173159.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 20:19:26.775+10 577642
  2012-10-02-1349173221.91-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 20:20:24.412+10 209748
  2012-10-02-1349173673.11-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 20:27:57.631+10 379652
  2012-10-02-1349174240.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-02 20:37:23.29+10 209534
  2012-10-02-1349174599.95-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-02 20:43:25.506+10 466904
  2012-10-08-1349699874.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:37:56.958+11 231368
  2012-10-08-1349699877.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:37:59.927+11 213128
  2012-10-08-1349699880.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:38:02.993+11 239752
  2012-10-08-1349699883.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:38:06.839+11 315294
  2012-10-08-1349699887.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:38:15.471+11 704644
  2012-10-08-1349699896.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:38:26.594+11 821384
  2012-10-08-1349699906.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:38:29.213+11 211080
  2012-10-08-1349699909.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:38:33.167+11 295048
  2012-10-08-1349699913.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:38:35.817+11 215176
  2012-10-08-1349699917.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:38:58.011+11 1675536
  2012-10-08-1349699939.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:39:02.969+11 303240
  2012-10-08-1349700103.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:41:46.553+11 248162
  2012-10-08-1349700107.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:41:55.649+11 700552
  2012-10-08-1349700116.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:41:59.895+11 315528
  2012-10-08-1349700120.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:42:04.582+11 307328
  2012-10-08-1349700152.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:42:35.965+11 331912
  2012-10-08-1349700156.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:42:38.721+11 217224
  2012-10-08-1349700160.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:42:56.291+11 1319048
  2012-10-08-1349700176.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:43:00.057+11 286856
  2012-10-08-1349700270.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:44:33.009+11 210924
  2012-10-08-1349700275.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:44:42.248+11 598152
  2012-10-08-1349700282.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:44:45.106+11 225274
  2012-10-08-1349700442.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:47:25.405+11 251234
  2012-10-08-1349700446.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:47:29.445+11 223368
  2012-10-08-1349700449.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:47:32.942+11 278664
  2012-10-08-1349700680.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:51:22.612+11 208966
  2012-10-08-1349700683.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:51:27.154+11 290498
  2012-10-08-1349700956.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:56:00.039+11 264458
  2012-10-08-1349700960.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:56:07.384+11 604296
  2012-10-08-1349700967.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-08 23:56:11.519+11 338056
  2012-10-09-1349701268.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:01:11.178+11 210452
  2012-10-09-1349701271.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:01:13.724+11 188552
  2012-10-09-1349701777.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:09:40.176+11 209640
  2012-10-09-1349702668.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:24:31.109+11 210804
  2012-10-09-1349702685.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:24:48.372+11 206984
  2012-10-09-1349702689.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:24:56.84+11 620764
  2012-10-09-1349702697.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:25:00.036+11 231560
  2012-10-09-1349703088.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:31:30.892+11 210840
  2012-10-09-1349703091.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:31:33.322+11 186504
  2012-10-09-1349703093.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:31:46.363+11 1069192
  2012-10-09-1349703416.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:36:59.837+11 291010
  2012-10-09-1349703420.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:37:50.804+11 4210824
  2012-10-09-1349703471.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:37:55.254+11 319624
  2012-10-09-1349703476.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:38:01.174+11 421954
  2012-10-09-1349703618.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:40:20.603+11 209510
  2012-10-09-1349703915.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:45:18.858+11 248944
  2012-10-09-1349703919.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:45:24.362+11 444552
  2012-10-09-1349703924.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:45:27.574+11 249992
  2012-10-09-1349704461.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:54:24.833+11 240828
  2012-10-09-1349704465.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 00:54:27.668+11 206984
  2012-10-09-1349704879.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:01:22.193+11 210644
  2012-10-09-1349704883.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:01:26.012+11 194696
  2012-10-09-1349704888.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:01:38.19+11 821384
  2012-10-09-1349704898.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:01:43.831+11 428168
  2012-10-09-1349705113.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:05:15.744+11 213682
  2012-10-09-1349705133.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:05:36.421+11 280712
  2012-10-09-1349705137.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:05:47.157+11 791474
  2012-10-09-1349705148.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:05:51.724+11 294418
  2012-10-09-1349705194.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:06:36.751+11 214774
  2012-10-09-1349705199.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:06:42.768+11 305288
  2012-10-09-1349705203.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:06:45.995+11 249992
  2012-10-09-1349705236.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:07:21.015+11 381494
  2012-10-09-1349705241.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:07:23.981+11 225416
  2012-10-09-1349705244.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:07:28.311+11 342152
  2012-10-09-1349705248.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:07:32.175+11 264220
  2012-10-09-1349705336.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:08:59.34+11 254998
  2012-10-09-1349705341.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:09:05.893+11 385160
  2012-10-09-1349705346.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:09:09.847+11 288904
  2012-10-09-1349705493.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:11:37.695+11 372252
  2012-10-09-1349705497.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:11:40.106+11 182408
  2012-10-09-1349705500.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:11:44.741+11 329864
  2012-10-09-1349705562.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:12:44.665+11 210224
  2012-10-09-1349705568.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:12:56.728+11 733320
  2012-10-09-1349705576.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:13:07.323+11 868488
  2012-10-09-1349705588.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:13:12.55+11 344200
  2012-10-09-1349705592.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:13:17.93+11 428168
  2012-10-09-1349705656.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:14:21.364+11 410142
  2012-10-09-1349705663.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:14:27.764+11 364680
  2012-10-09-1349705703.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:15:07.995+11 393166
  2012-10-09-1349705708.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:15:15.856+11 594056
  2012-10-09-1349705775.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:16:18.658+11 283174
  2012-10-09-1349705779.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:16:23.469+11 311432
  2012-10-09-1349705837.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:17:50.275+11 2775066
  2012-10-09-1349705914.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:18:36.836+11 213864
  2012-10-09-1349705918.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:18:41.726+11 295048
  2012-10-09-1349705922.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:18:44.29+11 188552
  2012-10-09-1349706032.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:20:35.404+11 281280
  2012-10-09-1349706077.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:21:33.556+11 1334070
  2012-10-09-1349706130.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:22:13.762+11 282938
  2012-10-09-1349706134.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:22:19.404+11 450696
  2012-10-09-1349706139.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:22:22.942+11 280712
  2012-10-09-1349706198.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:23:25.435+11 605596
  2012-10-09-1349706205.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:23:38.558+11 1081458
  2012-10-09-1349706218.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:23:42.09+11 274568
  2012-10-09-1349706380.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:26:23.167+11 257334
  2012-10-09-1349706383.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:26:25.882+11 202888
  2012-10-09-1349706386.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:26:29.629+11 268424
  2012-10-09-1349706390.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:26:34.197+11 338056
  2012-10-09-1349706656.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:31:00.152+11 294134
  2012-10-09-1349706660.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:31:02.717+11 188552
  2012-10-09-1349706664.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:31:13.589+11 802952
  2012-10-09-1349706673.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:31:18.058+11 352392
  2012-10-09-1349706678.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:31:22.979+11 385126
  2012-10-09-1349706924.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:35:27.243+11 234556
  2012-10-09-1349706927.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:35:30.071+11 196744
  2012-10-09-1349706931.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:35:38.217+11 577672
  2012-10-09-1349706938.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:35:46.84+11 702600
  2012-10-09-1349706947.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:36:08.225+11 1749128
  2012-10-09-1349706974.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:36:23.235+11 739464
  2012-10-09-1349706983.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:36:27.493+11 301192
  2012-10-09-1349706988.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:36:32.409+11 346198
  2012-10-09-1349706997.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:36:45.814+11 688590
  2012-10-09-1349707124.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:38:47.048+11 239706
  2012-10-09-1349707127.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:38:50.658+11 264328
  2012-10-09-1349707316.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:42:00.421+11 330414
  2012-10-09-1349707465.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:44:28.576+11 272468
  2012-10-09-1349707469.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:44:39.259+11 783604
  2012-10-09-1349707479.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:44:49.118+11 813192
  2012-10-09-1349707798.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:50:02.135+11 284830
  2012-10-09-1349707802.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:50:05.545+11 221320
  2012-10-09-1349707805.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 01:50:10.942+11 417862
  2012-10-09-1349708535.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:02:18.03+11 211384
  2012-10-09-1349708540.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:02:25.158+11 419976
  2012-10-09-1349708589.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:03:12.355+11 271446
  2012-10-09-1349708592.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:03:15.583+11 252040
  2012-10-09-1349711112.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:45:15.228+11 208294
  2012-10-09-1349711116.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:45:20.801+11 360100
  2012-10-09-1349711121.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:45:24.33+11 272520
  2012-10-09-1349711125.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:45:30.202+11 417928
  2012-10-09-1349711277.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:48:02.244+11 358396
  2012-10-09-1349711283.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:48:07.822+11 345772
  2012-10-09-1349711288.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:48:13.712+11 407688
  2012-10-09-1349711294.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:48:21.894+11 597126
  2012-10-09-1349711412.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:50:16.142+11 270810
  2012-10-09-1349711416.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:50:18.822+11 202888
  2012-10-09-1349711419.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:50:23.6+11 383112
  2012-10-09-1349711459.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:51:02.727+11 277136
  2012-10-09-1349711464.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:51:11.391+11 549000
  2012-10-09-1349711558.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:52:42.901+11 376924
  2012-10-09-1349711617.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:53:40.358+11 214558
  2012-10-09-1349711623.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:53:47.341+11 329864
  2012-10-09-1349711627.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:53:51.984+11 368776
  2012-10-09-1349711634.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:54:01.093+11 587912
  2012-10-09-1349711642.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:54:08.65+11 554954
  2012-10-09-1349711648.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:54:52.348+11 3655816
  2012-10-09-1349711696.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:55:03.691+11 641160
  2012-10-09-1349711705.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:55:19.196+11 1187976
  2012-10-09-1349711719.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:55:22.591+11 264328
  2012-10-09-1349711829.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:57:12.326+11 210584
  2012-10-09-1349711832.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:57:15.561+11 231560
  2012-10-09-1349711837.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 02:57:33.727+11 1400968
  2012-10-09-1349712038.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:00:43.652+11 439530
  2012-10-09-1349712044.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:00:47.2+11 229512
  2012-10-09-1349712048.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:01:19.323+11 2607230
  2012-10-09-1349712080.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:01:29.245+11 759120
  2012-10-09-1349712089.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:01:32.48+11 245896
  2012-10-09-1349712106.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:01:49.401+11 272520
  2012-10-09-1349712774.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:12:57.685+11 279330
  2012-10-09-1349712778.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:13:00.839+11 235656
  2012-10-09-1349712782.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:13:12.683+11 850056
  2012-10-09-1349712793.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:13:19.695+11 516218
  2012-10-09-1349712960.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:16:04.622+11 339374
  2012-10-09-1349712965.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:16:08.371+11 268424
  2012-10-09-1349713705.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:28:28.615+11 241138
  2012-10-09-1349713710.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:28:42.617+11 1034376
  2012-10-09-1349713722.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:28:46.017+11 266376
  2012-10-09-1349713989.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:33:12.618+11 240698
  2012-10-09-1349713994.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:33:17.718+11 295022
  2012-10-09-1349713998.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:33:24.572+11 522376
  2012-10-09-1349714311.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:38:33.651+11 210644
  2012-10-09-1349714314.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:38:49.05+11 1199824
  2012-10-09-1349714777.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:46:21.016+11 314990
  2012-10-09-1349714781.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:46:24.564+11 233608
  2012-10-09-1349714922.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:48:44.749+11 210966
  2012-10-09-1349715186.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:53:09.064+11 224216
  2012-10-09-1349715190.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:53:13.89+11 292716
  2012-10-09-1349715194.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:53:20.188+11 491656
  2012-10-09-1349715373.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:56:18.3+11 413532
  2012-10-09-1349715379.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:56:23.008+11 336008
  2012-10-09-1349715383.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:56:26.45+11 270400
  2012-10-09-1349715433.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:57:16.16+11 211050
  2012-10-09-1349715463.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:57:45.912+11 211872
  2012-10-09-1349715545.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 03:59:08.396+11 245470
  2012-10-09-1349715776.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:02:59.315+11 235220
  2012-10-09-1349715781.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:03:03.884+11 225416
  2012-10-09-1349715785.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:03:07.618+11 204936
  2012-10-09-1349715789.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:03:17.337+11 655448
  2012-10-09-1349715797.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:03:20.21+11 215176
  2012-10-09-1349715868.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:04:31.308+11 254746
  2012-10-09-1349715872.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:04:36.988+11 368776
  2012-10-09-1349715877.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:04:40.386+11 264328
  2012-10-09-1349715882.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:04:54.516+11 1005704
  2012-10-09-1349715920.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:05:28.913+11 696456
  2012-10-09-1349715931.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:05:42.811+11 984128
  2012-10-09-1349716588.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:16:31.109+11 209614
  2012-10-09-1349716969.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:22:52.996+11 270486
  2012-10-09-1349716974.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:22:58.678+11 311760
  2012-10-09-1349716979.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:23:03.392+11 354440
  2012-10-09-1349717128.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:25:32.474+11 291412
  2012-10-09-1349717151.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:25:55.066+11 258184
  2012-10-09-1349717331.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:28:54.941+11 294270
  2012-10-09-1349717335.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:29:06.456+11 948360
  2012-10-09-1349717423.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:30:26.452+11 210554
  2012-10-09-1349717819.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:37:03.545+11 342674
  2012-10-09-1349717824.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:37:07.349+11 278664
  2012-10-09-1349718131.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:42:16.003+11 360686
  2012-10-09-1349718273.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:44:36.314+11 211576
  2012-10-09-1349718360.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:46:04.774+11 316328
  2012-10-09-1349718364.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:46:07.704+11 227464
  2012-10-09-1349718567.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:49:30.544+11 240556
  2012-10-09-1349718572.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:49:47.361+11 1239934
  2012-10-09-1349718587.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:49:50.94+11 272520
  2012-10-09-1349718591.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:49:55.59+11 368776
  2012-10-09-1349718604.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:50:10.374+11 532616
  2012-10-09-1349718610.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 04:50:12.978+11 196744
  2012-10-09-1349719900.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:11:45.478+11 385220
  2012-10-09-1349719906.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:11:50.279+11 332772
  2012-10-09-1349719910.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:12:32.558+11 3528840
  2012-10-09-1349722115.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:48:37.582+11 209304
  2012-10-09-1349722117.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:48:40.679+11 241800
  2012-10-09-1349722121.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:48:45.569+11 348296
  2012-10-09-1349722126.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:48:50.226+11 333960
  2012-10-09-1349722130.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:48:55.395+11 395300
  2012-10-09-1349722193.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:49:57.176+11 288964
  2012-10-09-1349722197.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:50:00.772+11 249992
  2012-10-09-1349722201.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:50:05.838+11 393352
  2012-10-09-1349722232.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:50:36.329+11 297096
  2012-10-09-1349722238.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:50:41.817+11 315528
  2012-10-09-1349722483.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:54:48.474+11 428168
  2012-10-09-1349722633.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:57:15.631+11 216434
  2012-10-09-1349722636.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:57:18.169+11 180360
  2012-10-09-1349722638.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:57:22.308+11 315528
  2012-10-09-1349722642.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:57:26.885+11 338056
  2012-10-09-1349722779.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:59:43.769+11 315864
  2012-10-09-1349722784.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:59:48.515+11 293192
  2012-10-09-1349722788.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 05:59:52.463+11 317576
  2012-10-09-1349722799.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 06:00:18.485+11 1605638
  2012-10-09-1349723468.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 06:11:10.862+11 209820
  2012-10-09-1349723474.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 06:11:22.145+11 647286
  2012-10-09-1349723482.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 06:11:28.153+11 438408
  2012-10-09-1349723922.36-demo.wav 40067 CanberraMtAinsli 2012-10-09 06:18:44.864+11 209348
  2012-10-09-1349724599.84-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 06:30:03.752+11 326298
  2012-10-09-1349724605.52-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 06:30:19.975+11 1214600
  2012-10-09-1349724775.66-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 06:32:58.284+11 217938
  2012-10-09-1349724779.47-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 06:33:11.568+11 1014434
  2012-10-09-1349724792.59-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 06:33:26.639+11 1178964
  2012-10-09-1349724807.76-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 06:33:46.908+11 1607890
  2012-10-09-1349724827.87-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 06:33:52.367+11 373566
  2012-10-09-1349724832.71-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 06:33:58.471+11 483464
  2012-10-09-1349725318.92-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 06:42:02.858+11 326994
  2012-10-09-1349725345.54-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 06:42:28.737+11 268424
  2012-10-09-1349725349.07-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 06:42:32.777+11 309384
  2012-10-09-1349725353.04-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 06:42:43.076+11 841838
  2012-10-09-1349725593.9-demo.wav 40067 CanberraBlackMnt 2012-10-09 06:46:39.525+11 469848
  2012-10-09-1349725599.8-demo.wav 40067 CanberraBlackMnt 2012-10-09 06:46:42.018+11 186504
  2012-10-09-1349725603.82-demo.wav 40067 CanberraBlackMnt 2012-10-09 06:46:47.723+11 325768
  2012-10-09-1349725608.1-demo.wav 40067 CanberraBlackMnt 2012-10-09 06:46:56.643+11 716920
  2012-10-09-1349725640.27-demo.wav 40067 CanberraBlackMnt 2012-10-09 06:47:25.624+11 448648
  2012-10-09-1349725645.89-demo.wav 40067 CanberraBlackMnt 2012-10-09 06:47:28.213+11 192648
  2012-10-09-1349725800.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 06:50:02.618+11 210376
  2012-10-09-1349725803.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 06:50:09.827+11 510694
  2012-10-09-1349725811.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 06:50:15.612+11 372332
  2012-10-09-1349725815.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 06:50:19.511+11 305288
  2012-10-09-1349725998.0-demo.wav 44028 CanberraMtAinsli 2012-10-09 06:53:20.534+11 211658
  2012-10-09-1349726000.83-demo.wav 44028 CanberraMtAinsli 2012-10-09 06:53:23.378+11 213128
  2012-10-09-1349726125.09-demo.wav 44028 CanberraMtAinsli 2012-10-09 06:55:29.311+11 353648
  2012-10-09-1349726131.15-demo.wav 44028 CanberraMtAinsli 2012-10-09 06:55:40.788+11 811144
  2012-10-09-1349726140.98-demo.wav 44028 CanberraMtAinsli 2012-10-09 06:55:46.781+11 487560
  2012-10-09-1349726146.97-demo.wav 44028 CanberraMtAinsli 2012-10-09 06:55:52.776+11 489374
  2012-10-09-1349726153.02-demo.wav 44028 CanberraMtAinsli 2012-10-09 06:56:04.38+11 956552
  2012-10-09-1349726164.92-demo.wav 44028 CanberraMtAinsli 2012-10-09 06:56:14.755+11 827086
  2012-10-09-1349726175.6-demo.wav 44028 CanberraMtAinsli 2012-10-09 06:56:23.322+11 648106
  2012-10-09-1349726183.61-demo.wav 44028 CanberraMtAinsli 2012-10-09 06:56:29.717+11 516154
  2012-10-09-1349726296.74-demo.wav 40067 CanberraMtAinsli 2012-10-09 06:58:22.835+11 511696
  2012-10-09-1349726304.4-demo.wav 40067 CanberraBlackMnt 2012-10-09 06:58:35.606+11 942216
  2012-10-09-1349726316.6-demo.wav 40067 CanberraBlackMnt 2012-10-09 06:58:44.875+11 694408
  2012-10-09-1349726325.13-demo.wav 40067 CanberraBlackMnt 2012-10-09 06:58:50.887+11 483154
  2012-10-09-1349726331.63-demo.wav 40067 CanberraBlackMnt 2012-10-09 06:58:57.695+11 510088
  2012-10-09-1349726338.8-demo.wav 40067 CanberraBlackMnt 2012-10-09 06:59:01.355+11 215176
  2012-10-09-1349726370.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 06:59:34.01+11 282214
  2012-10-09-1349726374.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 06:59:37.49+11 260232
  2012-10-09-1349726445.75-demo.wav 44036 CanberraBlackMnt 2012-10-09 07:00:48.719+11 249706
  2012-10-09-1349726449.57-demo.wav 44036 CanberraBlackMnt 2012-10-09 07:00:55.354+11 487560
  2012-10-09-1349726456.24-demo.wav 44036 CanberraBlackMnt 2012-10-09 07:01:01.33+11 428070
  2012-10-09-1349726463.5-demo.wav 44036 CanberraBlackMnt 2012-10-09 07:01:06.124+11 221246
  2012-10-09-1349726466.34-demo.wav 44036 CanberraBlackMnt 2012-10-09 07:01:17.778+11 962692
  2012-10-09-1349726478.41-demo.wav 44036 CanberraBlackMnt 2012-10-09 07:01:20.703+11 192632
  2012-10-09-1349726532.68-demo.wav 44028 CanberraMtAinsli 2012-10-09 07:02:15.993+11 277108
  2012-10-09-1349726569.68-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:02:53.436+11 314352
  2012-10-09-1349726762.14-demo.wav 44036 CanberraBlackMnt 2012-10-09 07:06:06.621+11 373996
  2012-10-09-1349726766.88-demo.wav 44036 CanberraBlackMnt 2012-10-09 07:06:10.136+11 272520
  2012-10-09-1349726773.12-demo.wav 44036 CanberraBlackMnt 2012-10-09 07:06:16.21+11 257650
  2012-10-09-1349726814.02-demo.wav 44036 CanberraBlackMnt 2012-10-09 07:06:56.67+11 223256
  2012-10-09-1349726817.43-demo.wav 44036 CanberraBlackMnt 2012-10-09 07:07:00.377+11 245896
  2012-10-09-1349726820.81-demo.wav 44036 CanberraBlackMnt 2012-10-09 07:07:02.966+11 182408
  2012-10-09-1349726823.65-demo.wav 44028 CanberraMtAinsli 2012-10-09 07:07:12.934+11 782472
  2012-10-09-1349726868.49-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 07:07:51.647+11 263218
  2012-10-09-1349726872.79-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 07:07:56.677+11 323720
  2012-10-09-1349726879.14-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 07:08:02.199+11 256010
  2012-10-09-1349726908.57-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:08:31.771+11 270472
  2012-10-09-1349726911.97-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:08:36.18+11 354440
  2012-10-09-1349726916.4-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:08:38.578+11 186504
  2012-10-09-1349726957.82-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:09:20.439+11 211178
  2012-10-09-1349726961.09-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:09:24.48+11 286856
  2012-10-09-1349726964.64-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:09:28.922+11 360584
  2012-10-09-1349726970.19-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:09:59.942+11 2498664
  2012-10-09-1349727077.14-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:11:19.803+11 218296
  2012-10-09-1349727080.45-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:11:23.336+11 243848
  2012-10-09-1349727083.56-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:11:27.363+11 319624
  2012-10-09-1349727100.96-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:11:50.859+11 833672
  2012-10-09-1349727111.78-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:11:55.942+11 350344
  2012-10-09-1349727116.18-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:11:59.522+11 280670
  2012-10-09-1349727120.36-demo.wav 44028 CanberraMtAinsli 2012-10-09 07:12:11.398+11 929752
  2012-10-09-1349727132.7-demo.wav 44028 CanberraMtAinsli 2012-10-09 07:12:15.251+11 215176
  2012-10-09-1349727199.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:13:22.676+11 235656
  2012-10-09-1349727203.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:13:34.552+11 897020
  2012-10-09-1349727215.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:13:42.96+11 626060
  2012-10-09-1349727223.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:13:46.342+11 247944
  2012-10-09-1349727322.75-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:15:25.247+11 209738
  2012-10-09-1349727400.18-demo.wav 44036 CanberraBlackMnt 2012-10-09 07:16:44.565+11 367902
  2012-10-09-1349727405.33-demo.wav 44036 CanberraBlackMnt 2012-10-09 07:16:47.73+11 202888
  2012-10-09-1349727472.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:17:56.221+11 343234
  2012-10-09-1349727476.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:18:00.385+11 295048
  2012-10-09-1349727482.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:18:09.538+11 630920
  2012-10-09-1349727492.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:18:21.777+11 772232
  2012-10-09-1349727557.39-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:19:23.637+11 525198
  2012-10-09-1349727765.13-demo.wav 40067 CanberraMtAinsli 2012-10-09 07:22:48.511+11 283596
  2012-10-09-1349727770.3-demo.wav 40067 CanberraMtAinsli 2012-10-09 07:22:54.329+11 340104
  2012-10-09-1349727774.87-demo.wav 40067 CanberraMtAinsli 2012-10-09 07:23:02.642+11 653448
  2012-10-09-1349728002.95-demo.wav 40067 CanberraMtAinsli 2012-10-09 07:26:45.525+11 216430
  2012-10-09-1349728058.11-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:27:40.644+11 210040
  2012-10-09-1349728064.33-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:27:58.98+11 1233032
  2012-10-09-1349728080.06-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:28:18.242+11 1528054
  2012-10-09-1349728098.94-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:28:23.869+11 415880
  2012-10-09-1349728104.92-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 07:28:40.477+11 1306386
  2012-10-09-1349728122.93-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:28:59.644+11 1405064
  2012-10-09-1349728139.91-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:29:02.728+11 237704
  2012-10-09-1349728143.06-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:29:06.756+11 311432
  2012-10-09-1349728147.94-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:29:13.564+11 473034
  2012-10-09-1349728169.51-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:29:32.361+11 239752
  2012-10-09-1349728172.64-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:29:38.258+11 473224
  2012-10-09-1349728178.52-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:30:18.091+11 3328136
  2012-10-09-1349728218.25-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:30:20.601+11 198792
  2012-10-09-1349728220.86-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:30:23.925+11 258184
  2012-10-09-1349728225.04-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:30:29.935+11 411782
  2012-10-09-1349728233.13-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:30:36.712+11 301084
  2012-10-09-1349728236.98-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:30:58.676+11 1824904
  2012-10-09-1349728258.9-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:31:03.742+11 407676
  2012-10-09-1349728264.63-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:31:12.438+11 657544
  2012-10-09-1349728272.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:31:17.99+11 446600
  2012-10-09-1349728278.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:31:25.086+11 514818
  2012-10-09-1349728285.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:31:28.124+11 245876
  2012-10-09-1349728365.67-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 07:32:51.318+11 472098
  2012-10-09-1349728371.72-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 07:32:55.459+11 313480
  2012-10-09-1349728375.79-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 07:32:58.008+11 186504
  2012-10-09-1349728378.28-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 07:33:02.115+11 321672
  2012-10-09-1349728383.03-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 07:33:11.322+11 698504
  2012-10-09-1349728391.69-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 07:33:14.63+11 247944
  2012-10-09-1349728394.92-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 07:33:17.821+11 243848
  2012-10-09-1349728397.97-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 07:33:22.103+11 346248
  2012-10-09-1349728402.52-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 07:33:47.992+11 2140292
  2012-10-09-1349728484.01-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 07:34:46.523+11 209740
  2012-10-09-1349728487.66-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 07:34:53.369+11 476126
  2012-10-09-1349728494.37-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 07:35:07.689+11 1117554
  2012-10-09-1349728508.62-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 07:35:14.14+11 462984
  2012-10-09-1349728514.46-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 07:35:19.509+11 424072
  2012-10-09-1349728520.16-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 07:35:24.072+11 325218
  2012-10-09-1349728530.25-demo.wav 40067 CanberraMtAinsli 2012-10-09 07:35:35.069+11 405640
  2012-10-09-1349728536.0-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:35:43.556+11 632924
  2012-10-09-1349728544.69-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:35:49.007+11 360346
  2012-10-09-1349728549.26-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:35:52.012+11 229512
  2012-10-09-1349728552.56-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:35:59.044+11 546840
  2012-10-09-1349728559.31-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:36:02.799+11 292924
  2012-10-09-1349728563.23-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:36:07.276+11 337886
  2012-10-09-1349728567.51-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:36:53.326+11 3850376
  2012-10-09-1349728645.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:37:29.776+11 350780
  2012-10-09-1349728652.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:37:45.243+11 1073204
  2012-10-09-1349728666.09-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:37:53.539+11 626778
  2012-10-09-1349728673.81-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:37:56.16+11 198792
  2012-10-09-1349728677.06-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:37:59.739+11 225414
  2012-10-09-1349728748.95-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:39:13.383+11 372862
  2012-10-09-1349728755.21-demo.wav 44028 CanberraMtAinsli 2012-10-09 07:39:30.742+11 1308808
  2012-10-09-1349728771.81-demo.wav 44028 CanberraMtAinsli 2012-10-09 07:39:35.872+11 338056
  2012-10-09-1349728776.22-demo.wav 44028 CanberraMtAinsli 2012-10-09 07:39:39.789+11 298874
  2012-10-09-1349728783.03-demo.wav 44028 CanberraMtAinsli 2012-10-09 07:39:46.613+11 299144
  2012-10-09-1349728786.9-demo.wav 44028 CanberraMtAinsli 2012-10-09 07:39:58.393+11 966678
  2012-10-09-1349728798.9-demo.wav 40067 CanberraBlackMnt 2012-10-09 07:40:24.08+11 2117766
  2012-10-09-1349728824.33-demo.wav 40067 CanberraBlackMnt 2012-10-09 07:40:28.237+11 329854
  2012-10-09-1349728828.74-demo.wav 40067 CanberraBlackMnt 2012-10-09 07:40:34.63+11 495436
  2012-10-09-1349728834.86-demo.wav 40067 CanberraBlackMnt 2012-10-09 07:41:18.316+11 3653768
  2012-10-09-1349728901.56-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:41:48.59+11 589960
  2012-10-09-1349728909.25-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:41:53.017+11 317576
  2012-10-09-1349728913.28-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:41:59.666+11 538760
  2012-10-09-1349728945.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:42:31.619+11 489608
  2012-10-09-1349728952.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:43:22.37+11 4163720
  2012-10-09-1349729033.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:43:57.776+11 376968
  2012-10-09-1349729038.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:44:00.777+11 231516
  2012-10-09-1349729041.04-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 07:44:06.563+11 460936
  2012-10-09-1349729047.62-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 07:44:16.337+11 733018
  2012-10-09-1349729056.61-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 07:44:21.818+11 436216
  2012-10-09-1349729179.6-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:46:23.103+11 291160
  2012-10-09-1349729186.2-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:46:29.337+11 264328
  2012-10-09-1349729189.96-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:46:38.607+11 727176
  2012-10-09-1349729220.27-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 07:47:06.139+11 493704
  2012-10-09-1349729234.85-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:47:22.379+11 635016
  2012-10-09-1349729244.54-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:47:29.157+11 386188
  2012-10-09-1349729249.98-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:47:34.112+11 348296
  2012-10-09-1349729343.79-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:49:06.315+11 212642
  2012-10-09-1349729349.91-demo.wav 44028 CanberraBlackMnt 2012-10-09 07:49:13.235+11 280712
  2012-10-09-1349729384.8-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-09 07:50:02.706+11 1503464
  2012-10-09-1349729456.52-demo.wav 40067 CanberraBlackMnt 2012-10-09 07:50:59.211+11 225416
  2012-10-09-1349729461.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:51:11.871+11 833836
  2012-10-09-1349729472.11-demo.wav 40067 CanberraBlackMnt 2012-10-09 07:51:42.578+11 2562180
  2012-10-09-1349729506.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:51:56.381+11 841628
  2012-10-09-1349729516.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:51:59.429+11 231556
  2012-10-09-1349729520.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:52:03.856+11 313480
  2012-10-09-1349729524.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:52:07.484+11 266256
  2012-10-09-1349729528.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:52:11.582+11 286626
  2012-10-09-1349729561.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:52:44.38+11 217530
  2012-10-09-1349729565.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:52:48.631+11 276616
  2012-10-09-1349729599.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:53:22.849+11 288126
  2012-10-09-1349729606.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 07:53:30.18+11 350344
  2012-10-09-1349729706.58-demo.wav 40067 CanberraBlackMnt 2012-10-09 07:55:11.611+11 423996
  2012-10-09-1349729715.09-demo.wav 40067 CanberraBlackMnt 2012-10-09 07:55:32.089+11 1427478
  2012-10-09-1349729732.33-demo.wav 40067 CanberraBlackMnt 2012-10-09 07:55:43.085+11 900918
  2012-10-09-1349729801.58-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 07:56:44.11+11 210182
  2012-10-09-1349729828.26-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 07:57:15.504+11 608268
  2012-10-09-1349729836.54-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 07:57:21.414+11 407688
  2012-10-09-1349729880.68-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-09 07:58:07.079+11 532616
  2012-10-09-1349729887.27-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-09 07:58:11.847+11 385158
  2012-10-09-1349729977.31-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 07:59:41.825+11 378040
  2012-10-09-1349729983.14-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 07:59:46.907+11 315528
  2012-10-09-1349730018.34-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 08:00:38.629+11 1706120
  2012-10-09-1349730039.56-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 08:00:47.356+11 651972
  2012-10-09-1349730047.57-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:01:42.456+11 4612232
  2012-10-09-1349730103.22-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:01:45.956+11 227464
  2012-10-09-1349730106.81-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:01:55.818+11 754100
  2012-10-09-1349730116.05-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:01:59.031+11 249992
  2012-10-09-1349730128.84-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:02:14.92+11 512120
  2012-10-09-1349730202.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:03:25.396+11 210642
  2012-10-09-1349730208.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:03:33.706+11 462984
  2012-10-09-1349730214.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:03:36.311+11 192648
  2012-10-09-1349730244.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:04:07.764+11 311244
  2012-10-09-1349730249.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:04:13.437+11 336008
  2012-10-09-1349730253.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:04:18.869+11 432262
  2012-10-09-1349730259.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:04:25+11 448648
  2012-10-09-1349730265.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:04:27.467+11 186504
  2012-10-09-1349730280.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:04:45.108+11 428168
  2012-10-09-1349730288.89-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 08:05:00.547+11 977084
  2012-10-09-1349730305.07-demo.wav 40067 CanberraMtAinsli 2012-10-09 08:05:23.387+11 1291390
  2012-10-09-1349730323.62-demo.wav 40067 CanberraMtAinsli 2012-10-09 08:05:29.237+11 471176
  2012-10-09-1349730332.14-demo.wav 40067 CanberraMtAinsli 2012-10-09 08:05:36.43+11 359976
  2012-10-09-1349730338.59-demo.wav 40067 CanberraBlackMnt 2012-10-09 08:05:57.275+11 1568904
  2012-10-09-1349730357.81-demo.wav 40067 CanberraBlackMnt 2012-10-09 08:06:00.935+11 262280
  2012-10-09-1349730361.74-demo.wav 40067 CanberraBlackMnt 2012-10-09 08:06:08.192+11 540808
  2012-10-09-1349730368.59-demo.wav 40067 CanberraBlackMnt 2012-10-09 08:06:12.555+11 336008
  2012-10-09-1349730415.13-demo.wav 40067 CanberraMtAinsli 2012-10-09 08:06:57.712+11 216094
  2012-10-09-1349730477.09-demo.wav 40067 CanberraMtAinsli 2012-10-09 08:07:59.673+11 213282
  2012-10-09-1349730480.11-demo.wav 40067 CanberraMtAinsli 2012-10-09 08:08:06.146+11 508040
  2012-10-09-1349730487.21-demo.wav 40067 CanberraMtAinsli 2012-10-09 08:08:09.662+11 206984
  2012-10-09-1349730651.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:10:54.443+11 237016
  2012-10-09-1349730655.42-demo.wav 40067 CanberraBlackMnt 2012-10-09 08:11:01.139+11 479656
  2012-10-09-1349730662.73-demo.wav 40067 CanberraBlackMnt 2012-10-09 08:11:09.372+11 556088
  2012-10-09-1349730669.59-demo.wav 40067 CanberraBlackMnt 2012-10-09 08:11:17.141+11 635016
  2012-10-09-1349730695.64-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:11:43.834+11 690308
  2012-10-09-1349730724.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:12:10.23+11 450696
  2012-10-09-1349730800.88-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:13:23.94+11 254338
  2012-10-09-1349730804.93-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:13:27.488+11 215176
  2012-10-09-1349730807.72-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:13:30.78+11 256136
  2012-10-09-1349730810.99-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:13:34.888+11 327816
  2012-10-09-1349730852.21-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:14:15.696+11 293000
  2012-10-09-1349730857.61-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:14:23.081+11 460936
  2012-10-09-1349730863.45-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:14:32.064+11 725128
  2012-10-09-1349730877.86-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:14:42.854+11 419976
  2012-10-09-1349730883.93-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:14:46.944+11 249992
  2012-10-09-1349730887.29-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:14:57.976+11 899208
  2012-10-09-1349730900.42-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:15:21.058+11 1732478
  2012-10-09-1349730922.12-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:15:25.005+11 241800
  2012-10-09-1349730926.34-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:15:30.185+11 323720
  2012-10-09-1349730931.03-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:15:36.019+11 415880
  2012-10-09-1349730936.26-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:15:38.865+11 219200
  2012-10-09-1349730945.95-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:15:50.341+11 368776
  2012-10-09-1349730951.43-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:15:53.826+11 202888
  2012-10-09-1349730961.13-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:16:05.319+11 349020
  2012-10-09-1349730965.54-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:16:09.73+11 352392
  2012-10-09-1349730969.97-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:16:13.422+11 288904
  2012-10-09-1349731070.03-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:17:54.166+11 347254
  2012-10-09-1349731075.08-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:17:57.49+11 202888
  2012-10-09-1349731077.67-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:18:01.756+11 342144
  2012-10-09-1349731083.13-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:18:11.812+11 731272
  2012-10-09-1349731092.06-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:18:35.326+11 1955976
  2012-10-09-1349731115.97-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:18:38.316+11 196744
  2012-10-09-1349731118.91-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:18:45.155+11 524176
  2012-10-09-1349731125.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:19:35.661+11 3840556
  2012-10-09-1349731175.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:19:38.672+11 229512
  2012-10-09-1349731283.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:21:30.598+11 561382
  2012-10-09-1349731405.74-demo.wav 40067 CanberraBlackMnt 2012-10-09 08:23:29.136+11 285018
  2012-10-09-1349731410.9-demo.wav 40067 CanberraMtAinsli 2012-10-09 08:23:36.121+11 438408
  2012-10-09-1349731416.37-demo.wav 40067 CanberraMtAinsli 2012-10-09 08:23:40.213+11 321672
  2012-10-09-1349731420.4-demo.wav 40067 CanberraMtAinsli 2012-10-09 08:23:46.318+11 497734
  2012-10-09-1349731426.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:24:06.123+11 1644680
  2012-10-09-1349731448.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:24:14.286+11 520328
  2012-10-09-1349731597.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:26:43.246+11 479044
  2012-10-09-1349731603.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:26:47.937+11 376960
  2012-10-09-1349731639.48-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:27:22.847+11 281914
  2012-10-09-1349731643.99-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:27:26.123+11 180360
  2012-10-09-1349731646.5-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:27:31.43+11 415880
  2012-10-09-1349731651.95-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:27:34.882+11 245480
  2012-10-09-1349731751.62-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:29:14.54+11 245734
  2012-10-09-1349731756.93-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:29:34.408+11 1468552
  2012-10-09-1349731774.73-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:29:41.761+11 585864
  2012-10-09-1349731784.73-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:29:47.595+11 241158
  2012-10-09-1349731902.83-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:31:45.747+11 247120
  2012-10-09-1349731906.72-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:31:49.741+11 248462
  2012-10-09-1349731910.25-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:32:02.099+11 995366
  2012-10-09-1349732007.45-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:33:30.628+11 265502
  2012-10-09-1349732011.93-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:33:37.469+11 467080
  2012-10-09-1349732018.51-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:33:47.141+11 727144
  2012-10-09-1349732028.05-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:33:51.344+11 276564
  2012-10-09-1349732198.35-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:36:41.853+11 290978
  2012-10-09-1349732204.3-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:36:51.89+11 639112
  2012-10-09-1349732212.12-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:36:56.334+11 354440
  2012-10-09-1349732216.52-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:37:00.441+11 327816
  2012-10-09-1349732220.75-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:37:03.223+11 206984
  2012-10-09-1349732223.39-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:37:20.422+11 1429640
  2012-10-09-1349732240.59-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:37:26.208+11 471176
  2012-10-09-1349732256.8-demo.wav 44014 CanberraBlackMnt 2012-10-09 08:37:42.641+11 491656
  2012-10-09-1349732263.0-demo.wav 44014 CanberraBlackMnt 2012-10-09 08:37:46.54+11 297096
  2012-10-09-1349732479.63-demo.wav 40067 CanberraMtAinsli 2012-10-09 08:41:22.162+11 210608
  2012-10-09-1349732484.2-demo.wav 40067 CanberraMtAinsli 2012-10-09 08:41:26.909+11 225416
  2012-10-09-1349732488.21-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:41:41.136+11 1084622
  2012-10-09-1349732502.52-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:41:49.062+11 551048
  2012-10-09-1349732533.35-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:42:15.806+11 209032
  2012-10-09-1349732536.56-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:42:20.039+11 290952
  2012-10-09-1349732541.44-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:42:26.29+11 407688
  2012-10-09-1349732548.08-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:42:30.973+11 243848
  2012-10-09-1349732552.18-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:42:36.935+11 394476
  2012-10-09-1349732558.1-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:42:42.386+11 360538
  2012-10-09-1349732689.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 08:44:56.734+11 573394
  2012-10-09-1349732837.57-demo.wav 40067 CanberraBlackMnt 2012-10-09 08:47:20.083+11 210580
  2012-10-09-1349733161.34-demo.wav 40067 CanberraBlackMnt 2012-10-09 08:52:43.845+11 209476
  2012-10-09-1349733167.02-demo.wav 40067 CanberraMtAinsli 2012-10-09 08:53:00.564+11 1129648
  2012-10-09-1349733183.18-demo.wav 40067 CanberraBlackMnt 2012-10-09 08:53:11.083+11 661744
  2012-10-09-1349733305.28-demo.wav 40067 CanberraMtAinsli 2012-10-09 08:55:07.792+11 210604
  2012-10-09-1349733308.89-demo.wav 40066 CanberraMtAinsli 2012-10-09 08:55:15.992+11 594850
  2012-10-09-1349733361.25-demo.wav 40067 CanberraMtAinsli 2012-10-09 08:56:03.769+11 210792
  2012-10-09-1349733406.25-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 08:56:54.233+11 671504
  2012-10-09-1349733414.81-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 08:57:05.448+11 891016
  2012-10-09-1349733426.29-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 08:57:10.551+11 356488
  2012-10-09-1349733468.15-demo.wav 40067 CanberraBlackMnt 2012-10-09 08:57:50.656+11 209204
  2012-10-09-1349733474.45-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 08:58:08.877+11 1212552
  2012-10-09-1349733489.94-demo.wav 44028 CanberraMtAinsli 2012-10-09 08:58:20.402+11 877454
  2012-10-09-1349733527.33-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 08:58:50.974+11 304646
  2012-10-09-1349733532.32-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 08:59:02.817+11 879588
  2012-10-09-1349733543.08-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 08:59:09.846+11 569480
  2012-10-09-1349733550.14-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 08:59:14.751+11 387208
  2012-10-09-1349733554.93-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 08:59:17.492+11 215176
  2012-10-09-1349733557.97-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 08:59:22.904+11 413764
  2012-10-09-1349733580.23-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:59:50.86+11 893064
  2012-10-09-1349733591.84-demo.wav 44028 CanberraBlackMnt 2012-10-09 08:59:55.785+11 328544
  2012-10-09-1349733596.05-demo.wav 44028 CanberraBlackMnt 2012-10-09 09:00:02.641+11 555144
  2012-10-09-1349733643.62-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 09:00:46.383+11 231560
  2012-10-09-1349733667.38-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:01:11.464+11 344200
  2012-10-09-1349733675.87-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:01:23.132+11 606348
  2012-10-09-1349733684.16-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:01:34.337+11 852732
  2012-10-09-1349733744.4-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:02:26.91+11 210784
  2012-10-09-1349733751.18-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:02:39.362+11 688264
  2012-10-09-1349733760.29-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:02:44.429+11 346248
  2012-10-09-1349733764.76-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:02:52.836+11 677186
  2012-10-09-1349733779.95-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:03:04.296+11 366728
  2012-10-09-1349733806.46-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:03:29.296+11 239752
  2012-10-09-1349733830.4-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:03:52.84+11 204936
  2012-10-09-1349733833.06-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:03:55.526+11 209032
  2012-10-09-1349733875.57-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 09:04:38.981+11 288476
  2012-10-09-1349733880.51-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 09:04:43.798+11 276616
  2012-10-09-1349733884.0-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 09:04:48.828+11 405640
  2012-10-09-1349734029.75-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:07:12.407+11 222104
  2012-10-09-1349734032.76-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:07:15.348+11 217224
  2012-10-09-1349734037.38-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:07:19.535+11 180360
  2012-10-09-1349734039.99-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:07:23.435+11 286856
  2012-10-09-1349734051.92-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:07:37.102+11 435002
  2012-10-09-1349734103.48-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:08:26.572+11 259798
  2012-10-09-1349734107.98-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:08:30.505+11 213128
  2012-10-09-1349734110.67-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:08:35.507+11 403592
  2012-10-09-1349734116.16-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:08:38.48+11 194696
  2012-10-09-1349734541.09-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:15:43.616+11 210372
  2012-10-09-1349734544.71-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:15:59.073+11 1205202
  2012-10-09-1349734559.33-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:16:03.15+11 321672
  2012-10-09-1349734564.26-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:16:07.352+11 258096
  2012-10-09-1349734568.1-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:16:20.764+11 1065096
  2012-10-09-1349734581.59-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:16:33.727+11 1022088
  2012-10-09-1349734595.63-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:16:42.934+11 614534
  2012-10-09-1349734604.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:16:52.077+11 673576
  2012-10-09-1349734612.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:16:54.657+11 192648
  2012-10-09-1349734617.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:16:59.698+11 223368
  2012-10-09-1349734757.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:19:21.051+11 282352
  2012-10-09-1349734761.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:19:25.822+11 376968
  2012-10-09-1349734766.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:19:29.109+11 256136
  2012-10-09-1349734769.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:19:32.247+11 241792
  2012-10-09-1349734875.48-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:21:17.991+11 210226
  2012-10-09-1349734923.65-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 09:22:08.07+11 370720
  2012-10-09-1349734929.71-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 09:22:13.888+11 346248
  2012-10-09-1349734936.89-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 09:22:28.252+11 954450
  2012-10-09-1349735051.71-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:24:14.649+11 247970
  2012-10-09-1349735056.46-demo.wav 44028 CanberraBlackMnt 2012-10-09 09:24:30.379+11 1171592
  2012-10-09-1349735104.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:25:08.916+11 404034
  2012-10-09-1349735109.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:25:13.827+11 389082
  2012-10-09-1349735297.62-demo.wav 44028 CanberraBlackMnt 2012-10-09 09:28:20.75+11 264158
  2012-10-09-1349735304.15-demo.wav 44028 CanberraBlackMnt 2012-10-09 09:28:27.304+11 262280
  2012-10-09-1349735308.51-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:28:34.113+11 471176
  2012-10-09-1349735315.88-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:28:55.82+11 1675400
  2012-10-09-1349735336.38-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:29:03.971+11 637064
  2012-10-09-1349735344.14-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:29:11.148+11 589688
  2012-10-09-1349735351.55-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:29:39.409+11 2343048
  2012-10-09-1349735380.35-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:29:49.544+11 772232
  2012-10-09-1349735389.89-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:29:52.404+11 211080
  2012-10-09-1349735392.6-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:29:58.59+11 501896
  2012-10-09-1349735398.86-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:30:04.473+11 473138
  2012-10-09-1349735404.72-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 09:30:30.601+11 2173064
  2012-10-09-1349735431.04-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 09:30:41.546+11 882728
  2012-10-09-1349735441.81-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 09:30:50.444+11 725124
  2012-10-09-1349735451.19-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 09:30:55.519+11 362468
  2012-10-09-1349735558.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:32:47.046+11 717850
  2012-10-09-1349735567.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:32:50.077+11 237704
  2012-10-09-1349735632.48-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:33:55.201+11 226932
  2012-10-09-1349735655.12-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:34:17.737+11 219272
  2012-10-09-1349735658.95-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 09:34:28.128+11 769266
  2012-10-09-1349735668.27-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 09:34:33.85+11 469128
  2012-10-09-1349735674.61-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 09:34:38.628+11 338056
  2012-10-09-1349735758.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:36:01.701+11 266436
  2012-10-09-1349735761.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:36:04.321+11 200840
  2012-10-09-1349735764.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:36:11.761+11 606344
  2012-10-09-1349735836.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:37:20.129+11 265044
  2012-10-09-1349735840.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:37:25.079+11 376968
  2012-10-09-1349735847.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:37:31.68+11 317576
  2012-10-09-1349735852.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:37:34.82+11 227464
  2012-10-09-1349735932.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:38:55.736+11 281686
  2012-10-09-1349735938.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:39:04.064+11 501896
  2012-10-09-1349735944.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:39:06.98+11 223368
  2012-10-09-1349735947.56-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:39:25.552+11 1511560
  2012-10-09-1349735967.85-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:39:43.423+11 1305544
  2012-10-09-1349735984.96-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:40:02.619+11 1484936
  2012-10-09-1349736003.45-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:40:05.976+11 206984
  2012-10-09-1349736007.79-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:40:13.312+11 462984
  2012-10-09-1349736021.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:40:32.49+11 914868
  2012-10-09-1349736084.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:41:28.011+11 301692
  2012-10-09-1349736088.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:41:32.478+11 360584
  2012-10-09-1349736092.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:41:36.153+11 282760
  2012-10-09-1349736229.56-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:43:52.64+11 254926
  2012-10-09-1349736233.29-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:43:57.244+11 331912
  2012-10-09-1349736237.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:44:03.957+11 508040
  2012-10-09-1349736246.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:44:14.841+11 727122
  2012-10-09-1349736255.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:44:19.07+11 333204
  2012-10-09-1349736259.9-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:44:24.663+11 395608
  2012-10-09-1349736264.95-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:44:27.699+11 231560
  2012-10-09-1349736268.56-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:44:31.599+11 256108
  2012-10-09-1349736271.89-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:44:35.29+11 284808
  2012-10-09-1349736275.61-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:44:42.435+11 573576
  2012-10-09-1349736282.62-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:44:47.039+11 370824
  2012-10-09-1349736313.19-demo.wav 44028 CanberraBlackMnt 2012-10-09 09:45:19.087+11 493704
  2012-10-09-1349736319.91-demo.wav 44028 CanberraBlackMnt 2012-10-09 09:45:25.162+11 442504
  2012-10-09-1349736326.06-demo.wav 44028 CanberraBlackMnt 2012-10-09 09:45:32.179+11 515310
  2012-10-09-1349736332.37-demo.wav 44028 CanberraBlackMnt 2012-10-09 09:45:45.639+11 1116266
  2012-10-09-1349736350.65-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:46:13.402+11 1912968
  2012-10-09-1349736395.99-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:46:40.61+11 389256
  2012-10-09-1349736401.54-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:46:58.065+11 1388680
  2012-10-09-1349736421.53-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:47:05.082+11 296934
  2012-10-09-1349736425.28-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:47:09.557+11 360584
  2012-10-09-1349736457.58-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 09:47:45.763+11 686216
  2012-10-09-1349736466.02-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 09:47:51.501+11 458864
  2012-10-09-1349736472.09-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:48:06.911+11 1245316
  2012-10-09-1349736487.71-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:48:13.561+11 491656
  2012-10-09-1349736495.7-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:48:22.912+11 603806
  2012-10-09-1349736503.17-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:48:27.514+11 362632
  2012-10-09-1349736507.71-demo.wav 40067 CanberraMtAinsli 2012-10-09 09:48:30.36+11 223368
  2012-10-09-1349736511.0-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:48:37.872+11 575624
  2012-10-09-1349736518.33-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:48:44.187+11 493704
  2012-10-09-1349736553.77-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:49:17.131+11 279564
  2012-10-09-1349736557.9-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:49:20.455+11 215176
  2012-10-09-1349736561.18-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:49:26.144+11 417928
  2012-10-09-1349736575.78-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:49:43.296+11 632968
  2012-10-09-1349736583.99-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:49:53.304+11 782472
  2012-10-09-1349736593.54-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:49:56.372+11 239752
  2012-10-09-1349736645.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:50:49.548+11 312802
  2012-10-09-1349736649.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:50:54.35+11 381064
  2012-10-09-1349736655.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:50:59.56+11 344746
  2012-10-09-1349736697.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:51:39.747+11 210822
  2012-10-09-1349736805.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:53:29.109+11 306596
  2012-10-09-1349736809.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:53:31.848+11 198792
  2012-10-09-1349736853.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:54:15.853+11 223368
  2012-10-09-1349736857.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:54:25.505+11 653448
  2012-10-09-1349736866.58-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:54:37.718+11 935784
  2012-10-09-1349736877.92-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:54:43.408+11 462984
  2012-10-09-1349736885.76-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:54:50.729+11 413832
  2012-10-09-1349736891.65-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:54:56.818+11 433996
  2012-10-09-1349736897.45-demo.wav 44028 CanberraMtAinsli 2012-10-09 09:55:58.216+11 5099642
  2012-10-09-1349736958.47-demo.wav 44028 CanberraBlackMnt 2012-10-09 09:56:19.219+11 1745032
  2012-10-09-1349736979.45-demo.wav 44028 CanberraBlackMnt 2012-10-09 09:56:23.598+11 348296
  2012-10-09-1349736984.64-demo.wav 44028 CanberraBlackMnt 2012-10-09 09:56:27.674+11 256136
  2012-10-09-1349736988.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:56:42.898+11 1216634
  2012-10-09-1349737004.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:56:52.353+11 657544
  2012-10-09-1349737012.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:56:55.018+11 202888
  2012-10-09-1349737078.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:58:01.613+11 292574
  2012-10-09-1349737081.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:58:04.199+11 202888
  2012-10-09-1349737084.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:58:11.581+11 598152
  2012-10-09-1349737113.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:58:37.425+11 293000
  2012-10-09-1349737117.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 09:58:40.779+11 254088
  2012-10-09-1349737121.08-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:59:01.448+11 1712264
  2012-10-09-1349737141.78-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:59:05.506+11 313480
  2012-10-09-1349737146.41-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:59:11.645+11 438400
  2012-10-09-1349737152.21-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:59:18.199+11 503892
  2012-10-09-1349737158.43-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:59:47.581+11 2447496
  2012-10-09-1349737187.81-demo.wav 40067 CanberraBlackMnt 2012-10-09 09:59:50.696+11 241800
  2012-10-09-1349737237.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:00:40.586+11 266674
  2012-10-09-1349737240.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:00:43.286+11 206984
  2012-10-09-1349737244.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:00:47.187+11 233608
  2012-10-09-1349737247.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:00:50.878+11 274568
  2012-10-09-1349737275.98-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-09 10:01:21.481+11 462984
  2012-10-09-1349737281.75-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-09 10:01:25.611+11 317576
  2012-10-09-1349737417.79-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:03:41.659+11 324096
  2012-10-09-1349737442.78-demo.wav 44028 CanberraMtAinsli 2012-10-09 10:04:05.907+11 262280
  2012-10-09-1349737446.34-demo.wav 44028 CanberraMtAinsli 2012-10-09 10:04:09.439+11 262280
  2012-10-09-1349737450.13-demo.wav 44028 CanberraMtAinsli 2012-10-09 10:04:13.289+11 264328
  2012-10-09-1349737453.8-demo.wav 44028 CanberraMtAinsli 2012-10-09 10:04:16.998+11 268424
  2012-10-09-1349737458.27-demo.wav 44028 CanberraMtAinsli 2012-10-09 10:04:23.152+11 411784
  2012-10-09-1349737466.86-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:04:31.686+11 405640
  2012-10-09-1349737472.05-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:04:35.059+11 249992
  2012-10-09-1349737475.32-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:04:39.886+11 385128
  2012-10-09-1349737580.48-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 10:06:23.018+11 209092
  2012-10-09-1349737586.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:06:36.346+11 813192
  2012-10-09-1349737596.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:06:39.268+11 223368
  2012-10-09-1349737599.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:06:47.868+11 696440
  2012-10-09-1349737655.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:07:39.765+11 320252
  2012-10-09-1349737660.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:07:42.817+11 219272
  2012-10-09-1349737733.78-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:08:56.65+11 241084
  2012-10-09-1349737737.63-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:09:01.54+11 324296
  2012-10-09-1349737741.87-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:09:07.022+11 434312
  2012-10-09-1349737747.55-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:09:12.855+11 446596
  2012-10-09-1349737812.47-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 10:10:14.779+11 190758
  2012-10-09-1349737818.24-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:10:24.654+11 540808
  2012-10-09-1349737897.9-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 10:11:40.455+11 211180
  2012-10-09-1349737947.9-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 10:12:30.398+11 208636
  2012-10-09-1349738006.0-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:13:28.486+11 208958
  2012-10-09-1349738038.0-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:14:01.414+11 286080
  2012-10-09-1349738043.13-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:14:09.708+11 553096
  2012-10-09-1349738081.79-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:14:44.89+11 260764
  2012-10-09-1349738246.74-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 10:17:31.191+11 372202
  2012-10-09-1349738252.76-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 10:17:39.909+11 600200
  2012-10-09-1349738486.95-demo.wav 44027 CanberraBlackMnt 2012-10-09 10:21:31.141+11 351972
  2012-10-09-1349738532.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:22:14.992+11 209268
  2012-10-09-1349738717.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:25:21.005+11 281644
  2012-10-09-1349738722.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:25:37.063+11 1185928
  2012-10-09-1349738737.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:25:39.84+11 204936
  2012-10-09-1349738743.35-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:25:56.681+11 1118344
  2012-10-09-1349738756.83-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:25:59.747+11 247944
  2012-10-09-1349738882.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:28:04.762+11 212834
  2012-10-09-1349738885.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:28:07.389+11 190600
  2012-10-09-1349738887.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:28:11.173+11 299144
  2012-10-09-1349738891.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:28:14.799+11 270472
  2012-10-09-1349738970.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:29:33.727+11 294890
  2012-10-09-1349738973.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:29:37.397+11 299144
  2012-10-09-1349739049.11-demo.wav 44028 CanberraMtAinsli 2012-10-09 10:30:52.045+11 246474
  2012-10-09-1349739053.42-demo.wav 44028 CanberraMtAinsli 2012-10-09 10:30:56.807+11 280350
  2012-10-09-1349739058.22-demo.wav 44028 CanberraMtAinsli 2012-10-09 10:31:05.967+11 649342
  2012-10-09-1349739066.22-demo.wav 44028 CanberraMtAinsli 2012-10-09 10:31:10.202+11 331386
  2012-10-09-1349739087.37-demo.wav 44028 CanberraMtAinsli 2012-10-09 10:31:35.217+11 661640
  2012-10-09-1349739096.28-demo.wav 44028 CanberraMtAinsli 2012-10-09 10:31:38.942+11 223368
  2012-10-09-1349739099.35-demo.wav 44028 CanberraMtAinsli 2012-10-09 10:31:45.734+11 536712
  2012-10-09-1349739124.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:32:17.049+11 1032328
  2012-10-09-1349739138.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:32:28.173+11 835030
  2012-10-09-1349739148.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:32:31.226+11 243836
  2012-10-09-1349739184.05-demo.wav 44014 CanberraMtAinsli 2012-10-09 10:33:10.173+11 514124
  2012-10-09-1349739190.28-demo.wav 44014 CanberraMtAinsli 2012-10-09 10:33:14.408+11 348296
  2012-10-09-1349739206.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:33:42.323+11 1306760
  2012-10-09-1349739222.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:33:45.531+11 252040
  2012-10-09-1349739227.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:33:53.356+11 512084
  2012-10-09-1349739233.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:33:58.401+11 381062
  2012-10-09-1349739239.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:34:03.305+11 329846
  2012-10-09-1349739243.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:34:41.803+11 3225376
  2012-10-09-1349739286.07-demo.wav 44028 CanberraBlackMnt 2012-10-09 10:35:06.627+11 1270154
  2012-10-09-1349739306.86-demo.wav 44028 CanberraBlackMnt 2012-10-09 10:35:09.376+11 211080
  2012-10-09-1349739369.29-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:36:13.694+11 370572
  2012-10-09-1349739375.34-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:36:21.048+11 477540
  2012-10-09-1349739381.31-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:36:28.943+11 639112
  2012-10-09-1349739389.46-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:36:35.608+11 518280
  2012-10-09-1349739398.11-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:36:40.724+11 219252
  2012-10-09-1349739401.46-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:37:02.225+11 1667546
  2012-10-09-1349739422.33-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:37:04.813+11 211080
  2012-10-09-1349739517.88-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-09 10:38:43.238+11 447632
  2012-10-09-1349739523.49-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-09 10:38:47.319+11 321672
  2012-10-09-1349739557.43-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:39:20.354+11 246452
  2012-10-09-1349739561.29-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:39:27.316+11 503304
  2012-10-09-1349739567.42-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:39:30.927+11 297096
  2012-10-09-1349739571.22-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:39:35.4+11 352392
  2012-10-09-1349739665.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:41:08.68+11 260036
  2012-10-09-1349739669.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:41:13.499+11 307336
  2012-10-09-1349739673.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:41:19.605+11 503944
  2012-10-09-1349739685.75-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 10:41:29.8+11 338648
  2012-10-09-1349739690.34-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 10:41:34.41+11 340104
  2012-10-09-1349739772.67-demo.wav 40067 CanberraBlackMnt 2012-10-09 10:42:55.432+11 232530
  2012-10-09-1349739776.88-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:43:13.173+11 1368200
  2012-10-09-1349739901.28-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 10:45:03.827+11 211270
  2012-10-09-1349739903.96-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 10:45:14.432+11 880776
  2012-10-09-1349739914.81-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 10:45:22.473+11 645256
  2012-10-09-1349739922.79-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 10:45:25.62+11 237704
  2012-10-09-1349739927.42-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 10:45:45.111+11 1484934
  2012-10-09-1349739945.3-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 10:45:52.981+11 645084
  2012-10-09-1349739990.81-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 10:46:38.126+11 614536
  2012-10-09-1349739998.88-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 10:46:43.116+11 356488
  2012-10-09-1349740003.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:46:50.015+11 514820
  2012-10-09-1349740010.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:46:57.378+11 575624
  2012-10-09-1349740017.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:47:00.856+11 284808
  2012-10-09-1349740022.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:47:09.576+11 569480
  2012-10-09-1349740030.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:47:14.297+11 342152
  2012-10-09-1349740034.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:47:18.222+11 317576
  2012-10-09-1349740038.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:47:23.917+11 444552
  2012-10-09-1349740073.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:48:15.091+11 1779848
  2012-10-09-1349740095.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:48:18.624+11 231560
  2012-10-09-1349740120.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:48:45.904+11 476824
  2012-10-09-1349740127.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:48:56.75+11 807608
  2012-10-09-1349740137.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:49:01.24+11 290952
  2012-10-09-1349740142.53-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:49:12.589+11 845960
  2012-10-09-1349740154.12-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 10:49:31.435+11 1453106
  2012-10-09-1349740172.02-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 10:49:35.383+11 282760
  2012-10-09-1349740175.72-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:50:10.998+11 2951304
  2012-10-09-1349740231.74-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:50:42.548+11 906924
  2012-10-09-1349740242.66-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:50:58.586+11 1335432
  2012-10-09-1349740258.69-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:51:06.621+11 665714
  2012-10-09-1349740266.82-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:51:09.576+11 233608
  2012-10-09-1349740270.05-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:51:13.81+11 317402
  2012-10-09-1349740274.55-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:51:20.599+11 507488
  2012-10-09-1349740280.96-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:51:25.215+11 358484
  2012-10-09-1349740286.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:51:33.552+11 613206
  2012-10-09-1349740293.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:51:35.996+11 188552
  2012-10-09-1349740296.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:51:40.324+11 282760
  2012-10-09-1349740301.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:51:44.509+11 284786
  2012-10-09-1349740304.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:52:04.596+11 1679496
  2012-10-09-1349740325.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:52:14.919+11 792686
  2012-10-09-1349740335.86-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 10:52:22.367+11 544592
  2012-10-09-1349740345.27-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 10:52:33.49+11 690312
  2012-10-09-1349740353.84-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 10:52:36.437+11 215176
  2012-10-09-1349740357.42-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 10:52:57.039+11 1648776
  2012-10-09-1349740377.48-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 10:53:00.353+11 239752
  2012-10-09-1349740405.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:53:36.134+11 919688
  2012-10-09-1349740418.03-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:53:50.521+11 1047278
  2012-10-09-1349740431.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:54:08.491+11 1425542
  2012-10-09-1349740448.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:54:11.733+11 239752
  2012-10-09-1349740451.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:54:16.829+11 417928
  2012-10-09-1349740456.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:54:19.855+11 243848
  2012-10-09-1349740505.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:55:08.105+11 210386
  2012-10-09-1349740511.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:55:15.23+11 354440
  2012-10-09-1349740516.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:55:19.984+11 288904
  2012-10-09-1349740592.38-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:56:35.292+11 245844
  2012-10-09-1349740596.86-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:56:42.655+11 487560
  2012-10-09-1349740603.48-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:56:46.73+11 268376
  2012-10-09-1349740607.49-demo.wav 40067 CanberraMtAinsli 2012-10-09 10:56:54.238+11 567412
  2012-10-09-1349740614.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:57:49.285+11 4593800
  2012-10-09-1349740715.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 10:58:37.878+11 210850
  2012-10-09-1349740811.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:00:14.271+11 234890
  2012-10-09-1349740814.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:00:16.983+11 204936
  2012-10-09-1349740817.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:00:20.478+11 266376
  2012-10-09-1349740821.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:00:24.963+11 282760
  2012-10-09-1349740825.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:00:28.057+11 235656
  2012-10-09-1349740887.76-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:01:30.736+11 250756
  2012-10-09-1349740891.44-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:01:33.579+11 182408
  2012-10-09-1349740894.57-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:01:41.535+11 585864
  2012-10-09-1349740902.59-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:01:45.032+11 206984
  2012-10-09-1349740905.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:02:06.835+11 1757556
  2012-10-09-1349740967.4-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:02:54.677+11 612488
  2012-10-09-1349740975.3-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:03:08.775+11 1130632
  2012-10-09-1349740989.62-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:03:14.641+11 422024
  2012-10-09-1349740994.87-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:03:24.902+11 843702
  2012-10-09-1349741005.78-demo.wav 44028 CanberraBlackMnt 2012-10-09 11:03:31.217+11 452850
  2012-10-09-1349741011.48-demo.wav 44028 CanberraBlackMnt 2012-10-09 11:03:34.637+11 264328
  2012-10-09-1349741015.15-demo.wav 44028 CanberraBlackMnt 2012-10-09 11:03:37.386+11 188552
  2012-10-09-1349741018.95-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:03:45.283+11 532584
  2012-10-09-1349741028.96-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:03:52.28+11 280712
  2012-10-09-1349741056.31-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:04:19.644+11 282760
  2012-10-09-1349741098.91-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:05:02.055+11 265590
  2012-10-09-1349741103.32-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:05:06.688+11 281458
  2012-10-09-1349741106.98-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:05:12.248+11 444552
  2012-10-09-1349741112.36-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:05:41.511+11 2445448
  2012-10-09-1349741210.33-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:06:53.302+11 249286
  2012-10-09-1349741280.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:08:04.306+11 293666
  2012-10-09-1349741284.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:08:07.221+11 233608
  2012-10-09-1349741287.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:09:15.049+11 5636232
  2012-10-09-1349741356.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:09:19.047+11 200840
  2012-10-09-1349741394.08-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:09:56.962+11 242970
  2012-10-09-1349741432.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:10:34.845+11 208838
  2012-10-09-1349741478.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:11:20.7+11 225878
  2012-10-09-1349741484.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:11:27.584+11 297096
  2012-10-09-1349741487.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:11:31.063+11 284702
  2012-10-09-1349741512.17-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:11:54.706+11 215176
  2012-10-09-1349741534.1-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-09 11:12:20.192+11 510940
  2012-10-09-1349741541.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:12:41.133+11 1640584
  2012-10-09-1349741563.24-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-09 11:12:52.363+11 766088
  2012-10-09-1349741615.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:13:38.174+11 210934
  2012-10-09-1349741701.47-demo.wav 44028 CanberraMtAinsli 2012-10-09 11:15:03.953+11 210270
  2012-10-09-1349741704.06-demo.wav 44028 CanberraMtAinsli 2012-10-09 11:15:06.509+11 209032
  2012-10-09-1349741708.03-demo.wav 44028 CanberraMtAinsli 2012-10-09 11:15:14.528+11 546952
  2012-10-09-1349741715.17-demo.wav 44028 CanberraMtAinsli 2012-10-09 11:15:20.166+11 422024
  2012-10-09-1349741720.29-demo.wav 44028 CanberraMtAinsli 2012-10-09 11:15:22.563+11 192648
  2012-10-09-1349741722.67-demo.wav 44028 CanberraBlackMnt 2012-10-09 11:15:51.682+11 2437256
  2012-10-09-1349741774.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:16:32.773+11 1548424
  2012-10-09-1349741793.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:16:35.309+11 182408
  2012-10-09-1349741795.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:16:44.386+11 727174
  2012-10-09-1349741850.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:17:32.659+11 210908
  2012-10-09-1349741852.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:17:35.337+11 209032
  2012-10-09-1349741856.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:17:42.025+11 493704
  2012-10-09-1349741862.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:17:47.295+11 434312
  2012-10-09-1349741912.28-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:18:35.251+11 250764
  2012-10-09-1349741918.24-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:18:43.238+11 422024
  2012-10-09-1349741923.74-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:18:48.27+11 383112
  2012-10-09-1349741928.45-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:18:53.478+11 424072
  2012-10-09-1349741934.7-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:19:04.164+11 794760
  2012-10-09-1349741944.38-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:19:09.324+11 415880
  2012-10-09-1349741949.45-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:19:12.759+11 280712
  2012-10-09-1349741974.4-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:19:48.725+11 1200662
  2012-10-09-1349741989.43-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:19:53.871+11 372872
  2012-10-09-1349742056.48-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:20:58.961+11 211080
  2012-10-09-1349742119.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:22:04.199+11 434192
  2012-10-09-1349742125.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:22:09.526+11 331910
  2012-10-09-1349742129.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:22:14.18+11 379016
  2012-10-09-1349742135.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:22:19.843+11 362632
  2012-10-09-1349742196.61-demo.wav 44028 CanberraBlackMnt 2012-10-09 11:23:20.444+11 323720
  2012-10-09-1349742200.7-demo.wav 44028 CanberraBlackMnt 2012-10-09 11:23:23+11 192648
  2012-10-09-1349742223.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:23:47.584+11 356488
  2012-10-09-1349742227.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:23:50.759+11 241800
  2012-10-09-1349742288.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:24:51.208+11 211796
  2012-10-09-1349742291.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:24:54.032+11 184456
  2012-10-09-1349742294.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:24:59.475+11 424072
  2012-10-09-1349742299.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:25:03.53+11 313480
  2012-10-09-1349742366.46-demo.wav 10301 CanberraMtAinsli 2012-10-09 11:26:08.976+11 211632
  2012-10-09-1349742370.33-demo.wav 10301 CanberraMtAinsli 2012-10-09 11:26:14.056+11 315528
  2012-10-09-1349742374.17-demo.wav 10301 CanberraMtAinsli 2012-10-09 11:26:26.725+11 1054854
  2012-10-09-1349742465.09-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 11:27:49.511+11 369092
  2012-10-09-1349742470.93-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 11:27:56.489+11 465032
  2012-10-09-1349742476.91-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 11:28:06.766+11 827528
  2012-10-09-1349742617.36-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 11:30:19.861+11 208928
  2012-10-09-1349742680.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:31:23.094+11 206102
  2012-10-09-1349742685.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:31:28.817+11 237704
  2012-10-09-1349742689.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:31:34.005+11 376968
  2012-10-09-1349742765.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:32:48.162+11 248134
  2012-10-09-1349742945.04-demo.wav 10301 CanberraMtAinsli 2012-10-09 11:35:48.809+11 317314
  2012-10-09-1349742950.84-demo.wav 10301 CanberraMtAinsli 2012-10-09 11:35:55.36+11 381064
  2012-10-09-1349743069.79-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:37:52.781+11 250508
  2012-10-09-1349743074.21-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:37:57.336+11 262280
  2012-10-09-1349743156.09-demo.wav 10306 CanberraMtAinsli 2012-10-09 11:39:18.599+11 212340
  2012-10-09-1349743160.45-demo.wav 10306 CanberraMtAinsli 2012-10-09 11:39:27.24+11 571528
  2012-10-09-1349743167.46-demo.wav 10306 CanberraMtAinsli 2012-10-09 11:39:30.275+11 237704
  2012-10-09-1349743170.54-demo.wav 10306 CanberraMtAinsli 2012-10-09 11:39:33.695+11 266376
  2012-10-09-1349743174.52-demo.wav 10306 CanberraMtAinsli 2012-10-09 11:39:37.401+11 243762
  2012-10-09-1349743178.37-demo.wav 10306 CanberraMtAinsli 2012-10-09 11:39:43.566+11 438098
  2012-10-09-1349743199.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:40:04.969+11 462984
  2012-10-09-1349743205.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:40:09.342+11 356488
  2012-10-09-1349743210.03-demo.wav 10306 CanberraMtAinsli 2012-10-09 11:40:16.944+11 581768
  2012-10-09-1349743217.33-demo.wav 10306 CanberraMtAinsli 2012-10-09 11:40:20.075+11 233608
  2012-10-09-1349743220.18-demo.wav 10306 CanberraMtAinsli 2012-10-09 11:40:23.813+11 307336
  2012-10-09-1349743227.55-demo.wav 10306 CanberraMtAinsli 2012-10-09 11:40:34.643+11 596104
  2012-10-09-1349743235.03-demo.wav 10306 CanberraMtAinsli 2012-10-09 11:40:38.157+11 266376
  2012-10-09-1349743238.65-demo.wav 10306 CanberraMtAinsli 2012-10-09 11:40:41.638+11 252040
  2012-10-09-1349743242.1-demo.wav 10306 CanberraMtAinsli 2012-10-09 11:40:49.944+11 659592
  2012-10-09-1349743250.88-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 11:41:03.625+11 1069192
  2012-10-09-1349743263.73-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 11:41:10.021+11 528076
  2012-10-09-1349743270.52-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 11:41:37.862+11 2297950
  2012-10-09-1349743299.42-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 11:41:44.257+11 405640
  2012-10-09-1349743305.89-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 11:41:55.073+11 770184
  2012-10-09-1349743439.53-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:44:02.355+11 239736
  2012-10-09-1349743537.28-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:45:39.814+11 210782
  2012-10-09-1349743540.89-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:45:47.583+11 559984
  2012-10-09-1349743547.9-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:45:51.307+11 284808
  2012-10-09-1349743551.94-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:45:54.598+11 223360
  2012-10-09-1349743555.14-demo.wav 44028 CanberraMtAinsli 2012-10-09 11:46:02.256+11 598152
  2012-10-09-1349743562.52-demo.wav 44028 CanberraMtAinsli 2012-10-09 11:46:05.66+11 264328
  2012-10-09-1349743567.04-demo.wav 44028 CanberraMtAinsli 2012-10-09 11:46:10.663+11 303240
  2012-10-09-1349743590.73-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:46:49.639+11 1583240
  2012-10-09-1349743660.52-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 11:47:44.042+11 295880
  2012-10-09-1349743667.67-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 11:47:53.346+11 474562
  2012-10-09-1349743674.21-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 11:48:02.147+11 665736
  2012-10-09-1349743682.93-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 11:48:07.914+11 419968
  2012-10-09-1349743812.54-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:50:15.126+11 215452
  2012-10-09-1349743818.01-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:50:20.433+11 204936
  2012-10-09-1349743821.0-demo.wav 40067 CanberraMtAinsli 2012-10-09 11:50:25.324+11 360584
  2012-10-09-1349743879.52-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 11:51:23.645+11 345066
  2012-10-09-1349743884.45-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 11:51:27.927+11 290952
  2012-10-09-1349743888.7-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 11:51:32.067+11 282760
  2012-10-09-1349743892.79-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 11:52:24.508+11 4345992
  2012-10-09-1349743994.48-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 11:53:17.187+11 229512
  2012-10-09-1349743997.97-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 11:53:25.993+11 672038
  2012-10-09-1349744006.1-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 11:53:42.333+11 1353802
  2012-10-09-1349744182.96-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 11:56:25.852+11 240780
  2012-10-09-1349744186.09-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 11:56:29.066+11 247944
  2012-10-09-1349744189.47-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 11:56:33.586+11 344200
  2012-10-09-1349744194.0-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 11:56:45.659+11 978992
  2012-10-09-1349744205.89-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 11:57:00.955+11 1265708
  2012-10-09-1349744231.21-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 11:57:17.659+11 542856
  2012-10-09-1349744284.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:58:07.032+11 244614
  2012-10-09-1349744287.88-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:58:18.103+11 856388
  2012-10-09-1349744298.32-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:58:28.519+11 856200
  2012-10-09-1349744309.52-demo.wav 40067 CanberraBlackMnt 2012-10-09 11:58:35.233+11 477320
  2012-10-09-1349744384.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 11:59:49.172+11 415284
  2012-10-09-1349744390.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:00:02.641+11 1030280
  2012-10-09-1349744405.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:00:14.067+11 737414
  2012-10-09-1349744414.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:00:22.003+11 638590
  2012-10-09-1349744422.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:00:40.781+11 1506308
  2012-10-09-1349744441.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:00:45.871+11 327816
  2012-10-09-1349744446.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:00:53.091+11 587912
  2012-10-09-1349744579.25-demo.wav 10301 CanberraBlackMnt 2012-10-09 12:03:01.76+11 210322
  2012-10-09-1349744583.78-demo.wav 10301 CanberraBlackMnt 2012-10-09 12:03:07.673+11 327816
  2012-10-09-1349744587.89-demo.wav 10301 CanberraBlackMnt 2012-10-09 12:03:13.283+11 454792
  2012-10-09-1349744593.53-demo.wav 10301 CanberraBlackMnt 2012-10-09 12:03:16.736+11 268362
  2012-10-09-1349744597.89-demo.wav 10301 CanberraBlackMnt 2012-10-09 12:03:24.551+11 560088
  2012-10-09-1349744605.55-demo.wav 10301 CanberraBlackMnt 2012-10-09 12:03:32.497+11 580914
  2012-10-09-1349744612.77-demo.wav 10301 CanberraBlackMnt 2012-10-09 12:03:43.11+11 870536
  2012-10-09-1349744623.65-demo.wav 10301 CanberraBlackMnt 2012-10-09 12:03:50.096+11 540600
  2012-10-09-1349744664.03-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:04:28.044+11 336894
  2012-10-09-1349744669.15-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:04:36.323+11 599700
  2012-10-09-1349744677.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:04:49.246+11 999560
  2012-10-09-1349744689.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:04:52.232+11 243848
  2012-10-09-1349744693.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:05:06.13+11 1073288
  2012-10-09-1349744708.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:05:13.479+11 415210
  2012-10-09-1349744713.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:05:18.157+11 385120
  2012-10-09-1349744719.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:05:31.322+11 1026136
  2012-10-09-1349744735.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:05:41.766+11 553096
  2012-10-09-1349744742.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:05:46.367+11 364680
  2012-10-09-1349744747.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:06:02.894+11 1289808
  2012-10-09-1349744763.38-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:06:14.195+11 905352
  2012-10-09-1349744779.69-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:06:23.354+11 307336
  2012-10-09-1349744800.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:06:49.949+11 831514
  2012-10-09-1349744810.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:06:54.049+11 305288
  2012-10-09-1349744816.76-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:07:05.238+11 711074
  2012-10-09-1349744884.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:08:07.855+11 303726
  2012-10-09-1349744887.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:08:10.552+11 219272
  2012-10-09-1349744891.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:08:19.16+11 684168
  2012-10-09-1349744905.82-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 12:08:46.74+11 1286342
  2012-10-09-1349744926.85-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 12:08:49.176+11 196744
  2012-10-09-1349744956.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:09:19.078+11 210340
  2012-10-09-1349744960.05-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:09:31.13+11 925780
  2012-10-09-1349744972.03-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 12:09:37.483+11 455980
  2012-10-09-1349744978.4-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 12:09:49.95+11 968624
  2012-10-09-1349745000.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:10:11.157+11 868488
  2012-10-09-1349745011.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:10:14.337+11 241800
  2012-10-09-1349745014.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:10:21.69+11 598150
  2012-10-09-1349745028.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:10:35.338+11 538188
  2012-10-09-1349745035.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:10:38.373+11 233608
  2012-10-09-1349745075.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:11:18.935+11 295048
  2012-10-09-1349745079.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:11:21.508+11 198792
  2012-10-09-1349745081.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:11:25.868+11 344178
  2012-10-09-1349745086.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:11:30.69+11 374920
  2012-10-09-1349745190.56-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 12:13:14.679+11 345626
  2012-10-09-1349745196.55-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 12:13:19.489+11 245896
  2012-10-09-1349745199.75-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 12:13:27.146+11 618596
  2012-10-09-1349745217.98-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:13:48.309+11 868488
  2012-10-09-1349745228.66-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:13:58.25+11 807048
  2012-10-09-1349745238.41-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:14:03.638+11 440456
  2012-10-09-1349745243.85-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:14:09.391+11 467026
  2012-10-09-1349745249.62-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:14:12.603+11 249982
  2012-10-09-1349745293.19-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:14:56.301+11 262088
  2012-10-09-1349745296.64-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:15:00.566+11 331912
  2012-10-09-1349745320.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:15:40.175+11 1613960
  2012-10-09-1349745340.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:15:43.337+11 258184
  2012-10-09-1349745370.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:16:27.958+11 1439880
  2012-10-09-1349745388.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:16:32.269+11 354440
  2012-10-09-1349745392.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:16:38.859+11 501896
  2012-10-09-1349745398.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:16:45.2+11 524424
  2012-10-09-1349745405.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:16:47.852+11 180360
  2012-10-09-1349745408.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:17:26.83+11 3206568
  2012-10-09-1349745447.72-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 12:17:34.269+11 547578
  2012-10-09-1349745455.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:17:43.137+11 662836
  2012-10-09-1349745464.03-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 12:18:01.132+11 1435784
  2012-10-09-1349745483.38-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 12:18:08.084+11 393352
  2012-10-09-1349745496.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:18:32.511+11 1317000
  2012-10-09-1349745516.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:18:40.73+11 327816
  2012-10-09-1349745529.6-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:18:53.324+11 311432
  2012-10-09-1349745553.37-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:19:15.854+11 211080
  2012-10-09-1349745557.19-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:19:19.432+11 190600
  2012-10-09-1349745559.65-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:19:25.327+11 477320
  2012-10-09-1349745565.44-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:19:31.096+11 474962
  2012-10-09-1349745580.98-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:19:56.274+11 1288328
  2012-10-09-1349745597.16-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:19:59.726+11 217224
  2012-10-09-1349745599.99-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:20:10.213+11 860168
  2012-10-09-1349745610.46-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:20:14.576+11 343642
  2012-10-09-1349745615.92-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:20:18.603+11 224868
  2012-10-09-1349745618.86-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:20:34.46+11 1312904
  2012-10-09-1349745635.46-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 12:20:40.741+11 439902
  2012-10-09-1349745641.89-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 12:20:50.2+11 696218
  2012-10-09-1349745651.25-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 12:20:55.793+11 381064
  2012-10-09-1349745656.5-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 12:21:01.753+11 440398
  2012-10-09-1349745662.53-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:21:24.338+11 1832782
  2012-10-09-1349745685.65-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:21:31.787+11 513506
  2012-10-09-1349745692.7-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:21:37.825+11 432264
  2012-10-09-1349745698.07-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:21:41.387+11 280704
  2012-10-09-1349745753.14-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:22:36.994+11 324040
  2012-10-09-1349745759.61-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:22:48.4+11 739464
  2012-10-09-1349745768.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:22:54.706+11 493704
  2012-10-09-1349745774.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:22:58.684+11 321672
  2012-10-09-1349745780.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:23:10.057+11 774070
  2012-10-09-1349745790.66-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:23:16.4+11 483458
  2012-10-09-1349745796.51-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:23:19.099+11 219272
  2012-10-09-1349745799.21-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:23:21.527+11 196744
  2012-10-09-1349745803.72-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:23:27.613+11 328808
  2012-10-09-1349745807.88-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:23:33.459+11 469128
  2012-10-09-1349745853.6-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:24:16.995+11 285490
  2012-10-09-1349745858.5-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 12:24:23.857+11 450696
  2012-10-09-1349745864.12-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 12:24:30.017+11 495752
  2012-10-09-1349745870.27-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 12:24:34.006+11 311310
  2012-10-09-1349745874.25-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 12:24:38.044+11 317524
  2012-10-09-1349745879.83-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-09 12:24:46.383+11 551048
  2012-10-09-1349745911.71-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:25:17.01+11 444552
  2012-10-09-1349745918.36-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:25:22.269+11 327594
  2012-10-09-1349745923.2-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 12:25:29.462+11 524056
  2012-10-09-1349745930.75-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 12:25:36.797+11 508040
  2012-10-09-1349745937.95-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 12:25:40.372+11 202888
  2012-10-09-1349745940.65-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 12:25:45.086+11 372872
  2012-10-09-1349745945.34-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 12:25:51.528+11 518230
  2012-10-09-1349745964.19-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 12:26:10.42+11 522376
  2012-10-09-1349745970.95-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 12:26:14.028+11 258184
  2012-10-09-1349745974.52-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 12:26:33.125+11 1562760
  2012-10-09-1349745993.39-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 12:26:37.68+11 360196
  2012-10-09-1349745999.57-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:26:48.39+11 739278
  2012-10-09-1349746009.23-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:26:52.626+11 284794
  2012-10-09-1349746046.63-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 12:27:33.531+11 579720
  2012-10-09-1349746055.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:27:49.46+11 1182118
  2012-10-09-1349746070.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:27:57.067+11 566510
  2012-10-09-1349746079.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:28:12.385+11 1040520
  2012-10-09-1349746092.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:28:16.178+11 293000
  2012-10-09-1349746096.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:28:45.056+11 2384008
  2012-10-09-1349746126.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:28:48.211+11 182408
  2012-10-09-1349746128.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:28:52.076+11 297096
  2012-10-09-1349746134.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:28:57.202+11 258140
  2012-10-09-1349746160.07-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:29:23.849+11 319624
  2012-10-09-1349746164.75-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:29:34.056+11 782094
  2012-10-09-1349746174.54-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:29:38.097+11 300750
  2012-10-09-1349746179.95-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:29:47.315+11 616376
  2012-10-09-1349746187.79-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:29:54.328+11 551048
  2012-10-09-1349746195.74-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:29:59.153+11 288904
  2012-10-09-1349746199.37-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:30:02.41+11 256136
  2012-10-09-1349746203.12-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:30:06.787+11 309314
  2012-10-09-1349746206.98-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:30:10.589+11 305288
  2012-10-09-1349746211.23-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:30:14.567+11 282760
  2012-10-09-1349746235.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:30:40.718+11 399496
  2012-10-09-1349746240.97-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:30:47.428+11 544904
  2012-10-09-1349746248.37-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:30:52.907+11 383112
  2012-10-09-1349746255.06-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:31:06.58+11 966792
  2012-10-09-1349746267.06-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:31:09.441+11 202888
  2012-10-09-1349746270.66-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:31:14.121+11 293000
  2012-10-09-1349746274.51-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:31:17.029+11 209026
  2012-10-09-1349746277.14-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:31:20.654+11 296772
  2012-10-09-1349746280.9-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:31:23.402+11 213128
  2012-10-09-1349746283.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:31:36.213+11 1048712
  2012-10-09-1349746299.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:31:57.708+11 1536810
  2012-10-09-1349746317.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:32:01.445+11 295048
  2012-10-09-1349746322.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:32:08.951+11 569392
  2012-10-09-1349746373.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:32:56.601+11 288748
  2012-10-09-1349746378.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:33:05.751+11 645256
  2012-10-09-1349746386.22-demo.wav 10301 CanberraMtAinsli 2012-10-09 12:33:15.086+11 745608
  2012-10-09-1349746395.81-demo.wav 10301 CanberraMtAinsli 2012-10-09 12:33:19.754+11 331912
  2012-10-09-1349746400.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:33:40.5+11 1665152
  2012-10-09-1349746421.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:33:45.367+11 315294
  2012-10-09-1349746426.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:33:50.317+11 346248
  2012-10-09-1349746430.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:33:54.851+11 360540
  2012-10-09-1349746435.93-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:34:13.487+11 1476744
  2012-10-09-1349746515.57-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:35:18.04+11 208550
  2012-10-09-1349746570.02-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:36:12.627+11 219862
  2012-10-09-1349746574.19-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:36:17.514+11 280712
  2012-10-09-1349746577.62-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:36:20.261+11 223368
  2012-10-09-1349746580.55-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:36:25.343+11 403592
  2012-10-09-1349746585.45-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:36:28.106+11 225416
  2012-10-09-1349746588.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:36:35.646+11 585764
  2012-10-09-1349746596.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:36:39.844+11 286856
  2012-10-09-1349746599.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:36:42.927+11 247944
  2012-10-09-1349746658.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:37:41.471+11 237206
  2012-10-09-1349746662.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:37:51.067+11 678024
  2012-10-09-1349746671.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:37:56.599+11 456840
  2012-10-09-1349746685.41-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:38:24.915+11 1640584
  2012-10-09-1349746705.98-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:38:35.146+11 767830
  2012-10-09-1349746715.41-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:38:48.844+11 1130610
  2012-10-09-1349746729.62-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:38:53.974+11 364656
  2012-10-09-1349746736.59-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:39:02.953+11 534552
  2012-10-09-1349746743.36-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:39:12.286+11 749512
  2012-10-09-1349746774.3-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:39:39.153+11 409736
  2012-10-09-1349746780.49-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:39:46.741+11 524424
  2012-10-09-1349746787.0-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:39:54.315+11 614536
  2012-10-09-1349746794.52-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:39:57.558+11 251578
  2012-10-09-1349746819.33-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:40:22.511+11 266376
  2012-10-09-1349746907.09-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:41:50.111+11 255658
  2012-10-09-1349746912.03-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:41:57.253+11 440456
  2012-10-09-1349746917.45-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:42:25.287+11 2330760
  2012-10-09-1349746945.4-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:42:28.21+11 239752
  2012-10-09-1349746948.69-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:42:35.287+11 555144
  2012-10-09-1349746957.17-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:42:40.016+11 241800
  2012-10-09-1349747007.52-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:43:30+11 209674
  2012-10-09-1349747075.58-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 12:44:38.701+11 262824
  2012-10-09-1349747080.12-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 12:44:44.154+11 340104
  2012-10-09-1349747084.65-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 12:44:50.551+11 495752
  2012-10-09-1349747090.8-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 12:44:54.527+11 313480
  2012-10-09-1349747129.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:45:42.866+11 1120392
  2012-10-09-1349747143.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:45:47.678+11 352392
  2012-10-09-1349747148.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:46:06.923+11 1587336
  2012-10-09-1349747169.99-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-09 12:46:22.198+11 1023946
  2012-10-09-1349747182.86-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-09 12:46:33.192+11 866440
  2012-10-09-1349747194.87-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:46:44.674+11 823432
  2012-10-09-1349747205.73-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:46:51.157+11 454890
  2012-10-09-1349747212.64-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:46:56.267+11 307336
  2012-10-09-1349747216.77-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:47:02.064+11 446600
  2012-10-09-1349747223.11-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:47:08.084+11 419976
  2012-10-09-1349747229.23-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:47:17.259+11 675976
  2012-10-09-1349747237.51-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:47:21.398+11 327816
  2012-10-09-1349747242.3-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:47:26.065+11 317576
  2012-10-09-1349747347.88-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-09 12:49:10.425+11 214080
  2012-10-09-1349747453.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:50:56.094+11 257110
  2012-10-09-1349747456.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:51:00.023+11 258184
  2012-10-09-1349747460.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:51:05.676+11 426120
  2012-10-09-1349747466.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:51:10.403+11 320866
  2012-10-09-1349747471.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:51:38.643+11 2310280
  2012-10-09-1349747499.47-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:51:53.739+11 1193958
  2012-10-09-1349747513.85-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:52:05.733+11 996676
  2012-10-09-1349747702.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:55:04.979+11 229972
  2012-10-09-1349747705.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:55:07.472+11 188552
  2012-10-09-1349747707.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:55:11.082+11 274568
  2012-10-09-1349747711.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:55:15.553+11 336008
  2012-10-09-1349747720.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 12:55:33.644+11 1113910
  2012-10-09-1349747795.33-demo.wav 40067 CanberraMtAinsli 2012-10-09 12:56:37.796+11 208922
  2012-10-09-1349747800.04-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:56:56.47+11 1378440
  2012-10-09-1349747816.58-demo.wav 40067 CanberraBlackMnt 2012-10-09 12:56:59.09+11 213128
  2012-10-09-1349747856.71-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:57:40.702+11 334180
  2012-10-09-1349747862.39-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:57:46.771+11 368776
  2012-10-09-1349747867.25-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:57:55.444+11 688264
  2012-10-09-1349747875.55-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 12:58:00.772+11 437590
  2012-10-09-1349748017.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:00:20.564+11 247420
  2012-10-09-1349748048.51-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:00:52.645+11 347654
  2012-10-09-1349748054.21-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:00:58.031+11 321672
  2012-10-09-1349748058.29-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:01:03.338+11 424072
  2012-10-09-1349748064.09-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:01:10.851+11 569480
  2012-10-09-1349748072.01-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:01:24.71+11 1067144
  2012-10-09-1349748086.06-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:01:40.072+11 1175070
  2012-10-09-1349748101.42-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:01:47.027+11 471176
  2012-10-09-1349748107.25-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:01:52.044+11 403592
  2012-10-09-1349748112.73-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:01:57.111+11 368590
  2012-10-09-1349748119.14-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:02:02.354+11 270472
  2012-10-09-1349748122.6-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:02:05.262+11 223368
  2012-10-09-1349748223.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:03:46.07+11 255068
  2012-10-09-1349748229.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:04:02.378+11 1067258
  2012-10-09-1349748243.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:04:12.871+11 816152
  2012-10-09-1349748252.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:04:18.652+11 477320
  2012-10-09-1349748259.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:04:25.944+11 552860
  2012-10-09-1349748266.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:04:28.941+11 241800
  2012-10-09-1349748533.7-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:08:58.42+11 395830
  2012-10-09-1349748557.09-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:09:20.626+11 299144
  2012-10-09-1349748560.89-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:09:25.338+11 374920
  2012-10-09-1349748565.87-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:09:34.779+11 749704
  2012-10-09-1349748575.38-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:09:37.607+11 190600
  2012-10-09-1349748578.81-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:09:47.527+11 733320
  2012-10-09-1349748588.36-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:09:53.134+11 403402
  2012-10-09-1349748594.52-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:09:58.709+11 354440
  2012-10-09-1349748621.66-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:10:24.253+11 221320
  2012-10-09-1349748625.22-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:10:31.825+11 555144
  2012-10-09-1349748631.93-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:10:36.346+11 372696
  2012-10-09-1349748637.53-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:10:42.08+11 383402
  2012-10-09-1349748642.86-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-09 13:10:58.895+11 1340708
  2012-10-09-1349748692.12-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 13:11:35.687+11 300070
  2012-10-09-1349748697.02-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 13:11:44.033+11 589960
  2012-10-09-1349748704.14-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 13:11:56.573+11 1042568
  2012-10-09-1349748717.28-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 13:12:01.218+11 331912
  2012-10-09-1349748721.37-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 13:12:04.668+11 278662
  2012-10-09-1349748754.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:12:37.214+11 250812
  2012-10-09-1349748757.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:12:39.648+11 196744
  2012-10-09-1349748959.51-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 13:16:02.001+11 210664
  2012-10-09-1349748963.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:16:09.354+11 483170
  2012-10-09-1349748971.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:16:17.974+11 569480
  2012-10-09-1349748978.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:16:22.685+11 386898
  2012-10-09-1349748983.51-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:16:29.058+11 466016
  2012-10-09-1349748992.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:16:41.39+11 732960
  2012-10-09-1349749003.71-demo.wav 44027 CanberraBlackMnt 2012-10-09 13:16:59.344+11 1310856
  2012-10-09-1349749262.44-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:21:06.373+11 328466
  2012-10-09-1349749266.64-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:21:11.216+11 383112
  2012-10-09-1349749271.42-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:21:15.164+11 315528
  2012-10-09-1349749275.87-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:21:19.927+11 340104
  2012-10-09-1349749280.2-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:21:23.043+11 237704
  2012-10-09-1349749284.36-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:21:28.462+11 341320
  2012-10-09-1349749288.97-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 13:21:36.614+11 643208
  2012-10-09-1349749297.33-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 13:21:40.392+11 256136
  2012-10-09-1349749334.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:22:17.099+11 233422
  2012-10-09-1349749337.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:22:27.009+11 802952
  2012-10-09-1349749347.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:22:30.054+11 247630
  2012-10-09-1349749391.5-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:23:15.452+11 331978
  2012-10-09-1349749395.56-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:23:19.302+11 311432
  2012-10-09-1349749401.88-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:23:29.827+11 667784
  2012-10-09-1349749412.59-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:23:40.496+11 663684
  2012-10-09-1349749421.16-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:23:43.963+11 237532
  2012-10-09-1349749450.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:24:13.339+11 262280
  2012-10-09-1349749454.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:24:16.63+11 213128
  2012-10-09-1349749456.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:24:19.962+11 272520
  2012-10-09-1349749460.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:24:23.641+11 301192
  2012-10-09-1349749550.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:25:53.835+11 243202
  2012-10-09-1349749555.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:26:08.531+11 1113084
  2012-10-09-1349749569.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:26:14.217+11 397448
  2012-10-09-1349749613.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:26:57.714+11 370586
  2012-10-09-1349749618.21-demo.wav 44028 CanberraMtAinsli 2012-10-09 13:27:08.818+11 891016
  2012-10-09-1349749629.94-demo.wav 44028 CanberraMtAinsli 2012-10-09 13:27:14.796+11 407688
  2012-10-09-1349749634.99-demo.wav 44028 CanberraMtAinsli 2012-10-09 13:27:19.479+11 376838
  2012-10-09-1349749640.29-demo.wav 44028 CanberraMtAinsli 2012-10-09 13:27:25.823+11 462274
  2012-10-09-1349749676.27-demo.wav 44028 CanberraMtAinsli 2012-10-09 13:28:01.98+11 477636
  2012-10-09-1349749682.24-demo.wav 44028 CanberraMtAinsli 2012-10-09 13:28:07.942+11 479368
  2012-10-09-1349749719.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:28:41.687+11 213128
  2012-10-09-1349749722.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:28:47.415+11 387846
  2012-10-09-1349749727.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:28:54.183+11 549000
  2012-10-09-1349749746.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:29:11.615+11 403592
  2012-10-09-1349749806.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:30:09.919+11 247000
  2012-10-09-1349749811.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:30:15.695+11 379016
  2012-10-09-1349749815.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:30:21.23+11 456840
  2012-10-09-1349749822.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:30:26.797+11 397196
  2012-10-09-1349749916.19-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:32:01.429+11 440566
  2012-10-09-1349749922.03-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:32:14.018+11 1005704
  2012-10-09-1349749934.22-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:32:23.012+11 739454
  2012-10-09-1349749943.12-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:32:51.093+11 2341000
  2012-10-09-1349749971.2-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:32:59.496+11 696456
  2012-10-09-1349749979.6-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:33:03.394+11 319604
  2012-10-09-1349749983.5-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:33:06.893+11 286196
  2012-10-09-1349749987.51-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:33:13.266+11 483414
  2012-10-09-1349749995.87-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:33:19.256+11 286856
  2012-10-09-1349750000.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:33:33.34+11 1110014
  2012-10-09-1349750013.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:33:38.066+11 387206
  2012-10-09-1349750023.67-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:33:59.982+11 1368200
  2012-10-09-1349750041.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:34:14.135+11 1030280
  2012-10-09-1349750054.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:34:16.736+11 209032
  2012-10-09-1349750058.22-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 13:34:31.048+11 1078188
  2012-10-09-1349750071.22-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 13:34:35.902+11 393352
  2012-10-09-1349750076.14-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 13:34:39.578+11 288194
  2012-10-09-1349750229.51-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:37:11.999+11 210702
  2012-10-09-1349750373.89-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:39:38.757+11 407698
  2012-10-09-1349750405.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:40:08.837+11 313042
  2012-10-09-1349750410.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:40:14.093+11 335212
  2012-10-09-1349750414.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:40:25.379+11 893064
  2012-10-09-1349750425.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:40:29.835+11 366500
  2012-10-09-1349750430.57-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:40:44.722+11 1185600
  2012-10-09-1349750445.25-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:41:00.632+11 1290376
  2012-10-09-1349750461.88-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:41:15.889+11 1173892
  2012-10-09-1349750476.39-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:41:20.889+11 379016
  2012-10-09-1349750482.02-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:41:29.57+11 635438
  2012-10-09-1349750553.44-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 13:42:36.464+11 253422
  2012-10-09-1349750557.82-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 13:42:43.215+11 454792
  2012-10-09-1349750563.37-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 13:42:48.769+11 454792
  2012-10-09-1349750568.93-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 13:42:51.372+11 204936
  2012-10-09-1349750726.54-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:45:29.049+11 211664
  2012-10-09-1349750766.27-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:46:08.748+11 209588
  2012-10-09-1349750770.09-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:46:17.054+11 581630
  2012-10-09-1349750777.2-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:46:20.649+11 290952
  2012-10-09-1349750781.85-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:46:25.234+11 286856
  2012-10-09-1349750860.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:47:42.866+11 212576
  2012-10-09-1349750864.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:47:46.755+11 182408
  2012-10-09-1349750866.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:47:49.621+11 231560
  2012-10-09-1349750931.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:48:53.861+11 214594
  2012-10-09-1349750935.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:48:58.751+11 258184
  2012-10-09-1349750938.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:49:01.942+11 247944
  2012-10-09-1349751055.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:50:57.54+11 213424
  2012-10-09-1349751058.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:51:02.728+11 329364
  2012-10-09-1349751135.92-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:52:19.644+11 315084
  2012-10-09-1349751180.38-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:53:03.746+11 284086
  2012-10-09-1349751184.53-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:53:09.304+11 403592
  2012-10-09-1349751190.62-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:53:15.693+11 428168
  2012-10-09-1349751196.59-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:53:22.642+11 510088
  2012-10-09-1349751331.14-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 13:55:33.636+11 208512
  2012-10-09-1349751336.81-demo.wav 44028 CanberraMtAinsli 2012-10-09 13:55:45.929+11 766446
  2012-10-09-1349751348.13-demo.wav 44028 CanberraMtAinsli 2012-10-09 13:55:50.613+11 209032
  2012-10-09-1349751351.13-demo.wav 44028 CanberraMtAinsli 2012-10-09 13:55:55.104+11 333902
  2012-10-09-1349751371.3-demo.wav 44028 CanberraMtAinsli 2012-10-09 13:56:14.638+11 280712
  2012-10-09-1349751375.84-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:56:37.273+11 1800904
  2012-10-09-1349751398.28-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:56:49.088+11 903798
  2012-10-09-1349751409.8-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:57:01.174+11 956552
  2012-10-09-1349751424.03-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:57:17.238+11 1110152
  2012-10-09-1349751476.7-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:57:59.967+11 270608
  2012-10-09-1349751480.58-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:58:04.202+11 305288
  2012-10-09-1349751484.68-demo.wav 40067 CanberraBlackMnt 2012-10-09 13:58:10.948+11 526400
  2012-10-09-1349751491.61-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:58:23.72+11 1017992
  2012-10-09-1349751504.93-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:58:31.297+11 536712
  2012-10-09-1349751511.54-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:58:37.58+11 507994
  2012-10-09-1349751518.47-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:58:48.626+11 854566
  2012-10-09-1349751530.13-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:58:55.18+11 424072
  2012-10-09-1349751535.44-demo.wav 40067 CanberraMtAinsli 2012-10-09 13:58:58.935+11 292468
  2012-10-09-1349751543.63-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:59:24.589+11 1763086
  2012-10-09-1349751564.83-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:59:28.65+11 317576
  2012-10-09-1349751570.11-demo.wav 44036 CanberraBlackMnt 2012-10-09 13:59:34.883+11 398334
  2012-10-09-1349751575.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:59:43.643+11 651134
  2012-10-09-1349751583.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:59:48.047+11 348296
  2012-10-09-1349751588.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:59:56.43+11 681796
  2012-10-09-1349751596.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 13:59:59.812+11 261882
  2012-10-09-1349751737.51-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 14:02:20.456+11 244384
  2012-10-09-1349751763.06-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:02:45.676+11 221320
  2012-10-09-1349751765.94-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:02:56.419+11 880776
  2012-10-09-1349751777.02-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:03:03.724+11 563024
  2012-10-09-1349751942.46-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:05:46.298+11 322396
  2012-10-09-1349751947.67-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:05:58.307+11 893064
  2012-10-09-1349751959.0-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:06:09.153+11 852104
  2012-10-09-1349751969.3-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:06:13.561+11 358192
  2012-10-09-1349752181.61-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 14:09:44.842+11 268754
  2012-10-09-1349752185.96-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 14:09:51.715+11 483464
  2012-10-09-1349752192.62-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 14:09:56.205+11 299144
  2012-10-09-1349752217.33-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:10:19.917+11 217224
  2012-10-09-1349752242.61-demo.wav i1045974 CanberraBlackMnt 2012-10-09 14:10:47.139+11 380732
  2012-10-09-1349752258.68-demo.wav i1045974 CanberraBlackMnt 2012-10-09 14:11:05.522+11 573576
  2012-10-09-1349752267.59-demo.wav i1045974 CanberraBlackMnt 2012-10-09 14:11:28.492+11 1757320
  2012-10-09-1349752288.67-demo.wav i1045974 CanberraBlackMnt 2012-10-09 14:11:35.793+11 598152
  2012-10-09-1349752295.92-demo.wav i1045974 CanberraBlackMnt 2012-10-09 14:11:39.834+11 329812
  2012-10-09-1349752301.47-demo.wav i1045974 CanberraBlackMnt 2012-10-09 14:11:48.797+11 616466
  2012-10-09-1349752312.72-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:12:10.986+11 1529000
  2012-10-09-1349752418.91-demo.wav 44028 CanberraBlackMnt 2012-10-09 14:13:43.429+11 379254
  2012-10-09-1349752424.21-demo.wav 44028 CanberraBlackMnt 2012-10-09 14:13:47.949+11 315528
  2012-10-09-1349752557.6-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:16:02.886+11 443172
  2012-10-09-1349752563.14-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:16:05.489+11 200840
  2012-10-09-1349752620.65-demo.wav 44036 CanberraMtAinsli 2012-10-09 14:17:04.125+11 291172
  2012-10-09-1349752624.31-demo.wav 44036 CanberraMtAinsli 2012-10-09 14:17:06.618+11 194696
  2012-10-09-1349752627.57-demo.wav 44036 CanberraMtAinsli 2012-10-09 14:17:11.827+11 356404
  2012-10-09-1349752632.25-demo.wav 44036 CanberraMtAinsli 2012-10-09 14:17:14.386+11 180360
  2012-10-09-1349752634.7-demo.wav 44036 CanberraMtAinsli 2012-10-09 14:17:24.343+11 811144
  2012-10-09-1349752644.56-demo.wav 44036 CanberraMtAinsli 2012-10-09 14:17:28.18+11 303050
  2012-10-09-1349752648.36-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:17:51.068+11 1906790
  2012-10-09-1349752671.99-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:17:57.65+11 475202
  2012-10-09-1349752678.12-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:18:01.941+11 323520
  2012-10-09-1349752682.49-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-09 14:18:09.964+11 626824
  2012-10-09-1349752690.19-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-09 14:18:12.664+11 204936
  2012-10-09-1349752692.93-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-09 14:18:20.938+11 673928
  2012-10-09-1349752794.03-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:19:57.747+11 308354
  2012-10-09-1349752834.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 14:20:36.562+11 209894
  2012-10-09-1349752837.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 14:20:40.938+11 272222
  2012-10-09-1349752841.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 14:20:48.852+11 588978
  2012-10-09-1349752849.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 14:20:55.064+11 475272
  2012-10-09-1349752855.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 14:20:57.419+11 180360
  2012-10-09-1349753083.76-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 14:24:46.288+11 209822
  2012-10-09-1349753090.17-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 14:24:55.27+11 428168
  2012-10-09-1349753171.49-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 14:26:16.237+11 398362
  2012-10-09-1349753178.22-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 14:26:22.572+11 363626
  2012-10-09-1349753183.68-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 14:26:31.212+11 630980
  2012-10-09-1349753191.32-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 14:26:34.005+11 227406
  2012-10-09-1349753310.56-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:28:37.649+11 594660
  2012-10-09-1349753318.15-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:28:42.116+11 333960
  2012-10-09-1349753323.98-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:28:47.014+11 256070
  2012-10-09-1349753327.44-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 14:29:02.17+11 1233032
  2012-10-09-1349753342.51-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 14:29:06.961+11 374920
  2012-10-09-1349753373.44-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 14:29:37.23+11 319624
  2012-10-09-1349753377.78-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:29:49.53+11 987272
  2012-10-09-1349753391.77-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:29:57.486+11 481416
  2012-10-09-1349753398.61-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:30:07.949+11 784242
  2012-10-09-1349753408.5-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:30:14.786+11 528520
  2012-10-09-1349753414.89-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:30:19.387+11 379016
  2012-10-09-1349753420.91-demo.wav 44028 CanberraMtAinsli 2012-10-09 14:30:31.671+11 903304
  2012-10-09-1349753431.78-demo.wav 44028 CanberraMtAinsli 2012-10-09 14:30:34.45+11 227464
  2012-10-09-1349753434.56-demo.wav 44028 CanberraMtAinsli 2012-10-09 14:30:36.702+11 182408
  2012-10-09-1349753437.67-demo.wav 44028 CanberraMtAinsli 2012-10-09 14:30:41.975+11 362632
  2012-10-09-1349753444.6-demo.wav 44028 CanberraMtAinsli 2012-10-09 14:30:47.965+11 284808
  2012-10-09-1349753449.55-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:31:09.759+11 1695874
  2012-10-09-1349753469.97-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:31:19.031+11 761992
  2012-10-09-1349753479.28-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:31:21.652+11 198792
  2012-10-09-1349753482.14-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 14:31:33.664+11 964744
  2012-10-09-1349753495.03-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 14:31:39.034+11 333920
  2012-10-09-1349753508.49-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 14:31:57.776+11 778622
  2012-10-09-1349753519.12-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:32:05.832+11 565384
  2012-10-09-1349753526.0-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:32:12.593+11 555144
  2012-10-09-1349753558.64-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:32:42.054+11 288904
  2012-10-09-1349753564.49-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 14:33:05.047+11 1724224
  2012-10-09-1349753585.76-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 14:33:10.624+11 407688
  2012-10-09-1349753592.72-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:33:20.343+11 639702
  2012-10-09-1349753601.28-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:33:32.891+11 974982
  2012-10-09-1349753613.0-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:33:57.586+11 2058164
  2012-10-09-1349753637.69-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:34:01.181+11 295022
  2012-10-09-1349753641.75-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:34:07.013+11 442480
  2012-10-09-1349753647.12-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:34:24.393+11 1448072
  2012-10-09-1349753664.5-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:34:27.524+11 256124
  2012-10-09-1349753670.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 14:34:42.603+11 1043088
  2012-10-09-1349753683.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 14:34:50.185+11 569714
  2012-10-09-1349753805.21-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 14:36:49.476+11 357902
  2012-10-09-1349753810.88-demo.wav 44036 CanberraMtAinsli 2012-10-09 14:37:00.369+11 793350
  2012-10-09-1349753821.73-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:37:08.017+11 525422
  2012-10-09-1349753829.01-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:37:14.482+11 459478
  2012-10-09-1349753835.26-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:37:19.786+11 381064
  2012-10-09-1349753840.8-demo.wav 44028 CanberraBlackMnt 2012-10-09 14:37:35.074+11 1195390
  2012-10-09-1349753857.55-demo.wav 44028 CanberraMtAinsli 2012-10-09 14:37:43.386+11 491656
  2012-10-09-1349753864.48-demo.wav 44028 CanberraMtAinsli 2012-10-09 14:37:51.81+11 616584
  2012-10-09-1349753872.08-demo.wav 44028 CanberraMtAinsli 2012-10-09 14:37:56.894+11 405280
  2012-10-09-1349753884.19-demo.wav 44028 CanberraBlackMnt 2012-10-09 14:38:09.472+11 440146
  2012-10-09-1349753890.03-demo.wav 44028 CanberraMtAinsli 2012-10-09 14:38:17.017+11 587912
  2012-10-09-1349753898.78-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:38:26.177+11 620038
  2012-10-09-1349753906.38-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:38:28.91+11 211080
  2012-10-09-1349753910.14-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:38:34.519+11 366524
  2012-10-09-1349753915.06-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:38:40.513+11 456840
  2012-10-09-1349753921.14-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:38:44.573+11 286856
  2012-10-09-1349753925.08-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:38:54.948+11 829576
  2012-10-09-1349753935.21-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:38:59.486+11 356488
  2012-10-09-1349753939.87-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:39:06.44+11 551048
  2012-10-09-1349754032.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 14:40:35.172+11 240538
  2012-10-09-1349754036.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 14:40:40.726+11 321628
  2012-10-09-1349754041.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 14:40:44.224+11 272520
  2012-10-09-1349754086.18-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:41:28.649+11 208878
  2012-10-09-1349754241.09-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 14:44:03.809+11 229360
  2012-10-09-1349754245.21-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:44:15.82+11 891016
  2012-10-09-1349754255.97-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:44:19.446+11 293000
  2012-10-09-1349754259.55-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:44:21.955+11 204936
  2012-10-09-1349754262.75-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 14:44:40.577+11 1486692
  2012-10-09-1349754280.87-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 14:44:48.387+11 630920
  2012-10-09-1349754332.22-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:45:35.445+11 266832
  2012-10-09-1349754335.7-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:45:39.296+11 301192
  2012-10-09-1349754343.94-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:45:46.889+11 247920
  2012-10-09-1349754347.81-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:45:51.731+11 329864
  2012-10-09-1349754353.06-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:45:57.659+11 389216
  2012-10-09-1349754358.13-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:46:06.099+11 667784
  2012-10-09-1349754366.53-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:46:12.267+11 476576
  2012-10-09-1349754372.86-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:46:17.653+11 401544
  2012-10-09-1349754378.46-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:46:23.952+11 462342
  2012-10-09-1349754385.23-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:46:27.915+11 225416
  2012-10-09-1349754388.28-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:46:31.749+11 290952
  2012-10-09-1349754392.0-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:46:34.851+11 239034
  2012-10-09-1349754395.02-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:46:56.139+11 1773698
  2012-10-09-1349754416.38-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:46:59.463+11 258184
  2012-10-09-1349754422.91-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:47:07.406+11 376442
  2012-10-09-1349754428.35-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:47:11.399+11 255996
  2012-10-09-1349754431.95-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:47:14.227+11 194690
  2012-10-09-1349754434.66-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:47:17.438+11 235648
  2012-10-09-1349754543.44-demo.wav 44028 CanberraBlackMnt 2012-10-09 14:49:06.512+11 258216
  2012-10-09-1349754546.85-demo.wav 44028 CanberraBlackMnt 2012-10-09 14:49:09.259+11 204936
  2012-10-09-1349754549.97-demo.wav 44028 CanberraBlackMnt 2012-10-09 14:49:18.238+11 694408
  2012-10-09-1349754665.06-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:51:10.729+11 475632
  2012-10-09-1349754761.82-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 14:52:44.608+11 231822
  2012-10-09-1349754766.07-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 14:52:48.774+11 225416
  2012-10-09-1349754769.38-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 14:52:58.874+11 798856
  2012-10-09-1349754779.33-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 14:53:04.274+11 415846
  2012-10-09-1349754789.38-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:53:27.611+11 1532040
  2012-10-09-1349754876.6-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:54:39.866+11 275836
  2012-10-09-1349754879.97-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:54:43.524+11 301192
  2012-10-09-1349754886.14-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:54:49.036+11 245896
  2012-10-09-1349754921.68-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:55:24.178+11 210322
  2012-10-09-1349754926.77-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:55:32.372+11 471176
  2012-10-09-1349754959.38-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:56:01.863+11 209854
  2012-10-09-1349754962.8-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:56:10.424+11 636666
  2012-10-09-1349754971.67-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:56:24.881+11 1106146
  2012-10-09-1349754985.59-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:56:34.85+11 778376
  2012-10-09-1349754994.96-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:56:46.526+11 970888
  2012-10-09-1349755007.61-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:56:52.277+11 391046
  2012-10-09-1349755016.29-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:56:58.588+11 195906
  2012-10-09-1349755019.39-demo.wav 44036 CanberraMtAinsli 2012-10-09 14:57:08.268+11 745608
  2012-10-09-1349755029.61-demo.wav 44036 CanberraMtAinsli 2012-10-09 14:57:13.843+11 356488
  2012-10-09-1349755033.95-demo.wav 44036 CanberraMtAinsli 2012-10-09 14:57:18.252+11 362630
  2012-10-09-1349755048.0-demo.wav 44036 CanberraMtAinsli 2012-10-09 14:57:30.775+11 235656
  2012-10-09-1349755051.14-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:57:45.792+11 1228936
  2012-10-09-1349755068.96-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:57:56.335+11 620680
  2012-10-09-1349755076.44-demo.wav 40067 CanberraMtAinsli 2012-10-09 14:58:01.607+11 436360
  2012-10-09-1349755082.02-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:58:10.489+11 710792
  2012-10-09-1349755090.78-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:58:15.892+11 430216
  2012-10-09-1349755096.15-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:58:29.031+11 1083444
  2012-10-09-1349755109.44-demo.wav 40067 CanberraBlackMnt 2012-10-09 14:58:36.992+11 635016
  2012-10-09-1349755117.85-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:58:47.302+11 794760
  2012-10-09-1349755127.87-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:58:50.434+11 213128
  2012-10-09-1349755132.0-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:58:58.379+11 536696
  2012-10-09-1349755140.03-demo.wav 44036 CanberraBlackMnt 2012-10-09 14:59:04.293+11 358536
  2012-10-09-1349755144.9-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:59:23.265+11 1544328
  2012-10-09-1349755164.65-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:59:37.614+11 1089438
  2012-10-09-1349755178.1-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 14:59:50.84+11 1071218
  2012-10-09-1349755191.1-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:00:11.444+11 1707496
  2012-10-09-1349755214.38-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:00:18.285+11 327816
  2012-10-09-1349755219.19-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:00:21.786+11 219204
  2012-10-09-1349755222.47-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:00:30.08+11 641160
  2012-10-09-1349755232.51-demo.wav 44036 CanberraBlackMnt 2012-10-09 15:00:39.449+11 583816
  2012-10-09-1349755239.71-demo.wav 44036 CanberraBlackMnt 2012-10-09 15:00:42.853+11 264328
  2012-10-09-1349755243.35-demo.wav 44036 CanberraBlackMnt 2012-10-09 15:00:45.761+11 202888
  2012-10-09-1349755246.2-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:00:59.396+11 1106056
  2012-10-09-1349755287.23-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:01:29.986+11 233608
  2012-10-09-1349755290.76-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:01:37.366+11 555144
  2012-10-09-1349755298.7-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:01:43.352+11 391300
  2012-10-09-1349755325.68-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:02:09.343+11 307834
  2012-10-09-1349755329.45-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:02:12.761+11 280712
  2012-10-09-1349755333.38-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:02:15.699+11 196744
  2012-10-09-1349755336.6-demo.wav 44036 CanberraBlackMnt 2012-10-09 15:02:23.958+11 618624
  2012-10-09-1349755374.84-demo.wav 44028 CanberraMtAinsli 2012-10-09 15:02:59.933+11 423382
  2012-10-09-1349755381.94-demo.wav 44028 CanberraMtAinsli 2012-10-09 15:03:04.454+11 213128
  2012-10-09-1349755385.35-demo.wav 44028 CanberraMtAinsli 2012-10-09 15:03:22.17+11 1408930
  2012-10-09-1349755409.02-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-09 15:03:33.368+11 366728
  2012-10-09-1349755419.15-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-09 15:03:42.914+11 317294
  2012-10-09-1349755423.02-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-09 15:03:46.151+11 264328
  2012-10-09-1349755484.14-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-09 15:04:55.854+11 982360
  2012-10-09-1349755496.12-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-09 15:05:01.159+11 419976
  2012-10-09-1349755501.73-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-09 15:05:04.681+11 243848
  2012-10-09-1349755505.89-demo.wav 44028 CanberraBlackMnt 2012-10-09 15:05:16.7+11 907400
  2012-10-09-1349755516.96-demo.wav 44028 CanberraBlackMnt 2012-10-09 15:05:19.882+11 245896
  2012-10-09-1349755520.76-demo.wav 44028 CanberraBlackMnt 2012-10-09 15:05:24.933+11 350318
  2012-10-09-1349755528.93-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:05:46.639+11 1486128
  2012-10-09-1349755607.15-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:06:49.679+11 208532
  2012-10-09-1349755746.02-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:09:08.689+11 222982
  2012-10-09-1349755750.92-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:09:18.214+11 610188
  2012-10-09-1349755792.02-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:09:55.354+11 272712
  2012-10-09-1349755796.43-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:10:14.021+11 1475806
  2012-10-09-1349755815.17-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:10:25.883+11 900644
  2012-10-09-1349755826.78-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:10:30.573+11 316470
  2012-10-09-1349755918.05-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:12:00.558+11 209316
  2012-10-09-1349755954.5-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 15:12:37.015+11 209518
  2012-10-09-1349755960.37-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:12:55.652+11 1284232
  2012-10-09-1349755977.52-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:12:59.885+11 194696
  2012-10-09-1349755981.12-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:13:09.446+11 696480
  2012-10-09-1349755989.8-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:13:12.69+11 241794
  2012-10-09-1349755993.67-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:13:16.27+11 219272
  2012-10-09-1349755996.77-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 15:13:22.398+11 473224
  2012-10-09-1349756030.84-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:13:53.677+11 233608
  2012-10-09-1349756034.15-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:13:57.85+11 311432
  2012-10-09-1349756038.08-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:14:01.687+11 303240
  2012-10-09-1349756042.94-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:14:12.984+11 841834
  2012-10-09-1349756303.06-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:18:27.162+11 343944
  2012-10-09-1349756307.46-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:18:30.165+11 225416
  2012-10-09-1349756310.67-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:18:34.305+11 307336
  2012-10-09-1349756315.21-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:18:37.917+11 227458
  2012-10-09-1349756319.08-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:18:43.736+11 388798
  2012-10-09-1349756323.99-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:18:46.406+11 202888
  2012-10-09-1349756374.09-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:19:39.235+11 430546
  2012-10-09-1349756379.51-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:19:42.203+11 225416
  2012-10-09-1349756454.11-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 15:20:57.153+11 255114
  2012-10-09-1349756458.57-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 15:21:06.601+11 673512
  2012-10-09-1349756466.88-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 15:21:10.843+11 329864
  2012-10-09-1349756471.17-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 15:21:15.52+11 366728
  2012-10-09-1349756477.45-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:21:37.211+11 1652120
  2012-10-09-1349756498.31-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:21:44.307+11 499462
  2012-10-09-1349756505.1-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:21:48.023+11 245896
  2012-10-09-1349756508.98-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:21:57.005+11 673928
  2012-10-09-1349756517.54-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:22:00.697+11 264188
  2012-10-09-1349756521.26-demo.wav 44036 CanberraBlackMnt 2012-10-09 15:22:10.479+11 767990
  2012-10-09-1349756533.08-demo.wav 44036 CanberraBlackMnt 2012-10-09 15:22:20.549+11 626802
  2012-10-09-1349756606.02-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:23:30.527+11 378480
  2012-10-09-1349756611.68-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:23:36.081+11 364890
  2012-10-09-1349756616.34-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:23:49.01+11 1064542
  2012-10-09-1349756629.26-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:24:12.38+11 1943630
  2012-10-09-1349756652.62-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:24:15.925+11 276616
  2012-10-09-1349756674.05-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:24:39.529+11 455950
  2012-10-09-1349756680.37-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:24:43.284+11 243848
  2012-10-09-1349756683.8-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:24:48.075+11 356488
  2012-10-09-1349756689.37-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:24:56.542+11 602248
  2012-10-09-1349756696.79-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:25:00.304+11 293000
  2012-10-09-1349756701.02-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:25:03.628+11 219272
  2012-10-09-1349756703.99-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:25:07.949+11 331768
  2012-10-09-1349756808.83-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:26:51.716+11 240594
  2012-10-09-1349756812.92-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:26:56.797+11 321090
  2012-10-09-1349756817.84-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:27:03.857+11 503944
  2012-10-09-1349756824.18-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:27:13.808+11 811144
  2012-10-09-1349756863.67-demo.wav 44028 CanberraBlackMnt 2012-10-09 15:27:47.325+11 306904
  2012-10-09-1349756869.18-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 15:28:07.067+11 1503368
  2012-10-09-1349756887.24-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 15:28:09.735+11 209032
  2012-10-09-1349756890.73-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 15:28:14.761+11 334752
  2012-10-09-1349756895.26-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 15:28:25.789+11 876584
  2012-10-09-1349756906.54-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 15:28:32.597+11 507212
  2012-10-09-1349756929.25-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 15:28:53.687+11 368776
  2012-10-09-1349756933.89-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 15:28:56.522+11 218830
  2012-10-09-1349757117.65-demo.wav 44028 CanberraBlackMnt 2012-10-09 15:32:01.4+11 314756
  2012-10-09-1349757123.14-demo.wav 44028 CanberraBlackMnt 2012-10-09 15:32:05.843+11 227464
  2012-10-09-1349757126.27-demo.wav 44028 CanberraBlackMnt 2012-10-09 15:32:10.701+11 370824
  2012-10-09-1349757130.96-demo.wav 44028 CanberraBlackMnt 2012-10-09 15:32:19.589+11 726332
  2012-10-09-1349757147.33-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:32:38.687+11 954504
  2012-10-09-1349757207.27-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:33:30.762+11 291422
  2012-10-09-1349757230.81-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:33:54.003+11 270472
  2012-10-09-1349757235.63-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:34:11.68+11 1349768
  2012-10-09-1349757252.24-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:34:19.576+11 618632
  2012-10-09-1349757259.83-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:34:27.425+11 639102
  2012-10-09-1349757279.15-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:34:44.463+11 442504
  2012-10-09-1349757284.71-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:34:53.205+11 712838
  2012-10-09-1349757540.25-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:39:03.785+11 294208
  2012-10-09-1349757545.07-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:39:11.705+11 557192
  2012-10-09-1349757570.07-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:39:33.29+11 270472
  2012-10-09-1349757573.75-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:39:43.352+11 805000
  2012-10-09-1349757584.27-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:39:50.191+11 495752
  2012-10-09-1349757590.56-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:39:53.53+11 247944
  2012-10-09-1349757594.46-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:39:58.437+11 333510
  2012-10-09-1349757728.81-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:42:13.517+11 394590
  2012-10-09-1349757733.91-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:42:17.081+11 266090
  2012-10-09-1349757738.19-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:42:28.759+11 888486
  2012-10-09-1349757788.78-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:43:11.692+11 241800
  2012-10-09-1349757871.35-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:44:35.707+11 363872
  2012-10-09-1349757876.82-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:44:40.07+11 270334
  2012-10-09-1349757880.3-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:45:14.674+11 2887816
  2012-10-09-1349757914.94-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:45:17.865+11 245880
  2012-10-09-1349757962.05-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 15:46:07.078+11 422024
  2012-10-09-1349757968.51-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:46:13.994+11 458516
  2012-10-09-1349757974.44-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:46:18.318+11 321672
  2012-10-09-1349757978.56-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:46:25.361+11 571528
  2012-10-09-1349758001.24-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-09 15:46:53.771+11 1052808
  2012-10-09-1349758015.69-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:47:10.122+11 1211734
  2012-10-09-1349758031.14-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:47:14.821+11 304690
  2012-10-09-1349758035.35-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:47:18.399+11 256136
  2012-10-09-1349758063.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 15:47:48.955+11 450696
  2012-10-09-1349758071.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 15:47:54.992+11 315528
  2012-10-09-1349758075.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 15:48:01.281+11 479368
  2012-10-09-1349758082.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 15:48:12.944+11 903304
  2012-10-09-1349758093.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 15:48:17.078+11 299144
  2012-10-09-1349758097.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 15:48:21.082+11 288904
  2012-10-09-1349758124.45-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:48:46.992+11 213128
  2012-10-09-1349758181.6-demo.wav 40067 CanberraBlackMnt 2012-10-09 15:49:44.137+11 212374
  2012-10-09-1349758206.27-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 15:50:10.955+11 392336
  2012-10-09-1349758211.61-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 15:50:16.005+11 366728
  2012-10-09-1349758217.01-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 15:50:26.634+11 807048
  2012-10-09-1349758233.33-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 15:50:36.623+11 276578
  2012-10-09-1349758237.95-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:50:53.959+11 1345490
  2012-10-09-1349758254.2-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:50:56.896+11 227464
  2012-10-09-1349758257.13-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:51:14.429+11 1454142
  2012-10-09-1349758274.86-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 15:51:20.995+11 516232
  2012-10-09-1349758281.46-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 15:51:26.442+11 417928
  2012-10-09-1349758286.79-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 15:51:30.372+11 301192
  2012-10-09-1349758290.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 15:51:41.114+11 858248
  2012-10-09-1349758301.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 15:51:44.129+11 227464
  2012-10-09-1349758305.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 15:51:51.363+11 493848
  2012-10-09-1349758311.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 15:51:54.264+11 229512
  2012-10-09-1349758314.47-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 15:52:08.176+11 1153160
  2012-10-09-1349758328.4-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 15:52:17.224+11 741512
  2012-10-09-1349758360.8-demo.wav 40067 CanberraMtAinsli 2012-10-09 15:52:43.278+11 206984
  2012-10-09-1349758574.3-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-09 15:56:16.846+11 210390
  2012-10-09-1349758688.37-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:58:15.217+11 574802
  2012-10-09-1349758695.63-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:58:28.731+11 1099912
  2012-10-09-1349758709.43-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:58:36.269+11 573576
  2012-10-09-1349758718.04-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:58:49.095+11 923784
  2012-10-09-1349758729.84-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:58:54.513+11 393352
  2012-10-09-1349758735.81-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:59:05.505+11 815240
  2012-10-09-1349758746.38-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:59:10.57+11 348580
  2012-10-09-1349758750.83-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 15:59:18.855+11 671760
  2012-10-09-1349758759.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:00:07.026+11 4003976
  2012-10-09-1349758807.94-demo.wav 44028 CanberraBlackMnt 2012-10-09 16:00:14.809+11 574706
  2012-10-09-1349758815.1-demo.wav 44028 CanberraBlackMnt 2012-10-09 16:00:18.278+11 266376
  2012-10-09-1349758818.69-demo.wav 44028 CanberraBlackMnt 2012-10-09 16:00:22.801+11 345448
  2012-10-09-1349758823.09-demo.wav 44028 CanberraBlackMnt 2012-10-09 16:00:30.633+11 635016
  2012-10-09-1349758832.16-demo.wav 44028 CanberraBlackMnt 2012-10-09 16:00:34.9+11 231560
  2012-10-09-1349758835.3-demo.wav 44028 CanberraBlackMnt 2012-10-09 16:00:40.527+11 437846
  2012-10-09-1349758903.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:01:45.536+11 210438
  2012-10-09-1349758907.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:01:51.067+11 288904
  2012-10-09-1349758978.11-demo.wav 44028 CanberraMtAinsli 2012-10-09 16:03:05.059+11 584082
  2012-10-09-1349758985.32-demo.wav 44028 CanberraMtAinsli 2012-10-09 16:03:09.07+11 311432
  2012-10-09-1349758989.47-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:03:52.176+11 3590280
  2012-10-09-1349759033.23-demo.wav 44036 CanberraBlackMnt 2012-10-09 16:04:08.159+11 1252994
  2012-10-09-1349759048.95-demo.wav 44036 CanberraBlackMnt 2012-10-09 16:04:13.976+11 422024
  2012-10-09-1349759056.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:04:25.294+11 778376
  2012-10-09-1349759066.22-demo.wav 44036 CanberraBlackMnt 2012-10-09 16:04:32.774+11 551048
  2012-10-09-1349759073.03-demo.wav 44036 CanberraBlackMnt 2012-10-09 16:04:36.145+11 260232
  2012-10-09-1349759078.66-demo.wav 44036 CanberraBlackMnt 2012-10-09 16:04:53.12+11 1214600
  2012-10-09-1349759093.52-demo.wav 44036 CanberraBlackMnt 2012-10-09 16:04:59.563+11 505992
  2012-10-09-1349759100.83-demo.wav 44036 CanberraBlackMnt 2012-10-09 16:05:04.437+11 303240
  2012-10-09-1349759105.23-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:05:13.122+11 661640
  2012-10-09-1349759114.01-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:05:16.406+11 200840
  2012-10-09-1349759143.34-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 16:05:48.093+11 399496
  2012-10-09-1349759149.59-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 16:05:54.949+11 450696
  2012-10-09-1349759155.21-demo.wav 40067 CanberraBlackMnt 2012-10-09 16:06:30.962+11 3004552
  2012-10-09-1349759192.36-demo.wav 40067 CanberraBlackMnt 2012-10-09 16:06:36.78+11 370824
  2012-10-09-1349759232.42-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 16:07:17.403+11 417184
  2012-10-09-1349759238.1-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 16:07:22.271+11 350344
  2012-10-09-1349759242.48-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 16:07:29.527+11 591370
  2012-10-09-1349759249.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:07:43.609+11 1161352
  2012-10-09-1349759264.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:07:46.972+11 227464
  2012-10-09-1349759267.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:07:50.679+11 288904
  2012-10-09-1349759271.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:07:55.634+11 376968
  2012-10-09-1349759311.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:08:34.37+11 278588
  2012-10-09-1349759315.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:08:39.659+11 330772
  2012-10-09-1349759320.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:08:42.47+11 206984
  2012-10-09-1349759323.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:08:48.321+11 426120
  2012-10-09-1349759350.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:09:13.982+11 254088
  2012-10-09-1349759355.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:09:21.557+11 542604
  2012-10-09-1349759364.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:09:30.536+11 546952
  2012-10-09-1349759370.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:09:33.759+11 245896
  2012-10-09-1349759374.64-demo.wav 40067 CanberraBlackMnt 2012-10-09 16:09:57.688+11 1934228
  2012-10-09-1349759398.16-demo.wav 40067 CanberraBlackMnt 2012-10-09 16:10:01.188+11 256136
  2012-10-09-1349759401.93-demo.wav 40067 CanberraBlackMnt 2012-10-09 16:10:06.493+11 385160
  2012-10-09-1349759419.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:10:40.314+11 1720228
  2012-10-09-1349759440.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:10:45.491+11 411712
  2012-10-09-1349759445.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:11:08.858+11 1939592
  2012-10-09-1349759469.8-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 16:11:24.617+11 1242436
  2012-10-09-1349759485.32-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 16:11:28.181+11 239752
  2012-10-09-1349759489.06-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 16:11:48.28+11 1616008
  2012-10-09-1349759510.2-demo.wav 10065 OPS8 CanberraMtAinsli 2012-10-09 16:11:54.568+11 366716
  2012-10-09-1349759531.61-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 16:12:21.214+11 807048
  2012-10-09-1349759542.29-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 16:12:27.286+11 418076
  2012-10-09-1349759548.04-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 16:12:36.231+11 688264
  2012-10-09-1349759594.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:13:17.386+11 231560
  2012-10-09-1349759648.47-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 16:14:13.327+11 405826
  2012-10-09-1349759654.51-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 16:14:18.293+11 315778
  2012-10-09-1349759716.02-demo.wav 40067 CanberraBlackMnt 2012-10-09 16:15:21.749+11 480412
  2012-10-09-1349759722.3-demo.wav 40067 CanberraBlackMnt 2012-10-09 16:15:25.057+11 231560
  2012-10-09-1349759821.88-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 16:17:04.419+11 210062
  2012-10-09-1349759889.13-demo.wav 40067 CanberraMtAinsli 2012-10-09 16:18:11.987+11 238434
  2012-10-09-1349759915.23-demo.wav 40067 CanberraMtAinsli 2012-10-09 16:18:39.432+11 351366
  2012-10-09-1349759920.71-demo.wav 40067 CanberraBlackMnt 2012-10-09 16:18:46.418+11 478914
  2012-10-09-1349759927.42-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 16:18:54.473+11 589626
  2012-10-09-1349759934.75-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 16:18:58.194+11 288904
  2012-10-09-1349759938.62-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 16:19:02.013+11 286856
  2012-10-09-1349760228.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:23:51.079+11 209528
  2012-10-09-1349760278.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:24:43.527+11 409346
  2012-10-09-1349760283.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:24:47.103+11 268424
  2012-10-09-1349760287.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:24:51.343+11 301076
  2012-10-09-1349760317.52-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:25:23.327+11 487108
  2012-10-09-1349760352.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:25:55.594+11 244604
  2012-10-09-1349760357.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:26:04.377+11 585864
  2012-10-09-1349760365.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:26:17.732+11 1033856
  2012-10-09-1349760378.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:26:27.191+11 707256
  2012-10-09-1349760514.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:28:40.229+11 522164
  2012-10-09-1349760521.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:28:47.293+11 506904
  2012-10-09-1349760550.72-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:29:14.29+11 299144
  2012-10-09-1349760555.51-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:29:20.888+11 447272
  2012-10-09-1349760583.31-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:29:59.044+11 1323126
  2012-10-09-1349760599.95-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:30:19.137+11 1612178
  2012-10-09-1349760641.28-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:30:46.359+11 426120
  2012-10-09-1349760647.45-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 16:30:53.927+11 540958
  2012-10-09-1349760654.81-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:31:07.083+11 1027426
  2012-10-09-1349760668.58-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:31:12.423+11 320180
  2012-10-09-1349760673.26-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:31:23.451+11 855976
  2012-10-09-1349760684.29-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:31:27.749+11 289484
  2012-10-09-1349760688.27-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:31:44.325+11 1349768
  2012-10-09-1349760851.74-demo.wav 40067 CanberraBlackMnt 2012-10-09 16:34:14.292+11 209998
  2012-10-09-1349760857.88-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:34:24.343+11 542856
  2012-10-09-1349760886.41-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:34:52.119+11 477842
  2012-10-09-1349760892.93-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:34:56.545+11 303240
  2012-10-09-1349760898.27-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:35:13.433+11 1276040
  2012-10-09-1349760914.88-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:35:17.618+11 227464
  2012-10-09-1349760918.95-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:35:23.259+11 360584
  2012-10-09-1349760923.67-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:35:26.548+11 241336
  2012-10-09-1349761076.32-demo.wav 10301 CanberraBlackMnt 2012-10-09 16:37:58.83+11 209938
  2012-10-09-1349761079.93-demo.wav 10301 CanberraBlackMnt 2012-10-09 16:38:11.601+11 979450
  2012-10-09-1349761172.35-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 16:39:36.304+11 330898
  2012-10-09-1349761176.61-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 16:39:41.54+11 413832
  2012-10-09-1349761200.8-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 16:40:07.785+11 585286
  2012-10-09-1349761208.78-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 16:40:21.485+11 1067132
  2012-10-09-1349761222.26-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 16:40:27.123+11 407464
  2012-10-09-1349761227.3-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 16:41:02.593+11 2963592
  2012-10-09-1349761262.91-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 16:41:06.483+11 299144
  2012-10-09-1349761280.03-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 16:41:27.178+11 600200
  2012-10-09-1349761288.25-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 16:41:30.916+11 223368
  2012-10-09-1349761291.08-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 16:41:34.99+11 327816
  2012-10-09-1349761305.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:41:53.044+11 606344
  2012-10-09-1349761313.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:41:56.492+11 260232
  2012-10-09-1349761317.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:42:02.975+11 423334
  2012-10-09-1349761402.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:43:27.009+11 410020
  2012-10-09-1349761409.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:43:38.414+11 751752
  2012-10-09-1349761418.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:43:43.142+11 374918
  2012-10-09-1349761424.04-demo.wav 44028 CanberraMtAinsli 2012-10-09 16:43:55.626+11 971938
  2012-10-09-1349761435.88-demo.wav 44028 CanberraMtAinsli 2012-10-09 16:44:02.115+11 524424
  2012-10-09-1349761442.38-demo.wav 44028 CanberraMtAinsli 2012-10-09 16:44:06.079+11 311156
  2012-10-09-1349761446.92-demo.wav 44028 CanberraMtAinsli 2012-10-09 16:44:14.341+11 622692
  2012-10-09-1349761456.22-demo.wav 44028 CanberraMtAinsli 2012-10-09 16:44:18.913+11 225416
  2012-10-09-1349761482.11-demo.wav 40067 CanberraMtAinsli 2012-10-09 16:44:44.616+11 209032
  2012-10-09-1349761516.62-demo.wav 44028 CanberraBlackMnt 2012-10-09 16:45:19.222+11 216584
  2012-10-09-1349761520.41-demo.wav 44028 CanberraBlackMnt 2012-10-09 16:45:24.161+11 310754
  2012-10-09-1349761524.95-demo.wav 44028 CanberraBlackMnt 2012-10-09 16:45:35.734+11 907398
  2012-10-09-1349761585.69-demo.wav 40067 CanberraBlackMnt 2012-10-09 16:46:28.176+11 210752
  2012-10-09-1349761692.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:48:15.329+11 208066
  2012-10-09-1349761696.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:48:28.754+11 1041078
  2012-10-09-1349761708.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:48:32.97+11 344200
  2012-10-09-1349761713.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:48:36.769+11 272520
  2012-10-09-1349761716.95-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-09 16:48:44.047+11 596104
  2012-10-09-1349761724.16-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-09 16:48:49.653+11 462984
  2012-10-09-1349761777.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:49:43.95+11 557524
  2012-10-09-1349761784.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:49:47.272+11 241800
  2012-10-09-1349761788.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:50:06.54+11 1541876
  2012-10-09-1349761807.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:50:12.548+11 428906
  2012-10-09-1349761812.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:50:16.976+11 338038
  2012-10-09-1349761819.59-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 16:50:43.727+11 2021512
  2012-10-09-1349761844.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:51:02.675+11 1501142
  2012-10-09-1349761863.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:51:07.274+11 315528
  2012-10-09-1349761868.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:51:16.14+11 657224
  2012-10-09-1349761876.67-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 16:51:32.039+11 1290376
  2012-10-09-1349761893.84-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 16:51:39.887+11 508022
  2012-10-09-1349761940.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:52:24.458+11 301192
  2012-10-09-1349761945.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:52:29.851+11 352192
  2012-10-09-1349761950.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 16:52:37.507+11 620680
  2012-10-09-1349761978.14-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 16:53:01.413+11 274568
  2012-10-09-1349761982.29-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 16:53:11.936+11 806920
  2012-10-09-1349761992.87-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 16:53:23.204+11 866272
  2012-10-09-1349762048.09-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 16:54:15.054+11 585366
  2012-10-09-1349762150.34-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:56:00.323+11 837062
  2012-10-09-1349762160.99-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:56:03.531+11 215176
  2012-10-09-1349762197.98-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 16:56:40.467+11 208896
  2012-10-09-1349762377.61-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-09 16:59:46.129+11 716936
  2012-10-09-1349762447.97-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 17:00:52.642+11 391778
  2012-10-09-1349762454.55-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 17:01:12.261+11 1487172
  2012-10-09-1349762472.46-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 17:01:15.617+11 264328
  2012-10-09-1349762544.13-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:02:28.83+11 395020
  2012-10-09-1349762550.29-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:02:36.518+11 523000
  2012-10-09-1349762556.77-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:02:39.458+11 225416
  2012-10-09-1349762559.75-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:02:44.59+11 407688
  2012-10-09-1349762564.85-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:02:49.608+11 401444
  2012-10-09-1349762570.53-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:02:54.707+11 351506
  2012-10-09-1349762574.95-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:02:58.528+11 301192
  2012-10-09-1349762632.75-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 17:03:56.357+11 303240
  2012-10-09-1349762637.34-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:04:04.969+11 637444
  2012-10-09-1349762646.48-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 17:04:17.061+11 886740
  2012-10-09-1349762657.92-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:04:24.447+11 543972
  2012-10-09-1349762664.9-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:04:30.165+11 442504
  2012-10-09-1349762671.2-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:04:35.256+11 340102
  2012-10-09-1349762708.8-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 17:05:12.914+11 343876
  2012-10-09-1349762713.95-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:05:19.138+11 432826
  2012-10-09-1349762721.55-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:05:26.352+11 403592
  2012-10-09-1349762836.37-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 17:07:19.569+11 268424
  2012-10-09-1349762840.79-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 17:07:38.908+11 1521426
  2012-10-09-1349763045.73-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 17:10:50.974+11 440040
  2012-10-09-1349763052.12-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 17:10:56.642+11 379016
  2012-10-09-1349763057.72-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 17:11:02.787+11 425986
  2012-10-09-1349763063.08-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 17:11:07.379+11 358536
  2012-10-09-1349763126.59-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 17:12:09.103+11 210502
  2012-10-09-1349763130.15-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 17:12:14.143+11 328834
  2012-10-09-1349763134.71-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 17:12:18.842+11 346248
  2012-10-09-1349763139.14-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 17:12:29.791+11 894656
  2012-10-09-1349763150.01-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:12:58.722+11 2412680
  2012-10-09-1349763179.92-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:13:08.025+11 680072
  2012-10-09-1349763188.67-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:13:17.744+11 764036
  2012-10-09-1349763197.94-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:13:21.1+11 262280
  2012-10-09-1349763326.02-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-09 17:15:31.186+11 434114
  2012-10-09-1349763331.45-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-09 17:15:36.088+11 387208
  2012-10-09-1349763489.97-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:18:12.461+11 210006
  2012-10-09-1349763493.58-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:18:19.606+11 502044
  2012-10-09-1349763500.1-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:18:22.707+11 219272
  2012-10-09-1349763503.43-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:18:30.698+11 610440
  2012-10-09-1349763600.43-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 17:20:02.922+11 208926
  2012-10-09-1349763604.18-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 17:20:12.096+11 661526
  2012-10-09-1349763613.01-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 17:20:23.533+11 884872
  2012-10-09-1349763624.53-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 17:20:28.502+11 331644
  2012-10-09-1349763677.08-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 17:21:21.141+11 341320
  2012-10-09-1349763754.46-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-09 17:22:39+11 379518
  2012-10-09-1349763759.26-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-09 17:22:42.554+11 276616
  2012-10-09-1349763763.35-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-09 17:22:49.008+11 467080
  2012-10-09-1349763769.57-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-09 17:22:54.856+11 442486
  2012-10-09-1349763827.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 17:23:50.072+11 216016
  2012-10-09-1349763830.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 17:23:52.702+11 194696
  2012-10-09-1349763835.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 17:24:00.438+11 391304
  2012-10-09-1349763885.44-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:24:49.158+11 313200
  2012-10-09-1349763890.9-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:25:03.289+11 1037076
  2012-10-09-1349763905.2-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:25:07.653+11 204936
  2012-10-09-1349764194.28-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:29:58.274+11 334542
  2012-10-09-1349764248.02-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:30:51.009+11 248904
  2012-10-09-1349764252.8-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:31:01.717+11 747656
  2012-10-09-1349764262.08-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:31:04.737+11 223368
  2012-10-09-1349764265.03-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:31:09.659+11 387208
  2012-10-09-1349764270.42-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 17:31:16.88+11 542856
  2012-10-09-1349764278.4-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:31:24.295+11 495752
  2012-10-09-1349764284.56-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:31:28.461+11 327816
  2012-10-09-1349764290.31-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 17:31:38.57+11 694408
  2012-10-09-1349764329.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 17:32:13.362+11 348656
  2012-10-09-1349764335.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 17:32:36.18+11 1704072
  2012-10-09-1349764357.12-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 17:32:44.091+11 584428
  2012-10-09-1349764365.1-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:32:49.613+11 375488
  2012-10-09-1349764369.89-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:32:55.126+11 440456
  2012-10-09-1349764376.55-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 17:33:09.934+11 1124488
  2012-10-09-1349764568.24-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:36:11.337+11 260822
  2012-10-09-1349764573.07-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:36:18.546+11 458866
  2012-10-09-1349764578.8-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:36:22.526+11 313480
  2012-10-09-1349764583.58-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:36:26.713+11 262280
  2012-10-09-1349764609.8-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:37:02.568+11 1071888
  2012-10-09-1349764967.64-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:42:50.716+11 257298
  2012-10-09-1349764972.38-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:42:55.683+11 276616
  2012-10-09-1349764976.88-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:43:03.259+11 534664
  2012-10-09-1349764983.51-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:43:10.282+11 569420
  2012-10-09-1349764991.57-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 17:43:19.097+11 630658
  2012-10-09-1349765000.08-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:43:29.739+11 808936
  2012-10-09-1349765011.51-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 17:43:42.085+11 883662
  2012-10-09-1349765117.99-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 17:45:22.23+11 355818
  2012-10-09-1349765123.15-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 17:45:32.968+11 823022
  2012-10-09-1349765310.83-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:48:33.611+11 231920
  2012-10-09-1349765315.64-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:48:40.468+11 405640
  2012-10-09-1349765472.87-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:51:17.721+11 407204
  2012-10-09-1349765478.72-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 17:51:24.125+11 452744
  2012-10-09-1349765485.06-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 17:51:27.715+11 223368
  2012-10-09-1349765489.19-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 17:51:34.693+11 462922
  2012-10-09-1349765494.96-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:52:22.2+11 3971208
  2012-10-09-1349765543.14-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:52:30.656+11 631272
  2012-10-09-1349765550.85-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:52:35.594+11 397448
  2012-10-09-1349765555.92-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:52:39.415+11 293000
  2012-10-09-1349765662.78-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:54:26.499+11 312566
  2012-10-09-1349765667.57-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:54:33.308+11 483464
  2012-10-09-1349765706.01-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 17:55:11.208+11 436360
  2012-10-09-1349765712.21-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:55:18.943+11 563514
  2012-10-09-1349765719.17-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:55:21.34+11 182408
  2012-10-09-1349765721.71-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:55:28.805+11 594056
  2012-10-09-1349765740.59-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:55:46.61+11 505992
  2012-10-09-1349765747.59-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:55:50.845+11 272520
  2012-10-09-1349765751.0-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:55:55.512+11 376968
  2012-10-09-1349765756.25-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:56:29.926+11 2826346
  2012-10-09-1349765817.62-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 17:57:02.725+11 430216
  2012-10-09-1349765824.13-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 17:57:06.551+11 202886
  2012-10-09-1349765827.53-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:57:16.525+11 755848
  2012-10-09-1349765837.57-demo.wav 44028 CanberraBlackMnt 2012-10-09 17:57:20.633+11 258184
  2012-10-09-1349765867.48-demo.wav 44028 CanberraMtAinsli 2012-10-09 17:57:54.616+11 600200
  2012-10-09-1349765915.88-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 17:58:40.304+11 370824
  2012-10-09-1349765921.24-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 17:58:54.001+11 1071240
  2012-10-09-1349766253.82-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-09 18:04:25.178+11 946970
  2012-10-09-1349766266.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:04:37.022+11 916590
  2012-10-09-1349766278.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:04:46.442+11 704634
  2012-10-09-1349766287.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:04:57.277+11 817214
  2012-10-09-1349766298.2-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-09 18:05:15.383+11 1438638
  2012-10-09-1349766315.66-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-09 18:05:22.489+11 571528
  2012-10-09-1349766322.72-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-09 18:05:29.183+11 542856
  2012-10-09-1349766338.19-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 18:05:47.916+11 817288
  2012-10-09-1349766348.84-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 18:05:58.718+11 826232
  2012-10-09-1349766362.5-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 18:06:10.568+11 676416
  2012-10-09-1349766453.98-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 18:07:37.893+11 326156
  2012-10-09-1349766459.09-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 18:07:46.952+11 656342
  2012-10-09-1349766467.96-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 18:07:55.093+11 592490
  2012-10-09-1349766475.38-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 18:07:57.787+11 200840
  2012-10-09-1349766479.53-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 18:08:20.301+11 1745032
  2012-10-09-1349766500.47-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 18:08:24.306+11 319624
  2012-10-09-1349766588.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:09:50.718+11 224320
  2012-10-09-1349766592.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:10:07.235+11 1265514
  2012-10-09-1349766672.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:11:14.667+11 216124
  2012-10-09-1349766675.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:11:18.229+11 223368
  2012-10-09-1349766678.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:11:22.137+11 293000
  2012-10-09-1349766683.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:11:26.786+11 309384
  2012-10-09-1349766688.49-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 18:11:39.524+11 927714
  2012-10-09-1349766699.75-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 18:11:46.15+11 536712
  2012-10-09-1349766892.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:14:54.797+11 210524
  2012-10-09-1349766896.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:14:59.374+11 279444
  2012-10-09-1349766899.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:15:01.941+11 198792
  2012-10-09-1349766903.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:15:07.118+11 344200
  2012-10-09-1349766945.06-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-09 18:15:49.509+11 374880
  2012-10-09-1349766949.77-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-09 18:15:55.661+11 493704
  2012-10-09-1349766955.9-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-09 18:15:59.888+11 333816
  2012-10-09-1349766977.07-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 18:16:26.117+11 757556
  2012-10-09-1349766987.1-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 18:16:37.353+11 858364
  2012-10-09-1349766998.3-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 18:16:45.746+11 623392
  2012-10-09-1349767005.96-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 18:16:49.165+11 270472
  2012-10-09-1349767010.09-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 18:16:59.019+11 749704
  2012-10-09-1349767021.82-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 18:17:07.231+11 451422
  2012-10-09-1349767027.79-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 18:17:10.571+11 229512
  2012-10-09-1349767031.15-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 18:17:13.566+11 200840
  2012-10-09-1349767034.79-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 18:17:31.516+11 1403312
  2012-10-09-1349767052.46-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 18:17:38.74+11 525084
  2012-10-09-1349767078.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:18:02.232+11 342152
  2012-10-09-1349767083.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:18:06.227+11 235656
  2012-10-09-1349767086.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:18:10.203+11 313480
  2012-10-09-1349767090.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:18:16.332+11 487558
  2012-10-09-1349767096.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:18:23.779+11 598152
  2012-10-09-1349767104.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:18:28.854+11 403592
  2012-10-09-1349767122.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:18:48.328+11 457920
  2012-10-09-1349767213.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:20:16.311+11 257580
  2012-10-09-1349767217.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:20:24.751+11 572488
  2012-10-09-1349767225.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:20:32.311+11 600200
  2012-10-09-1349767233.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:20:45.935+11 1075336
  2012-10-09-1349767316.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:21:58.974+11 208806
  2012-10-09-1349767320.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:22:04.167+11 339726
  2012-10-09-1349767324.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:22:07.678+11 274568
  2012-10-09-1349767327.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:22:10.746+11 231560
  2012-10-09-1349767331.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:22:18.769+11 641160
  2012-10-09-1349767339.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:22:24.051+11 345020
  2012-10-09-1349767344.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:22:39.886+11 1310842
  2012-10-09-1349767360.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:22:43.621+11 237814
  2012-10-09-1349767576.44-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 18:26:20.083+11 304692
  2012-10-09-1349767581.75-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 18:26:32.455+11 901256
  2012-10-09-1349767593.51-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 18:26:40.351+11 570968
  2012-10-09-1349767600.56-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 18:26:44.507+11 331912
  2012-10-09-1349767605.18-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 18:26:51.428+11 524424
  2012-10-09-1349767786.39-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 18:29:50.419+11 334632
  2012-10-09-1349767791.52-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 18:29:57.01+11 459024
  2012-10-09-1349767799.4-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 18:30:04.164+11 396454
  2012-10-09-1349767804.96-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 18:30:08.4+11 288904
  2012-10-09-1349767945.26-demo.wav 44028 CanberraMtAinsli 2012-10-09 18:32:29.329+11 341352
  2012-10-09-1349767951.08-demo.wav 44028 CanberraMtAinsli 2012-10-09 18:32:34.841+11 315528
  2012-10-09-1349767955.44-demo.wav 44028 CanberraMtAinsli 2012-10-09 18:32:42.274+11 573576
  2012-10-09-1349767962.49-demo.wav 44028 CanberraMtAinsli 2012-10-09 18:32:46.063+11 295048
  2012-10-09-1349767968.99-demo.wav 44028 CanberraMtAinsli 2012-10-09 18:32:52.709+11 311432
  2012-10-09-1349767973.92-demo.wav 44028 CanberraMtAinsli 2012-10-09 18:32:59.406+11 460936
  2012-10-09-1349767979.66-demo.wav 44028 CanberraMtAinsli 2012-10-09 18:33:02.314+11 223358
  2012-10-09-1349768035.02-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 18:33:59.258+11 354604
  2012-10-09-1349768041.02-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 18:34:06.365+11 444552
  2012-10-09-1349768047.25-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 18:34:13.595+11 526390
  2012-10-09-1349768075.75-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 18:34:39.069+11 276616
  2012-10-09-1349768079.3-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 18:34:42.1+11 231560
  2012-10-09-1349768083.06-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 18:34:49.58+11 543662
  2012-10-09-1349768089.95-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 18:34:53.347+11 284808
  2012-10-09-1349768094.28-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 18:35:10.08+11 1327240
  2012-10-09-1349768110.35-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 18:35:13.623+11 274568
  2012-10-09-1349768114.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:35:20.715+11 511354
  2012-10-09-1349768121.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:35:24.66+11 280712
  2012-10-09-1349768179.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:36:23.805+11 334522
  2012-10-09-1349768186.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:36:35.295+11 710594
  2012-10-09-1349768195.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:36:59.988+11 2056328
  2012-10-09-1349768220.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:37:06.43+11 522376
  2012-10-09-1349768226.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:37:32.625+11 2179208
  2012-10-09-1349768255.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:37:39.321+11 340104
  2012-10-09-1349768273.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:38:01.211+11 622728
  2012-10-09-1349768282.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:38:05.82+11 290136
  2012-10-09-1349768443.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:40:46.136+11 209676
  2012-10-09-1349768447.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:40:56.538+11 771746
  2012-10-09-1349768529.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:42:11.889+11 238098
  2012-10-09-1349768532.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:42:14.463+11 194696
  2012-10-09-1349768534.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:42:17.355+11 221320
  2012-10-09-1349768537.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:42:21.838+11 323720
  2012-10-09-1349768652.63-demo.wav 44028 CanberraBlackMnt 2012-10-09 18:44:15.22+11 216664
  2012-10-09-1349768657.02-demo.wav 44028 CanberraBlackMnt 2012-10-09 18:44:20.382+11 279668
  2012-10-09-1349768661.14-demo.wav 44028 CanberraBlackMnt 2012-10-09 18:44:25.577+11 372872
  2012-10-09-1349768665.81-demo.wav 44028 CanberraBlackMnt 2012-10-09 18:44:30.707+11 409736
  2012-10-09-1349768772.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:46:14.849+11 210510
  2012-10-09-1349768775.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:46:19.067+11 333954
  2012-10-09-1349768779.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:46:30.096+11 903304
  2012-10-09-1349768790.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:46:42.73+11 1005704
  2012-10-09-1349768887.48-demo.wav 44028 CanberraMtAinsli 2012-10-09 18:48:12.394+11 413094
  2012-10-09-1349768894.47-demo.wav 44028 CanberraMtAinsli 2012-10-09 18:48:17.061+11 219272
  2012-10-09-1349768914.67-demo.wav 44028 CanberraBlackMnt 2012-10-09 18:48:40.142+11 457150
  2012-10-09-1349768920.37-demo.wav 44028 CanberraBlackMnt 2012-10-09 18:48:43.706+11 280712
  2012-10-09-1349769012.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:50:15.53+11 223746
  2012-10-09-1349769040.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:50:51.488+11 940168
  2012-10-09-1349769052.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:50:55.179+11 249992
  2012-10-09-1349769179.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:53:04.496+11 404580
  2012-10-09-1349769214.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:53:39.511+11 425164
  2012-10-09-1349769219.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:53:43.885+11 340104
  2012-10-09-1349769254.06-demo.wav 44028 CanberraBlackMnt 2012-10-09 18:54:16.872+11 233608
  2012-10-09-1349769257.64-demo.wav 44028 CanberraBlackMnt 2012-10-09 18:54:24.543+11 579718
  2012-10-09-1349769287.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 18:55:03.883+11 1357960
  2012-10-09-1349769623.41-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 19:00:26.717+11 276426
  2012-10-09-1349769653.45-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:00:57.4+11 329660
  2012-10-09-1349769657.7-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:01:02.24+11 379016
  2012-10-09-1349769664.29-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 19:01:09.879+11 469128
  2012-10-09-1349769670.24-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 19:01:12.58+11 190600
  2012-10-09-1349769673.48-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:01:19.805+11 528432
  2012-10-09-1349769681.31-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:01:25.92+11 384392
  2012-10-09-1349769712.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:01:57.293+11 375748
  2012-10-09-1349769815.88-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 19:03:39.463+11 297816
  2012-10-09-1349769819.65-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 19:03:42.895+11 272520
  2012-10-09-1349769823.85-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 19:03:51.606+11 647278
  2012-10-09-1349769831.87-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 19:03:54.442+11 215128
  2012-10-09-1349769957.79-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:06:02.428+11 382694
  2012-10-09-1349769963.65-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:06:07.43+11 315698
  2012-10-09-1349770017.87-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:07:04.91+11 590020
  2012-10-09-1349770026.01-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:07:13.653+11 641460
  2012-10-09-1349770036.16-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:07:40.116+11 2008448
  2012-10-09-1349770060.38-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:07:43.344+11 247944
  2012-10-09-1349770064.24-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:07:51.422+11 602400
  2012-10-09-1349770071.69-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:07:55.472+11 317576
  2012-10-09-1349770136.78-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:09:00.779+11 330066
  2012-10-09-1349770142.38-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 19:09:07.983+11 471176
  2012-10-09-1349770148.34-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 19:09:11.588+11 272520
  2012-10-09-1349770152.45-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:09:24.196+11 984846
  2012-10-09-1349770171.23-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:09:36.934+11 476146
  2012-10-09-1349770198.22-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 19:10:01.773+11 297096
  2012-10-09-1349770203.55-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:10:12.879+11 784520
  2012-10-09-1349770249.72-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 19:10:52.966+11 268726
  2012-10-09-1349770284.18-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 19:11:27.283+11 259176
  2012-10-09-1349770288.31-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 19:11:35.715+11 618776
  2012-10-09-1349770296.56-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-09 19:11:42.122+11 467080
  2012-10-09-1349770956.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:22:40.302+11 358144
  2012-10-09-1349770960.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:22:43.25+11 227460
  2012-10-09-1349770963.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:22:49.108+11 436322
  2012-10-09-1349770969.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:22:54.522+11 413832
  2012-10-09-1349771197.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:26:40.264+11 218636
  2012-10-09-1349771201.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:26:48.741+11 592008
  2012-10-09-1349771208.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:26:52.444+11 290952
  2012-10-09-1349771212.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:26:56.152+11 293000
  2012-10-09-1349771217.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:27:02.752+11 458164
  2012-10-09-1349771223.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:27:06.103+11 249984
  2012-10-09-1349771310.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:28:32.838+11 212928
  2012-10-09-1349771314.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:28:38.529+11 371276
  2012-10-09-1349771318.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:28:41.772+11 249992
  2012-10-09-1349771322.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:28:46.429+11 358536
  2012-10-09-1349771356.85-demo.wav 10301 CanberraMtAinsli 2012-10-09 19:29:19.836+11 247380
  2012-10-09-1349771427.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:30:31.078+11 303510
  2012-10-09-1349771433.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:30:38.493+11 399496
  2012-10-09-1349771438.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:30:44.002+11 432264
  2012-10-09-1349771658.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:34:21.085+11 252748
  2012-10-09-1349771663.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:34:29.388+11 487560
  2012-10-09-1349771671.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:34:41.287+11 835720
  2012-10-09-1349771683.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:34:54.296+11 923784
  2012-10-09-1349771695.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:35:00.018+11 376968
  2012-10-09-1349771740.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:35:44.121+11 341550
  2012-10-09-1349771746.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:35:49.421+11 266376
  2012-10-09-1349771750.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:35:55.649+11 473224
  2012-10-09-1349771756.93-demo.wav 44028 CanberraMtAinsli 2012-10-09 19:36:03.865+11 583816
  2012-10-09-1349771765.04-demo.wav 44028 CanberraMtAinsli 2012-10-09 19:36:12.001+11 585864
  2012-10-09-1349771773.06-demo.wav 44028 CanberraMtAinsli 2012-10-09 19:36:18.203+11 432264
  2012-10-09-1349771778.94-demo.wav 44028 CanberraMtAinsli 2012-10-09 19:36:22.231+11 278664
  2012-10-09-1349771782.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:36:32.685+11 825480
  2012-10-09-1349771793.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:36:36.53+11 288904
  2012-10-09-1349771797.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:36:41.746+11 395400
  2012-10-09-1349771837.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:37:20.746+11 305746
  2012-10-09-1349771841.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:37:35.338+11 1120728
  2012-10-09-1349771877.2-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 19:38:01.391+11 352392
  2012-10-09-1349771883.34-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:38:13.208+11 823802
  2012-10-09-1349771894.16-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:38:24.264+11 848430
  2012-10-09-1349771905.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:38:37.115+11 1004792
  2012-10-09-1349771917.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:38:44.554+11 585864
  2012-10-09-1349771925.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:38:48.848+11 303240
  2012-10-09-1349772099.76-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 19:41:43.746+11 333158
  2012-10-09-1349772114.08-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 19:41:58.86+11 401544
  2012-10-09-1349772119.12-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 19:42:02.165+11 254058
  2012-10-09-1349772122.95-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:42:16.416+11 1132680
  2012-10-09-1349772136.79-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:42:20.531+11 313480
  2012-10-09-1349772143.46-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:42:27.847+11 362632
  2012-10-09-1349772249.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:44:15.686+11 500436
  2012-10-09-1349772256.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:44:32.559+11 1388680
  2012-10-09-1349772297.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:44:59.932+11 209032
  2012-10-09-1349772302.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:45:07.839+11 438408
  2012-10-09-1349772412.41-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 19:46:57.119+11 393472
  2012-10-09-1349772418.06-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:47:04.539+11 538760
  2012-10-09-1349772426.54-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-09 19:47:12.006+11 458888
  2012-10-09-1349772432.94-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:47:18.663+11 476328
  2012-10-09-1349772439.34-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 19:47:22.793+11 286856
  2012-10-09-1349772443.55-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 19:47:34.077+11 882824
  2012-10-09-1349772454.24-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 19:47:37.735+11 293000
  2012-10-09-1349772458.48-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 19:47:58.552+11 1301888
  2012-10-09-1349772478.79-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 19:48:03.338+11 381064
  2012-10-09-1349772483.82-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 19:48:16.2+11 1040520
  2012-10-09-1349772993.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:56:35.781+11 228370
  2012-10-09-1349772996.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:56:43.772+11 566878
  2012-10-09-1349773004.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 19:56:46.535+11 204936
  2012-10-09-1349773060.5-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-09 19:57:44.845+11 363688
  2012-10-09-1349773065.79-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 19:57:52.817+11 589960
  2012-10-09-1349773073.76-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 19:57:58.401+11 387208
  2012-10-09-1349773080.56-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-09 19:58:03.259+11 227464
  2012-10-09-1349773220.08-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-09 20:00:26.106+11 501904
  2012-10-09-1349773486.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:04:49.487+11 249772
  2012-10-09-1349773489.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:04:55.681+11 499848
  2012-10-09-1349773495.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:05:00.252+11 364680
  2012-10-09-1349773501.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:05:07.519+11 534630
  2012-10-09-1349774246.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:17:34.952+11 719832
  2012-10-09-1349774255.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:17:38.434+11 276616
  2012-10-09-1349774259.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:18:48.918+11 5867656
  2012-10-09-1349774329.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:18:52.322+11 221320
  2012-10-09-1349774332.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:18:59.488+11 569480
  2012-10-09-1349774491.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:21:33.737+11 216950
  2012-10-09-1349774495.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:21:37.843+11 228672
  2012-10-09-1349774498.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:21:41.456+11 211080
  2012-10-09-1349774501.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:21:45.051+11 274568
  2012-10-09-1349774505.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:21:53.118+11 600200
  2012-10-09-1349774654.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:24:18.601+11 306482
  2012-10-09-1349774658.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:24:20.975+11 188552
  2012-10-09-1349774661.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:24:23.612+11 200840
  2012-10-09-1349774735.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:25:39.142+11 327958
  2012-10-09-1349774740.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:25:45.159+11 399232
  2012-10-09-1349774745.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:25:53.178+11 622682
  2012-10-09-1349774753.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:26:03.765+11 860296
  2012-10-09-1349774764.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:26:07.746+11 276616
  2012-10-09-1349774768.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:26:13.458+11 395400
  2012-10-09-1349774794.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:26:37.33+11 196744
  2012-10-09-1349774797.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:26:40.109+11 211080
  2012-10-09-1349774801.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:26:47.284+11 514442
  2012-10-09-1349774807.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:26:50.4+11 241800
  2012-10-09-1349774810.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:26:53.676+11 237704
  2012-10-09-1349774814.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:26:58.664+11 383112
  2012-10-09-1349775110.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:31:53.459+11 276640
  2012-10-09-1349775130.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:32:17.331+11 583816
  2012-10-09-1349775683.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:41:27.631+11 347908
  2012-10-09-1349775688.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:41:31.622+11 278664
  2012-10-09-1349775823.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:43:46.314+11 227022
  2012-10-09-1349775826.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:43:49.191+11 223368
  2012-10-09-1349775829.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:43:57.113+11 635016
  2012-10-09-1349776339.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:52:21.648+11 212140
  2012-10-09-1349776342.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:52:31.765+11 752790
  2012-10-09-1349776352.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:52:35.794+11 274568
  2012-10-09-1349776581.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:56:23.878+11 210912
  2012-10-09-1349776584.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:56:27.131+11 243848
  2012-10-09-1349776587.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:56:34.673+11 598152
  2012-10-09-1349776595.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:56:44.585+11 800904
  2012-10-09-1349776704.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:58:27.532+11 238928
  2012-10-09-1349776707.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:58:30.631+11 237704
  2012-10-09-1349776710.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:58:33.746+11 241800
  2012-10-09-1349776713.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:58:36.533+11 215176
  2012-10-09-1349776717.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:58:53.342+11 1355912
  2012-10-09-1349776734.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 20:58:58.088+11 260232
  2012-10-09-1349776852.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:00:55.355+11 239842
  2012-10-09-1349776855.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:00:58.162+11 209032
  2012-10-09-1349776955.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:02:38.615+11 256894
  2012-10-09-1349776958.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:02:41.168+11 186504
  2012-10-09-1349776961.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:02:44.153+11 223368
  2012-10-09-1349776964.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:02:47.573+11 266374
  2012-10-09-1349776968.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:02:53.723+11 436490
  2012-10-09-1349776975.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:03:13.486+11 1511560
  2012-10-09-1349777053.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:04:16.297+11 209706
  2012-10-09-1349777070.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:04:42.75+11 991368
  2012-10-09-1349777083.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:04:47.975+11 372872
  2012-10-09-1349777240.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:07:23.404+11 254348
  2012-10-09-1349777243.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:07:26.868+11 268424
  2012-10-09-1349777247.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:07:31.743+11 387208
  2012-10-09-1349777384.41-demo.wav 44028 CanberraMtAinsli 2012-10-09 21:09:48.162+11 312926
  2012-10-09-1349777389.01-demo.wav 44028 CanberraMtAinsli 2012-10-09 21:09:51.167+11 182408
  2012-10-09-1349777391.55-demo.wav 44028 CanberraMtAinsli 2012-10-09 21:09:55.514+11 331912
  2012-10-09-1349777427.23-demo.wav 44028 CanberraBlackMnt 2012-10-09 21:10:30.662+11 286856
  2012-10-09-1349777430.92-demo.wav 44028 CanberraBlackMnt 2012-10-09 21:10:34.098+11 266376
  2012-10-09-1349777434.36-demo.wav 44028 CanberraBlackMnt 2012-10-09 21:11:04.247+11 2510984
  2012-10-09-1349777465.79-demo.wav 44028 CanberraBlackMnt 2012-10-09 21:11:11.103+11 446600
  2012-10-09-1349777471.25-demo.wav 44028 CanberraBlackMnt 2012-10-09 21:11:14.3+11 256068
  2012-10-09-1349777557.39-demo.wav 44028 CanberraBlackMnt 2012-10-09 21:12:39.965+11 215664
  2012-10-09-1349777560.24-demo.wav 44028 CanberraBlackMnt 2012-10-09 21:12:43.226+11 249992
  2012-10-09-1349777614.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:13:44.158+11 845960
  2012-10-09-1349777702.54-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 21:15:06.306+11 305588
  2012-10-09-1349777727.91-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 21:15:33.245+11 442598
  2012-10-09-1349777735.13-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 21:15:39.728+11 387208
  2012-10-09-1349777741.84-demo.wav 44028 CanberraMtAinsli 2012-10-09 21:15:54.322+11 1050760
  2012-10-09-1349777755.05-demo.wav 44028 CanberraMtAinsli 2012-10-09 21:15:57.823+11 233608
  2012-10-09-1349778647.48-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-09 21:30:50.819+11 281400
  2012-10-09-1349778724.88-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 21:32:11.299+11 536074
  2012-10-09-1349778732.52-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-09 21:32:15.678+11 264328
  2012-10-09-1349779069.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:37:52.308+11 249404
  2012-10-09-1349779072.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:37:55.247+11 227464
  2012-10-09-1349779076.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:37:59.338+11 280712
  2012-10-09-1349779104.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:38:27.416+11 237704
  2012-10-09-1349779108.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:38:39.672+11 916732
  2012-10-09-1349779299.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:41:42.33+11 237626
  2012-10-09-1349779703.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:48:27.095+11 305652
  2012-10-09-1349779708.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:48:32.969+11 395958
  2012-10-09-1349779713.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:48:37.105+11 323720
  2012-10-09-1349779717.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:48:42.602+11 411784
  2012-10-09-1349780114.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:55:18.509+11 347232
  2012-10-09-1349780120.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:55:38.659+11 1550472
  2012-10-09-1349780139.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 21:55:46.768+11 602856
  2012-10-09-1349781417.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:17:00.423+11 221298
  2012-10-09-1349781420.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:17:04.017+11 266376
  2012-10-09-1349781425.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:17:08.868+11 319624
  2012-10-09-1349781520.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:18:45.044+11 409846
  2012-10-09-1349781525.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:18:47.663+11 190600
  2012-10-09-1349781527.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:18:51.792+11 319624
  2012-10-09-1349781805.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:23:28.772+11 265846
  2012-10-09-1349781830.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:23:53.37+11 274568
  2012-10-09-1349781834.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:23:58.402+11 315566
  2012-10-09-1349781876.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:24:38.959+11 215934
  2012-10-09-1349781880.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:24:43.507+11 284808
  2012-10-09-1349781891.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:24:57.108+11 434312
  2012-10-09-1349782053.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:27:36.756+11 237866
  2012-10-09-1349782057.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:27:39.451+11 198792
  2012-10-09-1349782059.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:27:42.593+11 241800
  2012-10-09-1349782063.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:27:47.514+11 366728
  2012-10-09-1349782133.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:28:56.298+11 211720
  2012-10-09-1349782137.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:29:04.462+11 590592
  2012-10-09-1349782144.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:29:10.631+11 485512
  2012-10-09-1349783422.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:50:26.28+11 278514
  2012-10-09-1349783427.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:50:31.225+11 336008
  2012-10-09-1349783431.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:50:36.848+11 428168
  2012-10-09-1349783437.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:50:42.219+11 427958
  2012-10-09-1349783443.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:50:53.463+11 875796
  2012-10-09-1349783898.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:58:21.534+11 211148
  2012-10-09-1349783902.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:58:30.467+11 653428
  2012-10-09-1349783910.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:58:33.908+11 268424
  2012-10-09-1349783914.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:58:36.912+11 229512
  2012-10-09-1349783917.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 22:58:47.357+11 813192
  2012-10-09-1349783928.69-demo.wav 44028 CanberraBlackMnt 2012-10-09 22:58:57.027+11 700810
  2012-10-09-1349783937.72-demo.wav 44028 CanberraBlackMnt 2012-10-09 22:59:02.621+11 411784
  2012-10-09-1349784001.46-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-09 23:00:07.58+11 512564
  2012-10-09-1349784068.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 23:01:15.699+11 594924
  2012-10-09-1349784076.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 23:01:24.512+11 708744
  2012-10-09-1349785781.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 23:29:45.269+11 280070
  2012-10-09-1349785786.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 23:29:51.518+11 421050
  2012-10-09-1349785791.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 23:29:58.511+11 563308
  2012-10-09-1349785798.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 23:30:02.042+11 276616
  2012-10-09-1349785909.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 23:31:52.376+11 279142
  2012-10-09-1349785956.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 23:32:43.996+11 596104
  2012-10-09-1349785964.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 23:32:58.664+11 1218696
  2012-10-09-1349786047.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 23:34:09.588+11 211724
  2012-10-09-1349787215.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 23:53:38.333+11 233390
  2012-10-09-1349787219.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 23:53:49.601+11 821384
  2012-10-09-1349787592.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-09 23:59:56.423+11 310410
  2012-10-09-1349787596.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:00:05.134+11 706696
  2012-10-10-1349787606.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:00:09.397+11 280712
  2012-10-10-1349787731.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:02:16.635+11 427074
  2012-10-10-1349787737.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:02:27.756+11 901256
  2012-10-10-1349787748.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:02:32.785+11 391300
  2012-10-10-1349787753.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:02:43.375+11 860296
  2012-10-10-1349787763.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:02:45.812+11 182408
  2012-10-10-1349787766.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:02:50.476+11 368776
  2012-10-10-1349787770.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:03:02.778+11 1007752
  2012-10-10-1349787783.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:03:06.252+11 270472
  2012-10-10-1349787786.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:03:11.654+11 411784
  2012-10-10-1349787791.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:03:14.881+11 243846
  2012-10-10-1349787855.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:04:18.994+11 326076
  2012-10-10-1349787859.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:04:24.853+11 408890
  2012-10-10-1349787899.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:05:17.265+11 1482888
  2012-10-10-1349787917.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:05:19.846+11 182408
  2012-10-10-1349787920.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:05:36.898+11 1411208
  2012-10-10-1349787938.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:06:03.238+11 2082952
  2012-10-10-1349787963.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:06:07.73+11 321672
  2012-10-10-1349787967.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:06:11.741+11 315528
  2012-10-10-1349788013.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:06:57.403+11 358312
  2012-10-10-1349788042.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:07:29.238+11 535810
  2012-10-10-1349788078.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:08:02.418+11 355468
  2012-10-10-1349788102.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:08:25.309+11 213128
  2012-10-10-1349788181.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:09:44.933+11 265066
  2012-10-10-1349788212.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:10:16.853+11 392094
  2012-10-10-1349788217.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:10:20.487+11 282760
  2012-10-10-1349788245.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:10:54.065+11 683190
  2012-10-10-1349788254.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:11:08.317+11 1147016
  2012-10-10-1349788269.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:11:18.351+11 757896
  2012-10-10-1349788278.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:11:20.827+11 180360
  2012-10-10-1349788281.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:11:28.402+11 592008
  2012-10-10-1349788322.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:12:08.951+11 522376
  2012-10-10-1349788329.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:12:23.251+11 1181832
  2012-10-10-1349788361.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:12:52.094+11 921736
  2012-10-10-1349788635.34-demo.wav 44028 CanberraBlackMnt 2012-10-10 00:17:18.559+11 269484
  2012-10-10-1349788639.82-demo.wav 44028 CanberraBlackMnt 2012-10-10 00:17:32.084+11 1027820
  2012-10-10-1349788738.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:19:01.57+11 218392
  2012-10-10-1349788742.62-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 00:19:08.262+11 468806
  2012-10-10-1349788748.38-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 00:19:11.583+11 268412
  2012-10-10-1349788752.35-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 00:19:18.692+11 532616
  2012-10-10-1349788836.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:20:39.137+11 212506
  2012-10-10-1349788840.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:20:43.779+11 288256
  2012-10-10-1349788844.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:20:48.844+11 362632
  2012-10-10-1349788849.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:20:52.264+11 266376
  2012-10-10-1349788938.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:22:22.301+11 325768
  2012-10-10-1349788965.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:22:52.284+11 597090
  2012-10-10-1349789626.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:33:51.191+11 365052
  2012-10-10-1349789632.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:34:00.508+11 704144
  2012-10-10-1349789793.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:36:37.864+11 368452
  2012-10-10-1349789799.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:36:43.788+11 329864
  2012-10-10-1349789804.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:36:51.21+11 596104
  2012-10-10-1349790423.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:47:07.008+11 308040
  2012-10-10-1349790429.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:47:14.081+11 424072
  2012-10-10-1349790434.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:47:21.217+11 565384
  2012-10-10-1349790593.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:49:57.964+11 407688
  2012-10-10-1349791005.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 00:56:47.891+11 210614
  2012-10-10-1349791298.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:01:44.147+11 447436
  2012-10-10-1349791304.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:01:48.293+11 315528
  2012-10-10-1349791375.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:03:07.811+11 1052808
  2012-10-10-1349791516.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:05:19.276+11 210710
  2012-10-10-1349791520.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:05:34.86+11 1214518
  2012-10-10-1349791555.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:06:00.015+11 419976
  2012-10-10-1349791560.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:06:02.714+11 190600
  2012-10-10-1349791620.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:07:03.872+11 275096
  2012-10-10-1349791625.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:07:16.431+11 931976
  2012-10-10-1349791636.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:07:20.314+11 303240
  2012-10-10-1349792717.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:25:22.554+11 394528
  2012-10-10-1349792722.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:25:25.277+11 206984
  2012-10-10-1349792725.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:25:31.013+11 446488
  2012-10-10-1349792731.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:25:38.734+11 572972
  2012-10-10-1349793083.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:31:26.216+11 263426
  2012-10-10-1349793114.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:32:01.006+11 580314
  2012-10-10-1349793929.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:45:32.492+11 212664
  2012-10-10-1349793936.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:45:40.096+11 321672
  2012-10-10-1349794003.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:46:46.624+11 232440
  2012-10-10-1349794008.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:46:51.178+11 243848
  2012-10-10-1349794011.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:46:54.599+11 266376
  2012-10-10-1349794015.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:47:32.081+11 3076232
  2012-10-10-1349794090.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:48:30.71+11 1699976
  2012-10-10-1349794111.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:48:35.691+11 319624
  2012-10-10-1349794116.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 01:48:38.801+11 223368
  2012-10-10-1349795358.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:09:21.039+11 240998
  2012-10-10-1349795362.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:09:26.608+11 382414
  2012-10-10-1349795366.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:09:30.194+11 268424
  2012-10-10-1349795370.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:09:33.207+11 231558
  2012-10-10-1349795374.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:09:51.925+11 1458190
  2012-10-10-1349795393.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:09:59.019+11 462984
  2012-10-10-1349795617.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:13:41.125+11 270988
  2012-10-10-1349795622.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:14:00.802+11 1528816
  2012-10-10-1349795644.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:14:07.849+11 289330
  2012-10-10-1349795648.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:14:13.316+11 375054
  2012-10-10-1349795673.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:14:44.802+11 921736
  2012-10-10-1349795760.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:16:03.487+11 228646
  2012-10-10-1349795764.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:16:07.387+11 260232
  2012-10-10-1349795768.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:16:11.206+11 258184
  2012-10-10-1349795771.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:16:16.208+11 397342
  2012-10-10-1349795967.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:19:30.153+11 211578
  2012-10-10-1349796041.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:20:44.284+11 244194
  2012-10-10-1349796045.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:20:48.101+11 256136
  2012-10-10-1349796132.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:22:14.932+11 210712
  2012-10-10-1349796168.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:22:50.657+11 209628
  2012-10-10-1349796170.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:22:53.402+11 213128
  2012-10-10-1349796465.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:27:47.55+11 210760
  2012-10-10-1349796471.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:27:58.938+11 657638
  2012-10-10-1349796479.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:29:38.413+11 7994556
  2012-10-10-1349796578.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:29:42.222+11 309384
  2012-10-10-1349796686.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:31:30.704+11 310290
  2012-10-10-1349796697.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:31:40.879+11 315528
  2012-10-10-1349796874.44-demo.wav 10301 CanberraMtAinsli 2012-10-10 02:34:41.515+11 595638
  2012-10-10-1349796881.93-demo.wav 10301 CanberraMtAinsli 2012-10-10 02:34:52.431+11 882824
  2012-10-10-1349796892.79-demo.wav 10301 CanberraMtAinsli 2012-10-10 02:34:55.148+11 196744
  2012-10-10-1349796958.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:36:01.709+11 292540
  2012-10-10-1349796962.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:36:06.215+11 321672
  2012-10-10-1349797365.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:42:49.141+11 335904
  2012-10-10-1349797394.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:43:17.432+11 260634
  2012-10-10-1349797437.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:44:00.347+11 208660
  2012-10-10-1349797460.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:44:24.561+11 350344
  2012-10-10-1349797464.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:44:27.167+11 192648
  2012-10-10-1349797505.2-demo.wav 10301 CanberraMtAinsli 2012-10-10 02:45:08.962+11 313480
  2012-10-10-1349797509.62-demo.wav 10301 CanberraMtAinsli 2012-10-10 02:45:13.55+11 329864
  2012-10-10-1349797514.17-demo.wav 10301 CanberraMtAinsli 2012-10-10 02:45:19.416+11 438408
  2012-10-10-1349797529.58-demo.wav 10301 CanberraMtAinsli 2012-10-10 02:45:34.314+11 399496
  2012-10-10-1349797535.48-demo.wav 10301 CanberraMtAinsli 2012-10-10 02:45:38.773+11 276616
  2012-10-10-1349797539.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:45:45.438+11 487522
  2012-10-10-1349797546.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:45:50.777+11 359128
  2012-10-10-1349797551.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:45:56.905+11 485512
  2012-10-10-1349798141.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:55:46.397+11 432546
  2012-10-10-1349798146.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:55:50.279+11 280712
  2012-10-10-1349798350.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:59:13.565+11 225750
  2012-10-10-1349798354.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:59:16.938+11 198792
  2012-10-10-1349798357.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:59:20.177+11 213128
  2012-10-10-1349798361.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 02:59:25.441+11 340076
  2012-10-10-1349798619.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:03:42.67+11 262740
  2012-10-10-1349798623.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:03:47.128+11 301192
  2012-10-10-1349798627.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:03:52.121+11 389256
  2012-10-10-1349798679.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:04:42.739+11 268038
  2012-10-10-1349798684.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:04:48.203+11 333960
  2012-10-10-1349798688.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:04:54.051+11 430216
  2012-10-10-1349798694.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:04:58.377+11 327816
  2012-10-10-1349798942.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:09:05.481+11 242894
  2012-10-10-1349799045.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:10:47.72+11 211156
  2012-10-10-1349799073.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:11:17.633+11 356044
  2012-10-10-1349799080.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:11:27.942+11 661472
  2012-10-10-1349799194.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:13:18.574+11 320724
  2012-10-10-1349799199.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:13:38.955+11 1605020
  2012-10-10-1349799219.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:13:45.019+11 462984
  2012-10-10-1349799225.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:13:50.705+11 403354
  2012-10-10-1349799527.09-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 03:18:49.609+11 211080
  2012-10-10-1349799529.81-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 03:18:53.82+11 336008
  2012-10-10-1349799544.12-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 03:19:30.184+11 2187400
  2012-10-10-1349799570.45-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 03:19:33.407+11 247944
  2012-10-10-1349799573.68-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 03:20:28.424+11 4601992
  2012-10-10-1349799692.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:21:35.751+11 289726
  2012-10-10-1349799696.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:21:39.253+11 254088
  2012-10-10-1349799699.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:21:46.957+11 622728
  2012-10-10-1349799746.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:22:30.206+11 298252
  2012-10-10-1349799752.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:22:37.313+11 426120
  2012-10-10-1349799763.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:23:00.042+11 1415304
  2012-10-10-1349799781.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:23:07.282+11 493704
  2012-10-10-1349800084.24-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 03:28:09.789+11 463630
  2012-10-10-1349800090.21-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 03:28:15.99+11 485512
  2012-10-10-1349800143.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:29:09.216+11 435776
  2012-10-10-1349800664.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:37:48.273+11 340856
  2012-10-10-1349800668.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 03:37:52.214+11 303240
  2012-10-10-1349800672.5-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 03:38:13.985+11 1804424
  2012-10-10-1349804618.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 04:43:40.973+11 210404
  2012-10-10-1349804621.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 04:43:44.12+11 198792
  2012-10-10-1349804624.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 04:43:47.844+11 293000
  2012-10-10-1349804628.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 04:43:52.14+11 340104
  2012-10-10-1349804952.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 04:49:15.467+11 227220
  2012-10-10-1349804955.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 04:49:18.798+11 252040
  2012-10-10-1349804959.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 04:49:25.012+11 479368
  2012-10-10-1349804965.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 04:49:39.829+11 1224840
  2012-10-10-1349805175.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 04:52:58.482+11 217558
  2012-10-10-1349805178.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 04:53:06.506+11 659568
  2012-10-10-1349805186.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 04:53:09.54+11 237620
  2012-10-10-1349805935.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:05:38.457+11 210752
  2012-10-10-1349805994.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:06:38.736+11 327762
  2012-10-10-1349806000.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:06:47.894+11 608392
  2012-10-10-1349806008.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:06:58.386+11 835492
  2012-10-10-1349806125.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:08:48.699+11 235708
  2012-10-10-1349806130.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:08:55.834+11 440456
  2012-10-10-1349806136.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:08:59.844+11 311432
  2012-10-10-1349806222.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:10:24.823+11 211378
  2012-10-10-1349806225.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:10:28.274+11 229512
  2012-10-10-1349806228.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:10:34.63+11 510088
  2012-10-10-1349806376.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:12:59.378+11 218220
  2012-10-10-1349806379.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:13:02.1+11 202888
  2012-10-10-1349806382.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:13:05.295+11 249992
  2012-10-10-1349806400.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:13:24.461+11 323720
  2012-10-10-1349806409.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:13:56.405+11 2257032
  2012-10-10-1349806510.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:15:12.959+11 211534
  2012-10-10-1349806513.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:15:15.908+11 237704
  2012-10-10-1349806517.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:15:21.381+11 315528
  2012-10-10-1349806528.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:15:34.005+11 460936
  2012-10-10-1349806670.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:17:54.116+11 268022
  2012-10-10-1349806674.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 05:17:56.658+11 200840
  2012-10-10-1349809819.99-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:10:22.5+11 210858
  2012-10-10-1349809938.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 06:12:21.159+11 219934
  2012-10-10-1349809942.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 06:12:25.842+11 307202
  2012-10-10-1349809947.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 06:12:31.244+11 313468
  2012-10-10-1349809982.77-demo.wav 40067 CanberraMtAinsli 2012-10-10 06:13:05.337+11 211778
  2012-10-10-1349810091.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 06:14:54.179+11 224788
  2012-10-10-1349810095.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 06:14:58.598+11 248038
  2012-10-10-1349810098.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 06:15:02.807+11 331912
  2012-10-10-1349810103.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 06:15:07.772+11 370632
  2012-10-10-1349810108.67-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:15:13.94+11 440784
  2012-10-10-1349810114.13-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:15:17.538+11 286856
  2012-10-10-1349810225.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 06:17:09.253+11 303392
  2012-10-10-1349810229.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 06:17:12.368+11 213128
  2012-10-10-1349810232.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 06:17:15.9+11 274568
  2012-10-10-1349810473.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 06:21:16.21+11 221614
  2012-10-10-1349810477.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 06:21:20.343+11 254350
  2012-10-10-1349810480.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 06:21:24.353+11 319624
  2012-10-10-1349810484.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 06:21:29.91+11 428168
  2012-10-10-1349811195.12-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:33:18.519+11 283730
  2012-10-10-1349811198.72-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:33:21.27+11 215176
  2012-10-10-1349811202.53-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:33:32.154+11 809096
  2012-10-10-1349811212.39-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:34:12.163+11 3344520
  2012-10-10-1349811252.4-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:34:32.098+11 1654920
  2012-10-10-1349811272.35-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:34:38.123+11 485512
  2012-10-10-1349811299.54-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:35:22.402+11 1923208
  2012-10-10-1349811323.74-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:35:26.445+11 225416
  2012-10-10-1349811326.68-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:35:32.615+11 499848
  2012-10-10-1349812532.03-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:55:34.714+11 224162
  2012-10-10-1349812536.86-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:55:41.347+11 374920
  2012-10-10-1349812541.6-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:55:44.606+11 252040
  2012-10-10-1349812545.3-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:55:51.113+11 489608
  2012-10-10-1349812619.22-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:57:01.67+11 201612
  2012-10-10-1349812622.42-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:57:05.042+11 219272
  2012-10-10-1349812625.32-demo.wav 44028 CanberraBlackMnt 2012-10-10 06:57:08.526+11 270472
  2012-10-10-1349812762.79-demo.wav 44014 CanberraBlackMnt 2012-10-10 06:59:28.109+11 444572
  2012-10-10-1349812768.44-demo.wav 44014 CanberraBlackMnt 2012-10-10 06:59:33.56+11 430216
  2012-10-10-1349812773.91-demo.wav 44014 CanberraBlackMnt 2012-10-10 06:59:40.895+11 587900
  2012-10-10-1349812820.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:00:23.07+11 221092
  2012-10-10-1349812824.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:00:27.145+11 262280
  2012-10-10-1349812827.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:00:30.677+11 276616
  2012-10-10-1349812831.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:00:35.845+11 344200
  2012-10-10-1349813055.95-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:04:19.245+11 276412
  2012-10-10-1349813060.5-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:04:23.224+11 229512
  2012-10-10-1349813063.4-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:04:27.859+11 374920
  2012-10-10-1349813109.83-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:05:16.836+11 589960
  2012-10-10-1349813137.25-demo.wav 44028 CanberraMtAinsli 2012-10-10 07:05:41.611+11 366728
  2012-10-10-1349813144.78-demo.wav 44028 CanberraMtAinsli 2012-10-10 07:05:49.57+11 403592
  2012-10-10-1349813149.76-demo.wav 44028 CanberraMtAinsli 2012-10-10 07:05:55.468+11 479368
  2012-10-10-1349813221.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:07:04.356+11 242806
  2012-10-10-1349813225.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:07:12.266+11 549016
  2012-10-10-1349813232.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:07:23.212+11 878680
  2012-10-10-1349813243.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:07:27.808+11 366728
  2012-10-10-1349813278.56-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:08:01.246+11 225924
  2012-10-10-1349813282.52-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:08:14.848+11 1034152
  2012-10-10-1349813295.11-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:08:19.053+11 331912
  2012-10-10-1349813299.23-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:08:23.784+11 383112
  2012-10-10-1349813341.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:09:08.661+11 641118
  2012-10-10-1349813348.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:09:13.855+11 415678
  2012-10-10-1349813553.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:12:36.205+11 214424
  2012-10-10-1349813556.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:12:46.372+11 833672
  2012-10-10-1349813566.61-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:14:03.574+11 6467720
  2012-10-10-1349813643.84-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:14:06.563+11 229512
  2012-10-10-1349813688.33-demo.wav 44028 CanberraMtAinsli 2012-10-10 07:14:52.151+11 318346
  2012-10-10-1349813694.02-demo.wav 44028 CanberraMtAinsli 2012-10-10 07:14:57.313+11 274068
  2012-10-10-1349813729.8-demo.wav 44014 CanberraBlackMnt 2012-10-10 07:15:49.567+11 1659016
  2012-10-10-1349813749.84-demo.wav 44014 CanberraBlackMnt 2012-10-10 07:15:56.521+11 561258
  2012-10-10-1349813766.49-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:16:15.127+11 727176
  2012-10-10-1349813776.7-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:16:23.916+11 603786
  2012-10-10-1349814477.64-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:28:01.09+11 290926
  2012-10-10-1349814481.98-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:28:05.373+11 284808
  2012-10-10-1349814485.96-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:28:09.592+11 305288
  2012-10-10-1349814491.24-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:28:17.057+11 486246
  2012-10-10-1349814497.34-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:28:21.531+11 352392
  2012-10-10-1349814596.27-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:29:59.775+11 293828
  2012-10-10-1349814600.03-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:30:08.005+11 669832
  2012-10-10-1349814609.28-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:30:19.403+11 852070
  2012-10-10-1349814709.15-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 07:31:52.782+11 304400
  2012-10-10-1349814713.73-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:32:09.982+11 1364104
  2012-10-10-1349814730.24-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:32:12.747+11 211080
  2012-10-10-1349814733.62-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:32:21.234+11 641160
  2012-10-10-1349814741.46-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:32:41.054+11 1646728
  2012-10-10-1349814761.41-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:32:44.203+11 233608
  2012-10-10-1349814764.48-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:32:49.142+11 393352
  2012-10-10-1349814776.9-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:33:03.558+11 561288
  2012-10-10-1349814809.59-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:33:33.721+11 348294
  2012-10-10-1349814819.39-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 07:33:46.915+11 628312
  2012-10-10-1349814827.57-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 07:34:12.92+11 2132104
  2012-10-10-1349814853.27-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 07:34:25.196+11 999528
  2012-10-10-1349814865.4-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 07:34:37.735+11 1036424
  2012-10-10-1349814878.01-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 07:34:41.597+11 301192
  2012-10-10-1349814883.1-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 07:34:59.707+11 1394824
  2012-10-10-1349814899.89-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 07:35:11.279+11 956552
  2012-10-10-1349814911.55-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 07:35:15.353+11 319624
  2012-10-10-1349814915.61-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 07:35:19.936+11 364542
  2012-10-10-1349814920.41-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 07:35:24.411+11 335994
  2012-10-10-1349814924.83-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 07:35:43.693+11 1585288
  2012-10-10-1349814973.0-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:36:15.548+11 213264
  2012-10-10-1349814977.28-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:36:20.231+11 247944
  2012-10-10-1349814982.55-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:36:27.982+11 456802
  2012-10-10-1349814988.25-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:36:55.316+11 2273276
  2012-10-10-1349815015.59-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:36:58.416+11 237704
  2012-10-10-1349815018.77-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:37:02.731+11 331912
  2012-10-10-1349815023.0-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:37:09.141+11 516232
  2012-10-10-1349815119.38-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:38:42.155+11 232612
  2012-10-10-1349815122.41-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:38:47.669+11 442504
  2012-10-10-1349815201.96-demo.wav 44031 CanberraBlackMnt 2012-10-10 07:40:05.548+11 298110
  2012-10-10-1349815207.46-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-10 07:40:25.379+11 1505416
  2012-10-10-1349815228.87-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:40:48.812+11 1675400
  2012-10-10-1349815249.62-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:40:52.631+11 252040
  2012-10-10-1349815252.99-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:40:57.603+11 389256
  2012-10-10-1349815289.71-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:41:40.619+11 915592
  2012-10-10-1349815302.05-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:41:57.468+11 1294472
  2012-10-10-1349815319.49-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:42:11.103+11 977032
  2012-10-10-1349815331.83-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:42:16.777+11 417928
  2012-10-10-1349815337.05-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:42:24.546+11 630920
  2012-10-10-1349815345.22-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:42:56.245+11 2607240
  2012-10-10-1349815376.41-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:42:59.17+11 233608
  2012-10-10-1349815379.42-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:43:06.236+11 573576
  2012-10-10-1349815503.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:45:08.316+11 398444
  2012-10-10-1349815509.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:45:12.583+11 290952
  2012-10-10-1349815513.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:45:19.966+11 577370
  2012-10-10-1349815571.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:46:13.945+11 222912
  2012-10-10-1349815574.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:46:16.854+11 213128
  2012-10-10-1349815577.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:46:19.29+11 184456
  2012-10-10-1349815580.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:46:24.527+11 329964
  2012-10-10-1349815647.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:47:29.962+11 212644
  2012-10-10-1349815651.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:47:34.65+11 272204
  2012-10-10-1349815655.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:47:39.723+11 340104
  2012-10-10-1349815662.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:47:53.476+11 915448
  2012-10-10-1349815674.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:47:57.622+11 260232
  2012-10-10-1349815726.07-demo.wav 44014 CanberraMtAinsli 2012-10-10 07:48:51.776+11 475944
  2012-10-10-1349815732.19-demo.wav 44014 CanberraMtAinsli 2012-10-10 07:48:55.739+11 297096
  2012-10-10-1349815736.67-demo.wav 44014 CanberraMtAinsli 2012-10-10 07:49:17.797+11 1776022
  2012-10-10-1349815758.06-demo.wav 44014 CanberraMtAinsli 2012-10-10 07:49:24.367+11 530568
  2012-10-10-1349815823.17-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-10 07:50:28.291+11 429790
  2012-10-10-1349815828.55-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-10 07:50:31.4+11 239752
  2012-10-10-1349815832.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:50:41.306+11 756672
  2012-10-10-1349815844.29-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:51:04.467+11 1322126
  2012-10-10-1349815864.7-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:51:07.2+11 211080
  2012-10-10-1349815868.2-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:51:22.449+11 1194284
  2012-10-10-1349815882.71-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:51:26.781+11 340104
  2012-10-10-1349815887.03-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:51:32.343+11 444438
  2012-10-10-1349815892.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:51:57.066+11 2050184
  2012-10-10-1349815917.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:52:01.667+11 360584
  2012-10-10-1349816023.07-demo.wav 44028 CanberraMtAinsli 2012-10-10 07:53:46.912+11 322200
  2012-10-10-1349816027.73-demo.wav 44028 CanberraMtAinsli 2012-10-10 07:53:50.396+11 225416
  2012-10-10-1349816030.57-demo.wav 44028 CanberraMtAinsli 2012-10-10 07:53:53.545+11 247944
  2012-10-10-1349816104.47-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 07:55:09.79+11 448424
  2012-10-10-1349816273.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:57:58.971+11 423954
  2012-10-10-1349816279.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:58:03.701+11 362632
  2012-10-10-1349816285.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:58:08.119+11 235656
  2012-10-10-1349816288.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:58:12.769+11 372870
  2012-10-10-1349816292.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 07:58:16.062+11 258128
  2012-10-10-1349816299.21-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:58:24.372+11 434312
  2012-10-10-1349816304.66-demo.wav 44028 CanberraBlackMnt 2012-10-10 07:58:27.873+11 270472
  2012-10-10-1349816401.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:00:04.387+11 234122
  2012-10-10-1349816405.69-demo.wav 44014 CanberraBlackMnt 2012-10-10 08:00:13.913+11 687656
  2012-10-10-1349816414.77-demo.wav 44014 CanberraBlackMnt 2012-10-10 08:00:30.234+11 1302664
  2012-10-10-1349816430.49-demo.wav 40092 PCL CNP CanberraBlackMnt 2012-10-10 08:00:56.268+11 2166920
  2012-10-10-1349816456.54-demo.wav 40092 PCL CNP CanberraBlackMnt 2012-10-10 08:01:27.885+11 2633864
  2012-10-10-1349816664.65-demo.wav 44014 CanberraBlackMnt 2012-10-10 08:04:30.488+11 490424
  2012-10-10-1349816815.44-demo.wav 44028 CanberraMtAinsli 2012-10-10 08:06:59.097+11 303952
  2012-10-10-1349816821.14-demo.wav 44028 CanberraMtAinsli 2012-10-10 08:07:05.841+11 392934
  2012-10-10-1349816826.27-demo.wav 44028 CanberraMtAinsli 2012-10-10 08:07:12.874+11 555144
  2012-10-10-1349816833.13-demo.wav 44028 CanberraMtAinsli 2012-10-10 08:07:16.534+11 286856
  2012-10-10-1349816837.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:07:31.445+11 1208456
  2012-10-10-1349816877.0-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 08:07:59.534+11 211080
  2012-10-10-1349816881.75-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:08:19.803+11 1515610
  2012-10-10-1349816901.25-demo.wav 44028 CanberraMtAinsli 2012-10-10 08:08:27.699+11 542856
  2012-10-10-1349816907.97-demo.wav 44028 CanberraMtAinsli 2012-10-10 08:08:32.526+11 383112
  2012-10-10-1349816912.78-demo.wav 44028 CanberraMtAinsli 2012-10-10 08:08:36.953+11 350344
  2012-10-10-1349816917.72-demo.wav 44028 CanberraMtAinsli 2012-10-10 08:08:55.002+11 1453824
  2012-10-10-1349817062.84-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:11:05.641+11 234760
  2012-10-10-1349817066.71-demo.wav 44028 CanberraMtAinsli 2012-10-10 08:11:12.609+11 493730
  2012-10-10-1349817072.92-demo.wav 44028 CanberraMtAinsli 2012-10-10 08:11:23.352+11 876680
  2012-10-10-1349817099.91-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:11:55.24+11 1288328
  2012-10-10-1349817115.95-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:11:58.549+11 219272
  2012-10-10-1349817120.83-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:12:15.269+11 1207466
  2012-10-10-1349817136.95-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:12:20.416+11 290950
  2012-10-10-1349817180.38-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:13:14.445+11 1181832
  2012-10-10-1349817233.25-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:13:56.468+11 266740
  2012-10-10-1349817342.25-demo.wav 44028 CanberraMtAinsli 2012-10-10 08:15:46.445+11 352408
  2012-10-10-1349817347.63-demo.wav 44028 CanberraMtAinsli 2012-10-10 08:15:50.169+11 213128
  2012-10-10-1349817351.94-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:16:02.35+11 876680
  2012-10-10-1349817385.44-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:16:27.94+11 211080
  2012-10-10-1349817388.96-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:16:34.03+11 423552
  2012-10-10-1349817394.3-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:16:39.16+11 405640
  2012-10-10-1349817400.73-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:16:44.674+11 331896
  2012-10-10-1349817425.39-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:17:09.033+11 305288
  2012-10-10-1349817429.3-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:17:12.294+11 249992
  2012-10-10-1349817432.96-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:17:16.257+11 278174
  2012-10-10-1349817439.19-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 08:17:27.361+11 685244
  2012-10-10-1349817448.12-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 08:17:45.224+11 1437832
  2012-10-10-1349817467.53-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 08:17:50.769+11 270472
  2012-10-10-1349817471.47-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 08:17:55.65+11 350344
  2012-10-10-1349817475.91-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 08:18:00.664+11 399496
  2012-10-10-1349817510.56-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 08:18:33.444+11 241800
  2012-10-10-1349817514.6-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 08:18:41.618+11 585574
  2012-10-10-1349817521.81-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 08:18:45.78+11 331912
  2012-10-10-1349817526.18-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 08:18:51.717+11 464982
  2012-10-10-1349817557.21-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 08:19:20.102+11 241800
  2012-10-10-1349817561.33-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 08:19:27.534+11 520158
  2012-10-10-1349817567.86-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 08:19:35.423+11 632968
  2012-10-10-1349817575.69-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 08:19:41.633+11 491158
  2012-10-10-1349817816.37-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:23:39.042+11 224320
  2012-10-10-1349817820.27-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:23:44.652+11 365820
  2012-10-10-1349817825.02-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:23:48.951+11 329864
  2012-10-10-1349817829.14-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:23:53.315+11 350344
  2012-10-10-1349817834.72-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:24:11.137+11 1377630
  2012-10-10-1349817853.07-demo.wav 44028 CanberraMtAinsli 2012-10-10 08:24:24.805+11 985224
  2012-10-10-1349817868.95-demo.wav 44028 CanberraMtAinsli 2012-10-10 08:24:39.702+11 903304
  2012-10-10-1349817996.8-demo.wav 44014 CanberraBlackMnt 2012-10-10 08:26:43.064+11 525508
  2012-10-10-1349818003.3-demo.wav 44014 CanberraBlackMnt 2012-10-10 08:26:45.941+11 221320
  2012-10-10-1349818006.19-demo.wav 44014 CanberraBlackMnt 2012-10-10 08:26:55.308+11 768108
  2012-10-10-1349818093.92-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:28:17.139+11 268702
  2012-10-10-1349818098.33-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:28:25.577+11 606398
  2012-10-10-1349818106.21-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:28:32.004+11 487560
  2012-10-10-1349818112.29-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:28:39.005+11 563336
  2012-10-10-1349818120.67-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:28:52.625+11 1004848
  2012-10-10-1349818135.98-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:29:01.017+11 424072
  2012-10-10-1349818141.2-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:29:04.068+11 237704
  2012-10-10-1349818144.29-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:29:08.528+11 356478
  2012-10-10-1349818240.22-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:30:43.621+11 284334
  2012-10-10-1349818245.79-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:30:49.951+11 348268
  2012-10-10-1349818250.6-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:30:56.856+11 526472
  2012-10-10-1349818284.39-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:31:26.699+11 194696
  2012-10-10-1349818303.64-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:31:46.218+11 216588
  2012-10-10-1349818307.28-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:31:49.942+11 223368
  2012-10-10-1349818311.08-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:31:55.728+11 391304
  2012-10-10-1349818316.27-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:32:00.234+11 331408
  2012-10-10-1349818321.3-demo.wav 44028 CanberraBlackMnt 2012-10-10 08:32:03.512+11 184420
  2012-10-10-1349818326.98-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 08:32:22.224+11 1282184
  2012-10-10-1349818343.23-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 08:32:30.562+11 613564
  2012-10-10-1349818350.83-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 08:32:44.395+11 1140808
  2012-10-10-1349818364.65-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:33:13.343+11 2410632
  2012-10-10-1349818393.93-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:33:24.244+11 868488
  2012-10-10-1349818405.33-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:33:38.471+11 1102504
  2012-10-10-1349818420.96-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:33:47.262+11 530568
  2012-10-10-1349818429.23-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:33:55.221+11 499436
  2012-10-10-1349818435.48-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:33:59.506+11 340104
  2012-10-10-1349818641.74-demo.wav 44014 CanberraBlackMnt 2012-10-10 08:37:27.019+11 440452
  2012-10-10-1349818647.37-demo.wav 44014 CanberraBlackMnt 2012-10-10 08:37:33.94+11 551048
  2012-10-10-1349818785.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:39:52.201+11 564342
  2012-10-10-1349818792.46-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:40:26.776+11 2885768
  2012-10-10-1349818862.91-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:41:05.412+11 211066
  2012-10-10-1349818867.26-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:41:12.476+11 438408
  2012-10-10-1349818873.41-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:41:17.447+11 340104
  2012-10-10-1349818909.43-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-10 08:41:56.416+11 585062
  2012-10-10-1349818916.72-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-10 08:42:02.154+11 454792
  2012-10-10-1349818922.46-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-10 08:42:05.604+11 264328
  2012-10-10-1349818927.68-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:42:15.339+11 641242
  2012-10-10-1349818936.47-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:42:20.294+11 321672
  2012-10-10-1349818941.14-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:42:23.523+11 200168
  2012-10-10-1349819046.19-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:44:08.754+11 211104
  2012-10-10-1349819087.65-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:44:50.347+11 223986
  2012-10-10-1349819092.92-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:44:58.035+11 428168
  2012-10-10-1349819098.87-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:45:03.053+11 350344
  2012-10-10-1349819103.89-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:45:07.656+11 315528
  2012-10-10-1349819108.29-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:45:10.869+11 215176
  2012-10-10-1349819111.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:45:30.409+11 1568652
  2012-10-10-1349819133.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:45:37.777+11 370654
  2012-10-10-1349819138.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:45:41.908+11 327816
  2012-10-10-1349819246.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:47:28.977+11 209374
  2012-10-10-1349819249.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:47:32.394+11 256136
  2012-10-10-1349819252.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:47:36.347+11 282760
  2012-10-10-1349819257.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:47:40.526+11 290952
  2012-10-10-1349819334.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:48:57.65+11 222056
  2012-10-10-1349819338.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:49:03.116+11 350272
  2012-10-10-1349819344.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:49:08.253+11 346248
  2012-10-10-1349819349.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:49:13.234+11 323720
  2012-10-10-1349819367.71-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:49:42.998+11 1286280
  2012-10-10-1349819385.4-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:49:49.918+11 376968
  2012-10-10-1349819410.96-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:50:15.815+11 407688
  2012-10-10-1349819417.99-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:50:36.453+11 1550472
  2012-10-10-1349819467.98-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-10 08:51:12.114+11 346140
  2012-10-10-1349819472.39-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-10 08:51:17.67+11 442504
  2012-10-10-1349819479.33-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-10 08:51:27.587+11 687774
  2012-10-10-1349819488.46-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:51:41.73+11 1116282
  2012-10-10-1349819502.6-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:51:46.878+11 356130
  2012-10-10-1349819507.78-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:51:57.715+11 833640
  2012-10-10-1349819542.6-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:52:27.222+11 385164
  2012-10-10-1349819547.77-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:52:42.024+11 1200264
  2012-10-10-1349819562.81-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:52:45.86+11 256136
  2012-10-10-1349819566.08-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:52:49.121+11 256136
  2012-10-10-1349819569.39-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:52:54.475+11 428168
  2012-10-10-1349819590.42-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:53:14.186+11 315528
  2012-10-10-1349819594.55-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:53:22.098+11 634408
  2012-10-10-1349819636.7-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:53:59.212+11 210334
  2012-10-10-1349819681.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:54:44.958+11 317442
  2012-10-10-1349819685.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:54:49.204+11 333960
  2012-10-10-1349819690.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:54:54.149+11 297096
  2012-10-10-1349819822.99-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 08:57:13.857+11 910712
  2012-10-10-1349819837.99-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:57:24.373+11 536712
  2012-10-10-1349819888.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:58:11.272+11 271612
  2012-10-10-1349819891.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:58:14.769+11 235656
  2012-10-10-1349819895.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 08:58:24.502+11 751752
  2012-10-10-1349819911.26-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:58:49.631+11 1544522
  2012-10-10-1349819932.08-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:59:09.963+11 1503044
  2012-10-10-1349819950.21-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:59:14.072+11 323720
  2012-10-10-1349819954.32-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:59:16.468+11 180360
  2012-10-10-1349819957.77-demo.wav 40067 CanberraMtAinsli 2012-10-10 08:59:22.175+11 367754
  2012-10-10-1349819962.64-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:59:36.146+11 1136776
  2012-10-10-1349819976.4-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:59:42.14+11 483464
  2012-10-10-1349819982.91-demo.wav 40067 CanberraBlackMnt 2012-10-10 08:59:46.135+11 270472
  2012-10-10-1349820013.25-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:00:22.708+11 794760
  2012-10-10-1349820022.97-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:00:25.553+11 217224
  2012-10-10-1349820041.78-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:01:01.216+11 1634440
  2012-10-10-1349820066.55-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:01:21.581+11 1261720
  2012-10-10-1349820082.37-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:01:26.008+11 303240
  2012-10-10-1349820086.15-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:01:29.077+11 245896
  2012-10-10-1349820089.63-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:01:36.414+11 569480
  2012-10-10-1349820099.72-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:01:44.886+11 436360
  2012-10-10-1349820105.49-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:02:00.425+11 1255560
  2012-10-10-1349820121.76-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:02:12.204+11 878728
  2012-10-10-1349820132.5-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:02:14.73+11 186504
  2012-10-10-1349820134.99-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:02:24.832+11 827526
  2012-10-10-1349820147.2-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:02:36.501+11 777516
  2012-10-10-1349820156.74-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:02:39.969+11 272520
  2012-10-10-1349820160.86-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:02:43.885+11 252040
  2012-10-10-1349820215.87-demo.wav 40097 PCL HRB CanberraMtAinsli 2012-10-10 09:03:38.387+11 209242
  2012-10-10-1349820264.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 09:04:29.823+11 477742
  2012-10-10-1349820435.27-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:07:17.769+11 209594
  2012-10-10-1349820492.84-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:08:17.409+11 384546
  2012-10-10-1349820498.82-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:08:27.943+11 765280
  2012-10-10-1349820508.22-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:08:31.571+11 282760
  2012-10-10-1349820511.8-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:08:35.455+11 305288
  2012-10-10-1349820515.69-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:08:38.06+11 200784
  2012-10-10-1349820786.84-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:13:09.626+11 232256
  2012-10-10-1349820791.83-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:13:15.7+11 322012
  2012-10-10-1349820796.45-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:13:22.749+11 528520
  2012-10-10-1349820803.04-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:13:26.218+11 266190
  2012-10-10-1349820816.23-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:13:45.414+11 768136
  2012-10-10-1349820942.21-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:15:47.218+11 418044
  2012-10-10-1349820948.43-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:15:51.87+11 286092
  2012-10-10-1349820952.79-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:15:58.456+11 473186
  2012-10-10-1349820958.67-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:16:03.73+11 426120
  2012-10-10-1349820964.34-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:16:11.018+11 563336
  2012-10-10-1349820974.43-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:16:22.142+11 647304
  2012-10-10-1349820983.33-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:16:28.919+11 469128
  2012-10-10-1349820992.06-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:16:36.719+11 387208
  2012-10-10-1349820997.91-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:16:42.922+11 421950
  2012-10-10-1349821009.65-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:17:05.924+11 1368200
  2012-10-10-1349821027.03-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:17:10.431+11 283808
  2012-10-10-1349821030.74-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:17:13.707+11 249992
  2012-10-10-1349821034.07-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:17:18.23+11 348220
  2012-10-10-1349821160.85-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:19:26.355+11 462588
  2012-10-10-1349821167.41-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:19:30.541+11 264250
  2012-10-10-1349821170.77-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:19:38.038+11 610402
  2012-10-10-1349821178.77-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:19:44.736+11 499784
  2012-10-10-1349821293.56-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:21:36.072+11 210158
  2012-10-10-1349821298.0-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:21:40.674+11 225416
  2012-10-10-1349821300.88-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:21:46.061+11 436360
  2012-10-10-1349821306.23-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:21:55.923+11 815240
  2012-10-10-1349821316.15-demo.wav 44014 CanberraBlackMnt 2012-10-10 09:22:18.062+11 1841288
  2012-10-10-1349821338.33-demo.wav 44014 CanberraBlackMnt 2012-10-10 09:22:22.985+11 389256
  2012-10-10-1349821385.44-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:23:16.261+11 909448
  2012-10-10-1349821423.19-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:23:46.517+11 278664
  2012-10-10-1349821428.05-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:23:50.754+11 227464
  2012-10-10-1349821431.02-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:23:55.805+11 401544
  2012-10-10-1349821436.07-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:24:00.536+11 374616
  2012-10-10-1349821440.77-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:24:04.946+11 349814
  2012-10-10-1349821470.68-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:24:50.55+11 1223660
  2012-10-10-1349821490.76-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:24:53.315+11 215176
  2012-10-10-1349821494.88-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:25:08.692+11 1161352
  2012-10-10-1349821510.11-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:25:14.685+11 385160
  2012-10-10-1349821559.49-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:26:02.222+11 229286
  2012-10-10-1349821563.24-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:26:05.801+11 213128
  2012-10-10-1349821566.54-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:26:11.205+11 393352
  2012-10-10-1349821571.47-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:26:14.561+11 260232
  2012-10-10-1349821576.9-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:26:27.859+11 920468
  2012-10-10-1349821588.84-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:26:32.574+11 308410
  2012-10-10-1349821592.89-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:26:40.63+11 651400
  2012-10-10-1349821675.5-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:27:58.173+11 220558
  2012-10-10-1349821699.15-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:28:22.117+11 247944
  2012-10-10-1349821702.72-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:28:31.596+11 745608
  2012-10-10-1349821740.54-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:29:03.052+11 211080
  2012-10-10-1349821744.11-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:29:07.254+11 262800
  2012-10-10-1349821747.51-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:29:15.056+11 635016
  2012-10-10-1349821772.75-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:29:36.922+11 348296
  2012-10-10-1349821813.83-demo.wav 44014 CanberraMtAinsli 2012-10-10 09:30:19.426+11 469088
  2012-10-10-1349821847.38-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:30:51.522+11 346248
  2012-10-10-1349821851.79-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:30:54.255+11 206984
  2012-10-10-1349821854.52-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:31:29.356+11 2926726
  2012-10-10-1349821953.93-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:32:36.527+11 218376
  2012-10-10-1349821985.76-demo.wav 44028 CanberraMtAinsli 2012-10-10 09:33:08.734+11 249992
  2012-10-10-1349821990.61-demo.wav 44028 CanberraMtAinsli 2012-10-10 09:33:13.96+11 278664
  2012-10-10-1349822035.48-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:33:58.363+11 237704
  2012-10-10-1349822042.4-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:34:09.2+11 570066
  2012-10-10-1349822049.46-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:34:16.122+11 561288
  2012-10-10-1349822056.79-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:34:19.51+11 229490
  2012-10-10-1349822059.88-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:34:51.862+11 2689108
  2012-10-10-1349822136.82-demo.wav 44028 CanberraMtAinsli 2012-10-10 09:35:42.374+11 465032
  2012-10-10-1349822145.28-demo.wav 44028 CanberraMtAinsli 2012-10-10 09:35:50.604+11 448142
  2012-10-10-1349822188.05-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:36:31.426+11 284144
  2012-10-10-1349822191.96-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:36:34.927+11 249992
  2012-10-10-1349822222.37-demo.wav 44028 CanberraMtAinsli 2012-10-10 09:37:19.638+11 1452168
  2012-10-10-1349822272.65-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:37:57.17+11 377526
  2012-10-10-1349822406.0-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:40:08.567+11 209104
  2012-10-10-1349822411.31-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:40:28.883+11 1478792
  2012-10-10-1349822429.28-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:40:32.943+11 305288
  2012-10-10-1349822461.6-demo.wav 40097 PCL HRB CanberraMtAinsli 2012-10-10 09:41:05.694+11 344108
  2012-10-10-1349822518.38-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:42:00.906+11 214242
  2012-10-10-1349822521.48-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:42:03.624+11 180360
  2012-10-10-1349822524.28-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:42:17.115+11 1079382
  2012-10-10-1349822537.86-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:42:29.2+11 954496
  2012-10-10-1349822549.47-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:42:35.032+11 466992
  2012-10-10-1349822556.11-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:42:40.004+11 320256
  2012-10-10-1349822593.34-demo.wav 44014 CanberraBlackMnt 2012-10-10 09:43:19.257+11 495752
  2012-10-10-1349822600.14-demo.wav 40097 PCL HRB CanberraMtAinsli 2012-10-10 09:43:36.521+11 1374342
  2012-10-10-1349822677.65-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-10 09:44:43.281+11 469618
  2012-10-10-1349822776.18-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:46:20.18+11 334204
  2012-10-10-1349822780.58-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:46:23.473+11 245896
  2012-10-10-1349822785.91-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:46:34.901+11 755848
  2012-10-10-1349822795.47-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:46:40.735+11 440456
  2012-10-10-1349822803.15-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:46:49.926+11 571506
  2012-10-10-1349822838.67-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:47:26.194+11 632968
  2012-10-10-1349822847.54-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:47:31.342+11 317744
  2012-10-10-1349822851.8-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:47:37.591+11 487560
  2012-10-10-1349822858.25-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:47:44.577+11 532616
  2012-10-10-1349822866.46-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:47:49.739+11 278664
  2012-10-10-1349822869.97-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:47:52.744+11 233608
  2012-10-10-1349823051.14-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:50:55.155+11 337250
  2012-10-10-1349823055.52-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:50:58.383+11 237704
  2012-10-10-1349823059.47-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:51:03.225+11 313480
  2012-10-10-1349823063.76-demo.wav 44014 CanberraMtAinsli 2012-10-10 09:51:10.546+11 569480
  2012-10-10-1349823070.72-demo.wav 44014 CanberraMtAinsli 2012-10-10 09:51:13.904+11 262280
  2012-10-10-1349823199.08-demo.wav 40097 PCL HRB CanberraMtAinsli 2012-10-10 09:53:21.627+11 210342
  2012-10-10-1349823230.31-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:53:54.376+11 339246
  2012-10-10-1349823236.72-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:54:08.203+11 966792
  2012-10-10-1349823248.44-demo.wav 40067 CanberraMtAinsli 2012-10-10 09:54:18.302+11 829576
  2012-10-10-1349823464.78-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:57:48.521+11 312412
  2012-10-10-1349823469.97-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:57:55.379+11 448508
  2012-10-10-1349823475.75-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:58:00.684+11 409736
  2012-10-10-1349823481.29-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:58:05.752+11 374834
  2012-10-10-1349823485.94-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:58:09.3+11 282760
  2012-10-10-1349823489.56-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:58:12.145+11 213128
  2012-10-10-1349823510.83-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:58:33.738+11 245896
  2012-10-10-1349823513.99-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:58:39.842+11 491656
  2012-10-10-1349823520.72-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:58:50.266+11 801000
  2012-10-10-1349823530.53-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:58:52.902+11 198792
  2012-10-10-1349823533.7-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:58:59.823+11 514076
  2012-10-10-1349823550.76-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:59:19.531+11 737416
  2012-10-10-1349823561.61-demo.wav 44028 CanberraBlackMnt 2012-10-10 09:59:27.523+11 496684
  2012-10-10-1349823571.01-demo.wav 40067 CanberraBlackMnt 2012-10-10 09:59:40.455+11 791308
  2012-10-10-1349823601.62-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:00:03.935+11 194696
  2012-10-10-1349823604.12-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:00:08.186+11 338056
  2012-10-10-1349823608.43-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:00:11.463+11 254088
  2012-10-10-1349823611.74-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:00:13.909+11 182408
  2012-10-10-1349823652.03-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-10 10:00:56.443+11 369890
  2012-10-10-1349823657.34-demo.wav 40097 PCL HRB CanberraMtAinsli 2012-10-10 10:01:12.243+11 1248564
  2012-10-10-1349823673.04-demo.wav 40097 PCL HRB CanberraMtAinsli 2012-10-10 10:01:15.447+11 200840
  2012-10-10-1349823676.12-demo.wav 40097 PCL HRB CanberraMtAinsli 2012-10-10 10:01:21.358+11 438408
  2012-10-10-1349823724.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:02:08.574+11 348040
  2012-10-10-1349823728.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:02:12.236+11 290952
  2012-10-10-1349823732.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:02:15.998+11 295038
  2012-10-10-1349823742.06-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:02:26.434+11 368776
  2012-10-10-1349823747.3-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:02:30.686+11 282878
  2012-10-10-1349823750.94-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:02:39.077+11 684168
  2012-10-10-1349823759.33-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:03:09.338+11 2523272
  2012-10-10-1349823790.55-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:03:13.173+11 221320
  2012-10-10-1349823793.85-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:03:20.109+11 528506
  2012-10-10-1349823860.62-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:04:23.136+11 211080
  2012-10-10-1349823864.88-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:04:36.5+11 977032
  2012-10-10-1349823876.69-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:04:42.828+11 514184
  2012-10-10-1349823882.99-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:04:46.984+11 336008
  2012-10-10-1349823887.88-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:04:50.196+11 194582
  2012-10-10-1349823890.78-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 10:05:20.369+11 2486408
  2012-10-10-1349823922.7-demo.wav 44014 CanberraMtAinsli 2012-10-10 10:05:31.303+11 723080
  2012-10-10-1349823958.64-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:06:10.065+11 960648
  2012-10-10-1349823970.96-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:06:18.122+11 602010
  2012-10-10-1349823978.38-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:06:21.543+11 266376
  2012-10-10-1349823981.8-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:06:24.946+11 263706
  2012-10-10-1349823985.22-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:06:30.077+11 407688
  2012-10-10-1349823990.75-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:06:37.493+11 565304
  2012-10-10-1349823997.92-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:06:43.999+11 512136
  2012-10-10-1349824004.25-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:06:50.728+11 544522
  2012-10-10-1349824016.92-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:07:16.016+11 1603720
  2012-10-10-1349824037.16-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:07:27.028+11 826912
  2012-10-10-1349824083.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:08:07.67+11 311432
  2012-10-10-1349824088.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:08:10.424+11 192648
  2012-10-10-1349824093.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:08:16.273+11 270468
  2012-10-10-1349824096.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:08:19.355+11 237704
  2012-10-10-1349824110.4-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:08:38.537+11 684168
  2012-10-10-1349824119.32-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:08:43.508+11 352134
  2012-10-10-1349824130.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:08:54.743+11 360584
  2012-10-10-1349824137.87-demo.wav 40097 PCL HRB CanberraMtAinsli 2012-10-10 10:09:08.421+11 888968
  2012-10-10-1349824148.76-demo.wav 40097 PCL HRB CanberraMtAinsli 2012-10-10 10:09:12.029+11 274568
  2012-10-10-1349824152.86-demo.wav 40097 PCL HRB CanberraMtAinsli 2012-10-10 10:09:19.845+11 585796
  2012-10-10-1349824160.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:09:27.924+11 620678
  2012-10-10-1349824168.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:09:33.406+11 428168
  2012-10-10-1349824173.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:09:37.367+11 307190
  2012-10-10-1349824177.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:09:40.626+11 253792
  2012-10-10-1349824181.23-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:09:57.587+11 1376392
  2012-10-10-1349824199.74-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:10:01.982+11 186504
  2012-10-10-1349824203.9-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:10:10.134+11 522992
  2012-10-10-1349824230.8-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:10:35.901+11 428168
  2012-10-10-1349824236.15-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:10:39.832+11 311432
  2012-10-10-1349824240.46-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:10:43.175+11 229512
  2012-10-10-1349824243.59-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:10:54.139+11 886920
  2012-10-10-1349824255.79-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:10:59.142+11 282700
  2012-10-10-1349824260.47-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:11:11.002+11 886862
  2012-10-10-1349824271.62-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:11:16.31+11 393322
  2012-10-10-1349824276.57-demo.wav 10301 CanberraMtAinsli 2012-10-10 10:11:26.764+11 858248
  2012-10-10-1349824288.42-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:11:43.548+11 1271944
  2012-10-10-1349824304.53-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:11:47.159+11 219272
  2012-10-10-1349824308.15-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:11:56.527+11 702572
  2012-10-10-1349824334.78-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 10:12:23.057+11 694866
  2012-10-10-1349824343.35-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 10:12:27.09+11 307234
  2012-10-10-1349824347.94-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:12:45.266+11 1455610
  2012-10-10-1349824365.52-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:12:47.854+11 196744
  2012-10-10-1349824368.07-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:12:53.688+11 473224
  2012-10-10-1349824376.25-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:12:59.569+11 278046
  2012-10-10-1349824402.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:13:26.74+11 381064
  2012-10-10-1349824408.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:13:32.685+11 366728
  2012-10-10-1349824413.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:13:37.096+11 341902
  2012-10-10-1349824433.88-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 10:13:57.908+11 336092
  2012-10-10-1349824438.4-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 10:14:02.476+11 342152
  2012-10-10-1349824442.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:14:19.93+11 1435774
  2012-10-10-1349824470.41-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 10:14:39.696+11 780424
  2012-10-10-1349824480.75-demo.wav i1045214 CanberraBlackMnt 2012-10-10 10:14:46.264+11 460660
  2012-10-10-1349824487.87-demo.wav i1045214 CanberraBlackMnt 2012-10-10 10:14:58.797+11 918318
  2012-10-10-1349824500.74-demo.wav 10301 CanberraMtAinsli 2012-10-10 10:15:14.91+11 1192072
  2012-10-10-1349824516.21-demo.wav 10301 CanberraMtAinsli 2012-10-10 10:15:22.695+11 540972
  2012-10-10-1349824524.19-demo.wav 10301 CanberraMtAinsli 2012-10-10 10:15:26.658+11 204936
  2012-10-10-1349824528.1-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 10:15:33.682+11 467448
  2012-10-10-1349824535.08-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 10:15:43.046+11 668454
  2012-10-10-1349824544.83-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 10:15:53.801+11 751750
  2012-10-10-1349824553.92-demo.wav 10301 CanberraMtAinsli 2012-10-10 10:16:05.165+11 946312
  2012-10-10-1349824566.22-demo.wav 10301 CanberraMtAinsli 2012-10-10 10:16:18.592+11 1038654
  2012-10-10-1349824578.83-demo.wav 10301 CanberraMtAinsli 2012-10-10 10:16:28.007+11 772232
  2012-10-10-1349824597.7-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:16:47.173+11 793976
  2012-10-10-1349824607.49-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:16:50.53+11 256136
  2012-10-10-1349824610.87-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:16:53.31+11 204902
  2012-10-10-1349824614.06-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:16:57.69+11 304752
  2012-10-10-1349824621.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:17:14.297+11 1091654
  2012-10-10-1349824634.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:17:17.899+11 258180
  2012-10-10-1349824638.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:17:35.603+11 1472648
  2012-10-10-1349824823.73-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 10:20:26.246+11 209616
  2012-10-10-1349824829.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:20:45.987+11 1380488
  2012-10-10-1349824847.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:20:53.147+11 491656
  2012-10-10-1349824854.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:20:59.713+11 475254
  2012-10-10-1349824873.69-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:21:18.158+11 374920
  2012-10-10-1349824879.05-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:21:22.073+11 252040
  2012-10-10-1349824883.09-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:21:30.418+11 614536
  2012-10-10-1349824891.56-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:21:35.869+11 362632
  2012-10-10-1349824896.66-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:21:45.171+11 714836
  2012-10-10-1349824905.41-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:22:20.096+11 2912386
  2012-10-10-1349824940.35-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:22:23.629+11 274556
  2012-10-10-1349824976.27-demo.wav 44036 CanberraBlackMnt 2012-10-10 10:23:00.153+11 326278
  2012-10-10-1349824981.93-demo.wav 44036 CanberraBlackMnt 2012-10-10 10:23:07.969+11 508040
  2012-10-10-1349824988.96-demo.wav 44036 CanberraBlackMnt 2012-10-10 10:23:11.933+11 249992
  2012-10-10-1349824992.7-demo.wav 44036 CanberraBlackMnt 2012-10-10 10:23:16.105+11 284808
  2012-10-10-1349825051.17-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 10:24:15.018+11 321858
  2012-10-10-1349825108.68-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:25:11.699+11 254088
  2012-10-10-1349825114.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:25:19.963+11 469128
  2012-10-10-1349825120.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:25:22.471+11 192648
  2012-10-10-1349825122.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:25:29.365+11 553096
  2012-10-10-1349825137.09-demo.wav 44036 CanberraBlackMnt 2012-10-10 10:25:42.137+11 424072
  2012-10-10-1349825143.77-demo.wav 44036 CanberraBlackMnt 2012-10-10 10:25:47.698+11 323720
  2012-10-10-1349825147.93-demo.wav 44036 CanberraBlackMnt 2012-10-10 10:25:52.207+11 360584
  2012-10-10-1349825152.44-demo.wav 44036 CanberraBlackMnt 2012-10-10 10:25:54.684+11 188552
  2012-10-10-1349825155.24-demo.wav 44036 CanberraBlackMnt 2012-10-10 10:26:17.78+11 1894536
  2012-10-10-1349825178.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:26:24.03+11 479368
  2012-10-10-1349825184.76-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:26:30.28+11 465032
  2012-10-10-1349825191.93-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:26:43.835+11 1001608
  2012-10-10-1349825237.64-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:27:21.431+11 318618
  2012-10-10-1349825241.95-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:27:27.137+11 436360
  2012-10-10-1349825250.14-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:27:33.785+11 305288
  2012-10-10-1349825268.25-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:27:52.343+11 344200
  2012-10-10-1349825273.54-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:28:17.407+11 2004638
  2012-10-10-1349825329.87-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:28:52.398+11 210684
  2012-10-10-1349825333.49-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:28:58.631+11 427592
  2012-10-10-1349825338.77-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:29:06.736+11 669832
  2012-10-10-1349825353.04-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 10:29:17.378+11 362632
  2012-10-10-1349825357.65-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 10:29:20.424+11 231560
  2012-10-10-1349825362.06-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 10:29:26.577+11 379016
  2012-10-10-1349825366.77-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 10:29:29.294+11 211080
  2012-10-10-1349825378.7-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 10:29:54.994+11 1368200
  2012-10-10-1349825395.76-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 10:29:58.333+11 215174
  2012-10-10-1349825404.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:30:17.609+11 1104008
  2012-10-10-1349825418.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:30:20.7+11 223368
  2012-10-10-1349825457.03-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:31:00.594+11 296058
  2012-10-10-1349825463.28-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:31:06.989+11 311432
  2012-10-10-1349825485.63-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:31:28.44+11 235656
  2012-10-10-1349825489.32-demo.wav 44036 CanberraMtAinsli 2012-10-10 10:31:49.844+11 1722164
  2012-10-10-1349825521.7-demo.wav 44036 CanberraMtAinsli 2012-10-10 10:32:07.012+11 446466
  2012-10-10-1349825527.29-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 10:32:17.908+11 891016
  2012-10-10-1349825663.2-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 10:34:26.179+11 248294
  2012-10-10-1349825666.59-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 10:34:32.437+11 489604
  2012-10-10-1349825687.97-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:34:51.724+11 313480
  2012-10-10-1349825692.65-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:35:12.218+11 1643902
  2012-10-10-1349825712.57-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:35:14.855+11 190600
  2012-10-10-1349825715.11-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:35:37.202+11 1855624
  2012-10-10-1349825737.46-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:35:40.766+11 278664
  2012-10-10-1349825741.05-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 10:35:50.23+11 772232
  2012-10-10-1349825751.96-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 10:35:56.874+11 409736
  2012-10-10-1349825796.37-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 10:36:41.558+11 430216
  2012-10-10-1349825802.12-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 10:36:45.559+11 288904
  2012-10-10-1349825941.07-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:39:03.675+11 217144
  2012-10-10-1349826037.84-demo.wav 10301 CanberraBlackMnt 2012-10-10 10:40:41.268+11 289914
  2012-10-10-1349826044.37-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 10:41:01.944+11 1476744
  2012-10-10-1349826082.72-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 10:41:25.302+11 215176
  2012-10-10-1349826086.37-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:41:33.022+11 555192
  2012-10-10-1349826095.22-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 10:41:46.463+11 943724
  2012-10-10-1349826107.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:41:55.797+11 690312
  2012-10-10-1349826116.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:41:59.099+11 239752
  2012-10-10-1349826138.16-demo.wav 10301 CanberraBlackMnt 2012-10-10 10:42:32.523+11 1206408
  2012-10-10-1349826154.75-demo.wav 10301 CanberraBlackMnt 2012-10-10 10:42:49.819+11 1265800
  2012-10-10-1349826253.07-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:44:16.174+11 259804
  2012-10-10-1349826257.97-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:44:25.204+11 608392
  2012-10-10-1349826265.45-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:44:30.67+11 438198
  2012-10-10-1349826308.51-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:45:11.273+11 233608
  2012-10-10-1349826311.46-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:45:13.702+11 188552
  2012-10-10-1349826314.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:45:21.485+11 589960
  2012-10-10-1349826324.74-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 10:45:30.006+11 441028
  2012-10-10-1349826330.95-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 10:45:38.778+11 654510
  2012-10-10-1349826339.01-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 10:45:42.349+11 278664
  2012-10-10-1349826343.65-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 10:45:46.325+11 219272
  2012-10-10-1349826346.51-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 10:45:50.315+11 317356
  2012-10-10-1349826350.65-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 10:46:04.187+11 1138778
  2012-10-10-1349826364.91-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 10:46:25.67+11 1742650
  2012-10-10-1349826388.29-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:46:33.598+11 446600
  2012-10-10-1349826394.74-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 10:46:40.598+11 487560
  2012-10-10-1349826403.3-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:46:52.667+11 787002
  2012-10-10-1349826412.98-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:46:56.694+11 311432
  2012-10-10-1349826492.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:48:15.382+11 210074
  2012-10-10-1349826496.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:48:20.754+11 391304
  2012-10-10-1349826501.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:48:29.28+11 688046
  2012-10-10-1349826510.0-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:48:43.171+11 1108104
  2012-10-10-1349826523.56-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:48:48.588+11 419976
  2012-10-10-1349826529.32-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:49:09.64+11 1701914
  2012-10-10-1349826609.75-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:50:15.847+11 514184
  2012-10-10-1349826617.49-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:50:26.574+11 764040
  2012-10-10-1349826626.98-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:50:29.211+11 188552
  2012-10-10-1349826653.71-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:50:56.817+11 260232
  2012-10-10-1349826659.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:51:09.259+11 788616
  2012-10-10-1349826671.91-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:52:05.412+11 4495496
  2012-10-10-1349826726.33-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:52:09.759+11 288646
  2012-10-10-1349826730.31-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:52:13.162+11 239752
  2012-10-10-1349826765.65-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:52:50.103+11 372974
  2012-10-10-1349826771.02-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:52:53.651+11 219272
  2012-10-10-1349826774.54-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:53:00.637+11 514184
  2012-10-10-1349826781.22-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:53:05.414+11 350296
  2012-10-10-1349826786.13-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:53:08.435+11 192438
  2012-10-10-1349826788.66-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:53:28.177+11 1640578
  2012-10-10-1349826810.63-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:53:35.627+11 419976
  2012-10-10-1349826815.87-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:53:38.663+11 235656
  2012-10-10-1349826841.94-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:54:04.94+11 252040
  2012-10-10-1349826846.0-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:54:12.501+11 542800
  2012-10-10-1349826854.48-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:54:18.958+11 374920
  2012-10-10-1349826860.24-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:54:27.159+11 581312
  2012-10-10-1349826867.42-demo.wav 40067 CanberraBlackMnt 2012-10-10 10:54:49.409+11 1847432
  2012-10-10-1349826944.28-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:55:46.779+11 208908
  2012-10-10-1349826948.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:56:02.49+11 1205392
  2012-10-10-1349826964.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:56:09.689+11 458888
  2012-10-10-1349826969.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:56:18.827+11 745492
  2012-10-10-1349826979.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:56:25.838+11 523896
  2012-10-10-1349826986.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 10:56:32.806+11 540752
  2012-10-10-1349826997.35-demo.wav i1045350 CanberraBlackMnt 2012-10-10 10:56:59.804+11 1886624
  2012-10-10-1349827019.99-demo.wav i1045350 CanberraBlackMnt 2012-10-10 10:57:03.849+11 323720
  2012-10-10-1349827025.41-demo.wav i1045350 CanberraBlackMnt 2012-10-10 10:57:13.456+11 675976
  2012-10-10-1349827035.65-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:57:35.001+11 1624200
  2012-10-10-1349827057.86-demo.wav 44028 CanberraMtAinsli 2012-10-10 10:57:49.277+11 960160
  2012-10-10-1349827070.19-demo.wav 44014 CanberraBlackMnt 2012-10-10 10:57:59.139+11 751752
  2012-10-10-1349827113.12-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:58:37.056+11 325768
  2012-10-10-1349827117.89-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:58:43.64+11 483464
  2012-10-10-1349827123.93-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:58:47.685+11 315528
  2012-10-10-1349827131.52-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:59:02.805+11 948358
  2012-10-10-1349827143.11-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:59:26.478+11 1961972
  2012-10-10-1349827166.77-demo.wav 44028 CanberraBlackMnt 2012-10-10 10:59:30.506+11 313170
  2012-10-10-1349827172.74-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:59:40.927+11 688264
  2012-10-10-1349827182.07-demo.wav 40067 CanberraMtAinsli 2012-10-10 10:59:46.01+11 331838
  2012-10-10-1349827186.89-demo.wav 10301 CanberraBlackMnt 2012-10-10 10:59:55.184+11 694304
  2012-10-10-1349827195.67-demo.wav 10301 CanberraBlackMnt 2012-10-10 11:00:02.281+11 555144
  2012-10-10-1349827221.25-demo.wav i1045214 CanberraBlackMnt 2012-10-10 11:00:36.713+11 1300616
  2012-10-10-1349827236.94-demo.wav i1045214 CanberraBlackMnt 2012-10-10 11:00:41.012+11 342152
  2012-10-10-1349827241.28-demo.wav i1045214 CanberraBlackMnt 2012-10-10 11:00:46.958+11 477320
  2012-10-10-1349827247.58-demo.wav i1045214 CanberraBlackMnt 2012-10-10 11:00:50.939+11 282760
  2012-10-10-1349827276.61-demo.wav i1045214 CanberraBlackMnt 2012-10-10 11:01:20.398+11 319624
  2012-10-10-1349827281.86-demo.wav 10301 CanberraBlackMnt 2012-10-10 11:01:34.641+11 1075314
  2012-10-10-1349827294.9-demo.wav 10301 CanberraBlackMnt 2012-10-10 11:01:41.432+11 549000
  2012-10-10-1349827345.61-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:02:29.626+11 338056
  2012-10-10-1349827352.49-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:02:35.395+11 241800
  2012-10-10-1349827355.91-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:02:51.683+11 1327240
  2012-10-10-1349827373.29-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:02:57.119+11 323720
  2012-10-10-1349827428.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:03:52.569+11 370824
  2012-10-10-1349827473.86-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:04:36.367+11 209650
  2012-10-10-1349827507.61-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:05:10.19+11 216530
  2012-10-10-1349827510.67-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:05:12.828+11 182408
  2012-10-10-1349827514.33-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 11:05:28.395+11 1181832
  2012-10-10-1349827548.91-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 11:05:52.958+11 340104
  2012-10-10-1349827553.38-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 11:05:55.926+11 213128
  2012-10-10-1349827591.23-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:06:34.285+11 255158
  2012-10-10-1349827596.54-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 11:06:43.676+11 598152
  2012-10-10-1349827604.47-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:06:51.667+11 606344
  2012-10-10-1349827753.22-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:09:17.237+11 336052
  2012-10-10-1349827759.08-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:09:23.135+11 337488
  2012-10-10-1349827764.28-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:09:36.483+11 1021428
  2012-10-10-1349827777.15-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:09:40.829+11 309360
  2012-10-10-1349827783.69-demo.wav i1045253 CanberraBlackMnt 2012-10-10 11:10:00.155+11 1380078
  2012-10-10-1349827800.42-demo.wav i1045253 CanberraBlackMnt 2012-10-10 11:10:04.07+11 307336
  2012-10-10-1349827806.44-demo.wav i1045253 CanberraBlackMnt 2012-10-10 11:10:18.394+11 1005704
  2012-10-10-1349827818.66-demo.wav i1045253 CanberraBlackMnt 2012-10-10 11:10:21.031+11 198792
  2012-10-10-1349827821.34-demo.wav i1045253 CanberraBlackMnt 2012-10-10 11:10:23.923+11 219272
  2012-10-10-1349827825.8-demo.wav i1045253 CanberraBlackMnt 2012-10-10 11:10:34.427+11 725128
  2012-10-10-1349828031.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:13:54.418+11 213178
  2012-10-10-1349828034.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:13:57.199+11 211080
  2012-10-10-1349828037.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:14:08.019+11 886626
  2012-10-10-1349828092.51-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:14:56.965+11 374882
  2012-10-10-1349828168.72-demo.wav 40074 FG 7 CanberraMtAinsli 2012-10-10 11:16:11.272+11 209314
  2012-10-10-1349828173.2-demo.wav 10301 CanberraBlackMnt 2012-10-10 11:16:27.304+11 1183880
  2012-10-10-1349828190.41-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:16:39.149+11 735368
  2012-10-10-1349828199.39-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:16:46.677+11 612488
  2012-10-10-1349828249.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:17:43.05+11 1173640
  2012-10-10-1349828263.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:17:46.014+11 215176
  2012-10-10-1349828300.41-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:18:26.303+11 495752
  2012-10-10-1349828307.41-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:18:58.441+11 2605192
  2012-10-10-1349828339.35-demo.wav 10301 CanberraBlackMnt 2012-10-10 11:19:18.389+11 1600926
  2012-10-10-1349828358.65-demo.wav 10301 CanberraBlackMnt 2012-10-10 11:19:21.138+11 209032
  2012-10-10-1349828500.67-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:21:43.202+11 209140
  2012-10-10-1349828548.37-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 11:22:30.892+11 210828
  2012-10-10-1349828552.65-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 11:22:36.82+11 350344
  2012-10-10-1349828579.94-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 11:23:04.664+11 397448
  2012-10-10-1349828585.79-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 11:23:12.523+11 561530
  2012-10-10-1349828593.38-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 11:23:17.095+11 311432
  2012-10-10-1349828597.37-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 11:23:19.859+11 206984
  2012-10-10-1349828600.56-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 11:23:31.717+11 938120
  2012-10-10-1349828623.67-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 11:23:49.885+11 522376
  2012-10-10-1349828630.12-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 11:23:52.897+11 233608
  2012-10-10-1349828633.31-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 11:24:00.143+11 573576
  2012-10-10-1349828641.16-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 11:24:08.396+11 606368
  2012-10-10-1349828648.58-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 11:24:14.007+11 456838
  2012-10-10-1349828654.97-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 11:24:19.264+11 358504
  2012-10-10-1349828700.45-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 11:25:03.679+11 269356
  2012-10-10-1349828707.33-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 11:25:15.897+11 721032
  2012-10-10-1349828716.82-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 11:25:21.355+11 376968
  2012-10-10-1349828768.2-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:26:11.768+11 301192
  2012-10-10-1349828772.8-demo.wav 44028 CanberraBlackMnt 2012-10-10 11:26:19.296+11 547414
  2012-10-10-1349828779.59-demo.wav 44028 CanberraBlackMnt 2012-10-10 11:26:22.732+11 262280
  2012-10-10-1349828783.46-demo.wav 44028 CanberraBlackMnt 2012-10-10 11:26:59.066+11 2990216
  2012-10-10-1349828819.32-demo.wav 44028 CanberraBlackMnt 2012-10-10 11:27:02.311+11 247944
  2012-10-10-1349828825.9-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:27:12.444+11 548664
  2012-10-10-1349828835.23-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:27:21.267+11 508040
  2012-10-10-1349828841.53-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:27:26.685+11 432264
  2012-10-10-1349828848.25-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:27:33.095+11 405220
  2012-10-10-1349828853.27-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:28:04.217+11 2601096
  2012-10-10-1349828885.16-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:28:16.638+11 965064
  2012-10-10-1349828897.42-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:28:19.578+11 180360
  2012-10-10-1349828900.06-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:28:26.467+11 536712
  2012-10-10-1349828906.7-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:28:32.749+11 510032
  2012-10-10-1349828913.08-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:29:05.358+11 2384438
  2012-10-10-1349828945.62-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:29:08.459+11 239752
  2012-10-10-1349828973.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:29:35.901+11 235656
  2012-10-10-1349829023.81-demo.wav 44028 CanberraBlackMnt 2012-10-10 11:30:27.277+11 291530
  2012-10-10-1349829028.92-demo.wav 44028 CanberraBlackMnt 2012-10-10 11:30:32.71+11 314910
  2012-10-10-1349829033.23-demo.wav 44028 CanberraBlackMnt 2012-10-10 11:30:36.467+11 270472
  2012-10-10-1349829036.7-demo.wav 44028 CanberraBlackMnt 2012-10-10 11:30:41.837+11 432264
  2012-10-10-1349829087.36-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 11:31:46.618+11 1122206
  2012-10-10-1349829106.78-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 11:31:49.27+11 209032
  2012-10-10-1349829171.71-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 11:32:54.249+11 209074
  2012-10-10-1349829178.2-demo.wav 44014 CanberraMtAinsli 2012-10-10 11:33:07.403+11 768782
  2012-10-10-1349829215.67-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:33:38.963+11 276616
  2012-10-10-1349829219.98-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:33:48.778+11 737242
  2012-10-10-1349829229.04-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:33:52.469+11 288904
  2012-10-10-1349829232.84-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:33:55.25+11 202888
  2012-10-10-1349829235.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:34:03.338+11 639112
  2012-10-10-1349829243.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:34:08.546+11 413832
  2012-10-10-1349829249.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:34:19.907+11 845578
  2012-10-10-1349829260.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:34:24.384+11 356488
  2012-10-10-1349829264.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:34:29.305+11 383110
  2012-10-10-1349829269.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:34:33.067+11 292706
  2012-10-10-1349829278.39-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:34:52.422+11 1177736
  2012-10-10-1349829293.38-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:34:58.01+11 386328
  2012-10-10-1349829299.38-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:35:02.512+11 262280
  2012-10-10-1349829336.69-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:35:39.556+11 238906
  2012-10-10-1349829339.85-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:35:42.298+11 202888
  2012-10-10-1349829342.49-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:35:48.179+11 477320
  2012-10-10-1349829356.16-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:36:14.391+11 1534088
  2012-10-10-1349829375.51-demo.wav 44028 CanberraBlackMnt 2012-10-10 11:36:34.356+11 1576440
  2012-10-10-1349829394.6-demo.wav 44028 CanberraBlackMnt 2012-10-10 11:36:37.12+11 211080
  2012-10-10-1349829398.1-demo.wav 44028 CanberraBlackMnt 2012-10-10 11:36:41.054+11 244388
  2012-10-10-1349829477.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:38:00.176+11 240860
  2012-10-10-1349829480.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:38:03.115+11 206984
  2012-10-10-1349829486.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:38:11.06+11 415880
  2012-10-10-1349829491.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:38:15.776+11 381064
  2012-10-10-1349829523.45-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 11:38:45.977+11 210022
  2012-10-10-1349829583.69-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:39:47.606+11 325434
  2012-10-10-1349829588.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:40:00.377+11 983818
  2012-10-10-1349829600.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:40:02.83+11 186282
  2012-10-10-1349829606.22-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:40:19.47+11 1111740
  2012-10-10-1349829643.55-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:40:49.362+11 485960
  2012-10-10-1349829650.37-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:40:53.309+11 245896
  2012-10-10-1349829654.13-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:40:57.321+11 268378
  2012-10-10-1349829658.46-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:41:01.364+11 243848
  2012-10-10-1349829661.95-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:41:12.633+11 899208
  2012-10-10-1349829674.06-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:41:28.906+11 1249416
  2012-10-10-1349829691.19-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:41:37.857+11 558816
  2012-10-10-1349829698.11-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:41:48.055+11 835648
  2012-10-10-1349829708.36-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:41:56.815+11 710690
  2012-10-10-1349829717.2-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:42:00.523+11 278664
  2012-10-10-1349829721.79-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:42:10.16+11 702600
  2012-10-10-1349829732.79-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:42:15.485+11 227464
  2012-10-10-1349829737.09-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:42:25.122+11 673928
  2012-10-10-1349829746.62-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:42:31.437+11 401544
  2012-10-10-1349829751.82-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:42:36.663+11 405638
  2012-10-10-1349829787.45-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:43:10.032+11 215176
  2012-10-10-1349829790.6-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:43:21.698+11 931832
  2012-10-10-1349829802.45-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:43:30.344+11 663682
  2012-10-10-1349829883.35-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:44:46.224+11 240672
  2012-10-10-1349830062.19-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:47:45.096+11 242802
  2012-10-10-1349830066.07-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:47:49.115+11 256136
  2012-10-10-1349830069.72-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:48:01.291+11 970848
  2012-10-10-1349830082.13-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-10 11:48:11.122+11 753436
  2012-10-10-1349830092.02-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 11:48:31.453+11 1630870
  2012-10-10-1349830130.19-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:48:52.999+11 235656
  2012-10-10-1349830133.88-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:48:56.437+11 215176
  2012-10-10-1349830136.67-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:49:00.416+11 315528
  2012-10-10-1349830140.61-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:49:03.037+11 204936
  2012-10-10-1349830180.85-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:49:46.195+11 450696
  2012-10-10-1349830187.38-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:49:49.888+11 211080
  2012-10-10-1349830192.2-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 11:50:02.75+11 882052
  2012-10-10-1349830356.2-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:52:38.741+11 209390
  2012-10-10-1349830359.91-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:52:44.672+11 399496
  2012-10-10-1349830365.77-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:52:48.668+11 241800
  2012-10-10-1349830368.88-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:52:58.131+11 778328
  2012-10-10-1349830450.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:54:13.707+11 252684
  2012-10-10-1349830455.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:54:19.827+11 340104
  2012-10-10-1349830460.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:54:24.366+11 358536
  2012-10-10-1349830546.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:55:51.327+11 406808
  2012-10-10-1349830551.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:55:54.317+11 225416
  2012-10-10-1349830568.73-demo.wav 44028 CanberraBlackMnt 2012-10-10 11:56:30.104+11 1796232
  2012-10-10-1349830591.1-demo.wav 44028 CanberraBlackMnt 2012-10-10 11:56:34.612+11 293000
  2012-10-10-1349830701.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 11:58:24.13+11 209590
  2012-10-10-1349830765.72-demo.wav 40067 CanberraBlackMnt 2012-10-10 11:59:28.918+11 268822
  2012-10-10-1349830787.68-demo.wav 40067 CanberraMtAinsli 2012-10-10 11:59:50.991+11 278664
  2012-10-10-1349830793.77-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:00:12.123+11 1544132
  2012-10-10-1349830876.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:01:19.539+11 273986
  2012-10-10-1349830879.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:01:22.239+11 204936
  2012-10-10-1349830882.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:01:26.374+11 319624
  2012-10-10-1349830943.43-demo.wav 44028 CanberraMtAinsli 2012-10-10 12:02:25.948+11 210422
  2012-10-10-1349830949.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:02:38.172+11 753956
  2012-10-10-1349830958.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:02:41.329+11 237704
  2012-10-10-1349830962.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:02:49.94+11 651400
  2012-10-10-1349830994.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:03:17.146+11 221320
  2012-10-10-1349830998.57-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:03:35.945+11 1459226
  2012-10-10-1349831019.03-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:03:50.555+11 968840
  2012-10-10-1349831031.51-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:03:54.726+11 270472
  2012-10-10-1349831036.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:04:02.569+11 495730
  2012-10-10-1349831042.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:04:05.442+11 221320
  2012-10-10-1349831070.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:04:34.371+11 362632
  2012-10-10-1349831074.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:04:37.655+11 254088
  2012-10-10-1349831078.54-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:04:44.529+11 502260
  2012-10-10-1349831085.83-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:04:49.498+11 305288
  2012-10-10-1349831089.77-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:04:54.276+11 378828
  2012-10-10-1349831094.74-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:05:04.348+11 809096
  2012-10-10-1349831106.47-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:05:08.935+11 209032
  2012-10-10-1349831110.38-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:05:17.359+11 587912
  2012-10-10-1349831117.57-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:05:21.227+11 305288
  2012-10-10-1349831145.08-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:05:49.201+11 346242
  2012-10-10-1349831149.41-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:05:53.021+11 301156
  2012-10-10-1349831164.69-demo.wav 44028 CanberraBlackMnt 2012-10-10 12:06:08.606+11 327816
  2012-10-10-1349831168.75-demo.wav 44028 CanberraBlackMnt 2012-10-10 12:06:14.774+11 505992
  2012-10-10-1349831233.38-demo.wav 44028 CanberraBlackMnt 2012-10-10 12:07:17.083+11 310504
  2012-10-10-1349831237.98-demo.wav 44028 CanberraBlackMnt 2012-10-10 12:07:20.408+11 202888
  2012-10-10-1349831241.21-demo.wav 44028 CanberraBlackMnt 2012-10-10 12:07:32.763+11 970206
  2012-10-10-1349831260.87-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 12:07:51.045+11 854152
  2012-10-10-1349831272.12-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 12:08:02.265+11 850390
  2012-10-10-1349831282.53-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 12:08:14.047+11 968432
  2012-10-10-1349831295.28-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 12:08:43.929+11 2402292
  2012-10-10-1349831324.19-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 12:08:48.75+11 383112
  2012-10-10-1349831328.96-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 12:09:32.62+11 3668104
  2012-10-10-1349831394.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:09:57.78+11 272520
  2012-10-10-1349831398.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:10:00.33+11 188552
  2012-10-10-1349831400.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:10:04.412+11 325768
  2012-10-10-1349831404.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:10:09.073+11 366728
  2012-10-10-1349831449.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:10:51.738+11 208708
  2012-10-10-1349831453.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:10:57.187+11 334160
  2012-10-10-1349831457.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:11:00.724+11 276616
  2012-10-10-1349831461.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:11:08.701+11 604296
  2012-10-10-1349831507.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:11:50.443+11 277546
  2012-10-10-1349831510.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:11:54.978+11 360584
  2012-10-10-1349831515.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:12:01.067+11 487402
  2012-10-10-1349831521.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:12:04.616+11 276368
  2012-10-10-1349831524.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:12:08.754+11 325664
  2012-10-10-1349831528.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:12:11.67+11 227352
  2012-10-10-1349831536.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:12:26.099+11 819336
  2012-10-10-1349831546.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:12:34.496+11 682070
  2012-10-10-1349831562.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:12:51.991+11 821384
  2012-10-10-1349831572.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:13:02.027+11 761360
  2012-10-10-1349831582.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:13:09.069+11 569480
  2012-10-10-1349831589.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:13:14.563+11 409498
  2012-10-10-1349831594.83-demo.wav 44028 CanberraBlackMnt 2012-10-10 12:13:25.88+11 929928
  2012-10-10-1349831633.12-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 12:13:56.161+11 254088
  2012-10-10-1349831638.15-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 12:14:01.117+11 243528
  2012-10-10-1349831692.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:14:55.098+11 210022
  2012-10-10-1349831697.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:15:03.029+11 450696
  2012-10-10-1349831703.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:15:06.56+11 272520
  2012-10-10-1349831734.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:15:38.377+11 348296
  2012-10-10-1349831739.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:15:43.475+11 366728
  2012-10-10-1349831743.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:15:48.598+11 409680
  2012-10-10-1349831754.1-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:16:05.109+11 922994
  2012-10-10-1349831791.19-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:16:35.189+11 333386
  2012-10-10-1349831841.12-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:17:26.868+11 482916
  2012-10-10-1349831850.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:17:40.903+11 841864
  2012-10-10-1349831861.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:17:44.857+11 266374
  2012-10-10-1349831865.13-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:18:14.126+11 2437256
  2012-10-10-1349831895.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:18:31.086+11 1347150
  2012-10-10-1349831911.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:18:33.61+11 182408
  2012-10-10-1349831913.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:18:39.443+11 467080
  2012-10-10-1349831919.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:18:45.803+11 497772
  2012-10-10-1349831926.66-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:19:01.164+11 1216030
  2012-10-10-1349831986.03-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:19:50.796+11 400656
  2012-10-10-1349831991.32-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:19:55+11 309384
  2012-10-10-1349831995.92-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:20:05.677+11 823406
  2012-10-10-1349832049.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:20:51.708+11 210326
  2012-10-10-1349832052.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:20:54.965+11 215176
  2012-10-10-1349832076.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:21:23.28+11 532616
  2012-10-10-1349832160.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:22:43.11+11 208756
  2012-10-10-1349832206.36-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 12:23:28.95+11 209704
  2012-10-10-1349832278.24-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 12:24:44.346+11 512122
  2012-10-10-1349832284.63-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 12:24:49.49+11 407688
  2012-10-10-1349832324.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:25:31.15+11 521066
  2012-10-10-1349832331.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:25:52.757+11 1800328
  2012-10-10-1349832379.29-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 12:26:24.047+11 398660
  2012-10-10-1349832384.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:26:30.878+11 532616
  2012-10-10-1349832391.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:26:35.05+11 333960
  2012-10-10-1349832395.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:26:39.68+11 329864
  2012-10-10-1349832403.27-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 12:26:54.574+11 947986
  2012-10-10-1349832414.83-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 12:26:58.863+11 337678
  2012-10-10-1349832418.98-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 12:27:02.503+11 295046
  2012-10-10-1349832423.37-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:27:25.059+11 1820754
  2012-10-10-1349832445.32-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:27:27.902+11 219272
  2012-10-10-1349832448.14-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:27:32.569+11 372872
  2012-10-10-1349832472.62-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:28:01.949+11 784520
  2012-10-10-1349832492.88-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:28:20.202+11 616656
  2012-10-10-1349832501.71-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:28:25.941+11 356488
  2012-10-10-1349832524.76-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 12:28:52.433+11 645256
  2012-10-10-1349832532.83-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 12:29:12.455+11 1648776
  2012-10-10-1349832552.71-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 12:29:14.957+11 188550
  2012-10-10-1349832582.49-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:29:47.405+11 413832
  2012-10-10-1349832643.82-demo.wav 42009 CanberraMtAinsli 2012-10-10 12:31:00.262+11 1379126
  2012-10-10-1349832661.26-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 12:31:24.292+11 1931556
  2012-10-10-1349832684.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:31:32.925+11 710792
  2012-10-10-1349832693.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:31:36.903+11 317576
  2012-10-10-1349832697.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:31:43.327+11 462984
  2012-10-10-1349832740.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:32:27.061+11 523646
  2012-10-10-1349832749.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:32:35.283+11 478062
  2012-10-10-1349832756.61-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:32:45.737+11 765448
  2012-10-10-1349832846.81-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:34:09.324+11 210460
  2012-10-10-1349832850.78-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:34:13.304+11 211080
  2012-10-10-1349832854.73-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:34:25.467+11 897960
  2012-10-10-1349832896.68-demo.wav i1045254 CanberraBlackMnt 2012-10-10 12:34:59.193+11 210608
  2012-10-10-1349832902.27-demo.wav i1045254 CanberraBlackMnt 2012-10-10 12:35:04.915+11 221320
  2012-10-10-1349832907.18-demo.wav i1045254 CanberraBlackMnt 2012-10-10 12:35:11.372+11 352392
  2012-10-10-1349832911.64-demo.wav i1045254 CanberraBlackMnt 2012-10-10 12:35:13.802+11 182408
  2012-10-10-1349833019.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:37:02.612+11 215670
  2012-10-10-1349833023.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:37:08.653+11 411784
  2012-10-10-1349833028.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:37:11.449+11 219272
  2012-10-10-1349833031.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:37:15.075+11 282760
  2012-10-10-1349833036.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:37:23.862+11 628216
  2012-10-10-1349833084.98-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:38:07.546+11 213464
  2012-10-10-1349833089.16-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:38:25.576+11 1378440
  2012-10-10-1349833107.37-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:38:37.261+11 831624
  2012-10-10-1349833118.94-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:38:44.758+11 489608
  2012-10-10-1349833125.06-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:38:48.593+11 297096
  2012-10-10-1349833129.02-demo.wav i1045214 CanberraMtAinsli 2012-10-10 12:38:55.435+11 540808
  2012-10-10-1349833135.67-demo.wav i1045214 CanberraMtAinsli 2012-10-10 12:38:58.2+11 211080
  2012-10-10-1349833146.72-demo.wav i1045214 CanberraMtAinsli 2012-10-10 12:39:09.564+11 239752
  2012-10-10-1349833212.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:40:15.262+11 214154
  2012-10-10-1349833231.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:40:34.929+11 256136
  2012-10-10-1349833235.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:40:39.656+11 368776
  2012-10-10-1349833240.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:40:46.359+11 524424
  2012-10-10-1349833252.79-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 12:41:09.928+11 1441928
  2012-10-10-1349833271.0-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 12:41:17.632+11 554240
  2012-10-10-1349833281.58-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 12:41:28.885+11 614490
  2012-10-10-1349833296.78-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 12:41:40.824+11 340104
  2012-10-10-1349833342.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:42:25.453+11 254220
  2012-10-10-1349833347.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:42:32.006+11 376968
  2012-10-10-1349833352.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:42:35.388+11 262280
  2012-10-10-1349833356.65-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:42:47.647+11 919318
  2012-10-10-1349833367.96-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:42:52.012+11 340092
  2012-10-10-1349833372.29-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 12:43:07.028+11 1239176
  2012-10-10-1349833387.27-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 12:43:13.687+11 540808
  2012-10-10-1349833399.48-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 12:43:31.487+11 1007752
  2012-10-10-1349833416.88-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:43:42.659+11 487560
  2012-10-10-1349833424.08-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 12:43:51.801+11 646372
  2012-10-10-1349833432.24-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 12:43:56.339+11 342152
  2012-10-10-1349833436.66-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 12:43:59.276+11 219266
  2012-10-10-1349833445.94-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:44:15.53+11 800904
  2012-10-10-1349833463.9-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 12:44:29.082+11 432464
  2012-10-10-1349833473.59-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:44:48.453+11 1247368
  2012-10-10-1349833489.79-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:44:52.147+11 198792
  2012-10-10-1349833492.36-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:44:54.608+11 190600
  2012-10-10-1349833518.73-demo.wav 40067 CanberraMtAinsli 2012-10-10 12:45:22.611+11 323016
  2012-10-10-1349833523.91-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:45:29.533+11 471530
  2012-10-10-1349833532.73-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:45:36.389+11 307336
  2012-10-10-1349833536.72-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:45:41.968+11 440428
  2012-10-10-1349833542.83-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:45:47.354+11 378388
  2012-10-10-1349833549.27-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:45:52.549+11 274568
  2012-10-10-1349833563.35-demo.wav i1045254 CanberraBlackMnt 2012-10-10 12:46:08.659+11 446600
  2012-10-10-1349833568.8-demo.wav i1045254 CanberraBlackMnt 2012-10-10 12:46:11.345+11 211080
  2012-10-10-1349833572.86-demo.wav i1045254 CanberraBlackMnt 2012-10-10 12:46:16.524+11 307314
  2012-10-10-1349833576.77-demo.wav i1045254 CanberraBlackMnt 2012-10-10 12:46:18.953+11 182408
  2012-10-10-1349833691.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:48:14.506+11 209830
  2012-10-10-1349833762.85-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 12:49:25.669+11 236156
  2012-10-10-1349833766.05-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 12:49:28.366+11 190600
  2012-10-10-1349833768.63-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 12:49:32.897+11 354440
  2012-10-10-1349833773.69-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 12:49:36.387+11 225416
  2012-10-10-1349833902.29-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 12:51:45.084+11 232548
  2012-10-10-1349833905.34-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 12:51:47.929+11 217224
  2012-10-10-1349833909.27-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:51:57.025+11 650900
  2012-10-10-1349833917.23-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:52:03.466+11 524424
  2012-10-10-1349833924.12-demo.wav 40067 CanberraBlackMnt 2012-10-10 12:52:11.299+11 603762
  2012-10-10-1349834040.71-demo.wav 44014 CanberraMtAinsli 2012-10-10 12:54:09.222+11 715236
  2012-10-10-1349834049.57-demo.wav 44014 CanberraMtAinsli 2012-10-10 12:54:15.024+11 458888
  2012-10-10-1349834061.1-demo.wav 10306 CanberraMtAinsli 2012-10-10 12:54:29.233+11 684168
  2012-10-10-1349834070.31-demo.wav 10306 CanberraMtAinsli 2012-10-10 12:54:34.444+11 346466
  2012-10-10-1349834074.7-demo.wav 10306 CanberraMtAinsli 2012-10-10 12:54:41.891+11 604296
  2012-10-10-1349834121.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:55:26.152+11 379016
  2012-10-10-1349834126.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:55:28.934+11 211080
  2012-10-10-1349834129.3-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 12:55:54.809+11 2140296
  2012-10-10-1349834155.68-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 12:56:00.285+11 385436
  2012-10-10-1349834161.3-demo.wav 10306 CanberraMtAinsli 2012-10-10 12:56:12.635+11 950866
  2012-10-10-1349834173.58-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 12:56:23.598+11 840000
  2012-10-10-1349834236.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:57:21.309+11 396914
  2012-10-10-1349834241.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 12:57:24.944+11 290952
  2012-10-10-1349834245.86-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 12:57:32.661+11 571528
  2012-10-10-1349834252.91-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 12:57:39.587+11 561288
  2012-10-10-1349834275.39-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 12:58:02.006+11 555144
  2012-10-10-1349834399.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:00:04.378+11 402380
  2012-10-10-1349834406.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:00:14.159+11 663592
  2012-10-10-1349834414.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:00:19.376+11 399496
  2012-10-10-1349834453.56-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 13:00:56.074+11 211034
  2012-10-10-1349834459.45-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 13:01:08.521+11 761992
  2012-10-10-1349834576.41-demo.wav 40067 CanberraBlackMnt 2012-10-10 13:03:00.116+11 310848
  2012-10-10-1349834612.36-demo.wav 40067 CanberraMtAinsli 2012-10-10 13:03:36.48+11 342922
  2012-10-10-1349834619.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:03:51.293+11 984252
  2012-10-10-1349834632.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:03:59.283+11 549000
  2012-10-10-1349834639.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:04:03.659+11 340104
  2012-10-10-1349834643.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:04:09.476+11 468386
  2012-10-10-1349834650.3-demo.wav 40067 CanberraBlackMnt 2012-10-10 13:04:14.895+11 385216
  2012-10-10-1349834836.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:07:20.16+11 301898
  2012-10-10-1349834842.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:07:26.569+11 313480
  2012-10-10-1349834846.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:07:30.908+11 342146
  2012-10-10-1349834893.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:08:16.543+11 256712
  2012-10-10-1349834897.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:08:22.25+11 355156
  2012-10-10-1349834902.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:08:26.57+11 338056
  2012-10-10-1349834906.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:08:34.957+11 675934
  2012-10-10-1349834915.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:08:42.819+11 578932
  2012-10-10-1349834923.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:08:45.851+11 233608
  2012-10-10-1349834960.51-demo.wav 40067 CanberraMtAinsli 2012-10-10 13:09:26.866+11 536712
  2012-10-10-1349835319.56-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 13:15:22.646+11 258096
  2012-10-10-1349835322.91-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 13:15:25.378+11 209032
  2012-10-10-1349835425.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:17:10.495+11 395644
  2012-10-10-1349835430.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:17:19.542+11 739464
  2012-10-10-1349835637.29-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 13:20:40.457+11 256630
  2012-10-10-1349835640.79-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 13:20:42.964+11 182408
  2012-10-10-1349835827.39-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-10 13:23:51.32+11 328246
  2012-10-10-1349835831.56-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-10 13:23:55.988+11 372872
  2012-10-10-1349835836.24-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-10 13:24:04.166+11 663490
  2012-10-10-1349835870.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:24:33.117+11 247944
  2012-10-10-1349835883.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:24:48.38+11 422024
  2012-10-10-1349835921.98-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 13:25:24.609+11 216630
  2012-10-10-1349835927.7-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 13:25:30.838+11 264328
  2012-10-10-1349835932.46-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 13:25:51.569+11 1357114
  2012-10-10-1349835951.83-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 13:25:54.423+11 217224
  2012-10-10-1349835985.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:26:29.426+11 295522
  2012-10-10-1349835989.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:26:32.469+11 231560
  2012-10-10-1349835992.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:26:41.54+11 737416
  2012-10-10-1349836007.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:26:53.27+11 489608
  2012-10-10-1349836015.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:26:59.894+11 395400
  2012-10-10-1349836020.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:27:05.311+11 407564
  2012-10-10-1349836127.82-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 13:28:51.099+11 272530
  2012-10-10-1349836314.26-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 13:31:59.466+11 435490
  2012-10-10-1349836322.43-demo.wav 40067 CanberraBlackMnt 2012-10-10 13:32:17.383+11 1255560
  2012-10-10-1349836340.15-demo.wav 40067 CanberraBlackMnt 2012-10-10 13:32:23.315+11 266376
  2012-10-10-1349836388.33-demo.wav 40067 CanberraMtAinsli 2012-10-10 13:33:10.851+11 210880
  2012-10-10-1349836394.2-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 13:33:22.759+11 718984
  2012-10-10-1349836438.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:34:01.518+11 209864
  2012-10-10-1349836444.29-demo.wav 40067 CanberraBlackMnt 2012-10-10 13:34:14.895+11 891016
  2012-10-10-1349836619.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:37:02.708+11 303522
  2012-10-10-1349836624.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:37:07.149+11 194696
  2012-10-10-1349836627.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:37:10.593+11 227464
  2012-10-10-1349836631.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:37:15.505+11 356488
  2012-10-10-1349836662.97-demo.wav 40067 CanberraMtAinsli 2012-10-10 13:37:48.306+11 450696
  2012-10-10-1349836669.38-demo.wav 40067 CanberraMtAinsli 2012-10-10 13:37:53.181+11 317576
  2012-10-10-1349836673.38-demo.wav 40067 CanberraMtAinsli 2012-10-10 13:38:06.096+11 1070460
  2012-10-10-1349836686.96-demo.wav 40067 CanberraMtAinsli 2012-10-10 13:38:10.412+11 286182
  2012-10-10-1349836691.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:38:18.991+11 647922
  2012-10-10-1349836724.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:38:48.785+11 319624
  2012-10-10-1349836729.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:38:53.482+11 364680
  2012-10-10-1349836733.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:38:58.093+11 364680
  2012-10-10-1349836762.26-demo.wav 44036 CanberraBlackMnt 2012-10-10 13:39:26.192+11 329864
  2012-10-10-1349836770.05-demo.wav 44036 CanberraBlackMnt 2012-10-10 13:39:34.664+11 384084
  2012-10-10-1349836774.92-demo.wav 44036 CanberraBlackMnt 2012-10-10 13:39:38.788+11 325768
  2012-10-10-1349836778.94-demo.wav 44036 CanberraBlackMnt 2012-10-10 13:39:42.544+11 303208
  2012-10-10-1349836905.09-demo.wav 40067 CanberraBlackMnt 2012-10-10 13:41:47.601+11 210662
  2012-10-10-1349836934.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:42:19.034+11 402012
  2012-10-10-1349836939.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:42:22.086+11 233608
  2012-10-10-1349837024.84-demo.wav 40067 CanberraMtAinsli 2012-10-10 13:43:48.483+11 305984
  2012-10-10-1349837048.38-demo.wav 40067 CanberraBlackMnt 2012-10-10 13:44:10.86+11 209032
  2012-10-10-1349837052.62-demo.wav 40067 CanberraBlackMnt 2012-10-10 13:44:15.447+11 237704
  2012-10-10-1349837056.69-demo.wav 40067 CanberraBlackMnt 2012-10-10 13:44:20.307+11 297134
  2012-10-10-1349837060.56-demo.wav 40067 CanberraBlackMnt 2012-10-10 13:44:27.643+11 596052
  2012-10-10-1349837105.87-demo.wav 40067 CanberraBlackMnt 2012-10-10 13:45:13.533+11 643206
  2012-10-10-1349837174.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:46:22.832+11 721032
  2012-10-10-1349837198.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:46:58.028+11 1609864
  2012-10-10-1349837218.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:47:12.588+11 1134824
  2012-10-10-1349837232.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:47:16.375+11 301192
  2012-10-10-1349837236.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:47:20.037+11 288892
  2012-10-10-1349837320.05-demo.wav 44036 CanberraBlackMnt 2012-10-10 13:48:44.88+11 404030
  2012-10-10-1349837325.15-demo.wav 44036 CanberraBlackMnt 2012-10-10 13:48:48.252+11 260232
  2012-10-10-1349837328.8-demo.wav 44036 CanberraBlackMnt 2012-10-10 13:48:55.396+11 555144
  2012-10-10-1349837336.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:49:16.733+11 1705834
  2012-10-10-1349837381.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:49:46.862+11 475272
  2012-10-10-1349837480.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:51:22.675+11 209402
  2012-10-10-1349837504.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:51:47.119+11 209032
  2012-10-10-1349837507.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:51:51.476+11 295048
  2012-10-10-1349837511.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 13:51:56.476+11 393352
  2012-10-10-1349837587.86-demo.wav 40067 CanberraBlackMnt 2012-10-10 13:53:11.573+11 312016
  2012-10-10-1349837593.01-demo.wav 40067 CanberraBlackMnt 2012-10-10 13:53:16.097+11 254766
  2012-10-10-1349837596.3-demo.wav 40067 CanberraBlackMnt 2012-10-10 13:53:31.073+11 1238820
  2012-10-10-1349837835.61-demo.wav 44036 CanberraBlackMnt 2012-10-10 13:57:21.06+11 458038
  2012-10-10-1349837841.41-demo.wav 44036 CanberraBlackMnt 2012-10-10 13:57:24.799+11 284808
  2012-10-10-1349837846.21-demo.wav 44036 CanberraBlackMnt 2012-10-10 13:57:36.149+11 833420
  2012-10-10-1349837856.54-demo.wav 44036 CanberraBlackMnt 2012-10-10 13:57:50.311+11 1159304
  2012-10-10-1349837874.16-demo.wav 44036 CanberraBlackMnt 2012-10-10 13:58:01.245+11 596104
  2012-10-10-1349837882.13-demo.wav 44028 CanberraMtAinsli 2012-10-10 13:58:21.961+11 1667208
  2012-10-10-1349837903.56-demo.wav 44028 CanberraBlackMnt 2012-10-10 13:58:29.297+11 479560
  2012-10-10-1349837909.69-demo.wav 44028 CanberraBlackMnt 2012-10-10 13:58:34.379+11 393352
  2012-10-10-1349837914.66-demo.wav 44028 CanberraBlackMnt 2012-10-10 13:58:38.311+11 307336
  2012-10-10-1349837919.24-demo.wav 44028 CanberraBlackMnt 2012-10-10 13:58:43.362+11 339488
  2012-10-10-1349837949.8-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 13:59:12.26+11 206984
  2012-10-10-1349838221.97-demo.wav 40067 CanberraBlackMnt 2012-10-10 14:03:44.689+11 223512
  2012-10-10-1349838253.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:04:16.639+11 247060
  2012-10-10-1349838258.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:04:22.194+11 338796
  2012-10-10-1349838262.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:04:33.104+11 895052
  2012-10-10-1349838274.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:04:40.311+11 490942
  2012-10-10-1349838280.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:04:45.633+11 430146
  2012-10-10-1349838286.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:05:06.012+11 1679480
  2012-10-10-1349838405.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:06:48.268+11 220922
  2012-10-10-1349838410.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:06:54.693+11 321672
  2012-10-10-1349838415.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:07:00.872+11 465026
  2012-10-10-1349838421.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:07:07.904+11 567432
  2012-10-10-1349838428.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:07:11.123+11 243848
  2012-10-10-1349838431.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:07:14.528+11 229512
  2012-10-10-1349838453.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:07:39.63+11 508040
  2012-10-10-1349838459.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:07:43.322+11 286828
  2012-10-10-1349838516.25-demo.wav 44028 CanberraMtAinsli 2012-10-10 14:08:39.941+11 310934
  2012-10-10-1349838521.42-demo.wav 44028 CanberraMtAinsli 2012-10-10 14:08:57.795+11 1378440
  2012-10-10-1349838568.02-demo.wav 40067 CanberraBlackMnt 2012-10-10 14:09:36.027+11 669788
  2012-10-10-1349838577.28-demo.wav 44014 CanberraMtAinsli 2012-10-10 14:09:42.98+11 479368
  2012-10-10-1349838584.86-demo.wav 40067 CanberraBlackMnt 2012-10-10 14:09:53.194+11 698044
  2012-10-10-1349838593.56-demo.wav 40067 CanberraBlackMnt 2012-10-10 14:10:00.451+11 577502
  2012-10-10-1349838601.06-demo.wav 40067 CanberraBlackMnt 2012-10-10 14:10:11.624+11 888968
  2012-10-10-1349838613.44-demo.wav 44036 CanberraMtAinsli 2012-10-10 14:10:24.187+11 901256
  2012-10-10-1349838624.38-demo.wav 44036 CanberraMtAinsli 2012-10-10 14:10:27.433+11 254088
  2012-10-10-1349838627.73-demo.wav 44036 CanberraMtAinsli 2012-10-10 14:10:30.436+11 225416
  2012-10-10-1349838631.71-demo.wav 44036 CanberraBlackMnt 2012-10-10 14:10:39.836+11 675692
  2012-10-10-1349838640.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:10:55.884+11 1261028
  2012-10-10-1349838656.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:11:10.135+11 1105018
  2012-10-10-1349838671.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:11:26.56+11 1295452
  2012-10-10-1349838688.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:11:37.754+11 782472
  2012-10-10-1349838698.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:11:43.39+11 397448
  2012-10-10-1349838703.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:11:45.878+11 182408
  2012-10-10-1349838706.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:11:49.448+11 278664
  2012-10-10-1349838710.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:12:08.738+11 1562760
  2012-10-10-1349838728.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:12:13.561+11 387208
  2012-10-10-1349838733.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:12:18.451+11 395400
  2012-10-10-1349838759.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:12:49.421+11 829468
  2012-10-10-1349838771.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:12:54.823+11 266376
  2012-10-10-1349838775.13-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:13:37.038+11 3514504
  2012-10-10-1349838817.38-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:13:40.427+11 256136
  2012-10-10-1349838820.69-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:13:44.2+11 294964
  2012-10-10-1349838824.68-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:13:50.225+11 466748
  2012-10-10-1349838858.06-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:14:20.868+11 237704
  2012-10-10-1349838902.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:15:04.711+11 224894
  2012-10-10-1349838905.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:15:10.074+11 345152
  2012-10-10-1349838910.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:15:12.79+11 196744
  2012-10-10-1349838913.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:15:16.401+11 280712
  2012-10-10-1349838918.66-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:15:24.598+11 499848
  2012-10-10-1349838926.04-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:15:38.681+11 1063048
  2012-10-10-1349838940.34-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 14:15:46.137+11 485512
  2012-10-10-1349838948.18-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:15:56.159+11 671880
  2012-10-10-1349838956.35-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:16:01.241+11 409718
  2012-10-10-1349838961.46-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:16:07.524+11 509682
  2012-10-10-1349838967.79-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-10 14:16:34.001+11 2199688
  2012-10-10-1349838994.27-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-10 14:16:40.76+11 544904
  2012-10-10-1349839020.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:17:08.07+11 637064
  2012-10-10-1349839028.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:17:12.96+11 397390
  2012-10-10-1349839038.31-demo.wav 44036 CanberraBlackMnt 2012-10-10 14:17:39.047+11 1742960
  2012-10-10-1349839059.3-demo.wav 44036 CanberraBlackMnt 2012-10-10 14:17:44.961+11 473224
  2012-10-10-1349839066.2-demo.wav 44036 CanberraBlackMnt 2012-10-10 14:17:48.366+11 180360
  2012-10-10-1349839068.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:17:58.564+11 800904
  2012-10-10-1349839079.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:18:04.869+11 415880
  2012-10-10-1349839106.12-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:18:28.606+11 209032
  2012-10-10-1349839109.21-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:18:31.834+11 219272
  2012-10-10-1349839112.09-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:18:41.889+11 821384
  2012-10-10-1349839145.06-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:19:10.419+11 448648
  2012-10-10-1349839150.68-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:19:14.544+11 325768
  2012-10-10-1349839178.14-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:19:41.685+11 297096
  2012-10-10-1349839182.5-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:19:45.105+11 217224
  2012-10-10-1349839200.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:20:07.239+11 606344
  2012-10-10-1349839207.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:20:12.683+11 432264
  2012-10-10-1349839212.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:20:16.609+11 307284
  2012-10-10-1349839217.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:20:26.435+11 744220
  2012-10-10-1349839228.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:20:32.689+11 311432
  2012-10-10-1349839232.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:21:02.913+11 2513032
  2012-10-10-1349839264.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:21:11.591+11 581768
  2012-10-10-1349839271.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:22:19.092+11 5648520
  2012-10-10-1349839339.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:22:23.561+11 354440
  2012-10-10-1349839343.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:22:28.622+11 401512
  2012-10-10-1349839380.48-demo.wav 42009 CanberraMtAinsli 2012-10-10 14:23:04.106+11 303240
  2012-10-10-1349839385.26-demo.wav 42009 CanberraMtAinsli 2012-10-10 14:23:07.462+11 184456
  2012-10-10-1349839387.81-demo.wav 42009 CanberraMtAinsli 2012-10-10 14:23:14.638+11 575566
  2012-10-10-1349839395.45-demo.wav 42009 CanberraMtAinsli 2012-10-10 14:23:19.769+11 359750
  2012-10-10-1349839456.02-demo.wav 44036 CanberraBlackMnt 2012-10-10 14:24:21.598+11 468876
  2012-10-10-1349839482.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:24:45.109+11 204936
  2012-10-10-1349839485.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:24:48.071+11 227464
  2012-10-10-1349839488.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:24:53.627+11 436360
  2012-10-10-1349839495.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:24:59.688+11 354222
  2012-10-10-1349839586.66-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:26:29.233+11 216730
  2012-10-10-1349839589.57-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:26:32.476+11 241800
  2012-10-10-1349839592.67-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:26:36.074+11 286856
  2012-10-10-1349839596.93-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:26:48.892+11 1007726
  2012-10-10-1349839611.39-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:26:59.122+11 651400
  2012-10-10-1349839619.88-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:27:09.927+11 845960
  2012-10-10-1349839630.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:27:23.833+11 1144968
  2012-10-10-1349839644.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:27:27.982+11 317576
  2012-10-10-1349839648.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:27:37.954+11 816556
  2012-10-10-1349839698.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:28:21.571+11 278090
  2012-10-10-1349839704.72-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 14:28:47.511+11 1915016
  2012-10-10-1349839728.53-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 14:29:01.561+11 1093628
  2012-10-10-1349839742.56-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 14:29:06.733+11 348688
  2012-10-10-1349839791.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:29:54.238+11 268706
  2012-10-10-1349839795.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:30:06.018+11 897160
  2012-10-10-1349839806.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:30:10.669+11 335986
  2012-10-10-1349839840.15-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 14:30:42.647+11 208918
  2012-10-10-1349839871.13-demo.wav 40067 CanberraBlackMnt 2012-10-10 14:31:14.791+11 303542
  2012-10-10-1349839875.35-demo.wav 40067 CanberraBlackMnt 2012-10-10 14:31:17.795+11 204936
  2012-10-10-1349839937.46-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 14:32:20.016+11 209722
  2012-10-10-1349840137.0-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:35:40.224+11 268996
  2012-10-10-1349840140.49-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:35:47.529+11 589960
  2012-10-10-1349840165.45-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:36:19.851+11 1210504
  2012-10-10-1349840199.19-demo.wav 44014 CanberraBlackMnt 2012-10-10 14:36:41.54+11 196744
  2012-10-10-1349840201.73-demo.wav 44014 CanberraBlackMnt 2012-10-10 14:36:46.16+11 372872
  2012-10-10-1349840206.4-demo.wav 44014 CanberraBlackMnt 2012-10-10 14:36:51.897+11 460936
  2012-10-10-1349840212.13-demo.wav 44014 CanberraBlackMnt 2012-10-10 14:36:54.87+11 229510
  2012-10-10-1349840359.93-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 14:39:24.153+11 351880
  2012-10-10-1349840364.68-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 14:39:29.491+11 403592
  2012-10-10-1349840370.03-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 14:39:40.899+11 915592
  2012-10-10-1349840418.96-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:40:21.977+11 254088
  2012-10-10-1349840457.06-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 14:40:59.602+11 209624
  2012-10-10-1349840462.9-demo.wav 44036 CanberraBlackMnt 2012-10-10 14:41:16.145+11 1114248
  2012-10-10-1349840476.39-demo.wav 44036 CanberraBlackMnt 2012-10-10 14:41:19.23+11 239752
  2012-10-10-1349840547.84-demo.wav 44036 CanberraBlackMnt 2012-10-10 14:42:34.265+11 537784
  2012-10-10-1349840555.65-demo.wav 44036 CanberraBlackMnt 2012-10-10 14:42:44.751+11 764040
  2012-10-10-1349840632.74-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 14:43:57.091+11 364040
  2012-10-10-1349840937.43-demo.wav 44014 CanberraBlackMnt 2012-10-10 14:49:05.176+11 650152
  2012-10-10-1349840978.72-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 14:49:52.823+11 1185928
  2012-10-10-1349840993.14-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 14:49:56.987+11 321672
  2012-10-10-1349840997.31-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:50:04.306+11 587912
  2012-10-10-1349841004.56-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:50:08.685+11 342152
  2012-10-10-1349841011.46-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:50:15.127+11 309384
  2012-10-10-1349841017.22-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:50:22.927+11 479230
  2012-10-10-1349841023.12-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:50:41.533+11 1546376
  2012-10-10-1349841041.8-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:50:47.352+11 467066
  2012-10-10-1349841048.54-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:51:00.506+11 1007752
  2012-10-10-1349841084.5-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:51:27.296+11 235656
  2012-10-10-1349841088.43-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:51:32.186+11 314180
  2012-10-10-1349841092.38-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:51:40.467+11 680072
  2012-10-10-1349841100.7-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:51:55.845+11 1273992
  2012-10-10-1349841116.2-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:52:02.302+11 514184
  2012-10-10-1349841122.91-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:52:07.017+11 346230
  2012-10-10-1349841127.88-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:52:11.349+11 290952
  2012-10-10-1349841222.33-demo.wav 40067 CanberraBlackMnt 2012-10-10 14:53:47.95+11 468236
  2012-10-10-1349841228.7-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:53:57.523+11 639112
  2012-10-10-1349841239.59-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:54:02.013+11 204936
  2012-10-10-1349841242.71-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:54:10.386+11 643114
  2012-10-10-1349841257.29-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:54:25.203+11 665736
  2012-10-10-1349841265.46-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:54:29.487+11 340104
  2012-10-10-1349841270.3-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:54:38.743+11 708658
  2012-10-10-1349841278.96-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:54:41.14+11 182408
  2012-10-10-1349841282.9-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:54:45.248+11 196744
  2012-10-10-1349841286.17-demo.wav 44028 CanberraBlackMnt 2012-10-10 14:54:49.5+11 280712
  2012-10-10-1349841320.23-demo.wav 44036 CanberraBlackMnt 2012-10-10 14:55:42.761+11 1894536
  2012-10-10-1349841343.72-demo.wav 44036 CanberraBlackMnt 2012-10-10 14:55:48.195+11 374750
  2012-10-10-1349841349.61-demo.wav 44036 CanberraBlackMnt 2012-10-10 14:55:54.349+11 399496
  2012-10-10-1349841355.04-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:56:01.254+11 520328
  2012-10-10-1349841362.88-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:56:09.276+11 536712
  2012-10-10-1349841370.52-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:56:13.767+11 272082
  2012-10-10-1349841374.0-demo.wav 40067 CanberraMtAinsli 2012-10-10 14:56:16.372+11 198792
  2012-10-10-1349841376.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:56:26.085+11 774248
  2012-10-10-1349841435.33-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:57:18.274+11 246310
  2012-10-10-1349841438.44-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:57:21.086+11 223368
  2012-10-10-1349841442.32-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:57:33.139+11 911496
  2012-10-10-1349841454.65-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:57:44.009+11 783892
  2012-10-10-1349841464.27-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:57:49.363+11 428168
  2012-10-10-1349841470.06-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:57:57.579+11 632916
  2012-10-10-1349841477.83-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:58:01.223+11 284806
  2012-10-10-1349841481.46-demo.wav 42009 CanberraBlackMnt 2012-10-10 14:58:19.382+11 1507458
  2012-10-10-1349841527.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 14:58:51.205+11 275420
  2012-10-10-1349841723.18-demo.wav 42009 CanberraBlackMnt 2012-10-10 15:02:06.717+11 296524
  2012-10-10-1349841747.89-demo.wav 42009 CanberraBlackMnt 2012-10-10 15:02:34.833+11 587912
  2012-10-10-1349841821.06-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:03:46.348+11 443328
  2012-10-10-1349841826.52-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:03:48.857+11 196744
  2012-10-10-1349841829.63-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:03:56.434+11 571528
  2012-10-10-1349841836.85-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:03:59.854+11 252040
  2012-10-10-1349841840.15-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:04:03.29+11 260232
  2012-10-10-1349841843.64-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:04:09.172+11 462790
  2012-10-10-1349841849.33-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:04:12.623+11 276378
  2012-10-10-1349841852.88-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:04:27.392+11 1218696
  2012-10-10-1349841937.63-demo.wav 42009 CanberraBlackMnt 2012-10-10 15:05:40.221+11 216826
  2012-10-10-1349841940.56-demo.wav 42009 CanberraBlackMnt 2012-10-10 15:05:43.785+11 268424
  2012-10-10-1349841944.02-demo.wav 42009 CanberraBlackMnt 2012-10-10 15:05:46.837+11 235656
  2012-10-10-1349841947.25-demo.wav 42009 CanberraBlackMnt 2012-10-10 15:05:53.311+11 510088
  2012-10-10-1349841953.59-demo.wav 44014 CanberraMtAinsli 2012-10-10 15:05:59.96+11 536712
  2012-10-10-1349841960.33-demo.wav 44014 CanberraMtAinsli 2012-10-10 15:06:03.3+11 245896
  2012-10-10-1349841963.53-demo.wav 44014 CanberraMtAinsli 2012-10-10 15:06:09.854+11 530528
  2012-10-10-1349841970.72-demo.wav 40067 CanberraMtAinsli 2012-10-10 15:06:16.663+11 495002
  2012-10-10-1349841977.39-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:06:35.445+11 1216736
  2012-10-10-1349841995.7-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:06:42.733+11 589960
  2012-10-10-1349842002.98-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:06:50.597+11 640544
  2012-10-10-1349842017.77-demo.wav 40067 CanberraBlackMnt 2012-10-10 15:07:11.424+11 1147016
  2012-10-10-1349842031.68-demo.wav 40067 CanberraBlackMnt 2012-10-10 15:07:16.491+11 405636
  2012-10-10-1349842036.75-demo.wav 40067 CanberraBlackMnt 2012-10-10 15:08:05.34+11 4081800
  2012-10-10-1349842085.59-demo.wav 40067 CanberraBlackMnt 2012-10-10 15:08:13.637+11 675976
  2012-10-10-1349842093.89-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:08:23.625+11 819312
  2012-10-10-1349842132.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:08:58.783+11 503988
  2012-10-10-1349842139.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:09:01.988+11 180360
  2012-10-10-1349842152.04-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:09:17.667+11 471176
  2012-10-10-1349842158.0-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:09:20.703+11 225416
  2012-10-10-1349842161.49-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:09:27.72+11 519616
  2012-10-10-1349842168.42-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:09:38.605+11 855954
  2012-10-10-1349842219.0-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:10:21.733+11 229194
  2012-10-10-1349842222.15-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:10:25.808+11 307336
  2012-10-10-1349842226.61-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:10:36.935+11 862006
  2012-10-10-1349842237.12-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:10:59.599+11 1888392
  2012-10-10-1349842284.5-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:11:29.137+11 387208
  2012-10-10-1349842289.27-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:11:31.582+11 192648
  2012-10-10-1349842294.53-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:11:38.742+11 352392
  2012-10-10-1349842299.65-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:11:48.014+11 698456
  2012-10-10-1349842308.33-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:11:56.613+11 696456
  2012-10-10-1349842316.87-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:11:59.905+11 256136
  2012-10-10-1349842321.04-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:12:09.88+11 740096
  2012-10-10-1349842330.47-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:12:14.803+11 360584
  2012-10-10-1349842335.29-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:12:19.406+11 344200
  2012-10-10-1349842339.62-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:12:23.081+11 286828
  2012-10-10-1349842343.34-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:12:26.693+11 282280
  2012-10-10-1349842347.06-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 15:12:32.906+11 489608
  2012-10-10-1349842355.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:12:41.105+11 489176
  2012-10-10-1349842362.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:12:46.2+11 311432
  2012-10-10-1349842367.12-demo.wav 44014 CanberraBlackMnt 2012-10-10 15:13:02.936+11 1324818
  2012-10-10-1349842383.14-demo.wav 44014 CanberraBlackMnt 2012-10-10 15:13:08.673+11 465026
  2012-10-10-1349842455.62-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:14:20.766+11 428696
  2012-10-10-1349842460.95-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:14:23.324+11 198792
  2012-10-10-1349842465.23-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:14:38.668+11 1126536
  2012-10-10-1349842610.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:16:53.626+11 241062
  2012-10-10-1349842655.29-demo.wav 40067 CanberraBlackMnt 2012-10-10 15:17:38.03+11 229512
  2012-10-10-1349842658.27-demo.wav 40067 CanberraBlackMnt 2012-10-10 15:17:41.737+11 290952
  2012-10-10-1349842662.69-demo.wav 40067 CanberraBlackMnt 2012-10-10 15:17:46.053+11 282726
  2012-10-10-1349842710.68-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:18:35.715+11 423400
  2012-10-10-1349842715.99-demo.wav 44036 CanberraBlackMnt 2012-10-10 15:18:41.07+11 428168
  2012-10-10-1349842792.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:19:56.002+11 295368
  2012-10-10-1349842798.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:20:10.589+11 1058952
  2012-10-10-1349842814.26-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:20:19.651+11 451032
  2012-10-10-1349842820.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:20:38.273+11 1472648
  2012-10-10-1349842841.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:20:48.883+11 616584
  2012-10-10-1349842849.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:20:54.834+11 479368
  2012-10-10-1349842855.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:20:59.348+11 356470
  2012-10-10-1349842861.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:21:06.954+11 477534
  2012-10-10-1349842867.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:21:09.918+11 229512
  2012-10-10-1349842870.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:21:16.87+11 555144
  2012-10-10-1349842877.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:21:27.003+11 819228
  2012-10-10-1349842935.17-demo.wav 44014 CanberraBlackMnt 2012-10-10 15:22:21.878+11 562980
  2012-10-10-1349843063.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:24:28.72+11 459336
  2012-10-10-1349843120.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:25:31.865+11 956552
  2012-10-10-1349843134.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:25:43.046+11 745608
  2012-10-10-1349843281.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:28:04.596+11 283280
  2012-10-10-1349843285.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:28:08.782+11 280712
  2012-10-10-1349843288.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:28:17.541+11 720886
  2012-10-10-1349843297.76-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 15:28:34.594+11 1411128
  2012-10-10-1349843336.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:28:59.494+11 209032
  2012-10-10-1349843340.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:29:14.679+11 1182198
  2012-10-10-1349843355.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:29:19.777+11 362632
  2012-10-10-1349843359.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:29:34.256+11 1198194
  2012-10-10-1349843374.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:29:38.705+11 352392
  2012-10-10-1349843379.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:29:43.483+11 358536
  2012-10-10-1349843383.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:29:47.71+11 336008
  2012-10-10-1349843388.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:29:58.606+11 852008
  2012-10-10-1349843446.49-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:30:48.878+11 198818
  2012-10-10-1349843450.77-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:30:53.481+11 229512
  2012-10-10-1349843498.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:31:50.9+11 1058952
  2012-10-10-1349843511.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:32:02.852+11 972936
  2012-10-10-1349843523.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:32:05.952+11 239132
  2012-10-10-1349843680.11-demo.wav 40067 CanberraBlackMnt 2012-10-10 15:34:44.291+11 351654
  2012-10-10-1349843775.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:36:18.303+11 255064
  2012-10-10-1349843781.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:36:24.615+11 299144
  2012-10-10-1349843784.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:36:27.149+11 188552
  2012-10-10-1349843824.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:37:08.591+11 306434
  2012-10-10-1349843828.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:37:17.27+11 710792
  2012-10-10-1349843837.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:37:19.855+11 202772
  2012-10-10-1349843840.27-demo.wav 40097 PCL HRB CanberraBlackMnt 2012-10-10 15:37:30.858+11 888968
  2012-10-10-1349843853.29-demo.wav 40067 CanberraMtAinsli 2012-10-10 15:37:53.634+11 1710216
  2012-10-10-1349843954.41-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 15:39:18.89+11 373172
  2012-10-10-1349843959.99-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 15:39:24.254+11 358536
  2012-10-10-1349843982.06-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 15:39:53.305+11 941692
  2012-10-10-1349843993.83-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 15:39:57.616+11 317576
  2012-10-10-1349844017.76-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 15:40:25.865+11 677958
  2012-10-10-1349844026.11-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 15:40:30.737+11 386706
  2012-10-10-1349844031.62-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 15:40:42.359+11 902018
  2012-10-10-1349844042.99-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 15:40:47.995+11 415880
  2012-10-10-1349844155.79-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:42:39.08+11 275434
  2012-10-10-1349844160.94-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:42:44.307+11 280064
  2012-10-10-1349844241.48-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:44:04.729+11 271756
  2012-10-10-1349844244.93-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:44:09.458+11 379016
  2012-10-10-1349844250.01-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:44:17.53+11 632944
  2012-10-10-1349844490.47-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:48:13.194+11 228010
  2012-10-10-1349844493.41-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:48:17.077+11 307336
  2012-10-10-1349844497.49-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:48:20.801+11 278664
  2012-10-10-1349844501.04-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:48:24.093+11 254088
  2012-10-10-1349844504.28-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:48:28.057+11 317576
  2012-10-10-1349844554.72-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 15:49:17.559+11 237704
  2012-10-10-1349844557.81-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 15:49:23.009+11 436292
  2012-10-10-1349844606.56-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:50:09.155+11 213334
  2012-10-10-1349844609.73-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:50:12.769+11 254088
  2012-10-10-1349844613.07-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:50:24.371+11 950404
  2012-10-10-1349844624.64-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:50:47.773+11 1943688
  2012-10-10-1349844649.04-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:50:53.03+11 336008
  2012-10-10-1349844653.29-demo.wav 44028 CanberraMtAinsli 2012-10-10 15:50:57.074+11 321038
  2012-10-10-1349844671.01-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:51:21.483+11 880776
  2012-10-10-1349844682.29-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:51:26.358+11 340104
  2012-10-10-1349844686.62-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:51:29.043+11 202888
  2012-10-10-1349844690.01-demo.wav 44028 CanberraBlackMnt 2012-10-10 15:51:32.814+11 235370
  2012-10-10-1349844696.56-demo.wav 42009 CanberraBlackMnt 2012-10-10 15:51:43.237+11 561288
  2012-10-10-1349844755.46-demo.wav 42009 CanberraBlackMnt 2012-10-10 15:52:41.631+11 519764
  2012-10-10-1349844763.33-demo.wav 42009 CanberraBlackMnt 2012-10-10 15:52:45.658+11 194696
  2012-10-10-1349844766.68-demo.wav 42009 CanberraBlackMnt 2012-10-10 15:52:57.408+11 899170
  2012-10-10-1349844779.43-demo.wav 42009 CanberraBlackMnt 2012-10-10 15:53:13.841+11 1212552
  2012-10-10-1349844794.92-demo.wav 40067 CanberraBlackMnt 2012-10-10 15:53:21.352+11 535360
  2012-10-10-1349844834.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:53:57.445+11 208472
  2012-10-10-1349844841.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:54:08.765+11 598030
  2012-10-10-1349844849.42-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 15:54:29.41+11 1679496
  2012-10-10-1349844871.2-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 15:54:43.429+11 1028232
  2012-10-10-1349844996.78-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 15:56:44.836+11 674602
  2012-10-10-1349845030.13-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 15:57:12.641+11 209032
  2012-10-10-1349845074.32-demo.wav 40067 CanberraMtAinsli 2012-10-10 15:57:57.844+11 295364
  2012-10-10-1349845101.46-demo.wav 40067 CanberraBlackMnt 2012-10-10 15:58:24.346+11 242366
  2012-10-10-1349845104.88-demo.wav 40067 CanberraBlackMnt 2012-10-10 15:58:27.334+11 206984
  2012-10-10-1349845107.68-demo.wav 40067 CanberraBlackMnt 2012-10-10 15:58:32.192+11 379016
  2012-10-10-1349845112.43-demo.wav 40067 CanberraBlackMnt 2012-10-10 15:58:37.307+11 409450
  2012-10-10-1349845117.51-demo.wav 40067 CanberraBlackMnt 2012-10-10 15:58:40.808+11 278664
  2012-10-10-1349845122.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:58:58.863+11 1415874
  2012-10-10-1349845159.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:59:22.387+11 252040
  2012-10-10-1349845163.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:59:25.662+11 200840
  2012-10-10-1349845167.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:59:37.994+11 903304
  2012-10-10-1349845178.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 15:59:55.944+11 1434856
  2012-10-10-1349845201.38-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 16:00:10.961+11 801088
  2012-10-10-1349845212.1-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 16:00:16.082+11 329256
  2012-10-10-1349845216.29-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-10 16:00:20.14+11 321672
  2012-10-10-1349845240.26-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:00:55.194+11 1250078
  2012-10-10-1349845256.5-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:01:00.55+11 340104
  2012-10-10-1349845261.21-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:01:19.06+11 1501320
  2012-10-10-1349845279.4-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:01:22.32+11 243848
  2012-10-10-1349845282.78-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:01:25.756+11 247792
  2012-10-10-1349845297.8-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:01:42.283+11 374920
  2012-10-10-1349845304.35-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:01:47.749+11 279502
  2012-10-10-1349845308.22-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:02:35.049+11 3934344
  2012-10-10-1349845355.25-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:02:38.117+11 241800
  2012-10-10-1349845359.01-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:02:56.404+11 1460338
  2012-10-10-1349845377.38-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:03:01.168+11 313972
  2012-10-10-1349845381.92-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:03:04.203+11 192648
  2012-10-10-1349845444.44-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 16:04:06.96+11 210412
  2012-10-10-1349845447.78-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 16:04:17.109+11 784520
  2012-10-10-1349845581.81-demo.wav 42009 CanberraBlackMnt 2012-10-10 16:06:24.307+11 210344
  2012-10-10-1349845585.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:06:38.225+11 1069370
  2012-10-10-1349845598.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:06:41.097+11 219272
  2012-10-10-1349845605.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:06:50.75+11 445240
  2012-10-10-1349845613.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:07:00.281+11 589960
  2012-10-10-1349845621.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:07:04.69+11 239744
  2012-10-10-1349845625.81-demo.wav 42009 CanberraBlackMnt 2012-10-10 16:07:18.595+11 1069192
  2012-10-10-1349845639.02-demo.wav 42009 CanberraBlackMnt 2012-10-10 16:07:26.285+11 610440
  2012-10-10-1349845660.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:07:50.517+11 811144
  2012-10-10-1349845671.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:08:01.308+11 818108
  2012-10-10-1349845681.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:08:08.164+11 522374
  2012-10-10-1349845689.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:08:13.013+11 332502
  2012-10-10-1349845770.49-demo.wav 10301 CanberraMtAinsli 2012-10-10 16:09:33.577+11 259080
  2012-10-10-1349845774.92-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:09:42.433+11 628052
  2012-10-10-1349845782.69-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:09:45.933+11 272520
  2012-10-10-1349845787.15-demo.wav 10301 CanberraBlackMnt 2012-10-10 16:09:55.986+11 743560
  2012-10-10-1349845797.85-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:10:03.964+11 514184
  2012-10-10-1349845804.22-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:10:06.967+11 229512
  2012-10-10-1349845807.22-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:10:10.324+11 260232
  2012-10-10-1349845810.5-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:10:12.705+11 184456
  2012-10-10-1349845812.96-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:10:45.618+11 2746504
  2012-10-10-1349846156.85-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:15:59.372+11 210494
  2012-10-10-1349846161.83-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:16:04.919+11 260232
  2012-10-10-1349846165.62-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:16:09.875+11 356488
  2012-10-10-1349846170.74-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:16:14.973+11 354396
  2012-10-10-1349846187.57-demo.wav 40067 CanberraBlackMnt 2012-10-10 16:16:34.505+11 583816
  2012-10-10-1349846194.81-demo.wav 40067 CanberraBlackMnt 2012-10-10 16:16:38.629+11 321470
  2012-10-10-1349846211.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:17:00.079+11 729224
  2012-10-10-1349846245.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:17:31.324+11 487560
  2012-10-10-1349846253.07-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:17:41.395+11 700552
  2012-10-10-1349846262.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:17:58.483+11 1353864
  2012-10-10-1349846281.73-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:18:17.584+11 1331336
  2012-10-10-1349846298.05-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:18:21.948+11 327816
  2012-10-10-1349846579.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:23:03.792+11 400098
  2012-10-10-1349846583.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:23:06.563+11 217082
  2012-10-10-1349846586.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:23:22.941+11 1353864
  2012-10-10-1349846603.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:23:26.777+11 284808
  2012-10-10-1349846607.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:23:29.973+11 243848
  2012-10-10-1349846621.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:23:47.535+11 493704
  2012-10-10-1349846751.3-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:25:53.818+11 211060
  2012-10-10-1349846779.91-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 16:26:23.047+11 258316
  2012-10-10-1349846785.72-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 16:26:29.036+11 275272
  2012-10-10-1349846789.84-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 16:26:34.996+11 430216
  2012-10-10-1349846807.24-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 16:27:02.398+11 1273992
  2012-10-10-1349846823.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:27:09.797+11 536802
  2012-10-10-1349846829.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:27:13.634+11 307336
  2012-10-10-1349846834.21-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 16:27:21.538+11 614536
  2012-10-10-1349846841.69-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 16:27:26.577+11 409736
  2012-10-10-1349846923.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:28:45.712+11 210262
  2012-10-10-1349846926.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:28:53.605+11 566824
  2012-10-10-1349846933.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:29:02.392+11 712052
  2012-10-10-1349846943.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:29:07.883+11 384294
  2012-10-10-1349847008.81-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:30:13.706+11 410364
  2012-10-10-1349847015.83-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:30:19.876+11 340104
  2012-10-10-1349847020.29-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:30:22.8+11 213128
  2012-10-10-1349847023.07-demo.wav 40067 CanberraMtAinsli 2012-10-10 16:30:33.526+11 876680
  2012-10-10-1349847067.11-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 16:31:13.909+11 571528
  2012-10-10-1349847074.18-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 16:31:18.224+11 340104
  2012-10-10-1349847078.67-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:32:46.707+11 7395464
  2012-10-10-1349847166.98-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:32:49.839+11 239752
  2012-10-10-1349847170.07-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:32:55.065+11 419932
  2012-10-10-1349847176.67-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:33:00.563+11 324516
  2012-10-10-1349847180.91-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:33:21.936+11 1442550
  2012-10-10-1349847202.17-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:33:24.7+11 211080
  2012-10-10-1349847205.24-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:33:28.184+11 247944
  2012-10-10-1349847225.87-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:33:50.226+11 366722
  2012-10-10-1349847230.9-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:34:27.501+11 3076232
  2012-10-10-1349847269.5-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:34:32.472+11 249992
  2012-10-10-1349847272.92-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:34:39.377+11 540808
  2012-10-10-1349847280.37-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:34:43.565+11 267704
  2012-10-10-1349847284.33-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:34:53.652+11 781662
  2012-10-10-1349847293.92-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:34:57.743+11 319624
  2012-10-10-1349847298.26-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:35:01.642+11 282758
  2012-10-10-1349847303.08-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:35:07.301+11 353164
  2012-10-10-1349847309.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 16:35:21.959+11 1050760
  2012-10-10-1349847387.7-demo.wav i1045946 CanberraBlackMnt 2012-10-10 16:36:30.231+11 210766
  2012-10-10-1349847396.29-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:36:55.825+11 1643214
  2012-10-10-1349847416.45-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:36:58.876+11 206984
  2012-10-10-1349847419.99-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:37:04.404+11 364680
  2012-10-10-1349847425.68-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:37:09.649+11 333858
  2012-10-10-1349847429.86-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 16:37:40.512+11 2574472
  2012-10-10-1349847462.01-demo.wav i1045946 CanberraBlackMnt 2012-10-10 16:37:47.722+11 473224
  2012-10-10-1349847468.01-demo.wav i1045946 CanberraBlackMnt 2012-10-10 16:37:52.036+11 336008
  2012-10-10-1349847473.43-demo.wav i1045946 CanberraBlackMnt 2012-10-10 16:38:01.498+11 677978
  2012-10-10-1349847483.14-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:38:09.81+11 561288
  2012-10-10-1349847490.07-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:38:17.067+11 587912
  2012-10-10-1349847497.58-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:38:20.695+11 262280
  2012-10-10-1349847617.9-demo.wav 42009 CanberraBlackMnt 2012-10-10 16:40:20.41+11 209992
  2012-10-10-1349847621.49-demo.wav 42009 CanberraBlackMnt 2012-10-10 16:40:28.784+11 608658
  2012-10-10-1349847630.0-demo.wav 42009 CanberraBlackMnt 2012-10-10 16:40:35.673+11 474144
  2012-10-10-1349847637.51-demo.wav 42009 CanberraBlackMnt 2012-10-10 16:40:47.294+11 823432
  2012-10-10-1349847648.77-demo.wav 42009 CanberraBlackMnt 2012-10-10 16:40:55.494+11 564034
  2012-10-10-1349847656.79-demo.wav 42009 CanberraBlackMnt 2012-10-10 16:41:04.029+11 606344
  2012-10-10-1349847691.14-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:41:34.16+11 250308
  2012-10-10-1349847695.54-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:41:38.155+11 219272
  2012-10-10-1349847698.59-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:41:43.381+11 403586
  2012-10-10-1349847704.38-demo.wav 44028 CanberraMtAinsli 2012-10-10 16:41:48.881+11 376968
  2012-10-10-1349847709.73-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:41:59.701+11 837984
  2012-10-10-1349847719.89-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:42:02.306+11 202884
  2012-10-10-1349847724.47-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:42:12.279+11 655496
  2012-10-10-1349847735.48-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:42:18.497+11 254088
  2012-10-10-1349847748.26-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:42:32.626+11 364680
  2012-10-10-1349847752.97-demo.wav 44028 CanberraBlackMnt 2012-10-10 16:42:35.344+11 200840
  2012-10-10-1349847756.88-demo.wav 40067 CanberraBlackMnt 2012-10-10 16:42:52.047+11 1273812
  2012-10-10-1349847839.08-demo.wav 42009 CanberraMtAinsli 2012-10-10 16:44:02.479+11 283220
  2012-10-10-1349847844.06-demo.wav 42009 CanberraMtAinsli 2012-10-10 16:44:07.336+11 276616
  2012-10-10-1349847848.2-demo.wav 42009 CanberraMtAinsli 2012-10-10 16:44:10.678+11 206984
  2012-10-10-1349847887.35-demo.wav 42009 CanberraMtAinsli 2012-10-10 16:44:59.014+11 981606
  2012-10-10-1349847974.71-demo.wav 42009 CanberraMtAinsli 2012-10-10 16:46:17.757+11 253276
  2012-10-10-1349847979.2-demo.wav 42009 CanberraMtAinsli 2012-10-10 16:46:21.928+11 227464
  2012-10-10-1349848006.32-demo.wav 42009 CanberraMtAinsli 2012-10-10 16:48:19.219+11 7807112
  2012-10-10-1349848099.46-demo.wav 42009 CanberraMtAinsli 2012-10-10 16:48:38.752+11 1622152
  2012-10-10-1349848154.15-demo.wav 10301 CanberraBlackMnt 2012-10-10 16:49:17.102+11 246832
  2012-10-10-1349848158.47-demo.wav 10301 CanberraBlackMnt 2012-10-10 16:49:22.856+11 363154
  2012-10-10-1349848164.43-demo.wav 10301 CanberraBlackMnt 2012-10-10 16:49:39.64+11 1277506
  2012-10-10-1349848564.41-demo.wav 42009 CanberraBlackMnt 2012-10-10 16:56:06.949+11 211520
  2012-10-10-1349848567.68-demo.wav 42009 CanberraBlackMnt 2012-10-10 16:56:10.289+11 219272
  2012-10-10-1349848570.79-demo.wav 42009 CanberraBlackMnt 2012-10-10 16:56:14.988+11 350344
  2012-10-10-1349848575.42-demo.wav 42009 CanberraBlackMnt 2012-10-10 16:56:24.531+11 761992
  2012-10-10-1349848614.57-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 16:57:00.539+11 499848
  2012-10-10-1349848810.16-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 17:00:32.237+11 1852770
  2012-10-10-1349848989.84-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 17:03:14.743+11 411314
  2012-10-10-1349849196.31-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-10 17:06:38.834+11 209852
  2012-10-10-1349849480.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:11:22.765+11 208738
  2012-10-10-1349849572.55-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 17:12:56.995+11 372500
  2012-10-10-1349849578.4-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 17:13:10.256+11 992530
  2012-10-10-1349849591.35-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-10 17:13:19.413+11 672024
  2012-10-10-1349849599.67-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-10 17:13:24.187+11 374920
  2012-10-10-1349849604.44-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-10 17:13:32.408+11 669726
  2012-10-10-1349849613.27-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 17:13:40.235+11 584972
  2012-10-10-1349849696.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:15:00.651+11 341308
  2012-10-10-1349849702.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:15:06.318+11 331912
  2012-10-10-1349849707.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:15:13.294+11 501602
  2012-10-10-1349849713.85-demo.wav 44028 CanberraMtAinsli 2012-10-10 17:15:28.911+11 1267848
  2012-10-10-1349849729.24-demo.wav 44028 CanberraMtAinsli 2012-10-10 17:15:34.17+11 411784
  2012-10-10-1349849736.23-demo.wav 44028 CanberraMtAinsli 2012-10-10 17:15:43.904+11 645256
  2012-10-10-1349849744.78-demo.wav 44028 CanberraMtAinsli 2012-10-10 17:15:57.204+11 1044262
  2012-10-10-1349849776.54-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-10 17:16:22.785+11 521214
  2012-10-10-1349849783.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:16:29.913+11 559240
  2012-10-10-1349849792.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:16:38.926+11 510088
  2012-10-10-1349849800.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:16:44.249+11 340016
  2012-10-10-1349849884.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:18:06.763+11 209388
  2012-10-10-1349849887.85-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 17:18:13.268+11 451484
  2012-10-10-1349849894.42-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 17:18:24.224+11 822706
  2012-10-10-1349849904.55-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 17:18:29.354+11 403356
  2012-10-10-1349849910.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:18:36.563+11 529912
  2012-10-10-1349850046.48-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 17:20:53.236+11 567116
  2012-10-10-1349850056.88-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 17:21:07.092+11 850306
  2012-10-10-1349850079.82-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 17:21:29.017+11 772232
  2012-10-10-1349850090.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:21:39.795+11 806866
  2012-10-10-1349850100.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:21:44.575+11 381064
  2012-10-10-1349850105.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:21:56.784+11 987272
  2012-10-10-1349850117.7-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 17:22:06.654+11 745996
  2012-10-10-1349850127.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:22:14.067+11 526814
  2012-10-10-1349850134.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:22:23.257+11 706696
  2012-10-10-1349850145.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:22:35.157+11 798808
  2012-10-10-1349850169.32-demo.wav 44014 CanberraBlackMnt 2012-10-10 17:22:57.408+11 678112
  2012-10-10-1349850177.64-demo.wav 44014 CanberraBlackMnt 2012-10-10 17:23:02.906+11 440290
  2012-10-10-1349850210.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:23:33.042+11 249992
  2012-10-10-1349850214.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:23:37.102+11 231560
  2012-10-10-1349850220.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:23:43.939+11 311432
  2012-10-10-1349850224.41-demo.wav 44014 CanberraBlackMnt 2012-10-10 17:23:50.97+11 551048
  2012-10-10-1349850231.23-demo.wav 44014 CanberraBlackMnt 2012-10-10 17:23:56.419+11 436360
  2012-10-10-1349850236.68-demo.wav 44014 CanberraBlackMnt 2012-10-10 17:24:04.283+11 639112
  2012-10-10-1349850244.53-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:24:25.494+11 1761416
  2012-10-10-1349850266.21-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:24:28.674+11 204936
  2012-10-10-1349850268.93-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:24:32.956+11 338056
  2012-10-10-1349850273.79-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:24:38.759+11 417914
  2012-10-10-1349850317.17-demo.wav 44014 CanberraBlackMnt 2012-10-10 17:25:23.211+11 504670
  2012-10-10-1349850323.63-demo.wav 44014 CanberraBlackMnt 2012-10-10 17:25:26.598+11 243848
  2012-10-10-1349850326.85-demo.wav 44014 CanberraBlackMnt 2012-10-10 17:25:32.737+11 493660
  2012-10-10-1349850333.46-demo.wav 44014 CanberraBlackMnt 2012-10-10 17:25:35.694+11 188552
  2012-10-10-1349850441.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:27:25.297+11 279124
  2012-10-10-1349850448.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:27:45.682+11 1456264
  2012-10-10-1349850467.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:27:53.908+11 499790
  2012-10-10-1349850474.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:27:59.556+11 449904
  2012-10-10-1349850480.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:28:15.354+11 1288328
  2012-10-10-1349850495.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:28:18.374+11 225416
  2012-10-10-1349850498.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:28:23.889+11 442504
  2012-10-10-1349850517.31-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:28:44.157+11 573024
  2012-10-10-1349850524.4-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:28:52.083+11 643208
  2012-10-10-1349850554.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:29:31.428+11 1429640
  2012-10-10-1349850572.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:29:37.975+11 485512
  2012-10-10-1349850578.49-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:29:47.02+11 714888
  2012-10-10-1349850588.52-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:29:53.51+11 417928
  2012-10-10-1349850594.33-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:29:57.378+11 256136
  2012-10-10-1349850654.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:30:59.043+11 382648
  2012-10-10-1349850660.94-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:31:07.051+11 514184
  2012-10-10-1349850667.89-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:31:10.615+11 229512
  2012-10-10-1349850671.44-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:31:15.521+11 339950
  2012-10-10-1349850675.71-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:31:18.143+11 204936
  2012-10-10-1349850715.04-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:31:59.621+11 382048
  2012-10-10-1349850721.14-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:32:18.482+11 1458312
  2012-10-10-1349850739.19-demo.wav 44028 CanberraBlackMnt 2012-10-10 17:32:22.223+11 254088
  2012-10-10-1349850742.73-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 17:32:28.839+11 514184
  2012-10-10-1349850749.8-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 17:32:36.033+11 522376
  2012-10-10-1349850756.97-demo.wav 44028 CanberraMtAinsli 2012-10-10 17:32:41.866+11 406864
  2012-10-10-1349850762.12-demo.wav 44028 CanberraMtAinsli 2012-10-10 17:32:46.982+11 409736
  2012-10-10-1349850769.91-demo.wav 44028 CanberraMtAinsli 2012-10-10 17:32:52.511+11 219272
  2012-10-10-1349850773.61-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 17:33:05.747+11 1017992
  2012-10-10-1349850787.11-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 17:33:13.418+11 526472
  2012-10-10-1349850793.68-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 17:33:16.971+11 274568
  2012-10-10-1349850798.17-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 17:33:21.924+11 313470
  2012-10-10-1349850866.59-demo.wav 42009 CanberraBlackMnt 2012-10-10 17:34:32.209+11 468222
  2012-10-10-1349850872.47-demo.wav 42009 CanberraBlackMnt 2012-10-10 17:34:39.21+11 567432
  2012-10-10-1349850879.98-demo.wav 42009 CanberraBlackMnt 2012-10-10 17:34:47.376+11 620680
  2012-10-10-1349850889.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:35:03.759+11 1169544
  2012-10-10-1349850922.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:35:27.443+11 393264
  2012-10-10-1349850927.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:35:31.204+11 282760
  2012-10-10-1349850932.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:35:34.796+11 219272
  2012-10-10-1349850935.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:35:38.471+11 286652
  2012-10-10-1349850938.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:36:01.58+11 1921160
  2012-10-10-1349850961.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:36:06.205+11 352392
  2012-10-10-1349850966.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:36:14.029+11 618632
  2012-10-10-1349850975.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:36:19.168+11 325648
  2012-10-10-1349851402.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:43:24.545+11 209292
  2012-10-10-1349851419.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:43:43.927+11 397448
  2012-10-10-1349851487.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:44:51.543+11 314116
  2012-10-10-1349851514.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:45:16.49+11 193878
  2012-10-10-1349851535.92-demo.wav 10301 CanberraMtAinsli 2012-10-10 17:45:39.06+11 262280
  2012-10-10-1349851540.51-demo.wav 10301 CanberraMtAinsli 2012-10-10 17:45:53.35+11 1079432
  2012-10-10-1349851553.57-demo.wav 10301 CanberraMtAinsli 2012-10-10 17:45:55.907+11 190600
  2012-10-10-1349851557.26-demo.wav 10301 CanberraMtAinsli 2012-10-10 17:46:08.804+11 967808
  2012-10-10-1349851568.95-demo.wav 10301 CanberraMtAinsli 2012-10-10 17:46:11.938+11 249992
  2012-10-10-1349851573.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:46:21.672+11 717238
  2012-10-10-1349851582.66-demo.wav 10301 CanberraMtAinsli 2012-10-10 17:46:51.213+11 2399810
  2012-10-10-1349851612.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:46:59.252+11 603728
  2012-10-10-1349851620.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:47:02.653+11 215176
  2012-10-10-1349851623.2-demo.wav 10301 CanberraMtAinsli 2012-10-10 17:47:09.956+11 569480
  2012-10-10-1349851756.22-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 17:49:22.357+11 514378
  2012-10-10-1349851762.9-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 17:49:29.803+11 573576
  2012-10-10-1349851770.05-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 17:49:32.307+11 190600
  2012-10-10-1349851773.24-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 17:49:39.627+11 534928
  2012-10-10-1349851779.95-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 17:49:44.386+11 370824
  2012-10-10-1349851785.44-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 17:49:53.608+11 686216
  2012-10-10-1349851794.92-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 17:50:15.242+11 1707858
  2012-10-10-1349851815.5-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 17:50:33.015+11 1474696
  2012-10-10-1349851833.45-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 17:50:37.385+11 327798
  2012-10-10-1349851837.77-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 17:50:43.502+11 477320
  2012-10-10-1349851843.73-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 17:50:46.05+11 194696
  2012-10-10-1349851846.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:50:52.118+11 462984
  2012-10-10-1349851852.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:50:58.954+11 546952
  2012-10-10-1349851859.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:51:03.348+11 338056
  2012-10-10-1349851923.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:52:06.473+11 250526
  2012-10-10-1349851931.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:52:28.445+11 1440146
  2012-10-10-1349851951.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:52:36.149+11 381064
  2012-10-10-1349851957.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 17:52:42.409+11 399496
  2012-10-10-1349852165.12-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 17:56:08.548+11 286588
  2012-10-10-1349852169.73-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 17:56:25.155+11 1294024
  2012-10-10-1349852185.39-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 17:56:34.241+11 743560
  2012-10-10-1349852194.58-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 17:56:44.615+11 841864
  2012-10-10-1349852207.11-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 17:56:56.6+11 794760
  2012-10-10-1349852216.85-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 17:57:01.473+11 387208
  2012-10-10-1349852222.75-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 17:57:13.267+11 883434
  2012-10-10-1349852258.38-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 17:57:42.47+11 344200
  2012-10-10-1349852277.62-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 17:58:05.291+11 643208
  2012-10-10-1349852288.36-demo.wav 42009 CanberraBlackMnt 2012-10-10 17:58:16.096+11 651400
  2012-10-10-1349852298.44-demo.wav 42009 CanberraBlackMnt 2012-10-10 17:58:22.761+11 364680
  2012-10-10-1349852303.08-demo.wav 42009 CanberraBlackMnt 2012-10-10 17:58:29.01+11 495752
  2012-10-10-1349852388.14-demo.wav 42009 CanberraBlackMnt 2012-10-10 17:59:53.969+11 488000
  2012-10-10-1349852491.31-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:01:35.968+11 389432
  2012-10-10-1349852497.16-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:01:40.732+11 295696
  2012-10-10-1349852514.32-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:02:04.134+11 825480
  2012-10-10-1349852524.39-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:02:10.367+11 501896
  2012-10-10-1349852539.46-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:02:22.291+11 237704
  2012-10-10-1349852670.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:04:33.338+11 210114
  2012-10-10-1349852673.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:04:35.975+11 196744
  2012-10-10-1349852676.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:04:43.088+11 571528
  2012-10-10-1349852683.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:04:48.907+11 438408
  2012-10-10-1349852776.05-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:06:18.55+11 209768
  2012-10-10-1349852907.52-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:08:30.044+11 210678
  2012-10-10-1349853079.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:11:22.89+11 305944
  2012-10-10-1349853084.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:11:27.108+11 245896
  2012-10-10-1349853087.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:11:30.812+11 286856
  2012-10-10-1349853091.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:11:35.11+11 337832
  2012-10-10-1349853150.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:12:33.566+11 260266
  2012-10-10-1349853153.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:12:36.443+11 211080
  2012-10-10-1349853157.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:12:48.878+11 968840
  2012-10-10-1349853171.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:12:54.775+11 309384
  2012-10-10-1349853200.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:13:24.164+11 266376
  2012-10-10-1349853204.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:13:26.603+11 180360
  2012-10-10-1349853207.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:13:32.579+11 460926
  2012-10-10-1349853250.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:14:14.376+11 346312
  2012-10-10-1349853255.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:14:18.453+11 276616
  2012-10-10-1349853323.48-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:15:26.003+11 210974
  2012-10-10-1349853363.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:16:07.018+11 276510
  2012-10-10-1349853368.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:16:13.13+11 360584
  2012-10-10-1349853373.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:16:18.755+11 454792
  2012-10-10-1349853379.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:16:23.651+11 379016
  2012-10-10-1349853383.85-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 18:16:41.961+11 1521800
  2012-10-10-1349853431.94-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:17:15.541+11 303896
  2012-10-10-1349853437.13-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:17:24.236+11 596104
  2012-10-10-1349853444.85-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 18:17:32.9+11 675976
  2012-10-10-1349853453.15-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 18:17:38.239+11 426120
  2012-10-10-1349853458.94-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 18:17:44.847+11 493674
  2012-10-10-1349853465.79-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:18:02.301+11 1383820
  2012-10-10-1349853483.18-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:18:08.455+11 442504
  2012-10-10-1349853489.4-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:18:16.703+11 609548
  2012-10-10-1349853497.3-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:18:27.509+11 858248
  2012-10-10-1349853509.31-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:18:32.721+11 286856
  2012-10-10-1349853513.37-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 18:18:45.715+11 1036424
  2012-10-10-1349853529.32-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 18:18:56.808+11 630920
  2012-10-10-1349853537.89-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 18:19:02.568+11 391304
  2012-10-10-1349853543.02-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 18:19:06.944+11 325712
  2012-10-10-1349853547.15-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-10 18:19:31.174+11 2017400
  2012-10-10-1349853708.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:21:50.723+11 224628
  2012-10-10-1349853712.24-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:21:58.188+11 498570
  2012-10-10-1349853718.44-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:22:01.752+11 278664
  2012-10-10-1349853721.98-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:22:07.073+11 428168
  2012-10-10-1349853727.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:22:17.522+11 823330
  2012-10-10-1349853740.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:22:24.31+11 337962
  2012-10-10-1349853744.96-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:22:33.069+11 682120
  2012-10-10-1349853753.97-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:22:38.088+11 346150
  2012-10-10-1349853758.87-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:22:49.469+11 893056
  2012-10-10-1349853771.28-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:22:54.617+11 280712
  2012-10-10-1349853774.88-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:23:16.132+11 1785992
  2012-10-10-1349853796.8-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:23:22.127+11 448588
  2012-10-10-1349854272.58-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 18:31:15.127+11 210508
  2012-10-10-1349854295.65-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:31:39.118+11 290952
  2012-10-10-1349854300.52-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:31:44.042+11 293040
  2012-10-10-1349854373.97-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:32:56.47+11 210088
  2012-10-10-1349854376.98-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:32:59.299+11 194696
  2012-10-10-1349854379.55-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:33:03.629+11 342152
  2012-10-10-1349854384.7-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:33:08.968+11 357352
  2012-10-10-1349854389.2-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:33:11.685+11 209032
  2012-10-10-1349854433.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:33:57.298+11 331520
  2012-10-10-1349854437.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:34:01.048+11 288904
  2012-10-10-1349854441.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:34:07.087+11 440452
  2012-10-10-1349854447.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:34:10.385+11 255864
  2012-10-10-1349854562.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:36:05.613+11 258890
  2012-10-10-1349854565.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:36:08.696+11 235656
  2012-10-10-1349854779.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:39:42.54+11 262584
  2012-10-10-1349854785.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:39:51.737+11 510088
  2012-10-10-1349854800.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:40:13.764+11 1140872
  2012-10-10-1349854814.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:40:18.376+11 309322
  2012-10-10-1349854849.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:40:53.972+11 403592
  2012-10-10-1349854854.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 18:40:57.579+11 284768
  2012-10-10-1349855210.23-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 18:46:55.4+11 432180
  2012-10-10-1349855215.65-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 18:47:00.302+11 387208
  2012-10-10-1349855246.4-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:47:30.111+11 311432
  2012-10-10-1349855251.15-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:47:44.018+11 1081480
  2012-10-10-1349855264.37-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:47:49.02+11 391304
  2012-10-10-1349855270.14-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:47:53.43+11 276616
  2012-10-10-1349855274.57-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:48:11.573+11 1427930
  2012-10-10-1349855321.59-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:48:44.501+11 243446
  2012-10-10-1349855326.89-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:48:56.01+11 766088
  2012-10-10-1349855336.83-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:48:58.998+11 180360
  2012-10-10-1349855339.19-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:49:02.481+11 276616
  2012-10-10-1349855343.31-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:49:08.54+11 440456
  2012-10-10-1349855348.73-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:49:11.159+11 202888
  2012-10-10-1349855362.76-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:49:26.01+11 274568
  2012-10-10-1349855366.44-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:49:32.403+11 501896
  2012-10-10-1349855373.31-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:49:36.286+11 249992
  2012-10-10-1349855376.54-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:49:58.041+11 1808520
  2012-10-10-1349855398.81-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:50:01.43+11 219272
  2012-10-10-1349855401.67-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 18:50:26.573+11 1703692
  2012-10-10-1349855426.75-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 18:50:30.5+11 315528
  2012-10-10-1349855576.9-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-10 18:53:01.797+11 409304
  2012-10-10-1349855604.99-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 18:53:28.873+11 325768
  2012-10-10-1349855609.95-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-10 18:53:34.955+11 414606
  2012-10-10-1349855615.75-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 18:53:42.275+11 542856
  2012-10-10-1349855622.63-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 18:53:45.466+11 237704
  2012-10-10-1349855626.38-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-10 18:53:54.167+11 651604
  2012-10-10-1349855639.01-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 18:54:08.111+11 764040
  2012-10-10-1349855650.0-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 18:54:12.367+11 198792
  2012-10-10-1349855653.26-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:54:22.5+11 774150
  2012-10-10-1349855663.41-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:54:41.106+11 1487016
  2012-10-10-1349855681.8-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:54:44.669+11 239752
  2012-10-10-1349855685.15-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 18:55:05.639+11 1720456
  2012-10-10-1349855721.09-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 18:55:36.296+11 1276040
  2012-10-10-1349855736.68-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 18:55:39.636+11 247944
  2012-10-10-1349855739.89-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 18:55:43.068+11 264328
  2012-10-10-1349855816.27-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 18:56:59.266+11 248162
  2012-10-10-1349855819.45-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 18:57:06.663+11 602248
  2012-10-10-1349855827.56-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 18:57:16.684+11 766088
  2012-10-10-1349855844.07-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:57:32.011+11 667784
  2012-10-10-1349855852.96-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:57:37.397+11 370654
  2012-10-10-1349855865.23-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 18:57:57.98+11 1071240
  2012-10-10-1349855894.05-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:58:29.245+11 1275620
  2012-10-10-1349855910.09-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:58:35.606+11 465534
  2012-10-10-1349855915.91-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:58:46.06+11 845960
  2012-10-10-1349855927.91-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:58:57.681+11 819336
  2012-10-10-1349855939.26-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:59:06.025+11 564024
  2012-10-10-1349855957.37-demo.wav 42009 CanberraBlackMnt 2012-10-10 18:59:20.267+11 245896
  2012-10-10-1349856229.79-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:03:54.244+11 373224
  2012-10-10-1349856235.62-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:04:00.121+11 379016
  2012-10-10-1349856240.42-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:04:03.091+11 223368
  2012-10-10-1349856244.03-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:04:14.732+11 897832
  2012-10-10-1349856255.32-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:04:22.404+11 592008
  2012-10-10-1349856262.66-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:04:25.935+11 274568
  2012-10-10-1349856266.49-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:04:32.799+11 530568
  2012-10-10-1349856273.86-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:04:36.689+11 235656
  2012-10-10-1349856407.4-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:06:51.648+11 356230
  2012-10-10-1349856413.18-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:07:00.082+11 575624
  2012-10-10-1349856421.07-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:07:10.351+11 778712
  2012-10-10-1349856470.67-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:07:55.723+11 422484
  2012-10-10-1349856477.19-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:08:11.537+11 1203394
  2012-10-10-1349856492.8-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:08:17.019+11 352164
  2012-10-10-1349856497.93-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:08:26.486+11 715796
  2012-10-10-1349856508.43-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:08:32.758+11 364680
  2012-10-10-1349856513.09-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:08:43.269+11 856200
  2012-10-10-1349856526.06-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:08:51.788+11 481416
  2012-10-10-1349856551.24-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:09:20.249+11 755848
  2012-10-10-1349856560.51-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:09:22.86+11 194696
  2012-10-10-1349856563.18-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:09:27.023+11 321672
  2012-10-10-1349856567.4-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:09:31.753+11 364680
  2012-10-10-1349856572.15-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:09:36.242+11 342152
  2012-10-10-1349856637.49-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 19:10:42.057+11 381394
  2012-10-10-1349856643.34-demo.wav 42009 CanberraBlackMnt 2012-10-10 19:10:55.674+11 1033612
  2012-10-10-1349856655.88-demo.wav 42009 CanberraBlackMnt 2012-10-10 19:10:58.329+11 206984
  2012-10-10-1349856667.74-demo.wav 42002 Hall CanberraBlackMnt 2012-10-10 19:11:19.581+11 995464
  2012-10-10-1349856680.45-demo.wav 42002 Hall CanberraBlackMnt 2012-10-10 19:11:38.982+11 1558664
  2012-10-10-1349856730.24-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:12:13.69+11 285408
  2012-10-10-1349856763.09-demo.wav 42002 Hall CanberraBlackMnt 2012-10-10 19:12:45.448+11 198792
  2012-10-10-1349856765.71-demo.wav 42002 Hall CanberraBlackMnt 2012-10-10 19:12:49.666+11 331912
  2012-10-10-1349856770.94-demo.wav 42002 Hall CanberraBlackMnt 2012-10-10 19:12:54.522+11 299144
  2012-10-10-1349856853.4-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 19:14:21.788+11 700586
  2012-10-10-1349856862.16-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 19:14:28.274+11 512136
  2012-10-10-1349856942.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:15:45.56+11 256752
  2012-10-10-1349856946.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:15:58.333+11 972686
  2012-10-10-1349856958.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:16:01.305+11 211080
  2012-10-10-1349856962.3-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:17:06.618+11 5403594
  2012-10-10-1349857027.35-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:17:28.412+11 1769608
  2012-10-10-1349857048.85-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:17:36.794+11 667784
  2012-10-10-1349857057.74-demo.wav 42002 Hall CanberraBlackMnt 2012-10-10 19:17:51.26+11 1134728
  2012-10-10-1349857071.53-demo.wav 42002 Hall CanberraBlackMnt 2012-10-10 19:18:04.862+11 1120392
  2012-10-10-1349857120.08-demo.wav 42002 Hall CanberraBlackMnt 2012-10-10 19:18:51.186+11 929152
  2012-10-10-1349857131.63-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-10 19:19:16.663+11 2103432
  2012-10-10-1349857202.48-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:20:09.236+11 557252
  2012-10-10-1349857255.05-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-10 19:20:59.25+11 352250
  2012-10-10-1349857260.11-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-10 19:21:03.118+11 252040
  2012-10-10-1349857282.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:21:38.147+11 1335432
  2012-10-10-1349857298.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:21:49.431+11 925832
  2012-10-10-1349857346.87-demo.wav 44028 CanberraMtAinsli 2012-10-10 19:22:35.275+11 706696
  2012-10-10-1349857355.41-demo.wav 44028 CanberraMtAinsli 2012-10-10 19:22:37.69+11 190600
  2012-10-10-1349857358.71-demo.wav 44028 CanberraMtAinsli 2012-10-10 19:22:43.618+11 411784
  2012-10-10-1349857363.88-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:23:09.642+11 2164872
  2012-10-10-1349857389.83-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:23:12.562+11 227464
  2012-10-10-1349857420.96-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:23:45.281+11 361346
  2012-10-10-1349857425.72-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:23:51.084+11 450696
  2012-10-10-1349857431.6-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:24:00.079+11 712840
  2012-10-10-1349857477.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:24:40.742+11 235446
  2012-10-10-1349857482.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:24:49.318+11 600200
  2012-10-10-1349857489.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:24:52.224+11 219272
  2012-10-10-1349857517.12-demo.wav 44028 CanberraBlackMnt 2012-10-10 19:25:23.648+11 551048
  2012-10-10-1349857524.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:26:01.98+11 3158152
  2012-10-10-1349857562.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:26:04.816+11 209032
  2012-10-10-1349857566.54-demo.wav 44028 CanberraBlackMnt 2012-10-10 19:26:16.499+11 837768
  2012-10-10-1349857576.77-demo.wav 44028 CanberraBlackMnt 2012-10-10 19:26:19.057+11 194696
  2012-10-10-1349857579.35-demo.wav 44028 CanberraBlackMnt 2012-10-10 19:26:22.397+11 256136
  2012-10-10-1349857583.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:26:31.581+11 694292
  2012-10-10-1349857591.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:26:44.049+11 1024136
  2012-10-10-1349857604.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:26:49.447+11 428168
  2012-10-10-1349857610.33-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 19:26:57.943+11 639094
  2012-10-10-1349857619.22-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 19:27:14.243+11 1263752
  2012-10-10-1349857635.04-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 19:27:19.47+11 372872
  2012-10-10-1349857640.92-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 19:27:44.56+11 1986696
  2012-10-10-1349857665.06-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 19:27:50.896+11 489608
  2012-10-10-1349857727.02-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:28:51.925+11 405914
  2012-10-10-1349857733.18-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:28:57.739+11 379714
  2012-10-10-1349857738.09-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:29:03.675+11 469128
  2012-10-10-1349857744.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:29:13.784+11 813192
  2012-10-10-1349857756.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:29:20.975+11 383112
  2012-10-10-1349857761.81-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-10 19:29:29.391+11 637064
  2012-10-10-1349857771.1-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-10 19:29:35.462+11 366728
  2012-10-10-1349857803.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:30:06.648+11 289812
  2012-10-10-1349857809.37-demo.wav 44028 CanberraBlackMnt 2012-10-10 19:30:14.512+11 430216
  2012-10-10-1349857815.56-demo.wav 44028 CanberraBlackMnt 2012-10-10 19:30:18.013+11 206984
  2012-10-10-1349857851.4-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:30:57.411+11 503944
  2012-10-10-1349857873.49-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:31:28.541+11 1265800
  2012-10-10-1349857889.53-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:31:33.57+11 340104
  2012-10-10-1349857974.47-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-10 19:32:58.367+11 324486
  2012-10-10-1349857980.67-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 19:33:09.138+11 712840
  2012-10-10-1349858116.12-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:35:18.832+11 226144
  2012-10-10-1349858120.58-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:35:25.906+11 447238
  2012-10-10-1349858127.74-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:35:36.814+11 757896
  2012-10-10-1349858210.88-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:36:55.601+11 396474
  2012-10-10-1349858215.84-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:36:59.723+11 325768
  2012-10-10-1349858243.45-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:37:42.704+11 1615868
  2012-10-10-1349858262.94-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:38:00.71+11 1493128
  2012-10-10-1349858298.82-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:38:35.442+11 1394824
  2012-10-10-1349858316.37-demo.wav 44028 CanberraMtAinsli 2012-10-10 19:38:45.464+11 757638
  2012-10-10-1349858325.75-demo.wav 44028 CanberraMtAinsli 2012-10-10 19:38:48.133+11 200840
  2012-10-10-1349858412.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:40:14.943+11 233462
  2012-10-10-1349858418.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:40:30.584+11 1009800
  2012-10-10-1349858430.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:40:33.648+11 233608
  2012-10-10-1349858515.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:41:58.466+11 248788
  2012-10-10-1349858518.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:42:01.231+11 202888
  2012-10-10-1349858570.55-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 19:42:59.751+11 774280
  2012-10-10-1349858659.22-demo.wav 44028 CanberraBlackMnt 2012-10-10 19:44:21.771+11 212822
  2012-10-10-1349858662.02-demo.wav 44028 CanberraBlackMnt 2012-10-10 19:44:25.143+11 260232
  2012-10-10-1349858665.78-demo.wav 44028 CanberraBlackMnt 2012-10-10 19:44:28.58+11 231560
  2012-10-10-1349858866.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:47:49.456+11 209940
  2012-10-10-1349858869.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:47:52.453+11 213128
  2012-10-10-1349858930.44-demo.wav 44028 CanberraBlackMnt 2012-10-10 19:48:54.027+11 300682
  2012-10-10-1349858935.66-demo.wav 44028 CanberraBlackMnt 2012-10-10 19:48:58.757+11 260232
  2012-10-10-1349858939.35-demo.wav 44028 CanberraBlackMnt 2012-10-10 19:49:03.232+11 325768
  2012-10-10-1349858943.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:49:31.876+11 2373768
  2012-10-10-1349858972.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:49:48.418+11 1309122
  2012-10-10-1349859020.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:50:22.925+11 217560
  2012-10-10-1349859024.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 19:50:28.161+11 326848
  2012-10-10-1349859068.72-demo.wav 44028 CanberraBlackMnt 2012-10-10 19:51:12.884+11 347812
  2012-10-10-1349859073.13-demo.wav 44028 CanberraBlackMnt 2012-10-10 19:51:15.889+11 231560
  2012-10-10-1349859077.29-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 19:51:25.958+11 725612
  2012-10-10-1349859114.48-demo.wav 44028 CanberraBlackMnt 2012-10-10 19:51:58.39+11 324602
  2012-10-10-1349859151.68-demo.wav 44014 CanberraBlackMnt 2012-10-10 19:52:40.143+11 712840
  2012-10-10-1349859353.96-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 19:55:57.834+11 321838
  2012-10-10-1349859360.38-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 19:56:03.698+11 274568
  2012-10-10-1349859364.57-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-10 19:56:07.629+11 256136
  2012-10-10-1349859368.33-demo.wav 44028 CanberraMtAinsli 2012-10-10 19:56:15.795+11 626746
  2012-10-10-1349859379.08-demo.wav 44028 CanberraMtAinsli 2012-10-10 19:56:33.619+11 1222792
  2012-10-10-1349859601.43-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 20:00:07.868+11 537134
  2012-10-10-1349859609.6-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 20:00:24.31+11 1235492
  2012-10-10-1349859625.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:00:35.801+11 832438
  2012-10-10-1349859638.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:00:46.765+11 670332
  2012-10-10-1349859760.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:02:42.718+11 223374
  2012-10-10-1349859763.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:02:47.09+11 288322
  2012-10-10-1349859767.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:03:10.621+11 1953928
  2012-10-10-1349859836.13-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 20:03:58.655+11 211080
  2012-10-10-1349859840.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:04:08.348+11 633564
  2012-10-10-1349859851.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:04:52.866+11 3049098
  2012-10-10-1349859899.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:05:08.063+11 700552
  2012-10-10-1349859909.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:05:20.591+11 947544
  2012-10-10-1349860021.33-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 20:07:05.785+11 373936
  2012-10-10-1349860028.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:07:25.728+11 1486984
  2012-10-10-1349860047.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:07:31.254+11 348296
  2012-10-10-1349860053.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:08:00.324+11 2276736
  2012-10-10-1349860095.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:08:22.631+11 639112
  2012-10-10-1349860105.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:08:28.948+11 270412
  2012-10-10-1349860163.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:09:28.001+11 353842
  2012-10-10-1349860170.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:09:33.918+11 314392
  2012-10-10-1349860185.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:10:04.622+11 1562760
  2012-10-10-1349860237.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:10:40.452+11 277988
  2012-10-10-1349860242.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:10:48.674+11 534662
  2012-10-10-1349860263.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:11:12.092+11 721032
  2012-10-10-1349860377.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:13:01.802+11 356136
  2012-10-10-1349860382.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:13:17.226+11 1276040
  2012-10-10-1349860594.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:16:38.892+11 396376
  2012-10-10-1349860608.82-demo.wav 44028 CanberraBlackMnt 2012-10-10 20:16:59.575+11 905352
  2012-10-10-1349860619.83-demo.wav 44028 CanberraBlackMnt 2012-10-10 20:17:04.721+11 411784
  2012-10-10-1349860659.83-demo.wav 44028 CanberraMtAinsli 2012-10-10 20:17:42.747+11 245896
  2012-10-10-1349860665.39-demo.wav 44028 CanberraMtAinsli 2012-10-10 20:17:48.133+11 231560
  2012-10-10-1349860683.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:18:10.924+11 645256
  2012-10-10-1349860691.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:18:13.427+11 196744
  2012-10-10-1349860694.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:18:37.601+11 1960072
  2012-10-10-1349860719.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:18:47.379+11 647304
  2012-10-10-1349860728.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:19:00.898+11 1065096
  2012-10-10-1349860961.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:22:45.96+11 337252
  2012-10-10-1349860966.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:22:50.624+11 312006
  2012-10-10-1349860979.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:23:06.616+11 583816
  2012-10-10-1349861060.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:24:23.084+11 220092
  2012-10-10-1349861063.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:24:25.646+11 186504
  2012-10-10-1349861065.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:24:31.111+11 438408
  2012-10-10-1349861071.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:24:43.506+11 993416
  2012-10-10-1349861084.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:24:49.052+11 351928
  2012-10-10-1349861090.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:25:15.184+11 2050184
  2012-10-10-1349861190.25-demo.wav 44028 CanberraBlackMnt 2012-10-10 20:26:32.806+11 211740
  2012-10-10-1349861447.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:30:52.796+11 467080
  2012-10-10-1349861453.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:31:15.949+11 1912958
  2012-10-10-1349861550.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:32:33.471+11 272368
  2012-10-10-1349861555.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:32:43.15+11 665736
  2012-10-10-1349861579.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:33:07.789+11 686216
  2012-10-10-1349861588.79-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-10 20:33:13.11+11 354434
  2012-10-10-1349861844.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:37:27.112+11 214088
  2012-10-10-1349861847.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:37:29.876+11 211080
  2012-10-10-1349861850.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:37:37.786+11 626588
  2012-10-10-1349861857.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:37:55.255+11 1456264
  2012-10-10-1349862041.0-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 20:40:44.994+11 332166
  2012-10-10-1349862047.87-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 20:40:51.784+11 327816
  2012-10-10-1349862052.71-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 20:40:58.994+11 523164
  2012-10-10-1349862061.32-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 20:41:07.48+11 516232
  2012-10-10-1349862068.44-demo.wav 44028 CanberraBlackMnt 2012-10-10 20:41:23.673+11 1278258
  2012-10-10-1349862345.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:45:48.694+11 297896
  2012-10-10-1349862349.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:45:52.687+11 282760
  2012-10-10-1349862395.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:46:39.112+11 271180
  2012-10-10-1349862490.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:48:14.055+11 309076
  2012-10-10-1349862494.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:48:16.693+11 196744
  2012-10-10-1349862497.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:48:20.839+11 311432
  2012-10-10-1349862501.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:48:24.434+11 270472
  2012-10-10-1349862505.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:48:40.506+11 1278376
  2012-10-10-1349862522.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:48:50.538+11 651400
  2012-10-10-1349862531.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:49:01.197+11 821384
  2012-10-10-1349862541.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:49:05.815+11 370824
  2012-10-10-1349862622.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:50:25.454+11 213324
  2012-10-10-1349862627.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:50:30.55+11 258184
  2012-10-10-1349862630.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:50:33.28+11 198792
  2012-10-10-1349862702.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:51:45.451+11 220518
  2012-10-10-1349862705.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:52:23.775+11 3199112
  2012-10-10-1349862744.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:52:42.95+11 1546376
  2012-10-10-1349862763.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:52:45.826+11 219272
  2012-10-10-1349862766.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:52:55.825+11 800904
  2012-10-10-1349862847.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:54:10.236+11 267626
  2012-10-10-1349862851.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:54:29.476+11 1493258
  2012-10-10-1349862870.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:54:35.286+11 411334
  2012-10-10-1349863017.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:57:00.431+11 248358
  2012-10-10-1349863022.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:57:06.879+11 360584
  2012-10-10-1349863027.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:57:13.378+11 491656
  2012-10-10-1349863139.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:59:02.594+11 239310
  2012-10-10-1349863142.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:59:05.072+11 180360
  2012-10-10-1349863145.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:59:07.947+11 221320
  2012-10-10-1349863148.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:59:12.683+11 360584
  2012-10-10-1349863153.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:59:20.609+11 587636
  2012-10-10-1349863161.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:59:33.839+11 1027180
  2012-10-10-1349863174.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 20:59:36.539+11 202888
  2012-10-10-1349863451.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:04:13.933+11 210850
  2012-10-10-1349863455.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:04:20.104+11 356488
  2012-10-10-1349863461.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:04:34.02+11 1074282
  2012-10-10-1349863506.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:05:09.35+11 269402
  2012-10-10-1349863510.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:05:12.921+11 180360
  2012-10-10-1349863513.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:05:17.326+11 315528
  2012-10-10-1349863517.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:05:22.133+11 389256
  2012-10-10-1349863528.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:05:40.987+11 1024136
  2012-10-10-1349863563.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:06:05.858+11 209032
  2012-10-10-1349863566.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:06:14.022+11 590514
  2012-10-10-1349863574.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:06:17.582+11 272520
  2012-10-10-1349863577.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:06:22.231+11 370696
  2012-10-10-1349863639.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:07:22.796+11 252770
  2012-10-10-1349863645.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:07:28.563+11 297096
  2012-10-10-1349863822.43-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-10 21:10:24.99+11 211886
  2012-10-10-1349864003.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:13:26.841+11 243548
  2012-10-10-1349864007.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:13:32.702+11 407058
  2012-10-10-1349864013.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:14:01.262+11 2311152
  2012-10-10-1349864041.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:14:08.651+11 567432
  2012-10-10-1349864048.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:14:11.156+11 188552
  2012-10-10-1349864111.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:15:14.213+11 239476
  2012-10-10-1349864139.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:15:42.951+11 264774
  2012-10-10-1349864144.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:15:49.756+11 464286
  2012-10-10-1349864162.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 21:16:07.81+11 426120
  2012-10-10-1349864875.82-demo.wav 44028 CanberraMtAinsli 2012-10-10 21:27:59.7+11 323760
  2012-10-10-1349864880.83-demo.wav 44028 CanberraMtAinsli 2012-10-10 21:28:03.695+11 239752
  2012-10-10-1349864883.95-demo.wav 42001 Gunghalin CanberraMtAinsli 2012-10-10 21:28:55.339+11 4317320
  2012-10-10-1349865145.01-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 21:32:28.151+11 258220
  2012-10-10-1349865149.51-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 21:32:37.994+11 707824
  2012-10-10-1349865158.25-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 21:32:43.746+11 462984
  2012-10-10-1349865164.99-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 21:32:49.484+11 374744
  2012-10-10-1349865371.24-demo.wav 10301 CanberraBlackMnt 2012-10-10 21:36:14.15+11 243072
  2012-10-10-1349865375.84-demo.wav 10301 CanberraMtAinsli 2012-10-10 21:36:26.858+11 920466
  2012-10-10-1349865387.8-demo.wav 10301 CanberraMtAinsli 2012-10-10 21:36:31.828+11 333960
  2012-10-10-1349865622.74-demo.wav 44028 CanberraBlackMnt 2012-10-10 21:40:25.391+11 222398
  2012-10-10-1349865706.18-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-10 21:41:48.814+11 217578
  2012-10-10-1349865711.97-demo.wav 44013 ACTION 44013 CanberraBlackMnt 2012-10-10 21:41:54.249+11 190600
  2012-10-10-1349865728.87-demo.wav 44028 CanberraBlackMnt 2012-10-10 21:42:21.486+11 1061000
  2012-10-10-1349865742.48-demo.wav 44028 CanberraBlackMnt 2012-10-10 21:42:27.67+11 434300
  2012-10-10-1349865747.93-demo.wav 44028 CanberraBlackMnt 2012-10-10 21:42:44.327+11 1376392
  2012-10-10-1349866907.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 22:01:50.089+11 211600
  2012-10-10-1349866910.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 22:01:52.802+11 204936
  2012-10-10-1349866913.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 22:02:14.57+11 1769608
  2012-10-10-1349867067.42-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 22:04:29.982+11 211490
  2012-10-10-1349867070.37-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 22:04:33.138+11 231560
  2012-10-10-1349867075.36-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-10 22:04:41.554+11 520328
  2012-10-10-1349867103.32-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-10 22:05:15.807+11 1044616
  2012-10-10-1349869389.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 22:43:12.151+11 235026
  2012-10-10-1349869392.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 22:43:15.5+11 254088
  2012-10-10-1349869395.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 22:43:20.555+11 401544
  2012-10-10-1349869471.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 22:44:34.211+11 248814
  2012-10-10-1349869769.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 22:49:32.334+11 267906
  2012-10-10-1349869775.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 22:49:39.331+11 336008
  2012-10-10-1349869779.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 22:49:43.853+11 346248
  2012-10-10-1349869821.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 22:50:25.365+11 317060
  2012-10-10-1349869934.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 22:52:17.819+11 277630
  2012-10-10-1349869938.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 22:52:23.444+11 401544
  2012-10-10-1349869943.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 22:52:26.385+11 223368
  2012-10-10-1349869983.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 22:53:07.768+11 330238
  2012-10-10-1349870442.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:00:44.795+11 220576
  2012-10-10-1349870445.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:00:48.03+11 252040
  2012-10-10-1349870448.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:00:52.985+11 360584
  2012-10-10-1349870645.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:04:08.814+11 241050
  2012-10-10-1349870651.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:04:14.894+11 254088
  2012-10-10-1349870655.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:04:19.51+11 309384
  2012-10-10-1349870911.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:08:35.982+11 355928
  2012-10-10-1349870953.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:09:26.922+11 1147554
  2012-10-10-1349870967.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:09:47.078+11 1610758
  2012-10-10-1349870987.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:09:56.844+11 802952
  2012-10-10-1349871257.16-demo.wav 44028 CanberraBlackMnt 2012-10-10 23:14:19.764+11 217096
  2012-10-10-1349871260.93-demo.wav 44028 CanberraBlackMnt 2012-10-10 23:14:25.006+11 338702
  2012-10-10-1349871342.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:15:45.2+11 259992
  2012-10-10-1349871346.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:15:50.262+11 303528
  2012-10-10-1349871351.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:15:57.831+11 551586
  2012-10-10-1349871359.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:16:05.749+11 549000
  2012-10-10-1349871367.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:16:09.708+11 198792
  2012-10-10-1349871370.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:16:12.894+11 231560
  2012-10-10-1349871374.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:16:37.735+11 1982838
  2012-10-10-1349871397.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:17:16.226+11 3215054
  2012-10-10-1349871436.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:17:20.006+11 299144
  2012-10-10-1349871440.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:17:24.798+11 338056
  2012-10-10-1349871458.92-demo.wav 44028 CanberraBlackMnt 2012-10-10 23:17:43.544+11 382688
  2012-10-10-1349871612.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:20:15.584+11 262264
  2012-10-10-1349871617.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:20:26.509+11 731272
  2012-10-10-1349871626.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:20:30.839+11 342152
  2012-10-10-1349871631.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:20:35.679+11 383112
  2012-10-10-1349871636.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:20:48.817+11 1071240
  2012-10-10-1349871649.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:20:52.677+11 241800
  2012-10-10-1349871653.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:21:14.943+11 1759492
  2012-10-10-1349871698.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:21:47.354+11 729224
  2012-10-10-1349871794.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:23:19.673+11 427322
  2012-10-10-1349871800.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:23:22.786+11 229512
  2012-10-10-1349871803.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:23:27.543+11 346248
  2012-10-10-1349871807.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:23:52.971+11 2119816
  2012-10-10-1349871833.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:23:55.687+11 192648
  2012-10-10-1349871837.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:24:14.768+11 1447868
  2012-10-10-1349871855.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:24:19.547+11 366728
  2012-10-10-1349872059.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:27:43.416+11 297542
  2012-10-10-1349872064.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:27:56.855+11 1012076
  2012-10-10-1349872094.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:28:17.681+11 249992
  2012-10-10-1349872673.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:37:56.025+11 228262
  2012-10-10-1349872753.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:39:17.085+11 310984
  2012-10-10-1349872757.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:39:25.054+11 614536
  2012-10-10-1349872766.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:39:35.818+11 816030
  2012-10-10-1349872776.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:39:46.685+11 829848
  2012-10-10-1349872786.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:39:50.724+11 313462
  2012-10-10-1349872792.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:39:58.939+11 512076
  2012-10-10-1349872799.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:40:11.737+11 1024136
  2012-10-10-1349872812.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:40:14.738+11 229512
  2012-10-10-1349873111.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:45:15.746+11 351758
  2012-10-10-1349873168.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:46:11.419+11 249090
  2012-10-10-1349873196.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:46:42.261+11 470756
  2012-10-10-1349873202.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:46:44.887+11 190600
  2012-10-10-1349873217.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:47:10.223+11 1106056
  2012-10-10-1349873246.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:47:31.288+11 428828
  2012-10-10-1349873251.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:47:33.988+11 202888
  2012-10-10-1349873254.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:47:49.264+11 1259074
  2012-10-10-1349873269.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:48:16.803+11 2291848
  2012-10-10-1349873297.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:48:22.811+11 416530
  2012-10-10-1349873380.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:49:43.622+11 251552
  2012-10-10-1349873384.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:49:49.344+11 374448
  2012-10-10-1349873630.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:53:56.506+11 462006
  2012-10-10-1349873648.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:54:13.443+11 415880
  2012-10-10-1349873654.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:54:36.269+11 1801764
  2012-10-10-1349873676.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:54:43.233+11 522376
  2012-10-10-1349873733.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:55:37.377+11 318372
  2012-10-10-1349873738.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:55:40.909+11 237704
  2012-10-10-1349873759.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:56:08.13+11 764040
  2012-10-10-1349873768.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:56:12.659+11 350344
  2012-10-10-1349873850.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:57:33.079+11 253026
  2012-10-10-1349873854.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:57:37.76+11 297096
  2012-10-10-1349873858.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:57:48.787+11 830610
  2012-10-10-1349873869.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:57:54.058+11 417928
  2012-10-10-1349873874.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:58:06.855+11 1052808
  2012-10-10-1349873970.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-10 23:59:33.035+11 221698
  2012-10-11-1349874041.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:00:46.764+11 450512
  2012-10-11-1349874167.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:02:50.648+11 266234
  2012-10-11-1349874171.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:02:53.154+11 180360
  2012-10-11-1349874173.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:02:57.166+11 321672
  2012-10-11-1349874202.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:03:27.853+11 409350
  2012-10-11-1349874934.65-demo.wav 44028 CanberraBlackMnt 2012-10-11 00:15:37.913+11 271710
  2012-10-11-1349874939.88-demo.wav 44028 CanberraBlackMnt 2012-10-11 00:15:46.913+11 586208
  2012-10-11-1349874947.13-demo.wav 44028 CanberraBlackMnt 2012-10-11 00:15:50.205+11 260232
  2012-10-11-1349875085.08-demo.wav 44028 CanberraBlackMnt 2012-10-11 00:18:07.632+11 209652
  2012-10-11-1349875088.54-demo.wav 44028 CanberraBlackMnt 2012-10-11 00:18:11.227+11 223368
  2012-10-11-1349875091.38-demo.wav 44028 CanberraBlackMnt 2012-10-11 00:18:13.928+11 213128
  2012-10-11-1349875094.69-demo.wav 44028 CanberraBlackMnt 2012-10-11 00:18:17.859+11 266376
  2012-10-11-1349875235.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:20:39.023+11 315024
  2012-10-11-1349875260.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:21:04.775+11 346248
  2012-10-11-1349875324.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:22:08.268+11 297550
  2012-10-11-1349875329.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:22:15.413+11 518456
  2012-10-11-1349875335.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:22:18.156+11 204936
  2012-10-11-1349875338.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:22:33.228+11 1198216
  2012-10-11-1349875356.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:22:46.56+11 874632
  2012-10-11-1349875367.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:22:52.129+11 391728
  2012-10-11-1349875372.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:23:16.021+11 1982600
  2012-10-11-1349875396.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:23:30.326+11 1124488
  2012-10-11-1349875410.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:23:43.077+11 1020040
  2012-10-11-1349875490.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:24:53.373+11 209950
  2012-10-11-1349875560.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:26:03.734+11 260302
  2012-10-11-1349875589.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:26:42.441+11 1077384
  2012-10-11-1349875603.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:26:47.586+11 343878
  2012-10-11-1349875607.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:26:53.291+11 456840
  2012-10-11-1349875645.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:27:27.752+11 211080
  2012-10-11-1349875649.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:27:33.368+11 303234
  2012-10-11-1349875654.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:27:36.99+11 223368
  2012-10-11-1349875837.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:30:39.788+11 224136
  2012-10-11-1349875839.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:30:42.242+11 194696
  2012-10-11-1349875842.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:30:47.248+11 395400
  2012-10-11-1349876009.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:33:33.522+11 303630
  2012-10-11-1349876014.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:33:39.271+11 430216
  2012-10-11-1349876119.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:35:39.324+11 1632868
  2012-10-11-1349876165.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:36:08.169+11 249992
  2012-10-11-1349876168.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:36:12.253+11 276616
  2012-10-11-1349876172.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:36:17.759+11 440456
  2012-10-11-1349876379.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:39:43.304+11 319296
  2012-10-11-1349876384.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 00:39:48.24+11 301192
  2012-10-11-1349878494.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 01:14:57.228+11 264954
  2012-10-11-1349878497.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 01:15:02.467+11 397448
  2012-10-11-1349878655.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 01:17:38.299+11 260582
  2012-10-11-1349878659.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 01:17:43.49+11 307406
  2012-10-11-1349878663.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 01:17:49.813+11 518280
  2012-10-11-1349878864.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 01:21:06.808+11 213970
  2012-10-11-1349878867.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 01:21:09.394+11 188552
  2012-10-11-1349878869.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 01:21:27.033+11 1458312
  2012-10-11-1349878887.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 01:21:30.45+11 266376
  2012-10-11-1349881943.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 02:12:26.969+11 309728
  2012-10-11-1349881971.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 02:12:53.587+11 211080
  2012-10-11-1349882107.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 02:15:10.73+11 264930
  2012-10-11-1349882133.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 02:15:36.007+11 209032
  2012-10-11-1349882152.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 02:15:55.359+11 266376
  2012-10-11-1349882387.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 02:19:51.346+11 289742
  2012-10-11-1349882391.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 02:19:54.604+11 258184
  2012-10-11-1349883074.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 02:31:17.114+11 219812
  2012-10-11-1349883079.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 02:31:25.02+11 424072
  2012-10-11-1349883086.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 02:31:35.875+11 823546
  2012-10-11-1349883500.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 02:38:26.625+11 533414
  2012-10-11-1349884111.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 02:48:34.897+11 255750
  2012-10-11-1349884115.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 02:48:38.627+11 297096
  2012-10-11-1349884118.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 02:48:46.354+11 637064
  2012-10-11-1349885124.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:05:28.042+11 319752
  2012-10-11-1349885130.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:05:37.226+11 602248
  2012-10-11-1349885349.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:09:12.197+11 203218
  2012-10-11-1349885374.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:09:36.631+11 217224
  2012-10-11-1349885430.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:10:36.308+11 521494
  2012-10-11-1349885436.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:10:40.207+11 278664
  2012-10-11-1349885515.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:11:57.937+11 225212
  2012-10-11-1349885519.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:12:02.996+11 327002
  2012-10-11-1349885523.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:12:16.414+11 1067144
  2012-10-11-1349885554.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:12:44.145+11 805000
  2012-10-11-1349885566.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:12:49.01+11 227464
  2012-10-11-1349885929.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:18:52.587+11 227236
  2012-10-11-1349885933.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:18:56.356+11 254088
  2012-10-11-1349885936.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:19:02.502+11 499848
  2012-10-11-1349886024.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:20:30.952+11 558330
  2012-10-11-1349886031.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:20:41.381+11 831624
  2012-10-11-1349886041.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:20:44.01+11 204936
  2012-10-11-1349886193.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:23:16.888+11 260106
  2012-10-11-1349886209.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:23:32.993+11 303240
  2012-10-11-1349886294.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:24:58.235+11 289812
  2012-10-11-1349886299.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:25:03.699+11 315910
  2012-10-11-1349886328.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:25:31.429+11 235656
  2012-10-11-1349886360.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:26:03.349+11 213046
  2012-10-11-1349886365.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:26:09.575+11 327816
  2012-10-11-1349886369.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:26:12.45+11 219272
  2012-10-11-1349886427.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:27:10.004+11 231378
  2012-10-11-1349886431.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:27:15.092+11 329864
  2012-10-11-1349886435.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:27:17.568+11 184456
  2012-10-11-1349886529.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:28:52.511+11 211376
  2012-10-11-1349886533.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:29:03.983+11 869482
  2012-10-11-1349886544.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:29:08.584+11 368776
  2012-10-11-1349886604.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:30:09.576+11 442234
  2012-10-11-1349886610.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:30:13.501+11 272520
  2012-10-11-1349887058.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:37:42.111+11 333054
  2012-10-11-1349887063.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:37:46.458+11 265584
  2012-10-11-1349887066.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:37:50.958+11 354440
  2012-10-11-1349887071.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:37:55.592+11 340104
  2012-10-11-1349887717.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:48:41.114+11 288390
  2012-10-11-1349887721.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:48:43.758+11 194696
  2012-10-11-1349888025.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:53:51.211+11 444334
  2012-10-11-1349888032.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:53:55.123+11 260232
  2012-10-11-1349888159.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:56:02.632+11 219272
  2012-10-11-1349888163.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:56:05.906+11 188552
  2012-10-11-1349888241.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:57:26.539+11 460038
  2012-10-11-1349888246.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:57:30.03+11 260232
  2012-10-11-1349888251.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:57:39.779+11 708446
  2012-10-11-1349888260.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:57:43.333+11 276616
  2012-10-11-1349888301.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:58:25.082+11 320726
  2012-10-11-1349888305.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:58:27.598+11 190600
  2012-10-11-1349888308.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 03:58:34.492+11 493656
  2012-10-11-1349888581.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:03:04.467+11 215752
  2012-10-11-1349888585.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:03:14.111+11 708586
  2012-10-11-1349888595.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:03:18.057+11 243770
  2012-10-11-1349888678.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:04:41.079+11 229036
  2012-10-11-1349888681.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:04:43.658+11 192648
  2012-10-11-1349888684.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:04:48.019+11 321672
  2012-10-11-1349888813.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:06:56.966+11 331162
  2012-10-11-1349888884.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:08:07.16+11 243188
  2012-10-11-1349888887.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:08:10.396+11 245896
  2012-10-11-1349888890.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:08:14.28+11 311432
  2012-10-11-1349888894.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:08:21.783+11 592008
  2012-10-11-1349888994.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:09:57.368+11 218566
  2012-10-11-1349888999.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:10:07.883+11 680070
  2012-10-11-1349889008.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:10:19.933+11 987272
  2012-10-11-1349889020.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:10:46.072+11 2144392
  2012-10-11-1349889106.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:11:49.733+11 300710
  2012-10-11-1349889110.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:11:55.231+11 397448
  2012-10-11-1349889115.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:11:58.602+11 254088
  2012-10-11-1349889321.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:15:25.06+11 296984
  2012-10-11-1349889327.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:15:32.842+11 471176
  2012-10-11-1349889412.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:16:56.81+11 370928
  2012-10-11-1349889419.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:17:15.473+11 1321096
  2012-10-11-1349889828.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:23:51.019+11 210948
  2012-10-11-1349889832.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:23:56.404+11 288904
  2012-10-11-1349889837.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:24:00.662+11 293000
  2012-10-11-1349889841.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:24:20.545+11 1309156
  2012-10-11-1349889860.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:24:23.501+11 229512
  2012-10-11-1349889863.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:24:26.978+11 264328
  2012-10-11-1349889867.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:24:30.155+11 241800
  2012-10-11-1349889907.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:25:09.983+11 237302
  2012-10-11-1349889912.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:25:15.248+11 249992
  2012-10-11-1349889915.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:25:19.717+11 315528
  2012-10-11-1349890049.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:27:34.56+11 420542
  2012-10-11-1349890055.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:27:43.919+11 706272
  2012-10-11-1349890064.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:27:54.244+11 788616
  2012-10-11-1349890632.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:37:16.385+11 351470
  2012-10-11-1349890636.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:37:20.732+11 336008
  2012-10-11-1349890658.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 04:37:42.053+11 260232
  2012-10-11-1349892118.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 05:02:00.956+11 212556
  2012-10-11-1349894062.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 05:34:25.283+11 216826
  2012-10-11-1349894065.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 05:34:27.84+11 184456
  2012-10-11-1349894068.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 05:34:33.252+11 426120
  2012-10-11-1349894073.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 05:34:50.863+11 1456264
  2012-10-11-1349894104.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 05:35:08.045+11 311432
  2012-10-11-1349894978.8-demo.wav 44028 CanberraBlackMnt 2012-10-11 05:49:41.297+11 209890
  2012-10-11-1349894983.22-demo.wav 44028 CanberraBlackMnt 2012-10-11 05:49:49.719+11 546952
  2012-10-11-1349894990.0-demo.wav 44028 CanberraBlackMnt 2012-10-11 05:49:55.472+11 456840
  2012-10-11-1349895060.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 05:51:03.159+11 210626
  2012-10-11-1349895078.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 05:51:21.684+11 282760
  2012-10-11-1349895082.57-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 05:51:57.726+11 2951028
  2012-10-11-1349895238.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 05:54:00.805+11 210782
  2012-10-11-1349895495.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 05:58:19.571+11 326222
  2012-10-11-1349895499.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 05:58:22.102+11 194696
  2012-10-11-1349896460.01-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:14:22.535+11 209332
  2012-10-11-1349896463.61-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:14:33.901+11 858562
  2012-10-11-1349896493.81-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:14:56.916+11 260232
  2012-10-11-1349896497.78-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:15:04.573+11 571528
  2012-10-11-1349896515.85-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:15:18.814+11 247816
  2012-10-11-1349896556.89-demo.wav 40067 CanberraMtAinsli 2012-10-11 06:15:59.416+11 210148
  2012-10-11-1349896590.2-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:16:33.766+11 295338
  2012-10-11-1349896596.52-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:16:53.25+11 1409160
  2012-10-11-1349896657.72-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:17:41.412+11 310330
  2012-10-11-1349896661.91-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:17:44.592+11 225416
  2012-10-11-1349896664.85-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:17:50.584+11 483464
  2012-10-11-1349897111.27-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 06:25:13.844+11 212502
  2012-10-11-1349897323.36-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:28:47.523+11 351922
  2012-10-11-1349897328.19-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:28:50.751+11 215176
  2012-10-11-1349897331.25-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:28:57.207+11 499848
  2012-10-11-1349897707.88-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:35:12.182+11 360722
  2012-10-11-1349897713.58-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:35:16.625+11 256136
  2012-10-11-1349898005.75-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:40:09.94+11 351604
  2012-10-11-1349898010.21-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:40:13.727+11 293000
  2012-10-11-1349898181.33-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:43:03.875+11 211496
  2012-10-11-1349898373.15-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:46:15.906+11 231486
  2012-10-11-1349898376.52-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:46:19.119+11 219272
  2012-10-11-1349898379.35-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:46:24.505+11 432264
  2012-10-11-1349898489.99-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:48:13.137+11 262766
  2012-10-11-1349898494.27-demo.wav 44028 CanberraBlackMnt 2012-10-11 06:48:17.532+11 272520
  2012-10-11-1349898578.06-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 06:49:42.231+11 346990
  2012-10-11-1349898582.45-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 06:49:44.881+11 200840
  2012-10-11-1349898819.72-demo.wav 40067 CanberraMtAinsli 2012-10-11 06:53:42.257+11 211008
  2012-10-11-1349899048.29-demo.wav 44036 CanberraBlackMnt 2012-10-11 06:57:31.251+11 246948
  2012-10-11-1349899052.87-demo.wav 44036 CanberraMtAinsli 2012-10-11 06:57:43.288+11 876680
  2012-10-11-1349899259.41-demo.wav 44036 CanberraBlackMnt 2012-10-11 07:01:04.573+11 433168
  2012-10-11-1349899588.77-demo.wav 40067 CanberraBlackMnt 2012-10-11 07:06:37.441+11 727624
  2012-10-11-1349899598.16-demo.wav 40067 CanberraBlackMnt 2012-10-11 07:06:42.492+11 362632
  2012-10-11-1349899706.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:08:30.015+11 314956
  2012-10-11-1349899710.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:08:32.922+11 221320
  2012-10-11-1349899713.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:08:35.328+11 188552
  2012-10-11-1349899716.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:08:40.89+11 347266
  2012-10-11-1349899968.44-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-11 07:12:50.973+11 211222
  2012-10-11-1349900186.03-demo.wav 40067 CanberraBlackMnt 2012-10-11 07:16:28.631+11 217296
  2012-10-11-1349900191.77-demo.wav 40067 CanberraBlackMnt 2012-10-11 07:16:35.232+11 290952
  2012-10-11-1349900251.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:17:35.254+11 334730
  2012-10-11-1349900256.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:17:40.638+11 344200
  2012-10-11-1349900268.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:17:53.422+11 434312
  2012-10-11-1349900370.11-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:19:33.855+11 314284
  2012-10-11-1349900375.39-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:19:38.745+11 273582
  2012-10-11-1349900421.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:20:29.422+11 667784
  2012-10-11-1349900484.04-demo.wav 44028 CanberraBlackMnt 2012-10-11 07:21:26.643+11 218852
  2012-10-11-1349900488.13-demo.wav 44028 CanberraBlackMnt 2012-10-11 07:21:34.171+11 503626
  2012-10-11-1349900495.67-demo.wav 44028 CanberraBlackMnt 2012-10-11 07:21:51.93+11 1366152
  2012-10-11-1349900512.2-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:22:13.22+11 1767560
  2012-10-11-1349900737.44-demo.wav 44036 CanberraBlackMnt 2012-10-11 07:25:43.303+11 491712
  2012-10-11-1349900743.49-demo.wav 44036 CanberraBlackMnt 2012-10-11 07:25:48.497+11 422024
  2012-10-11-1349901059.11-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:31:02.374+11 274466
  2012-10-11-1349901063.31-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:31:05.555+11 188552
  2012-10-11-1349901095.52-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:31:49.56+11 1179526
  2012-10-11-1349901110.07-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:31:52.628+11 215176
  2012-10-11-1349901122.63-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:32:06.645+11 335968
  2012-10-11-1349901127.33-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 07:32:30.046+11 1908872
  2012-10-11-1349901150.96-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 07:32:35.092+11 343356
  2012-10-11-1349901155.44-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:32:43.115+11 645256
  2012-10-11-1349901163.38-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:32:46.487+11 260232
  2012-10-11-1349901201.32-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 07:33:28.368+11 592008
  2012-10-11-1349901208.64-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 07:33:35.894+11 608392
  2012-10-11-1349901216.34-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 07:33:40.326+11 333960
  2012-10-11-1349901220.58-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 07:33:53.449+11 1081480
  2012-10-11-1349901271.87-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 07:34:36.234+11 366728
  2012-10-11-1349901276.75-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 07:34:47.055+11 866440
  2012-10-11-1349901287.66-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 07:34:52.2+11 376968
  2012-10-11-1349901299.91-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 07:35:03.022+11 262280
  2012-10-11-1349901304.18-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 07:35:08.958+11 399496
  2012-10-11-1349901309.79-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 07:35:15.503+11 479368
  2012-10-11-1349901315.77-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-11 07:35:30.278+11 1216648
  2012-10-11-1349901330.68-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-11 07:35:33.154+11 206984
  2012-10-11-1349901345.73-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-11 07:35:50.409+11 391304
  2012-10-11-1349901359.08-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-11 07:36:23.927+11 2087048
  2012-10-11-1349901384.12-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-11 07:36:28.961+11 405640
  2012-10-11-1349901483.29-demo.wav 40067 CanberraBlackMnt 2012-10-11 07:38:08.355+11 425446
  2012-10-11-1349901489.15-demo.wav 40067 CanberraMtAinsli 2012-10-11 07:38:20.389+11 944264
  2012-10-11-1349901501.67-demo.wav 40067 CanberraMtAinsli 2012-10-11 07:38:23.858+11 182408
  2012-10-11-1349901521.78-demo.wav 40067 CanberraMtAinsli 2012-10-11 07:38:51.479+11 817288
  2012-10-11-1349901557.64-demo.wav 40067 CanberraBlackMnt 2012-10-11 07:39:22.696+11 422148
  2012-10-11-1349901908.76-demo.wav 40067 CanberraMtAinsli 2012-10-11 07:45:11.278+11 210808
  2012-10-11-1349902062.35-demo.wav 44028 CanberraBlackMnt 2012-10-11 07:47:44.896+11 211374
  2012-10-11-1349902261.09-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:51:06.665+11 466612
  2012-10-11-1349902267.53-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:51:10.243+11 227464
  2012-10-11-1349902271.1-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:51:15.007+11 327816
  2012-10-11-1349902358.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:52:41.719+11 253116
  2012-10-11-1349902362.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:52:45.826+11 270472
  2012-10-11-1349902367.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:52:57.986+11 840218
  2012-10-11-1349902378.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:53:01.613+11 229510
  2012-10-11-1349902382.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:53:06.648+11 348296
  2012-10-11-1349902416.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:53:38.901+11 226562
  2012-10-11-1349902419.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:53:42.345+11 268424
  2012-10-11-1349902422.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:53:45.811+11 264328
  2012-10-11-1349902426.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:53:49.517+11 288904
  2012-10-11-1349902519.76-demo.wav 40067 CanberraMtAinsli 2012-10-11 07:55:24.066+11 361714
  2012-10-11-1349902525.4-demo.wav 40067 CanberraBlackMnt 2012-10-11 07:55:44.078+11 1568866
  2012-10-11-1349902544.65-demo.wav 40067 CanberraBlackMnt 2012-10-11 07:55:48.201+11 297096
  2012-10-11-1349902553.89-demo.wav 40067 CanberraBlackMnt 2012-10-11 07:56:06.263+11 1037712
  2012-10-11-1349902568.65-demo.wav 40067 CanberraBlackMnt 2012-10-11 07:56:16.813+11 684168
  2012-10-11-1349902577.0-demo.wav 40067 CanberraMtAinsli 2012-10-11 07:56:36.49+11 1636488
  2012-10-11-1349902599.65-demo.wav 40067 CanberraMtAinsli 2012-10-11 07:56:53.658+11 1175688
  2012-10-11-1349902613.92-demo.wav 40067 CanberraMtAinsli 2012-10-11 07:56:56.374+11 206984
  2012-10-11-1349902616.64-demo.wav 40067 CanberraMtAinsli 2012-10-11 07:57:00.559+11 331912
  2012-10-11-1349902621.11-demo.wav 40067 CanberraMtAinsli 2012-10-11 07:57:04.38+11 272520
  2012-10-11-1349902624.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:57:12.943+11 678024
  2012-10-11-1349902633.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:57:15.603+11 200840
  2012-10-11-1349902635.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 07:57:21.526+11 477320
  2012-10-11-1349902641.78-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 07:57:43.751+11 1845384
  2012-10-11-1349902691.65-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:58:14.197+11 211120
  2012-10-11-1349902695.6-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:58:25.032+11 783162
  2012-10-11-1349902707.03-demo.wav 44028 CanberraMtAinsli 2012-10-11 07:58:29.19+11 180360
  2012-10-11-1349902710.02-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 07:58:41.966+11 1001608
  2012-10-11-1349902805.16-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:00:07.723+11 211318
  2012-10-11-1349902809.07-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:00:11.526+11 206984
  2012-10-11-1349902812.89-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:00:24.617+11 985224
  2012-10-11-1349902824.89-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:00:32.449+11 635016
  2012-10-11-1349902832.69-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:00:40.376+11 644498
  2012-10-11-1349902841.25-demo.wav 44028 CanberraMtAinsli 2012-10-11 08:00:47.057+11 487664
  2012-10-11-1349902847.31-demo.wav 44028 CanberraMtAinsli 2012-10-11 08:00:52.172+11 405640
  2012-10-11-1349902852.86-demo.wav 44028 CanberraMtAinsli 2012-10-11 08:00:55.928+11 258132
  2012-10-11-1349902856.5-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:01:04.495+11 671880
  2012-10-11-1349902866.74-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:01:11.113+11 368776
  2012-10-11-1349902873.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 08:01:26.809+11 1081480
  2012-10-11-1349902887.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 08:01:31.823+11 364680
  2012-10-11-1349902892.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 08:01:36.088+11 323720
  2012-10-11-1349902980.5-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-11 08:03:05.716+11 433282
  2012-10-11-1349903137.46-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:05:39.941+11 209028
  2012-10-11-1349903198.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 08:06:41.793+11 287670
  2012-10-11-1349903203.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 08:06:54.41+11 903304
  2012-10-11-1349903308.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 08:08:32.063+11 273158
  2012-10-11-1349903313.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 08:08:42.437+11 741190
  2012-10-11-1349903485.54-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:11:29.818+11 353400
  2012-10-11-1349903520.93-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:12:03.511+11 217054
  2012-10-11-1349903523.69-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:12:11.583+11 661640
  2012-10-11-1349903531.82-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:12:18.441+11 555136
  2012-10-11-1349903538.68-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:12:22.58+11 327816
  2012-10-11-1349903644.03-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 08:14:07.129+11 261118
  2012-10-11-1349903649.8-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-11 08:14:27.611+11 1492412
  2012-10-11-1349903668.17-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-11 08:14:45.923+11 1493128
  2012-10-11-1349903688.13-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:15:01.331+11 1108104
  2012-10-11-1349903704.05-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:15:06.814+11 231560
  2012-10-11-1349903707.72-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:15:10.106+11 196744
  2012-10-11-1349903710.88-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-11 08:15:21.323+11 876680
  2012-10-11-1349903722.76-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-11 08:15:29.028+11 526472
  2012-10-11-1349903743.1-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-11 08:15:48.217+11 430216
  2012-10-11-1349903748.87-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-11 08:15:58.237+11 788616
  2012-10-11-1349903797.79-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:16:41.283+11 292486
  2012-10-11-1349903802.79-demo.wav 44028 CanberraMtAinsli 2012-10-11 08:16:48.827+11 504896
  2012-10-11-1349903809.32-demo.wav 44028 CanberraMtAinsli 2012-10-11 08:16:54.293+11 417928
  2012-10-11-1349903854.63-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 08:17:48.665+11 1179784
  2012-10-11-1349903870.17-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 08:17:56.939+11 569480
  2012-10-11-1349903877.29-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 08:18:00.915+11 303240
  2012-10-11-1349903881.81-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 08:18:06.33+11 379016
  2012-10-11-1349903886.56-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 08:18:08.95+11 200840
  2012-10-11-1349903890.4-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 08:18:17.898+11 628860
  2012-10-11-1349903901.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 08:18:27.802+11 551048
  2012-10-11-1349903908.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 08:18:50.771+11 1908872
  2012-10-11-1349903931.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 08:18:54.429+11 284808
  2012-10-11-1349904057.81-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:21:01.876+11 336374
  2012-10-11-1349904063.46-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:21:06.607+11 264328
  2012-10-11-1349904067.52-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:21:12.601+11 426120
  2012-10-11-1349904141.42-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-11 08:22:23.956+11 209824
  2012-10-11-1349904325.59-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:25:29.322+11 311724
  2012-10-11-1349904479.34-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:28:01.935+11 211392
  2012-10-11-1349904503.86-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:28:26.405+11 213998
  2012-10-11-1349904508.38-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:28:34.173+11 487560
  2012-10-11-1349904514.86-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:28:38.841+11 336008
  2012-10-11-1349904519.2-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:28:42.756+11 299144
  2012-10-11-1349904523.89-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:28:46.608+11 229478
  2012-10-11-1349904527.62-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:29:00.162+11 1054840
  2012-10-11-1349904540.36-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:29:09.065+11 731268
  2012-10-11-1349904562.77-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:29:28.262+11 462984
  2012-10-11-1349904569.41-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:29:34.383+11 418236
  2012-10-11-1349904574.76-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:29:54.33+11 1299912
  2012-10-11-1349904594.61-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:29:57.32+11 227464
  2012-10-11-1349904597.67-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:30:03.009+11 448648
  2012-10-11-1349904603.37-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:30:05.935+11 213128
  2012-10-11-1349904697.95-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:31:42.548+11 379200
  2012-10-11-1349904703.96-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:31:47.966+11 336008
  2012-10-11-1349904709.7-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:31:52.808+11 254088
  2012-10-11-1349904890.43-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 08:34:54.418+11 332652
  2012-10-11-1349904895.94-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 08:35:02.036+11 509014
  2012-10-11-1349904902.97-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 08:35:06.126+11 264328
  2012-10-11-1349904906.38-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 08:35:10.816+11 372872
  2012-10-11-1349904912.37-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 08:35:19.919+11 632968
  2012-10-11-1349905080.71-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:38:03.4+11 223794
  2012-10-11-1349905085.13-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:38:13.901+11 734156
  2012-10-11-1349905094.2-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:38:19.416+11 438408
  2012-10-11-1349905100.65-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:38:24.131+11 292858
  2012-10-11-1349905104.39-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 08:39:17.699+11 4479112
  2012-10-11-1349905158.66-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 08:39:23.852+11 434298
  2012-10-11-1349905165.05-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 08:39:27.474+11 202888
  2012-10-11-1349905234.25-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:40:39.163+11 411960
  2012-10-11-1349905239.75-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:40:42.407+11 223368
  2012-10-11-1349905242.66-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:40:47.026+11 366728
  2012-10-11-1349905247.29-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:40:53.643+11 534650
  2012-10-11-1349905253.91-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:41:15.78+11 1837192
  2012-10-11-1349905275.94-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:41:20.4+11 368772
  2012-10-11-1349905422.59-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 08:43:46.64+11 339592
  2012-10-11-1349905428.01-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 08:43:57.633+11 809096
  2012-10-11-1349905439.61-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 08:44:05.048+11 454792
  2012-10-11-1349905446.12-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 08:44:14.828+11 731100
  2012-10-11-1349905455.1-demo.wav 44028 CanberraMtAinsli 2012-10-11 08:44:36.438+11 1792136
  2012-10-11-1349905479.68-demo.wav 44028 CanberraMtAinsli 2012-10-11 08:44:44.27+11 387130
  2012-10-11-1349905511.06-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:45:14.736+11 309384
  2012-10-11-1349905517.96-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:45:20.936+11 249992
  2012-10-11-1349905521.98-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:45:26.387+11 370824
  2012-10-11-1349905526.64-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:45:33.419+11 568932
  2012-10-11-1349905533.67-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:45:53.16+11 1638438
  2012-10-11-1349905553.56-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:45:58.226+11 392782
  2012-10-11-1349905558.99-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:46:03.821+11 403004
  2012-10-11-1349905564.08-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-11 08:46:08.912+11 405640
  2012-10-11-1349905689.56-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:48:12.077+11 210774
  2012-10-11-1349905692.91-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:48:15.098+11 184456
  2012-10-11-1349905695.51-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:48:20.326+11 405640
  2012-10-11-1349905722.99-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-11 08:48:56.913+11 1167496
  2012-10-11-1349905987.26-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:53:11.888+11 387226
  2012-10-11-1349905992.78-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:53:15.917+11 264328
  2012-10-11-1349905996.07-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:53:36.601+11 1724552
  2012-10-11-1349906062.52-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:54:26.118+11 303240
  2012-10-11-1349906067.37-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:54:32.621+11 442504
  2012-10-11-1349906073.81-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:54:38.583+11 401544
  2012-10-11-1349906079.76-demo.wav 40067 CanberraMtAinsli 2012-10-11 08:54:43.315+11 297096
  2012-10-11-1349906084.84-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:54:52.521+11 645256
  2012-10-11-1349906094.67-demo.wav 40067 CanberraBlackMnt 2012-10-11 08:54:57.796+11 262280
  2012-10-11-1349906143.63-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:55:49.138+11 461106
  2012-10-11-1349906149.4-demo.wav 44028 CanberraBlackMnt 2012-10-11 08:55:53.869+11 376968
  2012-10-11-1349906165.98-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 08:56:17.525+11 968840
  2012-10-11-1349906333.69-demo.wav 44028 CanberraMtAinsli 2012-10-11 08:58:57.222+11 296296
  2012-10-11-1349906338.03-demo.wav 44028 CanberraMtAinsli 2012-10-11 08:59:03.104+11 428154
  2012-10-11-1349906343.35-demo.wav 44028 CanberraMtAinsli 2012-10-11 08:59:13.333+11 839604
  2012-10-11-1349906393.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 08:59:56.296+11 257776
  2012-10-11-1349906396.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 08:59:59.344+11 239750
  2012-10-11-1349906400.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:00:04.153+11 305288
  2012-10-11-1349906522.84-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:02:05.34+11 209472
  2012-10-11-1349906609.05-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 09:03:31.597+11 211668
  2012-10-11-1349906637.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:04:00.49+11 213014
  2012-10-11-1349906640.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:04:03.459+11 229512
  2012-10-11-1349906646.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:04:10.506+11 360584
  2012-10-11-1349906720.01-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-11 09:05:28.621+11 720524
  2012-10-11-1349906814.61-demo.wav i1045200 CanberraBlackMnt 2012-10-11 09:06:57.144+11 212528
  2012-10-11-1349906818.56-demo.wav i1045200 CanberraBlackMnt 2012-10-11 09:07:12.969+11 1207452
  2012-10-11-1349906962.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:09:25.837+11 280212
  2012-10-11-1349906966.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:09:29.256+11 223368
  2012-10-11-1349906985.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:09:51.407+11 516232
  2012-10-11-1349906992.27-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:10:03.491+11 939268
  2012-10-11-1349907254.59-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:14:17.114+11 209326
  2012-10-11-1349907260.45-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 09:14:26.135+11 475272
  2012-10-11-1349907269.01-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:14:36.86+11 656968
  2012-10-11-1349907343.91-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:15:47.768+11 321216
  2012-10-11-1349907349.52-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:15:54.001+11 374920
  2012-10-11-1349907354.99-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:16:01.21+11 522376
  2012-10-11-1349907361.44-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:16:04.263+11 235642
  2012-10-11-1349907366.88-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:16:10.321+11 284808
  2012-10-11-1349907393.11-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:16:37.7+11 385160
  2012-10-11-1349907398.08-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:16:41.104+11 254088
  2012-10-11-1349907402.09-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:16:49.831+11 647304
  2012-10-11-1349907411.42-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:16:54.451+11 256136
  2012-10-11-1349907415.14-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:16:59.326+11 352392
  2012-10-11-1349907421.0-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:17:06.648+11 475138
  2012-10-11-1349907459.77-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:17:43.474+11 309384
  2012-10-11-1349907465.51-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:17:47.887+11 198792
  2012-10-11-1349907468.92-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:17:53.497+11 383112
  2012-10-11-1349907474.82-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:17:57.429+11 217124
  2012-10-11-1349907478.36-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:18:20.03+11 1820762
  2012-10-11-1349907500.3-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:18:22.572+11 190600
  2012-10-11-1349907502.82-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:18:27.031+11 352392
  2012-10-11-1349907507.41-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:18:29.764+11 198792
  2012-10-11-1349907510.49-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:18:33.007+11 208866
  2012-10-11-1349907547.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:19:10.531+11 275240
  2012-10-11-1349907550.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:19:13.816+11 258184
  2012-10-11-1349907554.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:19:17.65+11 301192
  2012-10-11-1349907558.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:19:25.707+11 637064
  2012-10-11-1349907684.73-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:21:28.359+11 301724
  2012-10-11-1349907688.76-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:21:34.688+11 495752
  2012-10-11-1349907695.42-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:21:39.243+11 321672
  2012-10-11-1349907699.48-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:21:43.829+11 362632
  2012-10-11-1349907704.72-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:21:48.625+11 326686
  2012-10-11-1349907709.54-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:22:10.492+11 1759672
  2012-10-11-1349907730.81-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:22:16.262+11 454748
  2012-10-11-1349907736.62-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:22:22.639+11 505992
  2012-10-11-1349907743.59-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:22:26.555+11 247944
  2012-10-11-1349907747.05-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:22:33.25+11 518280
  2012-10-11-1349907755.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:22:44.721+11 768136
  2012-10-11-1349907767.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:22:55.108+11 606300
  2012-10-11-1349907861.96-demo.wav 44028 CanberraMtAinsli 2012-10-11 09:24:25.835+11 323146
  2012-10-11-1349907868.86-demo.wav 44028 CanberraMtAinsli 2012-10-11 09:24:33.427+11 385160
  2012-10-11-1349907873.72-demo.wav 44028 CanberraMtAinsli 2012-10-11 09:24:37.183+11 288904
  2012-10-11-1349907877.9-demo.wav 44028 CanberraMtAinsli 2012-10-11 09:24:40.507+11 219272
  2012-10-11-1349908018.2-demo.wav 44028 CanberraMtAinsli 2012-10-11 09:27:01.32+11 261404
  2012-10-11-1349908022.98-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:27:08.305+11 448648
  2012-10-11-1349908029.57-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:27:16.201+11 557164
  2012-10-11-1349908036.51-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:27:20.723+11 350344
  2012-10-11-1349908040.98-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:27:28.668+11 647272
  2012-10-11-1349908049.82-demo.wav 44028 CanberraBlackMnt 2012-10-11 09:27:32.871+11 256136
  2012-10-11-1349908144.24-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:29:09.958+11 480516
  2012-10-11-1349908151.56-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-11 09:29:25.75+11 1188620
  2012-10-11-1349908181.36-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:29:55.494+11 1190024
  2012-10-11-1349908195.76-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:30:00.065+11 362632
  2012-10-11-1349908201.86-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:30:04.429+11 215176
  2012-10-11-1349908278.39-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:31:21.252+11 239222
  2012-10-11-1349908284.05-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:31:33.576+11 799212
  2012-10-11-1349908294.41-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:31:37.86+11 290952
  2012-10-11-1349908538.84-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:35:41.444+11 217248
  2012-10-11-1349908542.6-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:35:46.863+11 354876
  2012-10-11-1349908548.69-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:35:58.114+11 788616
  2012-10-11-1349908666.91-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:37:49.783+11 240550
  2012-10-11-1349908670.04-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:37:52.164+11 180360
  2012-10-11-1349908672.42-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:37:58.525+11 514184
  2012-10-11-1349908678.76-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:38:03.735+11 415468
  2012-10-11-1349908777.0-demo.wav 10065 OPS8 CanberraBlackMnt 2012-10-11 09:39:39.544+11 211268
  2012-10-11-1349908842.29-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:40:50.098+11 653820
  2012-10-11-1349908850.5-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:40:55.517+11 419942
  2012-10-11-1349908880.65-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:41:23.697+11 256136
  2012-10-11-1349909061.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:44:24.728+11 295262
  2012-10-11-1349909065.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:44:28.81+11 280712
  2012-10-11-1349909069.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:44:33.681+11 385160
  2012-10-11-1349909074.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:44:39.201+11 370788
  2012-10-11-1349909107.2-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:45:10.88+11 307336
  2012-10-11-1349909111.88-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:45:14.093+11 184456
  2012-10-11-1349909114.84-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:45:22.675+11 655480
  2012-10-11-1349909123.27-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:45:27.663+11 368776
  2012-10-11-1349909129.09-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:45:34.344+11 440376
  2012-10-11-1349909134.74-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:45:38.387+11 305288
  2012-10-11-1349909139.51-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:45:47.738+11 692332
  2012-10-11-1349909149.11-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:45:52.389+11 274568
  2012-10-11-1349909154.2-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:46:10.418+11 1360750
  2012-10-11-1349909190.51-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:46:33.003+11 211080
  2012-10-11-1349909194.52-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:46:43.048+11 714888
  2012-10-11-1349909210.26-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:46:53.109+11 241800
  2012-10-11-1349909348.69-demo.wav 40067 CanberraBlackMnt 2012-10-11 09:49:11.207+11 209998
  2012-10-11-1349909405.72-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:50:09.964+11 354728
  2012-10-11-1349909411.83-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:50:21.599+11 823432
  2012-10-11-1349909422.56-demo.wav 40067 CanberraMtAinsli 2012-10-11 09:50:39.886+11 1456262
  2012-10-11-1349909494.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:51:38.806+11 336698
  2012-10-11-1349909499.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:51:52.753+11 1078606
  2012-10-11-1349909514.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:51:57.961+11 309384
  2012-10-11-1349909518.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:52:04.175+11 440390
  2012-10-11-1349909525.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:52:10.77+11 468824
  2012-10-11-1349909531.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:52:14.47+11 266376
  2012-10-11-1349909534.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:52:17.69+11 249964
  2012-10-11-1349909698.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:55:01.233+11 227116
  2012-10-11-1349909701.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:55:03.756+11 192648
  2012-10-11-1349909704.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:55:10.235+11 505992
  2012-10-11-1349909710.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:55:15.845+11 411784
  2012-10-11-1349909716.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:55:25.674+11 798856
  2012-10-11-1349909725.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:55:46.651+11 1740936
  2012-10-11-1349909746.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:55:49.489+11 215176
  2012-10-11-1349909749.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:55:53.708+11 338056
  2012-10-11-1349909754.3-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 09:56:18.801+11 2056328
  2012-10-11-1349909781.26-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-11 09:56:28.342+11 594056
  2012-10-11-1349909789.94-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-11 09:56:34.622+11 391304
  2012-10-11-1349909794.89-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-11 09:56:39.35+11 372872
  2012-10-11-1349909800.17-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 09:56:48.917+11 733910
  2012-10-11-1349909832.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 09:57:14.841+11 229512
  2012-10-11-1349909943.04-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-11 09:59:05.585+11 211456
  2012-10-11-1349909945.85-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-11 09:59:13.008+11 602248
  2012-10-11-1349909953.44-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-11 09:59:19.24+11 485512
  2012-10-11-1349909959.52-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-11 09:59:22.922+11 282760
  2012-10-11-1349909997.98-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:00:01.283+11 277652
  2012-10-11-1349910002.75-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:00:08.794+11 505788
  2012-10-11-1349910009.29-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:00:15.267+11 501896
  2012-10-11-1349910015.92-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:00:21.213+11 444552
  2012-10-11-1349910033.16-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:00:44.325+11 940168
  2012-10-11-1349910044.99-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:00:49.313+11 364680
  2012-10-11-1349910049.47-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:00:52.541+11 258184
  2012-10-11-1349910053.49-demo.wav 44028 CanberraBlackMnt 2012-10-11 10:01:01.603+11 682120
  2012-10-11-1349910062.98-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 10:01:11.466+11 712840
  2012-10-11-1349910072.39-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:01:21.951+11 802952
  2012-10-11-1349910083.98-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:01:26.843+11 239752
  2012-10-11-1349910088.06-demo.wav 44028 CanberraBlackMnt 2012-10-11 10:01:33.715+11 469970
  2012-10-11-1349910094.64-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:01:39.661+11 421960
  2012-10-11-1349910100.83-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 10:01:49.62+11 734490
  2012-10-11-1349910110.54-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 10:02:03.765+11 1110114
  2012-10-11-1349910124.01-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 10:02:30.145+11 2195358
  2012-10-11-1349910151.02-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-11 10:02:49.981+11 1588636
  2012-10-11-1349910170.24-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-11 10:02:56.853+11 551048
  2012-10-11-1349910177.74-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:03:15.362+11 1476894
  2012-10-11-1349910195.85-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:03:19.821+11 331912
  2012-10-11-1349910203.22-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:03:26.47+11 272490
  2012-10-11-1349910234.06-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:03:59.222+11 434312
  2012-10-11-1349910240.49-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:04:08.22+11 649352
  2012-10-11-1349910250.11-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:04:12.263+11 180360
  2012-10-11-1349910253.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:04:23.059+11 779328
  2012-10-11-1349910264.37-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:04:30.827+11 542856
  2012-10-11-1349910271.09-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:04:35.221+11 348296
  2012-10-11-1349910277.01-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:04:39.552+11 213128
  2012-10-11-1349910279.79-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:04:46.057+11 526342
  2012-10-11-1349910286.31-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:05:26.609+11 3387528
  2012-10-11-1349910326.95-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:05:32.619+11 473224
  2012-10-11-1349910333.01-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:05:50.331+11 1456264
  2012-10-11-1349910350.74-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:05:53.575+11 237704
  2012-10-11-1349910353.8-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:05:56.898+11 254088
  2012-10-11-1349910357.6-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:06:00.893+11 276616
  2012-10-11-1349910362.96-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:06:05.959+11 245708
  2012-10-11-1349910366.6-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:06:18.68+11 1011848
  2012-10-11-1349910379.65-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:06:35.161+11 1299746
  2012-10-11-1349910397.18-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:06:56.502+11 1622152
  2012-10-11-1349910416.78-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:07:02.863+11 512136
  2012-10-11-1349910423.25-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:07:07.754+11 374920
  2012-10-11-1349910428.85-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:07:13.86+11 420910
  2012-10-11-1349910434.11-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:07:18.366+11 356488
  2012-10-11-1349910440.83-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-11 10:07:27.11+11 525846
  2012-10-11-1349910447.36-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-11 10:07:31.502+11 348296
  2012-10-11-1349910451.74-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-11 10:07:34.262+11 211080
  2012-10-11-1349910455.27-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-11 10:07:55.675+11 1714312
  2012-10-11-1349910477.05-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-11 10:08:07.752+11 899208
  2012-10-11-1349910489.14-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:08:25.015+11 1332906
  2012-10-11-1349910505.63-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:08:30.098+11 376968
  2012-10-11-1349910546.05-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:09:12.262+11 520328
  2012-10-11-1349910552.64-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:09:19.728+11 594056
  2012-10-11-1349910560.28-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:09:50.385+11 2529414
  2012-10-11-1349910591.16-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:09:58.584+11 621212
  2012-10-11-1349910599.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:10:06.72+11 600954
  2012-10-11-1349910611.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:10:16.181+11 356488
  2012-10-11-1349910616.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:10:20.431+11 297090
  2012-10-11-1349910624.04-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-11 10:10:34.281+11 860296
  2012-10-11-1349910635.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:10:45.326+11 854918
  2012-10-11-1349910645.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:10:48.73+11 247944
  2012-10-11-1349910685.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:11:29.586+11 306940
  2012-10-11-1349910690.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:11:32.462+11 200840
  2012-10-11-1349910695.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:11:38.376+11 262280
  2012-10-11-1349910699.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:11:55.474+11 1322956
  2012-10-11-1349910716.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:12:12.464+11 1325062
  2012-10-11-1349910732.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:12:17.404+11 389256
  2012-10-11-1349910739.03-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:12:35.611+11 1392776
  2012-10-11-1349910757.91-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:12:45.665+11 653444
  2012-10-11-1349910768.78-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:12:52.73+11 329034
  2012-10-11-1349910773.17-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:12:57.54+11 366728
  2012-10-11-1349910778.52-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:13:03.039+11 381064
  2012-10-11-1349910783.95-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:13:14.163+11 858120
  2012-10-11-1349910794.85-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:13:36.685+11 1835144
  2012-10-11-1349910817.58-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:13:39.977+11 200840
  2012-10-11-1349910820.17-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:14:15.589+11 2973832
  2012-10-11-1349910855.78-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:14:23.405+11 641160
  2012-10-11-1349910864.55-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:14:33.362+11 739638
  2012-10-11-1349910874.05-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:14:40.061+11 505992
  2012-10-11-1349910905.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:15:12.06+11 569480
  2012-10-11-1349911094.22-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-11 10:18:21.907+11 642600
  2012-10-11-1349911102.7-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-11 10:18:27.829+11 428168
  2012-10-11-1349911108.79-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:18:34.461+11 477320
  2012-10-11-1349911114.65-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:18:37.561+11 243848
  2012-10-11-1349911118.48-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:18:40.918+11 204936
  2012-10-11-1349911184.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:19:48.452+11 323860
  2012-10-11-1349911188.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:19:51.868+11 260232
  2012-10-11-1349911192.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:19:56.927+11 366728
  2012-10-11-1349911200.22-demo.wav 44028 CanberraBlackMnt 2012-10-11 10:20:08.34+11 677238
  2012-10-11-1349911208.56-demo.wav 44028 CanberraBlackMnt 2012-10-11 10:20:13.692+11 430216
  2012-10-11-1349911213.85-demo.wav 44028 CanberraBlackMnt 2012-10-11 10:20:19.463+11 471124
  2012-10-11-1349911230.17-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-11 10:20:40.43+11 858248
  2012-10-11-1349911418.56-demo.wav 44028 CanberraMtAinsli 2012-10-11 10:23:41.841+11 275620
  2012-10-11-1349911423.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:23:50.527+11 559240
  2012-10-11-1349911430.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:24:23.133+11 2715770
  2012-10-11-1349911464.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:24:27.888+11 313286
  2012-10-11-1349911588.3-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:26:31.056+11 228674
  2012-10-11-1349911592.62-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:26:35.276+11 223368
  2012-10-11-1349911596.37-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:27:18.21+11 3518600
  2012-10-11-1349911638.4-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:27:23.006+11 383022
  2012-10-11-1349911643.31-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:27:26.714+11 286856
  2012-10-11-1349911647.4-demo.wav 44028 CanberraBlackMnt 2012-10-11 10:27:33.346+11 499848
  2012-10-11-1349911654.03-demo.wav 44028 CanberraBlackMnt 2012-10-11 10:27:36.51+11 206984
  2012-10-11-1349911657.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:27:49.709+11 982818
  2012-10-11-1349911669.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:27:53.591+11 301192
  2012-10-11-1349911674.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:27:57.425+11 276616
  2012-10-11-1349911678.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:28:16.63+11 1554568
  2012-10-11-1349911696.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:28:19.762+11 239752
  2012-10-11-1349911701.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:28:26.9+11 411028
  2012-10-11-1349911707.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:28:29.885+11 229512
  2012-10-11-1349911718.06-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 10:28:50.601+11 1052808
  2012-10-11-1349911746.44-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 10:29:14.077+11 641138
  2012-10-11-1349911754.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:29:35.78+11 1798280
  2012-10-11-1349911775.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:29:40.134+11 350344
  2012-10-11-1349911832.3-demo.wav 44028 CanberraBlackMnt 2012-10-11 10:30:35.778+11 288482
  2012-10-11-1349911836.38-demo.wav 44028 CanberraBlackMnt 2012-10-11 10:30:38.862+11 209032
  2012-10-11-1349911839.13-demo.wav 44028 CanberraBlackMnt 2012-10-11 10:30:46.101+11 585864
  2012-10-11-1349911860.42-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:31:07.041+11 551048
  2012-10-11-1349911867.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:31:17.812+11 858248
  2012-10-11-1349911879.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:31:29.048+11 764040
  2012-10-11-1349911889.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:31:33.742+11 376968
  2012-10-11-1349911893.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:31:38.343+11 364680
  2012-10-11-1349911898.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:32:06.141+11 2312328
  2012-10-11-1349911926.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:32:09.256+11 237704
  2012-10-11-1349911929.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:32:14.019+11 339934
  2012-10-11-1349911940.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:32:23.913+11 313480
  2012-10-11-1349911945.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:32:29.202+11 305012
  2012-10-11-1349911950.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:32:35.739+11 460966
  2012-10-11-1349911956.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:32:38.375+11 196744
  2012-10-11-1349911959.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:32:45.16+11 499672
  2012-10-11-1349911965.48-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:32:55.071+11 805000
  2012-10-11-1349911975.39-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:33:01.935+11 546948
  2012-10-11-1349912031.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:33:53.705+11 222278
  2012-10-11-1349912033.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:33:56.396+11 202888
  2012-10-11-1349912037.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:34:03.581+11 540802
  2012-10-11-1349912043.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:34:06.075+11 188510
  2012-10-11-1349912046.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:34:09.463+11 274568
  2012-10-11-1349912053.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:34:25.23+11 970888
  2012-10-11-1349912068.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:34:32.661+11 360584
  2012-10-11-1349912072.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:34:36.746+11 327816
  2012-10-11-1349912077.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:34:41.805+11 368776
  2012-10-11-1349912082.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:34:45.815+11 311364
  2012-10-11-1349912096.1-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:35:00.275+11 348296
  2012-10-11-1349912100.49-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:35:04.293+11 319624
  2012-10-11-1349912104.68-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:35:26.047+11 1331996
  2012-10-11-1349912126.3-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:35:29.706+11 284808
  2012-10-11-1349912129.89-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:35:32.27+11 196744
  2012-10-11-1349912232.22-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:37:18.672+11 542488
  2012-10-11-1349912239.04-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:37:22.522+11 293000
  2012-10-11-1349912267.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:37:50.217+11 211080
  2012-10-11-1349912271.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:37:57.746+11 541484
  2012-10-11-1349912278.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:38:03.577+11 454792
  2012-10-11-1349912283.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:38:08.402+11 374920
  2012-10-11-1349912298.62-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:38:42.593+11 2011272
  2012-10-11-1349912323.52-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:38:51.477+11 663992
  2012-10-11-1349912331.7-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:38:57.758+11 507874
  2012-10-11-1349912339.6-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:39:06.453+11 575624
  2012-10-11-1349912351.27-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:39:14.268+11 251918
  2012-10-11-1349912354.52-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:39:16.682+11 182388
  2012-10-11-1349912356.83-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-11 10:39:38.525+11 1822856
  2012-10-11-1349912433.71-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:40:37.123+11 284706
  2012-10-11-1349912439.36-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:40:41.965+11 219272
  2012-10-11-1349912486.17-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:41:28.701+11 209036
  2012-10-11-1349912489.11-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:41:35.42+11 530568
  2012-10-11-1349912495.68-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:41:40.389+11 395400
  2012-10-11-1349912501.43-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:41:59.539+11 1522602
  2012-10-11-1349912519.76-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:42:03.278+11 297096
  2012-10-11-1349912523.58-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:42:08.168+11 387208
  2012-10-11-1349912606.14-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:43:28.747+11 212682
  2012-10-11-1349912611.61-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-11 10:43:40.172+11 718984
  2012-10-11-1349912620.42-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-11 10:43:42.692+11 188552
  2012-10-11-1349912623.07-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-11 10:43:45.312+11 184456
  2012-10-11-1349912761.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:46:03.611+11 210710
  2012-10-11-1349912809.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:46:53.306+11 292466
  2012-10-11-1349912814.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:46:58.53+11 325768
  2012-10-11-1349912818.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:47:06.755+11 669782
  2012-10-11-1349912832.73-demo.wav 44028 CanberraMtAinsli 2012-10-11 10:47:21.252+11 714234
  2012-10-11-1349912851.92-demo.wav 44028 CanberraMtAinsli 2012-10-11 10:47:45.403+11 1132680
  2012-10-11-1349912870.55-demo.wav 44028 CanberraBlackMnt 2012-10-11 10:47:57.198+11 559240
  2012-10-11-1349912878.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:48:09.363+11 919546
  2012-10-11-1349912890.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:48:15.187+11 406044
  2012-10-11-1349913003.1-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 10:50:15.962+11 1078120
  2012-10-11-1349913053.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:50:55.537+11 197214
  2012-10-11-1349913056.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:51:00.506+11 311032
  2012-10-11-1349913061.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:51:09.12+11 671880
  2012-10-11-1349913078.68-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:51:24.066+11 454792
  2012-10-11-1349913085.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:51:33.544+11 643208
  2012-10-11-1349913093.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:51:40.75+11 581768
  2012-10-11-1349913101.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 10:51:45.279+11 335860
  2012-10-11-1349913106.17-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:52:00.879+11 1228576
  2012-10-11-1349913454.38-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:57:38.351+11 335484
  2012-10-11-1349913459.16-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:57:44.744+11 467080
  2012-10-11-1349913465.51-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:57:50.226+11 395390
  2012-10-11-1349913470.46-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:58:12.924+11 1886344
  2012-10-11-1349913524.8-demo.wav 40067 CanberraMtAinsli 2012-10-11 10:58:50.151+11 449254
  2012-10-11-1349913531.73-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:58:59.821+11 677482
  2012-10-11-1349913540.21-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:59:04.904+11 395400
  2012-10-11-1349913546.81-demo.wav 40067 CanberraBlackMnt 2012-10-11 10:59:10.578+11 317576
  2012-10-11-1349913592.03-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 10:59:57.074+11 420778
  2012-10-11-1349913598.23-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:00:04.216+11 499112
  2012-10-11-1349913605.55-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 11:00:11.948+11 536712
  2012-10-11-1349913612.95-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 11:00:16.821+11 319742
  2012-10-11-1349913667.58-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-11 11:01:10.105+11 210282
  2012-10-11-1349913670.53-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-11 11:01:13.6+11 256136
  2012-10-11-1349913674.18-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-11 11:01:24.297+11 847766
  2012-10-11-1349913728.13-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:02:10.731+11 216844
  2012-10-11-1349913730.98-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:02:16.756+11 483464
  2012-10-11-1349913736.95-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:02:19.984+11 254088
  2012-10-11-1349913740.21-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:02:27.544+11 614530
  2012-10-11-1349913761.36-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 11:02:52.831+11 962696
  2012-10-11-1349913774.22-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 11:03:00.576+11 532616
  2012-10-11-1349913783.89-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:03:23.785+11 1671000
  2012-10-11-1349913803.98-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:03:28.26+11 360584
  2012-10-11-1349913809.62-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:03:34.318+11 392232
  2012-10-11-1349913848.13-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 11:04:13.617+11 458888
  2012-10-11-1349913904.36-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:05:07.006+11 220994
  2012-10-11-1349913908.76-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:05:13.526+11 396862
  2012-10-11-1349913914.24-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:05:18.642+11 366728
  2012-10-11-1349913918.88-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:05:22.989+11 346198
  2012-10-11-1349913924.89-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:05:28.47+11 300804
  2012-10-11-1349913929.35-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 11:05:36.526+11 602788
  2012-10-11-1349913937.49-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 11:05:41.711+11 352844
  2012-10-11-1349913941.93-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 11:05:45.088+11 264328
  2012-10-11-1349913945.57-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:06:22.939+11 3139720
  2012-10-11-1349914105.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 11:08:27.967+11 211470
  2012-10-11-1349914218.32-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 11:10:22.433+11 344220
  2012-10-11-1349914222.79-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 11:10:36.595+11 1157256
  2012-10-11-1349914279.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 11:11:22.404+11 269588
  2012-10-11-1349914282.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 11:11:26.622+11 317576
  2012-10-11-1349914286.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 11:11:30.738+11 313480
  2012-10-11-1349914290.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 11:11:33.845+11 239752
  2012-10-11-1349914294.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 11:11:39.803+11 460936
  2012-10-11-1349914303.16-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-11 11:11:56.775+11 1144968
  2012-10-11-1349914317.2-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-11 11:12:03.323+11 514184
  2012-10-11-1349914439.19-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:14:01.679+11 208544
  2012-10-11-1349914444.52-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:14:08.39+11 325768
  2012-10-11-1349914449.7-demo.wav 44028 CanberraMtAinsli 2012-10-11 11:14:21.002+11 950408
  2012-10-11-1349914464.14-demo.wav 44028 CanberraMtAinsli 2012-10-11 11:14:27.171+11 252040
  2012-10-11-1349914467.42-demo.wav 44028 CanberraMtAinsli 2012-10-11 11:14:33.788+11 534638
  2012-10-11-1349914474.06-demo.wav 44028 CanberraMtAinsli 2012-10-11 11:14:38.328+11 358446
  2012-10-11-1349914478.62-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:15:24.394+11 3844232
  2012-10-11-1349914525.3-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 11:15:29.645+11 357754
  2012-10-11-1349914530.58-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:15:40.848+11 860388
  2012-10-11-1349914541.28-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:15:47.163+11 493498
  2012-10-11-1349914555.06-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:16:02.235+11 604296
  2012-10-11-1349914562.49-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:16:06.151+11 307336
  2012-10-11-1349914566.38-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:16:09.459+11 256136
  2012-10-11-1349914641.26-demo.wav 44028 CanberraMtAinsli 2012-10-11 11:17:24.489+11 269516
  2012-10-11-1349914645.09-demo.wav 44028 CanberraMtAinsli 2012-10-11 11:17:27.606+11 211080
  2012-10-11-1349914648.39-demo.wav 44028 CanberraMtAinsli 2012-10-11 11:17:34.24+11 491656
  2012-10-11-1349914689.53-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:18:29.018+11 1185414
  2012-10-11-1349914709.21-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:18:31.718+11 209032
  2012-10-11-1349914712.51-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:18:35.666+11 266376
  2012-10-11-1349914833.27-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:20:35.781+11 209932
  2012-10-11-1349914839.71-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:20:49.272+11 802952
  2012-10-11-1349914851.26-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:20:55.409+11 346248
  2012-10-11-1349914855.7-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:21:05.719+11 843812
  2012-10-11-1349914877.57-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:21:22.567+11 415880
  2012-10-11-1349914882.78-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:21:27.249+11 374918
  2012-10-11-1349914887.71-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:21:41.636+11 1161348
  2012-10-11-1349914901.77-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:21:45.726+11 331912
  2012-10-11-1349914906.91-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:21:51.288+11 365878
  2012-10-11-1349914962.78-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 11:22:51.159+11 702600
  2012-10-11-1349914971.42-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 11:22:55.07+11 305288
  2012-10-11-1349915163.24-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:26:09.402+11 516746
  2012-10-11-1349915170.06-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:26:14.933+11 407688
  2012-10-11-1349915176.29-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:26:22.237+11 501896
  2012-10-11-1349915272.56-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 11:28:01.981+11 789582
  2012-10-11-1349915566.57-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:32:49.755+11 266232
  2012-10-11-1349915595.03-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 11:33:20.636+11 469128
  2012-10-11-1349915601.82-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 11:33:30.698+11 747656
  2012-10-11-1349915673.92-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:34:37.704+11 316778
  2012-10-11-1349915713.51-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:35:17.314+11 319318
  2012-10-11-1349915719.73-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 11:35:30.272+11 882824
  2012-10-11-1349915730.48-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 11:35:38.069+11 636818
  2012-10-11-1349915776.06-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:36:18.669+11 218956
  2012-10-11-1349915779.83-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 11:36:30.429+11 888930
  2012-10-11-1349915790.62-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 11:36:33.205+11 217224
  2012-10-11-1349915794.34-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 11:36:37.456+11 260232
  2012-10-11-1349915797.64-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 11:36:41.75+11 346206
  2012-10-11-1349915802.92-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 11:36:52.865+11 835714
  2012-10-11-1349915813.26-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 11:36:56.89+11 305288
  2012-10-11-1349915817.69-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 11:37:04.317+11 557128
  2012-10-11-1349915832.03-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 11:37:14.856+11 235656
  2012-10-11-1349915861.34-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:37:44.729+11 280712
  2012-10-11-1349915866.95-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:38:03.799+11 1413716
  2012-10-11-1349915992.13-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 11:39:59.594+11 625002
  2012-10-11-1349915999.99-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 11:40:05.746+11 479368
  2012-10-11-1349916224.95-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:43:47.815+11 239688
  2012-10-11-1349916229.36-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:43:54.304+11 415880
  2012-10-11-1349916234.54-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:44:01.897+11 620680
  2012-10-11-1349916244.53-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:45:48.104+11 8704136
  2012-10-11-1349916348.38-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:45:51.11+11 229512
  2012-10-11-1349916351.37-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:45:53.746+11 198792
  2012-10-11-1349916386.79-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:46:32.732+11 499848
  2012-10-11-1349916394.03-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:46:47.79+11 1156656
  2012-10-11-1349916457.2-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:47:39.709+11 210366
  2012-10-11-1349916473.36-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:47:57.323+11 333960
  2012-10-11-1349916479.46-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:48:03.237+11 317576
  2012-10-11-1349916483.75-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:48:16.026+11 1034376
  2012-10-11-1349916560.34-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:49:25.463+11 424772
  2012-10-11-1349916566.15-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:49:29.026+11 239752
  2012-10-11-1349916569.77-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:49:32.031+11 190600
  2012-10-11-1349916650.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 11:50:53.537+11 223232
  2012-10-11-1349916655.78-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:51:04.006+11 690312
  2012-10-11-1349916664.27-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:51:12.077+11 655496
  2012-10-11-1349916672.56-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:51:16.105+11 297096
  2012-10-11-1349916740.16-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:52:22.891+11 228384
  2012-10-11-1349916744.15-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:52:27.382+11 272520
  2012-10-11-1349916747.64-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:52:30.324+11 225416
  2012-10-11-1349916752.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 11:52:42.661+11 868488
  2012-10-11-1349916816.51-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:53:39.329+11 233066
  2012-10-11-1349916820.74-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:53:44.523+11 317576
  2012-10-11-1349916825.7-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:53:51.538+11 491656
  2012-10-11-1349916831.8-demo.wav 44028 CanberraBlackMnt 2012-10-11 11:53:57.63+11 489608
  2012-10-11-1349916929.43-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:55:32.098+11 222624
  2012-10-11-1349916933.15-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:55:37.548+11 364380
  2012-10-11-1349916937.82-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:55:41.719+11 327816
  2012-10-11-1349916942.84-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:55:46.706+11 320982
  2012-10-11-1349916947.33-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:55:50.574+11 274568
  2012-10-11-1349916974.78-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:56:18.834+11 340104
  2012-10-11-1349916979.68-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:56:22.446+11 233608
  2012-10-11-1349917018.31-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:57:04.258+11 499848
  2012-10-11-1349917026.01-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:57:08.271+11 190600
  2012-10-11-1349917144.66-demo.wav 40067 CanberraBlackMnt 2012-10-11 11:59:07.138+11 209642
  2012-10-11-1349917190.81-demo.wav 40067 CanberraMtAinsli 2012-10-11 11:59:54.165+11 281186
  2012-10-11-1349917390.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:03:13.682+11 299944
  2012-10-11-1349917395.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:03:19.315+11 288904
  2012-10-11-1349917399.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:03:23.145+11 307336
  2012-10-11-1349917403.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:03:26.763+11 280706
  2012-10-11-1349917423.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:03:48.213+11 366728
  2012-10-11-1349917435.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:04:00.218+11 401544
  2012-10-11-1349917441.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:04:05.988+11 398128
  2012-10-11-1349917446.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:04:12.819+11 557192
  2012-10-11-1349917507.03-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:05:10.905+11 323828
  2012-10-11-1349917512.99-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:05:19.84+11 575624
  2012-10-11-1349917520.09-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:05:22.621+11 211080
  2012-10-11-1349917523.23-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:05:30.741+11 630920
  2012-10-11-1349917532.31-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:05:43.449+11 936072
  2012-10-11-1349917546.24-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:05:52.864+11 555144
  2012-10-11-1349917554.97-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:05:58.698+11 310218
  2012-10-11-1349917558.92-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:06:05.506+11 552954
  2012-10-11-1349917566.33-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:06:10.029+11 311392
  2012-10-11-1349917592.04-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:06:36.676+11 389256
  2012-10-11-1349917600.01-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:06:42.461+11 204936
  2012-10-11-1349917602.71-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:07:00.331+11 1480840
  2012-10-11-1349917845.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:10:48.773+11 235546
  2012-10-11-1349917849.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:10:51.873+11 225416
  2012-10-11-1349917852.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:11:01.678+11 766088
  2012-10-11-1349917862.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:11:33.343+11 2619528
  2012-10-11-1349917893.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:11:37.745+11 348296
  2012-10-11-1349917898.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:11:40.611+11 219272
  2012-10-11-1349917943.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:12:26.919+11 302540
  2012-10-11-1349917948.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:12:32.239+11 324774
  2012-10-11-1349917952.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:12:35.899+11 284808
  2012-10-11-1349918012.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:13:38.154+11 440728
  2012-10-11-1349918018.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:13:42.317+11 307336
  2012-10-11-1349918022.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:13:46.993+11 370730
  2012-10-11-1349918032.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:14:10.105+11 1454216
  2012-10-11-1349918050.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:14:14.673+11 360584
  2012-10-11-1349918055.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:14:20.043+11 409736
  2012-10-11-1349918225.45-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:17:08.996+11 296192
  2012-10-11-1349918283.0-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:18:05.598+11 218848
  2012-10-11-1349918285.8-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:18:10.907+11 428168
  2012-10-11-1349918293.31-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:18:17.747+11 372872
  2012-10-11-1349918298.5-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:18:23.421+11 411784
  2012-10-11-1349918303.68-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:18:25.947+11 190552
  2012-10-11-1349918337.55-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:19:00.073+11 210630
  2012-10-11-1349918340.78-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:19:03.237+11 206984
  2012-10-11-1349918386.14-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:19:48.649+11 209992
  2012-10-11-1349918454.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:20:58.119+11 301022
  2012-10-11-1349918458.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:21:02.617+11 317576
  2012-10-11-1349918462.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:21:05.285+11 204936
  2012-10-11-1349918465.55-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:21:34.473+11 2429064
  2012-10-11-1349918495.39-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:21:39.845+11 371202
  2012-10-11-1349918500.86-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:21:48.7+11 657856
  2012-10-11-1349918509.67-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:21:53.606+11 328222
  2012-10-11-1349918514.0-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:21:57.379+11 284808
  2012-10-11-1349918517.65-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:22:00.192+11 215176
  2012-10-11-1349918521.66-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:22:04.762+11 256966
  2012-10-11-1349918560.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:22:43.39+11 210138
  2012-10-11-1349918566.53-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:22:56.321+11 820446
  2012-10-11-1349918577.74-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:23:07.366+11 809096
  2012-10-11-1349918587.68-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:23:10.898+11 270472
  2012-10-11-1349918591.15-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:23:15.852+11 393352
  2012-10-11-1349918628.43-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:23:56.486+11 678024
  2012-10-11-1349918637.46-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:24:02.751+11 443462
  2012-10-11-1349918643.01-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:24:05.947+11 247944
  2012-10-11-1349918646.73-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:24:14.466+11 651274
  2012-10-11-1349918853.7-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:27:40.745+11 588442
  2012-10-11-1349918861.68-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:27:45.237+11 297096
  2012-10-11-1349918865.4-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:27:48.434+11 254088
  2012-10-11-1349918953.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:29:15.839+11 209386
  2012-10-11-1349919118.76-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:32:01.668+11 244212
  2012-10-11-1349919122.78-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:32:05.328+11 215176
  2012-10-11-1349919126.2-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:32:16.214+11 841864
  2012-10-11-1349919325.88-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 12:35:32.964+11 591638
  2012-10-11-1349919333.2-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 12:35:36.792+11 301192
  2012-10-11-1349919339.18-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 12:35:48.373+11 772218
  2012-10-11-1349919383.46-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:36:28.654+11 437490
  2012-10-11-1349919389.66-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:36:37.605+11 665736
  2012-10-11-1349919399.45-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:36:41.936+11 206984
  2012-10-11-1349919403.21-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:37:00.974+11 1490490
  2012-10-11-1349919421.44-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:37:04.042+11 217224
  2012-10-11-1349919424.63-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:37:08.519+11 327816
  2012-10-11-1349919462.31-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:37:48.241+11 498952
  2012-10-11-1349919469.3-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:38:00.772+11 964744
  2012-10-11-1349919481.07-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:38:11.881+11 909358
  2012-10-11-1349919492.57-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:38:35.171+11 1898624
  2012-10-11-1349919575.8-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:39:39.604+11 316464
  2012-10-11-1349919581.48-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:39:57.089+11 1312904
  2012-10-11-1349919597.34-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:39:59.663+11 192648
  2012-10-11-1349919599.88-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:40:10.501+11 893064
  2012-10-11-1349919610.7-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:40:44.131+11 2807944
  2012-10-11-1349919645.06-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:40:51.34+11 522830
  2012-10-11-1349919651.8-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:40:55.32+11 297096
  2012-10-11-1349919655.75-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:41:59.544+11 5357704
  2012-10-11-1349919719.69-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:42:02.55+11 241800
  2012-10-11-1349919747.77-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:42:30.363+11 217224
  2012-10-11-1349919752.48-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:42:36.036+11 295234
  2012-10-11-1349919756.3-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:42:39.121+11 237704
  2012-10-11-1349919760.26-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:42:44.716+11 373318
  2012-10-11-1349919800.97-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:43:23.543+11 215962
  2012-10-11-1349919805.18-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:43:37.674+11 1050760
  2012-10-11-1349919818.43-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:43:44.77+11 530568
  2012-10-11-1349919983.53-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:46:26.861+11 277894
  2012-10-11-1349919987.42-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:46:30.202+11 231560
  2012-10-11-1349919990.46-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:46:37.776+11 610440
  2012-10-11-1349920054.75-demo.wav 30302 CanberraBlackMnt 2012-10-11 12:47:37.272+11 211600
  2012-10-11-1349920062.79-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:47:53.896+11 934024
  2012-10-11-1349920077.48-demo.wav 30302 CanberraBlackMnt 2012-10-11 12:48:11.238+11 1157256
  2012-10-11-1349920091.5-demo.wav 30302 CanberraBlackMnt 2012-10-11 12:48:14.276+11 231414
  2012-10-11-1349920094.86-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:48:28.599+11 1155208
  2012-10-11-1349920108.86-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:48:39.546+11 899208
  2012-10-11-1349920120.14-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:48:43.543+11 282760
  2012-10-11-1349920198.77-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 12:50:17.377+11 1564808
  2012-10-11-1349920221.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:50:28.787+11 631484
  2012-10-11-1349920229.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 12:50:33.077+11 311432
  2012-10-11-1349920260.83-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:51:04.469+11 305288
  2012-10-11-1349920265.7-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:51:12.029+11 525814
  2012-10-11-1349920272.37-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:51:16.44+11 342152
  2012-10-11-1349920290.12-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:51:37.412+11 608354
  2012-10-11-1349920298.6-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:51:42.318+11 309384
  2012-10-11-1349920303.36-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:51:51.604+11 692304
  2012-10-11-1349920313.74-demo.wav 44028 CanberraMtAinsli 2012-10-11 12:51:59.548+11 487560
  2012-10-11-1349920321.22-demo.wav 44028 CanberraMtAinsli 2012-10-11 12:52:05.43+11 350344
  2012-10-11-1349920325.69-demo.wav 44028 CanberraMtAinsli 2012-10-11 12:52:08.498+11 237704
  2012-10-11-1349920391.49-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:53:14.227+11 227482
  2012-10-11-1349920398.06-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:53:20.603+11 213128
  2012-10-11-1349920402.45-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:53:28.18+11 481416
  2012-10-11-1349920409.69-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:53:33.486+11 319624
  2012-10-11-1349920413.75-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:53:39.688+11 499848
  2012-10-11-1349920419.99-demo.wav 30302 CanberraBlackMnt 2012-10-11 12:53:50.542+11 886920
  2012-10-11-1349920458.8-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:54:21.374+11 211474
  2012-10-11-1349920594.42-demo.wav 44028 CanberraMtAinsli 2012-10-11 12:56:37.266+11 239514
  2012-10-11-1349920598.48-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:56:44.763+11 524516
  2012-10-11-1349920604.99-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:56:50.34+11 448648
  2012-10-11-1349920610.57-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:57:14.254+11 1990792
  2012-10-11-1349920724.24-demo.wav 40067 CanberraBlackMnt 2012-10-11 12:58:46.838+11 209418
  2012-10-11-1349920730.12-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:59:07.376+11 1448072
  2012-10-11-1349920748.28-demo.wav 40067 CanberraMtAinsli 2012-10-11 12:59:13.866+11 469128
  2012-10-11-1349920754.91-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:59:22.242+11 614536
  2012-10-11-1349920762.49-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:59:28.443+11 501896
  2012-10-11-1349920768.68-demo.wav 44028 CanberraBlackMnt 2012-10-11 12:59:31.911+11 270402
  2012-10-11-1349920781.2-demo.wav 30302 CanberraBlackMnt 2012-10-11 12:59:53.985+11 1073288
  2012-10-11-1349920795.33-demo.wav 30302 CanberraBlackMnt 2012-10-11 12:59:58.908+11 301192
  2012-10-11-1349920800.55-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:00:15.18+11 1224840
  2012-10-11-1349920815.79-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:00:18.185+11 200840
  2012-10-11-1349920818.8-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:00:27.551+11 735368
  2012-10-11-1349920831.53-demo.wav 40067 CanberraMtAinsli 2012-10-11 13:00:44.83+11 1118344
  2012-10-11-1349920845.09-demo.wav 40067 CanberraMtAinsli 2012-10-11 13:00:52.086+11 587912
  2012-10-11-1349920872.37-demo.wav 40067 CanberraMtAinsli 2012-10-11 13:01:36.092+11 1992840
  2012-10-11-1349920898.1-demo.wav 40067 CanberraMtAinsli 2012-10-11 13:01:40.888+11 233608
  2012-10-11-1349920922.49-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-11 13:02:05.72+11 270472
  2012-10-11-1349920929.48-demo.wav 40067 CanberraBlackMnt 2012-10-11 13:02:16.11+11 553788
  2012-10-11-1349921001.26-demo.wav 40067 CanberraBlackMnt 2012-10-11 13:03:23.985+11 228040
  2012-10-11-1349921118.94-demo.wav 10301 CanberraMtAinsli 2012-10-11 13:05:21.654+11 225900
  2012-10-11-1349921122.86-demo.wav 10301 CanberraMtAinsli 2012-10-11 13:05:26.929+11 338458
  2012-10-11-1349921127.26-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 13:06:00.082+11 2758792
  2012-10-11-1349921160.23-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 13:06:03.815+11 299144
  2012-10-11-1349921199.75-demo.wav 44036 CanberraMtAinsli 2012-10-11 13:06:44.526+11 400494
  2012-10-11-1349921204.79-demo.wav 44036 CanberraMtAinsli 2012-10-11 13:06:48.667+11 325768
  2012-10-11-1349921208.91-demo.wav 44036 CanberraMtAinsli 2012-10-11 13:06:53.621+11 395400
  2012-10-11-1349921213.95-demo.wav 44036 CanberraMtAinsli 2012-10-11 13:06:56.465+11 213128
  2012-10-11-1349921362.35-demo.wav 44036 CanberraMtAinsli 2012-10-11 13:09:26.278+11 328010
  2012-10-11-1349921366.67-demo.wav 44036 CanberraMtAinsli 2012-10-11 13:09:32.526+11 489608
  2012-10-11-1349921373.13-demo.wav 44036 CanberraMtAinsli 2012-10-11 13:09:35.899+11 233608
  2012-10-11-1349921376.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:10:27.41+11 4307080
  2012-10-11-1349921427.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:10:35.508+11 639040
  2012-10-11-1349921436.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:10:41.561+11 460936
  2012-10-11-1349921445.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:11:06.456+11 1395408
  2012-10-11-1349921466.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:11:09.282+11 213128
  2012-10-11-1349921473.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:11:17.576+11 354440
  2012-10-11-1349921575.56-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:12:58.422+11 237890
  2012-10-11-1349921581.78-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:13:09.337+11 635016
  2012-10-11-1349921589.6-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:13:13.957+11 366308
  2012-10-11-1349921594.62-demo.wav 44028 CanberraMtAinsli 2012-10-11 13:13:33.234+11 1560712
  2012-10-11-1349921613.49-demo.wav 44028 CanberraMtAinsli 2012-10-11 13:13:37.79+11 358536
  2012-10-11-1349921719.31-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:15:23.033+11 310014
  2012-10-11-1349921726.93-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:15:32.543+11 467978
  2012-10-11-1349921734.91-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:15:44.036+11 767196
  2012-10-11-1349921767.02-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-11 13:16:09.576+11 211976
  2012-10-11-1349921772.53-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:16:19.166+11 557192
  2012-10-11-1349921781.04-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:16:24.568+11 295048
  2012-10-11-1349921842.66-demo.wav 40067 CanberraMtAinsli 2012-10-11 13:17:25.756+11 260232
  2012-10-11-1349921846.66-demo.wav 40067 CanberraMtAinsli 2012-10-11 13:17:40.398+11 1155208
  2012-10-11-1349921873.19-demo.wav 40067 CanberraBlackMnt 2012-10-11 13:17:57.516+11 359126
  2012-10-11-1349921877.99-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 13:18:18.387+11 1714312
  2012-10-11-1349921899.62-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 13:18:35.517+11 1332478
  2012-10-11-1349921916.49-demo.wav i1045200 CanberraBlackMnt 2012-10-11 13:18:56.584+11 1687948
  2012-10-11-1349921937.77-demo.wav i1045200 CanberraBlackMnt 2012-10-11 13:19:02.674+11 411784
  2012-10-11-1349921944.54-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 13:19:14.405+11 827528
  2012-10-11-1349921954.66-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 13:19:18.489+11 321672
  2012-10-11-1349921958.75-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 13:19:50.504+11 2662534
  2012-10-11-1349921990.7-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:19:59.697+11 755848
  2012-10-11-1349922001.26-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:20:07.447+11 516232
  2012-10-11-1349922020.07-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-11 13:20:27.216+11 600200
  2012-10-11-1349922086.86-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:21:29.412+11 212126
  2012-10-11-1349922090.48-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:21:34.286+11 313460
  2012-10-11-1349922241.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:24:05.814+11 332918
  2012-10-11-1349922273.96-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:24:39.762+11 487560
  2012-10-11-1349922279.88-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:24:44.173+11 358536
  2012-10-11-1349922284.41-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:24:46.571+11 181968
  2012-10-11-1349922286.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:25:22.387+11 2986120
  2012-10-11-1349922333.53-demo.wav 10301 CanberraMtAinsli 2012-10-11 13:25:50.326+11 1411208
  2012-10-11-1349922351.25-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:26:02.956+11 981922
  2012-10-11-1349922364.52-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:26:08.854+11 357704
  2012-10-11-1349922372.07-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:26:16.877+11 401544
  2012-10-11-1349922377.07-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:26:19.595+11 213128
  2012-10-11-1349922380.41-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:26:24.981+11 383112
  2012-10-11-1349922385.24-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:26:29.072+11 313480
  2012-10-11-1349922389.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:26:44.701+11 1265800
  2012-10-11-1349922438.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:27:20.885+11 218740
  2012-10-11-1349922441.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:27:23.92+11 221320
  2012-10-11-1349922444.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:27:29.686+11 462984
  2012-10-11-1349922449.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:27:32.942+11 247818
  2012-10-11-1349922475.63-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:27:57.972+11 196744
  2012-10-11-1349922478.22-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:28:00.753+11 213128
  2012-10-11-1349922481.02-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:28:03.566+11 211080
  2012-10-11-1349922483.83-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:28:09.927+11 511860
  2012-10-11-1349922490.16-demo.wav 40067 CanberraBlackMnt 2012-10-11 13:28:27.798+11 1482888
  2012-10-11-1349922509.2-demo.wav 40067 CanberraMtAinsli 2012-10-11 13:28:38.14+11 751748
  2012-10-11-1349922552.12-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:29:14.679+11 212232
  2012-10-11-1349922562.36-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:29:26.523+11 350344
  2012-10-11-1349922680.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:31:24.661+11 317036
  2012-10-11-1349922685.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:31:28.768+11 276616
  2012-10-11-1349922703.15-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:31:47.293+11 346248
  2012-10-11-1349922708.36-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:31:50.874+11 206984
  2012-10-11-1349922711.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:32:11.414+11 1354178
  2012-10-11-1349922731.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:32:14.178+11 211080
  2012-10-11-1349922734.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:32:18.405+11 329864
  2012-10-11-1349922739.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:32:22.543+11 241800
  2012-10-11-1349922742.7-demo.wav 40067 CanberraMtAinsli 2012-10-11 13:32:39.855+11 1441928
  2012-10-11-1349922781.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:33:03.774+11 188552
  2012-10-11-1349922784.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:33:06.625+11 217224
  2012-10-11-1349922786.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:33:10.411+11 303240
  2012-10-11-1349922791.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:33:16.778+11 454776
  2012-10-11-1349922822.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:33:45.15+11 209032
  2012-10-11-1349922825.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:33:48.02+11 219272
  2012-10-11-1349922828.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:33:52.517+11 348296
  2012-10-11-1349922832.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:33:56.311+11 299144
  2012-10-11-1349922837.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:34:18.332+11 1370292
  2012-10-11-1349922858.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:34:21.447+11 239752
  2012-10-11-1349922863.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:34:28.093+11 417374
  2012-10-11-1349922909.03-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:35:12.689+11 306596
  2012-10-11-1349922913.34-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:35:16.028+11 223368
  2012-10-11-1349922916.29-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:35:23.812+11 630918
  2012-10-11-1349922927.66-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:35:31.501+11 319624
  2012-10-11-1349922931.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:35:52.705+11 1751176
  2012-10-11-1349922952.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:35:56.1+11 266376
  2012-10-11-1349922956.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:35:59.478+11 257680
  2012-10-11-1349922997.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:36:39.647+11 210566
  2012-10-11-1349923000.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:36:48.326+11 641160
  2012-10-11-1349923008.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:36:52.975+11 368776
  2012-10-11-1349923013.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:38:09.041+11 6361224
  2012-10-11-1349923090.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:38:26.63+11 1318812
  2012-10-11-1349923139.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:39:01.714+11 226500
  2012-10-11-1349923142.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:39:04.95+11 213128
  2012-10-11-1349923145.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:39:08.864+11 288904
  2012-10-11-1349923189.7-demo.wav 40067 CanberraMtAinsli 2012-10-11 13:39:56.961+11 608692
  2012-10-11-1349923197.16-demo.wav 40067 CanberraMtAinsli 2012-10-11 13:40:05.624+11 710792
  2012-10-11-1349923206.32-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:40:12.802+11 544904
  2012-10-11-1349923276.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:41:21.535+11 387438
  2012-10-11-1349923282.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:41:27.332+11 409736
  2012-10-11-1349923288.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:41:31.877+11 319552
  2012-10-11-1349923292.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:41:40.004+11 659592
  2012-10-11-1349923301.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:41:57.258+11 1319592
  2012-10-11-1349923370.74-demo.wav 40067 CanberraBlackMnt 2012-10-11 13:42:53.459+11 227464
  2012-10-11-1349923375.72-demo.wav 40067 CanberraBlackMnt 2012-10-11 13:43:02.748+11 589498
  2012-10-11-1349923437.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:44:02.58+11 386962
  2012-10-11-1349923443.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:44:07.119+11 301192
  2012-10-11-1349923447.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:44:12.465+11 432264
  2012-10-11-1349923453.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:44:21.575+11 669832
  2012-10-11-1349923461.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:44:26.618+11 401544
  2012-10-11-1349923467.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:44:31.748+11 372872
  2012-10-11-1349923472.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:44:39.756+11 649324
  2012-10-11-1349923515.2-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:45:18.597+11 284772
  2012-10-11-1349923604.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:46:47.073+11 217614
  2012-10-11-1349923607.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:46:55.589+11 696456
  2012-10-11-1349923615.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:47:05.716+11 827528
  2012-10-11-1349923626.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:47:08.478+11 206984
  2012-10-11-1349923628.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:47:11.449+11 227464
  2012-10-11-1349923728.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:48:51.555+11 232400
  2012-10-11-1349923733.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:48:56.379+11 239752
  2012-10-11-1349923736.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:49:01.797+11 415880
  2012-10-11-1349923764.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:49:30.486+11 508854
  2012-10-11-1349923771.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:49:36.36+11 390618
  2012-10-11-1349923776.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:49:45.91+11 780424
  2012-10-11-1349923788.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:49:51.032+11 223368
  2012-10-11-1349923791.88-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:50:02.397+11 879906
  2012-10-11-1349923804.72-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:50:08.199+11 290952
  2012-10-11-1349923808.37-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:50:10.804+11 204936
  2012-10-11-1349923811.06-demo.wav 30302 CanberraBlackMnt 2012-10-11 13:50:16.653+11 470832
  2012-10-11-1349923826.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:50:35.568+11 743560
  2012-10-11-1349923835.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:50:42.133+11 528520
  2012-10-11-1349923842.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:50:45.488+11 258142
  2012-10-11-1349923846.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:50:56.646+11 809792
  2012-10-11-1349923857.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:51:03.127+11 485470
  2012-10-11-1349923863.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:51:28.718+11 2132104
  2012-10-11-1349923889.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:51:32.523+11 288882
  2012-10-11-1349923892.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:52:26.916+11 4546696
  2012-10-11-1349923947.22-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:52:49.663+11 1886344
  2012-10-11-1349923969.9-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:52:54.346+11 372872
  2012-10-11-1349923976.68-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 13:53:12.499+11 1329288
  2012-10-11-1349923992.72-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 13:53:17.193+11 374920
  2012-10-11-1349923997.45-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 13:53:20.115+11 223368
  2012-10-11-1349924001.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:53:32.693+11 981480
  2012-10-11-1349924013.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:53:37.665+11 327052
  2012-10-11-1349924017.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:53:44.232+11 526472
  2012-10-11-1349924024.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:53:48.665+11 348296
  2012-10-11-1349924044.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:54:10.232+11 446600
  2012-10-11-1349924051.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:54:18.815+11 573166
  2012-10-11-1349924087.13-demo.wav 40067 CanberraBlackMnt 2012-10-11 13:54:50.925+11 315242
  2012-10-11-1349924092.11-demo.wav 40067 CanberraBlackMnt 2012-10-11 13:54:57.159+11 424072
  2012-10-11-1349924097.57-demo.wav 40067 CanberraBlackMnt 2012-10-11 13:55:13.896+11 1372296
  2012-10-11-1349924116.12-demo.wav 40067 CanberraBlackMnt 2012-10-11 13:55:24.047+11 665736
  2012-10-11-1349924126.11-demo.wav 40067 CanberraBlackMnt 2012-10-11 13:55:29.961+11 323382
  2012-10-11-1349924130.71-demo.wav 44028 CanberraMtAinsli 2012-10-11 13:55:36.546+11 491452
  2012-10-11-1349924138.14-demo.wav 44028 CanberraMtAinsli 2012-10-11 13:55:49.685+11 970290
  2012-10-11-1349924149.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:56:13.846+11 2001032
  2012-10-11-1349924176.47-demo.wav 40067 CanberraBlackMnt 2012-10-11 13:57:00.967+11 3739778
  2012-10-11-1349924221.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:58:32.689+11 7676040
  2012-10-11-1349924313.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:58:38.089+11 372680
  2012-10-11-1349924319.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:58:44.402+11 449040
  2012-10-11-1349924326.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:58:51.945+11 493676
  2012-10-11-1349924332.27-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:58:57.891+11 473224
  2012-10-11-1349924338.08-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:59:02.254+11 350344
  2012-10-11-1349924342.5-demo.wav 44028 CanberraBlackMnt 2012-10-11 13:59:12.083+11 806958
  2012-10-11-1349924352.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:59:22.647+11 864392
  2012-10-11-1349924363.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:59:27.801+11 315528
  2012-10-11-1349924368.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:59:32.5+11 342044
  2012-10-11-1349924372.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 13:59:57.379+11 2070664
  2012-10-11-1349924398.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:00:07.876+11 793518
  2012-10-11-1349924408.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:00:13.078+11 409736
  2012-10-11-1349924472.03-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:01:21.871+11 825480
  2012-10-11-1349924485.78-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-11 14:01:37.759+11 1005704
  2012-10-11-1349924498.16-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-11 14:01:41.104+11 245896
  2012-10-11-1349924551.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:02:35.36+11 340534
  2012-10-11-1349924556.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:02:39.323+11 274568
  2012-10-11-1349924561.99-demo.wav 44028 CanberraBlackMnt 2012-10-11 14:03:15.56+11 2822232
  2012-10-11-1349924596.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:03:29.799+11 1116780
  2012-10-11-1349924610.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:03:33.297+11 254088
  2012-10-11-1349924646.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:04:27.163+11 1742492
  2012-10-11-1349924667.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:04:29.826+11 196744
  2012-10-11-1349924672.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:04:36.878+11 358536
  2012-10-11-1349924678.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:04:44.252+11 462330
  2012-10-11-1349924684.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:04:49.095+11 348296
  2012-10-11-1349924689.32-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:05:07.029+11 1489032
  2012-10-11-1349924707.41-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:05:10.319+11 243848
  2012-10-11-1349924765.12-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:06:10.009+11 409736
  2012-10-11-1349924797.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:06:51.388+11 1190180
  2012-10-11-1349924812.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:06:58.835+11 549126
  2012-10-11-1349924819.81-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:07:04.701+11 407272
  2012-10-11-1349924826.27-demo.wav 44028 CanberraMtAinsli 2012-10-11 14:07:12.15+11 493704
  2012-10-11-1349924832.38-demo.wav 44028 CanberraMtAinsli 2012-10-11 14:07:19.295+11 581768
  2012-10-11-1349924882.42-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 14:08:09.404+11 587912
  2012-10-11-1349924909.79-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 14:08:37.698+11 663688
  2012-10-11-1349924918.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:08:50.043+11 951760
  2012-10-11-1349924930.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:08:52.472+11 186504
  2012-10-11-1349924932.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:09:02.648+11 832858
  2012-10-11-1349924943.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:09:10.735+11 603822
  2012-10-11-1349924951.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:09:14.709+11 297096
  2012-10-11-1349924954.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:09:18.056+11 258184
  2012-10-11-1349924958.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:09:21.14+11 235546
  2012-10-11-1349924961.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:09:25.855+11 352392
  2012-10-11-1349925001.32-demo.wav 44028 CanberraMtAinsli 2012-10-11 14:10:03.972+11 222886
  2012-10-11-1349925007.11-demo.wav 44028 CanberraMtAinsli 2012-10-11 14:10:13.673+11 549000
  2012-10-11-1349925014.62-demo.wav 44028 CanberraMtAinsli 2012-10-11 14:10:18.612+11 336008
  2012-10-11-1349925018.86-demo.wav 44028 CanberraMtAinsli 2012-10-11 14:10:22.88+11 338056
  2012-10-11-1349925085.84-demo.wav 30302 CanberraMtAinsli 2012-10-11 14:11:29.439+11 301708
  2012-10-11-1349925091.97-demo.wav 30302 CanberraMtAinsli 2012-10-11 14:11:34.871+11 243848
  2012-10-11-1349925096.23-demo.wav 30302 CanberraMtAinsli 2012-10-11 14:11:38.963+11 227464
  2012-10-11-1349925099.39-demo.wav 30302 CanberraMtAinsli 2012-10-11 14:11:44.398+11 417928
  2012-10-11-1349925105.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:11:52.588+11 606344
  2012-10-11-1349925113.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:11:58.268+11 395400
  2012-10-11-1349925119.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:12:16.21+11 1396680
  2012-10-11-1349925136.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:12:22.027+11 462984
  2012-10-11-1349925175.57-demo.wav 30302 CanberraMtAinsli 2012-10-11 14:12:58.854+11 274668
  2012-10-11-1349925183.22-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-11 14:13:20.27+11 1431688
  2012-10-11-1349925210.61-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-11 14:13:32.765+11 180360
  2012-10-11-1349925232.11-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-11 14:14:04.268+11 1020040
  2012-10-11-1349925320.24-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-11 14:15:24.794+11 378156
  2012-10-11-1349925325.89-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-11 14:15:40.802+11 1249944
  2012-10-11-1349925340.97-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-11 14:15:49.123+11 684168
  2012-10-11-1349925349.58-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:16:05.867+11 1368200
  2012-10-11-1349925376.54-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:16:19.171+11 219272
  2012-10-11-1349925403.46-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:16:48.82+11 445946
  2012-10-11-1349925409.0-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:16:54.411+11 454792
  2012-10-11-1349925415.87-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:17:09.394+11 1136558
  2012-10-11-1349925429.77-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:17:29.163+11 1630004
  2012-10-11-1349925451.17-demo.wav 30302 CanberraMtAinsli 2012-10-11 14:17:46.01+11 1247368
  2012-10-11-1349925466.73-demo.wav 30302 CanberraMtAinsli 2012-10-11 14:17:49.638+11 241800
  2012-10-11-1349925469.99-demo.wav 30302 CanberraMtAinsli 2012-10-11 14:17:52.642+11 221320
  2012-10-11-1349925475.32-demo.wav 30302 CanberraMtAinsli 2012-10-11 14:17:57.709+11 198792
  2012-10-11-1349925483.76-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:18:08.04+11 356482
  2012-10-11-1349925488.31-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:18:11.444+11 262280
  2012-10-11-1349925491.77-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:18:19.018+11 608160
  2012-10-11-1349925499.46-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:18:23.482+11 336004
  2012-10-11-1349925504.65-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:18:32.977+11 700552
  2012-10-11-1349925536.59-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:19:00.259+11 307336
  2012-10-11-1349925541.93-demo.wav 30302 CanberraMtAinsli 2012-10-11 14:19:08.376+11 535256
  2012-10-11-1349925550.37-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:19:15.581+11 436360
  2012-10-11-1349925557.3-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:19:26.376+11 759504
  2012-10-11-1349925567.18-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-11 14:19:35.653+11 710792
  2012-10-11-1349925576.44-demo.wav 40067 CanberraMtAinsli 2012-10-11 14:19:43.101+11 559240
  2012-10-11-1349925583.34-demo.wav 40067 CanberraMtAinsli 2012-10-11 14:19:46.169+11 239752
  2012-10-11-1349925588.07-demo.wav 40067 CanberraMtAinsli 2012-10-11 14:19:50.948+11 243848
  2012-10-11-1349925591.5-demo.wav 40067 CanberraMtAinsli 2012-10-11 14:19:55.231+11 313480
  2012-10-11-1349925595.65-demo.wav 40067 CanberraMtAinsli 2012-10-11 14:19:58.763+11 262162
  2012-10-11-1349925611.03-demo.wav 40067 CanberraBlackMnt 2012-10-11 14:20:17.544+11 549000
  2012-10-11-1349925618.58-demo.wav 40067 CanberraBlackMnt 2012-10-11 14:20:22.913+11 355122
  2012-10-11-1349925624.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:20:33.256+11 770184
  2012-10-11-1349925633.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:20:35.73+11 194696
  2012-10-11-1349925636.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:20:40.617+11 356488
  2012-10-11-1349925640.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:20:48.289+11 630918
  2012-10-11-1349925648.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:21:12.582+11 2013320
  2012-10-11-1349925675.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:21:19.038+11 315528
  2012-10-11-1349925679.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:21:22.135+11 221320
  2012-10-11-1349925682.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:21:27.499+11 428154
  2012-10-11-1349925715.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:21:58.396+11 217224
  2012-10-11-1349925719.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:22:10.878+11 962206
  2012-10-11-1349925733.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:22:17.042+11 290952
  2012-10-11-1349925737.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:22:21.159+11 292958
  2012-10-11-1349925742.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:22:24.929+11 212940
  2012-10-11-1349925750.39-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:22:38.067+11 645256
  2012-10-11-1349925758.77-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:22:42.126+11 280712
  2012-10-11-1349925764.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:23:04.153+11 1645050
  2012-10-11-1349925786.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:23:11.821+11 469128
  2012-10-11-1349925806.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:23:46.737+11 1683592
  2012-10-11-1349925828.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:23:58.322+11 827528
  2012-10-11-1349925838.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:24:04.363+11 487560
  2012-10-11-1349925884.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:24:47.37+11 208410
  2012-10-11-1349925888.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:24:55.964+11 625260
  2012-10-11-1349925896.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:25:00.019+11 323720
  2012-10-11-1349925900.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:25:04.148+11 284808
  2012-10-11-1349925905.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:25:11.98+11 555106
  2012-10-11-1349925912.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:25:15.251+11 237704
  2012-10-11-1349925918.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:25:22.049+11 309354
  2012-10-11-1349925991.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:26:35.13+11 296308
  2012-10-11-1349925996.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:26:39.669+11 281040
  2012-10-11-1349925999.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:26:42.338+11 200840
  2012-10-11-1349926035.27-demo.wav 40067 CanberraBlackMnt 2012-10-11 14:27:26.216+11 921660
  2012-10-11-1349926047.1-demo.wav 40067 CanberraBlackMnt 2012-10-11 14:27:32.146+11 422958
  2012-10-11-1349926053.37-demo.wav 10301 CanberraMtAinsli 2012-10-11 14:27:41.688+11 698504
  2012-10-11-1349926063.54-demo.wav 10301 CanberraMtAinsli 2012-10-11 14:27:46.946+11 284632
  2012-10-11-1349926097.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:28:19.959+11 213288
  2012-10-11-1349926100.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:28:23.515+11 233608
  2012-10-11-1349926103.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:28:25.92+11 180360
  2012-10-11-1349926106.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:28:30.738+11 362632
  2012-10-11-1349926212.17-demo.wav 10301 CanberraMtAinsli 2012-10-11 14:30:16.67+11 378848
  2012-10-11-1349926217.56-demo.wav 10301 CanberraMtAinsli 2012-10-11 14:30:20.618+11 258184
  2012-10-11-1349926279.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:31:21.782+11 226010
  2012-10-11-1349926305.09-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:31:48.172+11 260232
  2012-10-11-1349926308.4-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:31:50.937+11 211080
  2012-10-11-1349926311.55-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:31:55.252+11 309384
  2012-10-11-1349926316.29-demo.wav 44028 CanberraMtAinsli 2012-10-11 14:32:07.896+11 974984
  2012-10-11-1349926328.08-demo.wav 44028 CanberraMtAinsli 2012-10-11 14:32:13.556+11 460936
  2012-10-11-1349926420.14-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:33:46.064+11 496822
  2012-10-11-1349926456.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:34:20.548+11 313836
  2012-10-11-1349926460.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:34:24.047+11 272520
  2012-10-11-1349926465.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:34:31.097+11 493514
  2012-10-11-1349926506.98-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:35:11.042+11 341598
  2012-10-11-1349926675.78-demo.wav 40067 CanberraMtAinsli 2012-10-11 14:38:00.479+11 394140
  2012-10-11-1349926680.93-demo.wav 40067 CanberraMtAinsli 2012-10-11 14:38:08.214+11 612488
  2012-10-11-1349926690.27-demo.wav 40067 CanberraMtAinsli 2012-10-11 14:38:13.137+11 241800
  2012-10-11-1349926743.66-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:39:06.159+11 208718
  2012-10-11-1349926747.26-demo.wav 44028 CanberraMtAinsli 2012-10-11 14:39:16.244+11 750848
  2012-10-11-1349926757.28-demo.wav 44028 CanberraBlackMnt 2012-10-11 14:39:23.325+11 505214
  2012-10-11-1349926763.94-demo.wav 44028 CanberraBlackMnt 2012-10-11 14:39:29.24+11 442504
  2012-10-11-1349926769.48-demo.wav 40067 CanberraMtAinsli 2012-10-11 14:39:59.851+11 2551944
  2012-10-11-1349926801.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:40:08.38+11 575624
  2012-10-11-1349926946.67-demo.wav 44028 CanberraBlackMnt 2012-10-11 14:42:29.903+11 270228
  2012-10-11-1349926950.57-demo.wav 44028 CanberraBlackMnt 2012-10-11 14:42:33.323+11 233608
  2012-10-11-1349926953.72-demo.wav 44028 CanberraBlackMnt 2012-10-11 14:42:41.332+11 639112
  2012-10-11-1349927025.93-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 14:43:50.728+11 403592
  2012-10-11-1349927032.04-demo.wav 44036 CanberraMtAinsli 2012-10-11 14:44:07.91+11 1335432
  2012-10-11-1349927048.12-demo.wav 44036 CanberraMtAinsli 2012-10-11 14:44:10.595+11 206984
  2012-10-11-1349927092.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:44:55.265+11 211444
  2012-10-11-1349927112.62-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 14:45:19.747+11 598152
  2012-10-11-1349927170.42-demo.wav 44028 CanberraBlackMnt 2012-10-11 14:46:13.854+11 285740
  2012-10-11-1349927174.67-demo.wav 44028 CanberraBlackMnt 2012-10-11 14:46:17.834+11 266376
  2012-10-11-1349927178.55-demo.wav 44028 CanberraBlackMnt 2012-10-11 14:46:24.659+11 514184
  2012-10-11-1349927184.87-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:46:51.513+11 2238600
  2012-10-11-1349927213.89-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:46:56.852+11 247944
  2012-10-11-1349927217.73-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:47:00.416+11 225416
  2012-10-11-1349927298.76-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 14:48:27.393+11 724552
  2012-10-11-1349927308.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:48:33.851+11 461578
  2012-10-11-1349927315.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:48:40.447+11 399496
  2012-10-11-1349927321.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:48:47+11 447132
  2012-10-11-1349927353.51-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:49:17.479+11 329714
  2012-10-11-1349927359.34-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:49:26.08+11 562114
  2012-10-11-1349927380.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:50:00.542+11 1665924
  2012-10-11-1349927400.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:50:06.168+11 446600
  2012-10-11-1349927458.03-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:51:02.415+11 366950
  2012-10-11-1349927463.36-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:51:10.232+11 577672
  2012-10-11-1349927491.65-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 14:51:37.037+11 450696
  2012-10-11-1349927550.38-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 14:52:34.848+11 369550
  2012-10-11-1349927555.32-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 14:52:38.197+11 241800
  2012-10-11-1349927637.86-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:54:01.104+11 273130
  2012-10-11-1349927641.73-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:54:04.187+11 209032
  2012-10-11-1349927644.84-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:54:11.169+11 532616
  2012-10-11-1349927652.17-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:54:17.033+11 409732
  2012-10-11-1349927657.45-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:54:20.102+11 225416
  2012-10-11-1349927660.26-demo.wav 44036 CanberraBlackMnt 2012-10-11 14:54:25.247+11 419752
  2012-10-11-1349927666.07-demo.wav 44028 CanberraMtAinsli 2012-10-11 14:54:34.644+11 720934
  2012-10-11-1349927790.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:56:33.932+11 312642
  2012-10-11-1349927794.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:56:38.743+11 356488
  2012-10-11-1349927799.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 14:56:42.657+11 299108
  2012-10-11-1349928084.6-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:01:38.155+11 1140338
  2012-10-11-1349928106.13-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:02:04.009+11 1503368
  2012-10-11-1349928124.21-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:02:07.723+11 293000
  2012-10-11-1349928257.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:04:21.204+11 342088
  2012-10-11-1349928262.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:04:29.699+11 636518
  2012-10-11-1349928269.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:04:34.428+11 374920
  2012-10-11-1349928281.5-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:04:57.441+11 1339528
  2012-10-11-1349928298.27-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:05:01.054+11 233608
  2012-10-11-1349928302.14-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:05:14.527+11 1037756
  2012-10-11-1349928314.79-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:05:17.899+11 260232
  2012-10-11-1349928333.8-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:05:43.791+11 839816
  2012-10-11-1349928344.04-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:05:46.428+11 200840
  2012-10-11-1349928514.49-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 15:08:40.076+11 465624
  2012-10-11-1349928520.43-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 15:08:42.933+11 209032
  2012-10-11-1349928523.22-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 15:08:46.302+11 258184
  2012-10-11-1349928601.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:10:03.685+11 208984
  2012-10-11-1349928989.36-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:16:34.899+11 461324
  2012-10-11-1349928995.57-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:16:38.266+11 223368
  2012-10-11-1349929024.46-demo.wav 40067 CanberraBlackMnt 2012-10-11 15:17:07.276+11 235656
  2012-10-11-1349929030.4-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:17:34.416+11 2019464
  2012-10-11-1349929190.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:19:53.237+11 221320
  2012-10-11-1349929193.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:19:56.716+11 262280
  2012-10-11-1349929196.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:20:00.173+11 264328
  2012-10-11-1349929200.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:20:05.015+11 354440
  2012-10-11-1349929205.88-demo.wav 40067 CanberraBlackMnt 2012-10-11 15:20:13.087+11 605090
  2012-10-11-1349929213.86-demo.wav 40067 CanberraBlackMnt 2012-10-11 15:20:22.595+11 733320
  2012-10-11-1349929222.88-demo.wav 40067 CanberraBlackMnt 2012-10-11 15:20:41.457+11 1560712
  2012-10-11-1349929243.27-demo.wav 40067 CanberraBlackMnt 2012-10-11 15:21:13.904+11 2576262
  2012-10-11-1349929278.12-demo.wav 10301 CanberraMtAinsli 2012-10-11 15:21:22.79+11 387990
  2012-10-11-1349929283.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:22:00.251+11 3127432
  2012-10-11-1349929323.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:22:05.981+11 241800
  2012-10-11-1349929327.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:22:12.556+11 433194
  2012-10-11-1349929333.45-demo.wav 44036 CanberraBlackMnt 2012-10-11 15:22:23.041+11 804516
  2012-10-11-1349929345.62-demo.wav 40067 CanberraBlackMnt 2012-10-11 15:22:45.625+11 1679496
  2012-10-11-1349929365.86-demo.wav 40067 CanberraBlackMnt 2012-10-11 15:22:48.008+11 180360
  2012-10-11-1349929398.07-demo.wav 44036 CanberraBlackMnt 2012-10-11 15:23:23.699+11 473224
  2012-10-11-1349929404.86-demo.wav 44036 CanberraBlackMnt 2012-10-11 15:23:27.169+11 194696
  2012-10-11-1349929407.42-demo.wav 44036 CanberraBlackMnt 2012-10-11 15:23:29.598+11 182408
  2012-10-11-1349929490.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:24:54.946+11 334074
  2012-10-11-1349929495.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:24:59.85+11 329864
  2012-10-11-1349929500.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:25:07.921+11 663688
  2012-10-11-1349929508.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:25:14.743+11 495460
  2012-10-11-1349929515.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:25:20.284+11 371652
  2012-10-11-1349929520.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:25:24.032+11 299144
  2012-10-11-1349929524.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:25:28.715+11 358438
  2012-10-11-1349929528.96-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:25:40.766+11 991368
  2012-10-11-1349929541.54-demo.wav 10301 CanberraMtAinsli 2012-10-11 15:25:49.096+11 635016
  2012-10-11-1349929549.46-demo.wav 10301 CanberraMtAinsli 2012-10-11 15:25:55.359+11 495752
  2012-10-11-1349929583.41-demo.wav 40067 CanberraBlackMnt 2012-10-11 15:26:27.647+11 356488
  2012-10-11-1349929587.8-demo.wav 40067 CanberraBlackMnt 2012-10-11 15:26:33.272+11 456840
  2012-10-11-1349929593.54-demo.wav 40067 CanberraBlackMnt 2012-10-11 15:26:35.83+11 192648
  2012-10-11-1349929688.8-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:28:12.107+11 275120
  2012-10-11-1349929692.71-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:28:14.968+11 190600
  2012-10-11-1349929695.18-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:28:19.698+11 379016
  2012-10-11-1349929700.26-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:28:23.694+11 286856
  2012-10-11-1349929772.31-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:29:34.828+11 210700
  2012-10-11-1349929858.29-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:31:03.576+11 441202
  2012-10-11-1349929865.6-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:31:17.578+11 1004926
  2012-10-11-1349929897.82-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:31:40.74+11 247944
  2012-10-11-1349929900.93-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:31:43.361+11 204936
  2012-10-11-1349929903.7-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:31:47.548+11 321672
  2012-10-11-1349929971.86-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-11 15:32:54.827+11 249442
  2012-10-11-1349929975.08-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-11 15:32:57.847+11 231560
  2012-10-11-1349929978.18-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-11 15:33:02.624+11 372872
  2012-10-11-1349929983.0-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-11 15:33:06.907+11 329864
  2012-10-11-1349930023.14-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:33:47.481+11 364112
  2012-10-11-1349930027.72-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:33:50.772+11 249992
  2012-10-11-1349930030.98-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:33:59.2+11 690288
  2012-10-11-1349930040.35-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:34:05.701+11 450672
  2012-10-11-1349930046.74-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:34:12.691+11 501714
  2012-10-11-1349930052.91-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:34:15.104+11 182408
  2012-10-11-1349930055.34-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:34:19.866+11 381064
  2012-10-11-1349930060.01-demo.wav 10301 CanberraMtAinsli 2012-10-11 15:35:06.732+11 3924104
  2012-10-11-1349930109.44-demo.wav 10301 CanberraMtAinsli 2012-10-11 15:35:21.389+11 1007752
  2012-10-11-1349930121.69-demo.wav 10301 CanberraMtAinsli 2012-10-11 15:35:25.209+11 293000
  2012-10-11-1349930126.66-demo.wav 10301 CanberraMtAinsli 2012-10-11 15:35:31.618+11 417928
  2012-10-11-1349930134.16-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:35:43.782+11 806660
  2012-10-11-1349930171.2-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:36:13.719+11 209032
  2012-10-11-1349930199.8-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:36:55.516+11 1320040
  2012-10-11-1349930271.67-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:37:56.103+11 369336
  2012-10-11-1349930276.38-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:37:59.344+11 247944
  2012-10-11-1349930441.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:40:45.234+11 302956
  2012-10-11-1349930447.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:40:51.321+11 290952
  2012-10-11-1349930451.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:40:54.267+11 219272
  2012-10-11-1349930455.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:41:00.209+11 380738
  2012-10-11-1349930462.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:41:11.824+11 769612
  2012-10-11-1349930472.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:41:31.357+11 1625134
  2012-10-11-1349930491.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:41:36.386+11 401520
  2012-10-11-1349930497.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:41:41.466+11 349148
  2012-10-11-1349930501.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:42:01.873+11 1357358
  2012-10-11-1349930522.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:42:06.229+11 344200
  2012-10-11-1349930526.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:42:26.689+11 1697928
  2012-10-11-1349930546.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:42:30.708+11 317576
  2012-10-11-1349930550.99-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:42:36.781+11 483464
  2012-10-11-1349930557.08-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:42:39.577+11 209032
  2012-10-11-1349930559.89-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:42:56.52+11 1396714
  2012-10-11-1349930643.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:44:07.247+11 328766
  2012-10-11-1349930647.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:44:11.893+11 354440
  2012-10-11-1349930652.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:44:15.855+11 311432
  2012-10-11-1349930656.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:44:23.156+11 571528
  2012-10-11-1349930864.75-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:47:49.714+11 415656
  2012-10-11-1349930869.94-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:47:54.077+11 348296
  2012-10-11-1349930901.06-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:48:25.353+11 360584
  2012-10-11-1349930905.54-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:48:31.074+11 460936
  2012-10-11-1349930969.18-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:49:34.514+11 447460
  2012-10-11-1349930974.78-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:49:40.682+11 495752
  2012-10-11-1349930981.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:49:49.484+11 702600
  2012-10-11-1349930990.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:50:06.294+11 1329888
  2012-10-11-1349931006.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:50:13.203+11 555144
  2012-10-11-1349931013.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:50:17.823+11 342152
  2012-10-11-1349931094.86-demo.wav 44027 CanberraBlackMnt 2012-10-11 15:51:40.3+11 455518
  2012-10-11-1349931101.72-demo.wav 44027 CanberraBlackMnt 2012-10-11 15:51:53.598+11 997034
  2012-10-11-1349931113.86-demo.wav 44027 CanberraBlackMnt 2012-10-11 15:52:00.009+11 514184
  2012-10-11-1349931120.21-demo.wav 44027 CanberraBlackMnt 2012-10-11 15:52:04.628+11 370760
  2012-10-11-1349931125.63-demo.wav 44027 CanberraBlackMnt 2012-10-11 15:52:12.411+11 569086
  2012-10-11-1349931234.39-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:53:58.589+11 352558
  2012-10-11-1349931239.1-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:54:06.224+11 598152
  2012-10-11-1349931247.03-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:54:23.38+11 1372296
  2012-10-11-1349931265.49-demo.wav 40067 CanberraBlackMnt 2012-10-11 15:54:43.312+11 1497224
  2012-10-11-1349931284.95-demo.wav 40067 CanberraBlackMnt 2012-10-11 15:54:47.819+11 241800
  2012-10-11-1349931289.38-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:54:55.284+11 492476
  2012-10-11-1349931295.58-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:54:57.889+11 190600
  2012-10-11-1349931298.33-demo.wav 40067 CanberraMtAinsli 2012-10-11 15:55:00.717+11 200840
  2012-10-11-1349931338.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:55:40.932+11 212674
  2012-10-11-1349931342.59-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-11 15:55:59.553+11 1425544
  2012-10-11-1349931359.74-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-11 15:56:02.84+11 260232
  2012-10-11-1349931363.37-demo.wav 10106 SYD 7 CanberraBlackMnt 2012-10-11 15:56:06.801+11 288904
  2012-10-11-1349931453.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:57:36.784+11 250426
  2012-10-11-1349931457.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:57:40.323+11 270466
  2012-10-11-1349931461.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:57:44.819+11 284808
  2012-10-11-1349931514.52-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:58:38.86+11 363392
  2012-10-11-1349931519.11-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 15:58:41.642+11 213128
  2012-10-11-1349931522.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 15:59:09.288+11 2261128
  2012-10-11-1349931670.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:01:12.929+11 219390
  2012-10-11-1349931674.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:01:17.365+11 233608
  2012-10-11-1349931678.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:01:22.779+11 393352
  2012-10-11-1349931683.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:01:26.621+11 295048
  2012-10-11-1349931687.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:01:31.733+11 396636
  2012-10-11-1349931761.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:02:45.207+11 274220
  2012-10-11-1349931765.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:02:48.65+11 239752
  2012-10-11-1349931769.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:02:56.443+11 618630
  2012-10-11-1349931991.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:06:33.665+11 211206
  2012-10-11-1349931994.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:06:36.582+11 213128
  2012-10-11-1349931996.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:06:47.225+11 878660
  2012-10-11-1349932007.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:06:52.421+11 401544
  2012-10-11-1349932012.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:06:55.042+11 198792
  2012-10-11-1349932015.87-demo.wav 40067 CanberraMtAinsli 2012-10-11 16:07:05.717+11 829576
  2012-10-11-1349932029.14-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 16:07:15.898+11 564828
  2012-10-11-1349932036.09-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 16:07:25.398+11 780296
  2012-10-11-1349932073.36-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 16:08:08.661+11 1286280
  2012-10-11-1349932088.85-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 16:08:13.847+11 419976
  2012-10-11-1349932094.44-demo.wav 10301 CanberraMtAinsli 2012-10-11 16:08:27.61+11 1108104
  2012-10-11-1349932108.27-demo.wav 10301 CanberraMtAinsli 2012-10-11 16:08:32.788+11 379016
  2012-10-11-1349932113.64-demo.wav 10301 CanberraMtAinsli 2012-10-11 16:08:42.715+11 761992
  2012-10-11-1349932123.57-demo.wav 10301 CanberraMtAinsli 2012-10-11 16:08:47.814+11 355554
  2012-10-11-1349932128.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:08:55.892+11 599798
  2012-10-11-1349932136.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:09:03.732+11 634890
  2012-10-11-1349932144.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:09:17.168+11 1048086
  2012-10-11-1349932158.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:09:22.841+11 346248
  2012-10-11-1349932163.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:09:27.758+11 358536
  2012-10-11-1349932168.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:09:38.259+11 843912
  2012-10-11-1349932180.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:09:48.553+11 694408
  2012-10-11-1349932188.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:09:53.954+11 423854
  2012-10-11-1349932203.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:10:18.534+11 1269896
  2012-10-11-1349932220.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:10:23.904+11 323720
  2012-10-11-1349932225.83-demo.wav 40067 CanberraBlackMnt 2012-10-11 16:10:31.095+11 438760
  2012-10-11-1349932282.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:11:25.393+11 281024
  2012-10-11-1349932285.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:11:31.932+11 526472
  2012-10-11-1349932292.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:11:50.983+11 1560708
  2012-10-11-1349932311.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:11:55.777+11 385158
  2012-10-11-1349932351.15-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 16:12:33.67+11 210286
  2012-10-11-1349932469.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:14:32.567+11 251558
  2012-10-11-1349932474.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:14:38.966+11 405640
  2012-10-11-1349932479.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:14:43.416+11 348296
  2012-10-11-1349932484.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:14:50.957+11 583816
  2012-10-11-1349932538.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:15:41.497+11 231610
  2012-10-11-1349932541.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:15:44.74+11 256136
  2012-10-11-1349932545.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:15:49.207+11 352392
  2012-10-11-1349932549.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:15:58.781+11 772232
  2012-10-11-1349932559.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:16:01.338+11 192648
  2012-10-11-1349932561.88-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 16:16:12.311+11 876680
  2012-10-11-1349932573.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:16:21.097+11 632968
  2012-10-11-1349932582.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:16:35.223+11 1043078
  2012-10-11-1349932596.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:16:53.827+11 1447406
  2012-10-11-1349932614.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:16:58.796+11 342152
  2012-10-11-1349932718.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:18:41.388+11 251822
  2012-10-11-1349932722.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:18:47.196+11 376912
  2012-10-11-1349932743.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:19:10.449+11 573576
  2012-10-11-1349932751.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:19:14.667+11 277304
  2012-10-11-1349932926.68-demo.wav 10301 CanberraMtAinsli 2012-10-11 16:22:09.931+11 271262
  2012-10-11-1349932931.15-demo.wav 10301 CanberraMtAinsli 2012-10-11 16:22:15.636+11 374836
  2012-10-11-1349932935.88-demo.wav 10301 CanberraMtAinsli 2012-10-11 16:22:38.91+11 1933266
  2012-10-11-1349933209.28-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-11 16:26:53.552+11 357020
  2012-10-11-1349933213.77-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-11 16:26:56.693+11 243848
  2012-10-11-1349933326.75-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-11 16:29:43.172+11 4739762
  2012-10-11-1349933383.44-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-11 16:30:13.19+11 2498696
  2012-10-11-1349933413.44-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-11 16:30:18.555+11 426120
  2012-10-11-1349933464.35-demo.wav 44028 CanberraBlackMnt 2012-10-11 16:31:06.854+11 210348
  2012-10-11-1349933492.44-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-11 16:31:38.629+11 518280
  2012-10-11-1349933498.9-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-11 16:31:41.672+11 231560
  2012-10-11-1349933501.79-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-11 16:31:47.936+11 518280
  2012-10-11-1349933816.57-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 16:37:00.676+11 343336
  2012-10-11-1349934059.61-demo.wav 44028 CanberraBlackMnt 2012-10-11 16:41:02.651+11 252694
  2012-10-11-1349934063.93-demo.wav 44028 CanberraBlackMnt 2012-10-11 16:41:06.533+11 219272
  2012-10-11-1349934067.43-demo.wav 44028 CanberraBlackMnt 2012-10-11 16:41:12.639+11 434230
  2012-10-11-1349934073.61-demo.wav 44028 CanberraBlackMnt 2012-10-11 16:41:49.563+11 3012744
  2012-10-11-1349934139.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:42:22.615+11 223368
  2012-10-11-1349934142.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:42:27.322+11 372872
  2012-10-11-1349934147.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:42:30.623+11 254088
  2012-10-11-1349934151.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:42:38.709+11 645256
  2012-10-11-1349934159.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:42:43.149+11 340104
  2012-10-11-1349934163.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 16:42:46.08+11 225416
  2012-10-11-1349934758.31-demo.wav 44028 CanberraBlackMnt 2012-10-11 16:52:42.017+11 312218
  2012-10-11-1349934763.44-demo.wav 44028 CanberraBlackMnt 2012-10-11 16:52:48.699+11 439758
  2012-10-11-1349934769.47-demo.wav 44028 CanberraMtAinsli 2012-10-11 16:52:54.933+11 458888
  2012-10-11-1349934775.18-demo.wav 44028 CanberraMtAinsli 2012-10-11 16:52:59.663+11 376968
  2012-10-11-1349934780.46-demo.wav 44028 CanberraBlackMnt 2012-10-11 16:53:08.102+11 640712
  2012-10-11-1349934788.41-demo.wav 44028 CanberraBlackMnt 2012-10-11 16:53:10.723+11 196744
  2012-10-11-1349934791.98-demo.wav 44028 CanberraBlackMnt 2012-10-11 16:53:17.005+11 419976
  2012-10-11-1349934799.13-demo.wav 44028 CanberraBlackMnt 2012-10-11 16:53:21.896+11 229512
  2012-10-11-1349934891.76-demo.wav 44028 CanberraBlackMnt 2012-10-11 16:54:54.957+11 267592
  2012-10-11-1349934895.23-demo.wav 44028 CanberraBlackMnt 2012-10-11 16:54:57.771+11 213128
  2012-10-11-1349934898.03-demo.wav 44028 CanberraBlackMnt 2012-10-11 16:55:01.223+11 268424
  2012-10-11-1349934901.52-demo.wav 44028 CanberraBlackMnt 2012-10-11 16:55:09.869+11 700336
  2012-10-11-1349934918.28-demo.wav 44028 CanberraMtAinsli 2012-10-11 16:55:25.102+11 571528
  2012-10-11-1349934958.93-demo.wav 44028 CanberraMtAinsli 2012-10-11 16:56:01.705+11 233608
  2012-10-11-1349935007.52-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 16:56:51.416+11 325666
  2012-10-11-1349935011.67-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 16:56:56.631+11 415880
  2012-10-11-1349935047.05-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 16:57:31.916+11 406966
  2012-10-11-1349935052.15-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 16:57:36.646+11 376968
  2012-10-11-1349935097.76-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 16:58:21.6+11 319908
  2012-10-11-1349935103.06-demo.wav 44028 CanberraMtAinsli 2012-10-11 16:58:35.729+11 1067144
  2012-10-11-1349935116.21-demo.wav 44028 CanberraMtAinsli 2012-10-11 16:58:44.169+11 667784
  2012-10-11-1349935132.0-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 16:59:04.749+11 1073196
  2012-10-11-1349935144.92-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 16:59:39.586+11 2912212
  2012-10-11-1349935179.76-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 16:59:51.598+11 991368
  2012-10-11-1349935191.84-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 16:59:54.011+11 180322
  2012-10-11-1349935321.54-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:02:04.578+11 255670
  2012-10-11-1349935326.62-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:02:11.081+11 374920
  2012-10-11-1349935351.84-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:02:34.66+11 235656
  2012-10-11-1349935355.16-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:02:59.835+11 2074626
  2012-10-11-1349935380.03-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:03:05.045+11 422024
  2012-10-11-1349935385.89-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:03:13.661+11 653448
  2012-10-11-1349935393.89-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 17:03:23.34+11 792712
  2012-10-11-1349935403.57-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 17:03:27.255+11 309384
  2012-10-11-1349935695.28-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-11 17:08:24.184+11 745932
  2012-10-11-1349935834.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:10:39.168+11 400580
  2012-10-11-1349935840.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:10:44.155+11 315528
  2012-10-11-1349935844.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:11:12.438+11 2355336
  2012-10-11-1349935980.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:13:03.547+11 259646
  2012-10-11-1349935984.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:13:11.778+11 580024
  2012-10-11-1349935992.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:13:16.204+11 350344
  2012-10-11-1349936068.86-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 17:14:32.053+11 267210
  2012-10-11-1349936073.02-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 17:14:44.913+11 996350
  2012-10-11-1349936085.14-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 17:14:54.886+11 819336
  2012-10-11-1349936095.78-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 17:15:04.03+11 691058
  2012-10-11-1349936104.91-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 17:15:12.228+11 614836
  2012-10-11-1349936112.48-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 17:15:18.408+11 495752
  2012-10-11-1349936119.29-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 17:15:38.451+11 1608146
  2012-10-11-1349936138.88-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 17:15:41.066+11 180360
  2012-10-11-1349936141.24-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 17:15:46.336+11 428168
  2012-10-11-1349936153.86-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 17:16:00.976+11 598152
  2012-10-11-1349936182.7-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:16:33.105+11 871998
  2012-10-11-1349936233.97-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:17:20.721+11 565384
  2012-10-11-1349936240.94-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:17:25.852+11 411778
  2012-10-11-1349936261.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:18:00.856+11 1634440
  2012-10-11-1349936282.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:18:06.283+11 299144
  2012-10-11-1349936286.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:18:10.323+11 305288
  2012-10-11-1349936291.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:18:22.981+11 1003656
  2012-10-11-1349936304.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:18:27.039+11 186504
  2012-10-11-1349936309.92-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 17:18:45.629+11 1319048
  2012-10-11-1349936326.98-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:18:54.549+11 637064
  2012-10-11-1349936335.76-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:19:00.894+11 432264
  2012-10-11-1349936343.9-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 17:19:16.59+11 1065078
  2012-10-11-1349936357.56-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 17:19:35.989+11 1171244
  2012-10-11-1349936376.24-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 17:19:39.924+11 309384
  2012-10-11-1349936380.38-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 17:19:50.244+11 825480
  2012-10-11-1349936420.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:20:22.986+11 231588
  2012-10-11-1349936424.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:20:26.626+11 209032
  2012-10-11-1349936426.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:20:30.55+11 311432
  2012-10-11-1349936430.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:20:33.09+11 190578
  2012-10-11-1349936457.52-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 17:21:02.597+11 426120
  2012-10-11-1349936495.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:21:37.747+11 212002
  2012-10-11-1349936498.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:21:42.206+11 325768
  2012-10-11-1349936502.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:21:45.211+11 231560
  2012-10-11-1349936529.69-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:22:22.167+11 1048712
  2012-10-11-1349936543.37-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:22:26.418+11 256136
  2012-10-11-1349936546.69-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:22:29.997+11 278664
  2012-10-11-1349936550.14-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:23:20.94+11 4268168
  2012-10-11-1349936611.37-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:23:35.213+11 321714
  2012-10-11-1349936615.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:23:42.71+11 567432
  2012-10-11-1349936623.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:23:46.795+11 297096
  2012-10-11-1349936630.26-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:24:05.64+11 1296520
  2012-10-11-1349936645.91-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:24:08.197+11 190600
  2012-10-11-1349936648.88-demo.wav 44028 CanberraMtAinsli 2012-10-11 17:24:17.69+11 741512
  2012-10-11-1349936658.56-demo.wav 44028 CanberraMtAinsli 2012-10-11 17:24:21.622+11 258184
  2012-10-11-1349936843.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:27:29.126+11 461824
  2012-10-11-1349936849.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:27:32.957+11 266376
  2012-10-11-1349936853.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:27:39.127+11 495752
  2012-10-11-1349936962.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:29:24.767+11 213518
  2012-10-11-1349936966.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:29:33.153+11 549000
  2012-10-11-1349936973.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:29:37.324+11 325768
  2012-10-11-1349936978.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:29:42.024+11 272520
  2012-10-11-1349936982.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:29:47.998+11 477320
  2012-10-11-1349936989.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:30:37.785+11 4096136
  2012-10-11-1349937038.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:30:46.346+11 618616
  2012-10-11-1349937046.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:30:56.957+11 839816
  2012-10-11-1349937057.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:31:00.364+11 227464
  2012-10-11-1349937062.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:31:06.26+11 321672
  2012-10-11-1349937098.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:31:46.275+11 631074
  2012-10-11-1349937107.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:31:51.516+11 360584
  2012-10-11-1349937162.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:32:59.748+11 1479582
  2012-10-11-1349937179.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:33:02.727+11 233608
  2012-10-11-1349937232.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:33:57.307+11 406282
  2012-10-11-1349937238.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:34:02.816+11 323686
  2012-10-11-1349937258.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:34:32.574+11 1185928
  2012-10-11-1349937273.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:34:38.311+11 397560
  2012-10-11-1349937281.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:34:43.639+11 221320
  2012-10-11-1349937284.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:34:47.937+11 317564
  2012-10-11-1349937288.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:34:51.868+11 315528
  2012-10-11-1349937292.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:35:09.352+11 1435784
  2012-10-11-1349937309.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:35:13.146+11 295048
  2012-10-11-1349937313.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:35:16.626+11 272520
  2012-10-11-1349937356.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:36:00.052+11 268320
  2012-10-11-1349937360.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:36:03.617+11 278664
  2012-10-11-1349937363.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:36:08.753+11 409736
  2012-10-11-1349937369.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:36:14.295+11 395400
  2012-10-11-1349937374.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:36:17.634+11 258120
  2012-10-11-1349937377.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:36:40.711+11 1915016
  2012-10-11-1349937401.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:36:53.423+11 992102
  2012-10-11-1349937413.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:37:34.641+11 3442824
  2012-10-11-1349937454.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:37:39.259+11 362632
  2012-10-11-1349937484.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:38:21.276+11 1427592
  2012-10-11-1349937501.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:38:24.533+11 252040
  2012-10-11-1349937599.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:40:02.981+11 304984
  2012-10-11-1349937604.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:40:08.094+11 330904
  2012-10-11-1349937625.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:40:38.186+11 1052808
  2012-10-11-1349937640.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:41:03.576+11 1978504
  2012-10-11-1349937681.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:41:27.882+11 501896
  2012-10-11-1349937688.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:41:34.402+11 524424
  2012-10-11-1349937694.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:41:43.425+11 737416
  2012-10-11-1349937703.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:42:09.319+11 2146436
  2012-10-11-1349937794.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:43:16.974+11 211352
  2012-10-11-1349937797.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:43:19.799+11 202888
  2012-10-11-1349937800.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:43:24.218+11 327816
  2012-10-11-1349937805.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:43:31.186+11 512136
  2012-10-11-1349938124.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:48:46.827+11 209602
  2012-10-11-1349938127.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:48:49.622+11 198792
  2012-10-11-1349938129.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:48:53.219+11 276616
  2012-10-11-1349938134.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:48:57.694+11 290952
  2012-10-11-1349938138.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:49:28.288+11 2486326
  2012-10-11-1349938200.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:50:04.76+11 391304
  2012-10-11-1349938206.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:50:15.869+11 804484
  2012-10-11-1349938216.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:50:22.118+11 505992
  2012-10-11-1349938329.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:52:12.718+11 277454
  2012-10-11-1349938334.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:52:18.628+11 360584
  2012-10-11-1349938339.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:52:23.903+11 385160
  2012-10-11-1349938344.92-demo.wav 10301 CanberraMtAinsli 2012-10-11 17:52:44.921+11 1677526
  2012-10-11-1349938385.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:53:08.24+11 260232
  2012-10-11-1349938389.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:53:12.657+11 255634
  2012-10-11-1349938392.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:53:17.276+11 360584
  2012-10-11-1349938398.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:53:22.407+11 366728
  2012-10-11-1349938403.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:53:32.786+11 795630
  2012-10-11-1349938415.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:54:08.371+11 2719880
  2012-10-11-1349938448.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:54:10.854+11 188448
  2012-10-11-1349938451.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:54:15.085+11 317544
  2012-10-11-1349938455.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:54:19.747+11 331912
  2012-10-11-1349938460.05-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:54:41.212+11 1777800
  2012-10-11-1349938483.9-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:54:50.644+11 567432
  2012-10-11-1349938531.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:55:34.913+11 256136
  2012-10-11-1349938536.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:55:38.404+11 196744
  2012-10-11-1349938540.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 17:55:44.172+11 346248
  2012-10-11-1349938581.62-demo.wav 44028 CanberraMtAinsli 2012-10-11 17:56:27.438+11 488920
  2012-10-11-1349938588.3-demo.wav 44028 CanberraMtAinsli 2012-10-11 17:56:34.311+11 505992
  2012-10-11-1349938595.78-demo.wav 44028 CanberraMtAinsli 2012-10-11 17:56:45.099+11 783420
  2012-10-11-1349938606.15-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:56:52.532+11 536792
  2012-10-11-1349938612.83-demo.wav 44028 CanberraBlackMnt 2012-10-11 17:56:56.575+11 313480
  2012-10-11-1349939073.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:04:36.326+11 230368
  2012-10-11-1349939077.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:04:39.593+11 217224
  2012-10-11-1349939079.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:04:44.691+11 401526
  2012-10-11-1349939128.05-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:05:30.918+11 239752
  2012-10-11-1349939132.14-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:05:34.706+11 213128
  2012-10-11-1349939194.37-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 18:06:36.861+11 209032
  2012-10-11-1349939231.07-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:07:14.582+11 295008
  2012-10-11-1349939237.03-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:07:31.653+11 1228936
  2012-10-11-1349939279.87-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:08:02.389+11 210380
  2012-10-11-1349939283.44-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:08:07.2+11 313908
  2012-10-11-1349939287.81-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:08:15.097+11 612488
  2012-10-11-1349939303.52-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:08:26.461+11 247908
  2012-10-11-1349939344.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:09:07.864+11 290092
  2012-10-11-1349939348.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:09:12.243+11 346248
  2012-10-11-1349939352.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:09:15.979+11 286856
  2012-10-11-1349939562.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:12:46.497+11 372082
  2012-10-11-1349939566.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:12:49.268+11 213128
  2012-10-11-1349939569.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:12:57.37+11 659010
  2012-10-11-1349939727.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:15:31.229+11 341088
  2012-10-11-1349939731.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:15:35.668+11 333960
  2012-10-11-1349939735.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:15:42.39+11 544904
  2012-10-11-1349939742.87-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:15:51.116+11 692360
  2012-10-11-1349939751.38-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:15:54.265+11 243848
  2012-10-11-1349939754.94-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:15:58.021+11 258184
  2012-10-11-1349939758.77-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:16:05.661+11 579720
  2012-10-11-1349939766.59-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:16:13.54+11 581768
  2012-10-11-1349939773.74-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:16:16.561+11 237704
  2012-10-11-1349939867.26-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:17:49.893+11 220008
  2012-10-11-1349939871.02-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:18:02.983+11 1001496
  2012-10-11-1349939883.25-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:18:05.907+11 219272
  2012-10-11-1349939886.14-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:18:10.079+11 329864
  2012-10-11-1349939890.34-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:18:13.179+11 239752
  2012-10-11-1349939893.44-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:18:51.558+11 3205256
  2012-10-11-1349939986.92-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:19:50.058+11 263356
  2012-10-11-1349939991.58-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:19:58.817+11 606406
  2012-10-11-1349939998.97-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:20:02.956+11 331912
  2012-10-11-1349940003.22-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:20:06.248+11 254088
  2012-10-11-1349940006.52-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:20:10.292+11 317576
  2012-10-11-1349940011.11-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:20:15.534+11 372744
  2012-10-11-1349940043.81-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:20:51.481+11 635898
  2012-10-11-1349940051.84-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:20:55.189+11 280712
  2012-10-11-1349940084.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:21:30.573+11 487560
  2012-10-11-1349940090.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:21:33.825+11 256064
  2012-10-11-1349940123.56-demo.wav 44028 CanberraMtAinsli 2012-10-11 18:22:06.542+11 249702
  2012-10-11-1349940127.09-demo.wav 44028 CanberraMtAinsli 2012-10-11 18:22:09.93+11 239752
  2012-10-11-1349940130.51-demo.wav 44028 CanberraMtAinsli 2012-10-11 18:22:16.531+11 505976
  2012-10-11-1349940161.53-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 18:22:49.28+11 649352
  2012-10-11-1349940260.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:24:24.065+11 336564
  2012-10-11-1349940265.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:24:30.824+11 454792
  2012-10-11-1349940271.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:24:35.404+11 343534
  2012-10-11-1349940379.0-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:26:21.556+11 214884
  2012-10-11-1349940382.92-demo.wav 44028 CanberraMtAinsli 2012-10-11 18:26:31.85+11 743996
  2012-10-11-1349940392.19-demo.wav 44028 CanberraMtAinsli 2012-10-11 18:26:37.763+11 467080
  2012-10-11-1349940398.43-demo.wav 44028 CanberraMtAinsli 2012-10-11 18:26:42.702+11 356488
  2012-10-11-1349940403.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:26:55.944+11 1034366
  2012-10-11-1349940417.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:27:01.248+11 313480
  2012-10-11-1349940438.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:27:26.598+11 714888
  2012-10-11-1349940447.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:27:48.938+11 1775752
  2012-10-11-1349940469.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:27:52.525+11 280712
  2012-10-11-1349940498.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:28:23.802+11 413814
  2012-10-11-1349940505.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:28:30.139+11 409694
  2012-10-11-1349941079.17-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-11 18:38:03.07+11 328728
  2012-10-11-1349941092.91-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-11 18:38:19.755+11 569204
  2012-10-11-1349941100.86-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-11 18:38:26.403+11 462984
  2012-10-11-1349941107.36-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-11 18:38:32.604+11 436748
  2012-10-11-1349941113.96-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-11 18:38:36.388+11 202888
  2012-10-11-1349941140.57-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-11 18:39:02.761+11 180360
  2012-10-11-1349941142.95-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-11 18:39:07.02+11 340104
  2012-10-11-1349941147.64-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-11 18:39:11.191+11 299144
  2012-10-11-1349941174.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:39:38.025+11 323720
  2012-10-11-1349941240.43-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-11 18:40:49.748+11 777126
  2012-10-11-1349941423.95-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 18:43:50.521+11 550588
  2012-10-11-1349941431.22-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 18:43:56.123+11 411758
  2012-10-11-1349941563.14-demo.wav 44028 CanberraBlackMnt 2012-10-11 18:46:05.68+11 212178
  2012-10-11-1349941718.33-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-11 18:48:45.085+11 559810
  2012-10-11-1349941725.7-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-11 18:48:51.215+11 462984
  2012-10-11-1349941802.78-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-11 18:50:10.02+11 604452
  2012-10-11-1349941869.72-demo.wav 44028 CanberraMtAinsli 2012-10-11 18:51:13.414+11 305530
  2012-10-11-1349941873.67-demo.wav 44028 CanberraMtAinsli 2012-10-11 18:51:16.083+11 202888
  2012-10-11-1349941876.27-demo.wav 44028 CanberraMtAinsli 2012-10-11 18:51:25.032+11 737386
  2012-10-11-1349941885.41-demo.wav 44028 CanberraMtAinsli 2012-10-11 18:51:32.432+11 589960
  2012-10-11-1349941893.41-demo.wav 44028 CanberraMtAinsli 2012-10-11 18:51:36.268+11 239752
  2012-10-11-1349941897.39-demo.wav 44028 CanberraMtAinsli 2012-10-11 18:51:40.599+11 270472
  2012-10-11-1349941983.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 18:53:05.716+11 210324
  2012-10-11-1349942448.99-demo.wav 44028 CanberraBlackMnt 2012-10-11 19:00:51.819+11 236056
  2012-10-11-1349942452.24-demo.wav 44028 CanberraBlackMnt 2012-10-11 19:00:54.744+11 209032
  2012-10-11-1349942454.96-demo.wav 44028 CanberraBlackMnt 2012-10-11 19:01:01.169+11 522376
  2012-10-11-1349942633.77-demo.wav 44028 CanberraMtAinsli 2012-10-11 19:03:57.385+11 299778
  2012-10-11-1349942639.7-demo.wav 44028 CanberraBlackMnt 2012-10-11 19:04:05.888+11 522376
  2012-10-11-1349942647.09-demo.wav 44028 CanberraBlackMnt 2012-10-11 19:04:10.107+11 252040
  2012-10-11-1349943333.36-demo.wav 44028 CanberraBlackMnt 2012-10-11 19:15:36.89+11 295636
  2012-10-11-1349943338.25-demo.wav 44028 CanberraBlackMnt 2012-10-11 19:15:40.902+11 225416
  2012-10-11-1349943360.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:16:17.872+11 1462408
  2012-10-11-1349943378.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:16:24.374+11 526472
  2012-10-11-1349943384.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:16:26.737+11 180360
  2012-10-11-1349943437.57-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-11 19:17:22.114+11 377338
  2012-10-11-1349943637.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:20:41.044+11 296998
  2012-10-11-1349943641.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:20:44.32+11 237704
  2012-10-11-1349943945.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:25:50.439+11 369796
  2012-10-11-1349943950.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:25:53.203+11 215176
  2012-10-11-1349944076.64-demo.wav 44028 CanberraBlackMnt 2012-10-11 19:28:00.516+11 324644
  2012-10-11-1349944080.96-demo.wav 44028 CanberraBlackMnt 2012-10-11 19:28:03.679+11 227464
  2012-10-11-1349944083.93-demo.wav 44028 CanberraBlackMnt 2012-10-11 19:28:07.276+11 276616
  2012-10-11-1349944087.53-demo.wav 44028 CanberraBlackMnt 2012-10-11 19:28:10.425+11 241800
  2012-10-11-1349944090.9-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-11 19:28:40.165+11 2455688
  2012-10-11-1349944122.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:30:00.97+11 6551688
  2012-10-11-1349944201.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:30:04.522+11 284808
  2012-10-11-1349944240.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:30:44.119+11 265434
  2012-10-11-1349944249.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:30:52.335+11 264328
  2012-10-11-1349944331.65-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-11 19:32:15.365+11 310164
  2012-10-11-1349944387.55-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-11 19:33:11.613+11 340092
  2012-10-11-1349944431.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:33:57.998+11 509716
  2012-10-11-1349944438.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:34:01.238+11 252024
  2012-10-11-1349944466.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:34:30.031+11 282760
  2012-10-11-1349944471.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:34:33.883+11 209032
  2012-10-11-1349944503.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:35:12.308+11 735368
  2012-10-11-1349944512.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:35:14.992+11 200840
  2012-10-11-1349944706.79-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-11 19:38:30.497+11 307852
  2012-10-11-1349944711.49-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-11 19:38:38.08+11 553096
  2012-10-11-1349944719.12-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-11 19:38:43.552+11 365688
  2012-10-11-1349944725.4-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-11 19:38:48.468+11 256136
  2012-10-11-1349944736.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:39:01.517+11 457744
  2012-10-11-1349944800.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:40:03.228+11 221338
  2012-10-11-1349944803.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:40:06.463+11 249992
  2012-10-11-1349944844.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:40:47.346+11 255984
  2012-10-11-1349944850.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:40:54.399+11 303240
  2012-10-11-1349944996.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:43:19.949+11 295826
  2012-10-11-1349945147.7-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 19:45:52.06+11 365000
  2012-10-11-1349945153.9-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-11 19:45:58.095+11 350838
  2012-10-11-1349945196.68-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 19:46:41.147+11 374896
  2012-10-11-1349945316.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 19:48:39.524+11 288188
  2012-10-11-1349945342.37-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 19:49:13.679+11 950408
  2012-10-11-1349945354.12-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 19:49:17.978+11 321672
  2012-10-11-1349946603.28-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-11 20:10:05.774+11 210248
  2012-10-11-1349947061.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:17:45.288+11 304890
  2012-10-11-1349947066.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:17:48.871+11 235656
  2012-10-11-1349947162.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:19:26.627+11 360554
  2012-10-11-1349947167.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:19:30.522+11 254088
  2012-10-11-1349947184.77-demo.wav 44028 CanberraBlackMnt 2012-10-11 20:19:50.134+11 450696
  2012-10-11-1349947190.9-demo.wav 44028 CanberraBlackMnt 2012-10-11 20:19:53.457+11 211080
  2012-10-11-1349947552.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:25:56.314+11 347684
  2012-10-11-1349947558.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:26:02.721+11 342152
  2012-10-11-1349947563.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:26:08.531+11 388442
  2012-10-11-1349947569.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:26:22.256+11 1097864
  2012-10-11-1349947584.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:26:34.634+11 848008
  2012-10-11-1349947647.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:27:30.487+11 223722
  2012-10-11-1349947651.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:27:35.194+11 284808
  2012-10-11-1349947655.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:27:38.598+11 245896
  2012-10-11-1349947742.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:29:04.565+11 211824
  2012-10-11-1349947748.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:29:10.607+11 217224
  2012-10-11-1349947770.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:29:32.882+11 235656
  2012-10-11-1349947774.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:29:37.053+11 202888
  2012-10-11-1349947854.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:30:57.8+11 269894
  2012-10-11-1349947859.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:31:01.891+11 211080
  2012-10-11-1349947862.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:31:05.415+11 280712
  2012-10-11-1349948105.07-demo.wav 44028 CanberraBlackMnt 2012-10-11 20:35:08.106+11 255618
  2012-10-11-1349948110.22-demo.wav 44028 CanberraBlackMnt 2012-10-11 20:35:21.709+11 964744
  2012-10-11-1349948121.93-demo.wav 44028 CanberraBlackMnt 2012-10-11 20:35:27.575+11 473224
  2012-10-11-1349948371.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:39:33.945+11 210400
  2012-10-11-1349948423.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:40:25.86+11 211052
  2012-10-11-1349948429.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:40:40.048+11 865478
  2012-10-11-1349948440.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:40:43.702+11 295048
  2012-10-11-1349948444.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:40:47.736+11 293000
  2012-10-11-1349948551.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:42:35.567+11 308862
  2012-10-11-1349948556.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:42:39.352+11 227464
  2012-10-11-1349948623.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:43:45.813+11 207074
  2012-10-11-1349948992.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:49:55.285+11 245112
  2012-10-11-1349948995.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:50:47.302+11 4345986
  2012-10-11-1349949441.92-demo.wav 44028 CanberraBlackMnt 2012-10-11 20:57:24.578+11 222794
  2012-10-11-1349949446.98-demo.wav 44028 CanberraBlackMnt 2012-10-11 20:57:33.464+11 542856
  2012-10-11-1349949454.47-demo.wav 44028 CanberraBlackMnt 2012-10-11 20:57:38.77+11 360296
  2012-10-11-1349949459.95-demo.wav 44028 CanberraBlackMnt 2012-10-11 20:57:46.874+11 579540
  2012-10-11-1349949467.14-demo.wav 44028 CanberraBlackMnt 2012-10-11 20:57:52.228+11 428168
  2012-10-11-1349949499.85-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:58:22.693+11 237704
  2012-10-11-1349949504.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:58:41.843+11 1491038
  2012-10-11-1349949566.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 20:59:30.144+11 280478
  2012-10-11-1349949731.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 21:02:15.496+11 355082
  2012-10-11-1349949735.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 21:02:18.243+11 209032
  2012-10-11-1349949792.7-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-11 21:03:18.401+11 479086
  2012-10-11-1349949819.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 21:03:43.486+11 295048
  2012-10-11-1349949825.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 21:03:49.12+11 268424
  2012-10-11-1349949829.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 21:03:54.048+11 381064
  2012-10-11-1349949835.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 21:03:59.832+11 397332
  2012-10-11-1349949891.85-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-11 21:04:57.329+11 460828
  2012-10-11-1349949908.16-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-11 21:05:17.675+11 794684
  2012-10-11-1349949918.82-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-11 21:05:22.395+11 301192
  2012-10-11-1349949976.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 21:06:19.186+11 210780
  2012-10-11-1349949981.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 21:06:25.972+11 409736
  2012-10-11-1349949986.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 21:06:31.337+11 428122
  2012-10-11-1349950007.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-11 21:06:52.482+11 383112
  2012-10-11-1349950067.68-demo.wav 44028 CanberraBlackMnt 2012-10-11 21:07:50.247+11 216194
  2012-10-11-1349950071.56-demo.wav 44028 CanberraBlackMnt 2012-10-11 21:07:59.071+11 628778
  2012-10-11-1349950079.69-demo.wav 44028 CanberraBlackMnt 2012-10-11 21:08:06.663+11 585864
  2012-10-11-1349950086.79-demo.wav 44028 CanberraBlackMnt 2012-10-11 21:08:09.876+11 258178
  2012-10-11-1349950090.24-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-11 21:08:26.363+11 1351816
  2012-10-11-1349950133.2-demo.wav 44028 CanberraBlackMnt 2012-10-11 21:08:57.465+11 358536
  2012-10-11-1349950139.54-demo.wav 44028 CanberraBlackMnt 2012-10-11 21:09:02.74+11 266376
  2012-10-11-1349950196.5-demo.wav 44028 CanberraBlackMnt 2012-10-11 21:10:00.874+11 364298
  2012-10-11-1349950201.92-demo.wav 44028 CanberraBlackMnt 2012-10-11 21:10:05.476+11 301192
  2012-10-11-1349950205.72-demo.wav 44028 CanberraBlackMnt 2012-10-11 21:10:27.918+11 1863816
  2012-10-12-1350001603.48-demo.wav 40067 CanberraBlackMnt 2012-10-12 11:26:46+11 208862
  2012-10-12-1350001629.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 11:27:12.338+11 209844
  2012-10-12-1350001633.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 11:27:17.034+11 293238
  2012-10-12-1350001637.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 11:27:23.118+11 499848
  2012-10-12-1350001790.54-demo.wav 40067 CanberraBlackMnt 2012-10-12 11:29:53.509+11 248378
  2012-10-12-1350001858.18-demo.wav 40067 CanberraMtAinsli 2012-10-12 11:31:00.709+11 209200
  2012-10-12-1350001941.43-demo.wav 40067 CanberraBlackMnt 2012-10-12 11:32:24.278+11 239202
  2012-10-12-1350001945.62-demo.wav 40067 CanberraBlackMnt 2012-10-12 11:32:28.671+11 251616
  2012-10-12-1350002030.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 11:33:53.115+11 259414
  2012-10-12-1350002033.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 11:33:56.855+11 282760
  2012-10-12-1350002037.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 11:34:19.674+11 1886344
  2012-10-12-1350002102.47-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-12 11:35:06.906+11 372108
  2012-10-12-1350002133.88-demo.wav 40067 CanberraMtAinsli 2012-10-12 11:35:37.801+11 329008
  2012-10-12-1350002139.31-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-12 11:35:47.287+11 669832
  2012-10-12-1350002183.84-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 11:36:26.299+11 209032
  2012-10-12-1350002187.39-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 11:36:32.494+11 420736
  2012-10-12-1350002192.83-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-12 11:37:38.863+11 5544072
  2012-10-12-1350002259.17-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-12 11:37:41.387+11 188552
  2012-10-12-1350002314.42-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-12 11:38:36.995+11 210378
  2012-10-12-1350002377.18-demo.wav 40067 CanberraBlackMnt 2012-10-12 11:39:41.013+11 323332
  2012-10-12-1350002471.86-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-12 11:41:18.462+11 554336
  2012-10-12-1350002606.55-demo.wav 40067 CanberraBlackMnt 2012-10-12 11:43:29.064+11 208782
  2012-10-12-1350002813.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 11:46:56.101+11 225978
  2012-10-12-1350002817.13-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-12 11:47:08.501+11 948764
  2012-10-12-1350002829.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 11:47:26.526+11 1427088
  2012-10-12-1350002847.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 11:47:32.724+11 441854
  2012-10-12-1350002854.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 11:47:40.282+11 513822
  2012-10-12-1350002861.19-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-12 11:47:50.348+11 765574
  2012-10-12-1350002870.78-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-12 11:47:54.525+11 313398
  2012-10-12-1350002901.2-demo.wav 44028 CanberraBlackMnt 2012-10-12 11:48:24.078+11 237950
  2012-10-12-1350002904.27-demo.wav 44028 CanberraBlackMnt 2012-10-12 11:48:28.105+11 321672
  2012-10-12-1350002910.45-demo.wav 44028 CanberraBlackMnt 2012-10-12 11:48:34.961+11 379016
  2012-10-12-1350002915.23-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-12 11:48:59.082+11 2003080
  2012-10-12-1350002939.38-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-12 11:49:04.676+11 444546
  2012-10-12-1350002985.98-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-12 11:49:50.324+11 363774
  2012-10-12-1350002992.23-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-12 11:49:57.691+11 456290
  2012-10-12-1350002998.49-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-12 11:50:03.541+11 424072
  2012-10-12-1350003009.83-demo.wav 40083 SES Ops 6 CanberraMtAinsli 2012-10-12 11:50:26.526+11 1405052
  2012-10-12-1350003027.34-demo.wav 40083 SES Ops 6 CanberraMtAinsli 2012-10-12 11:50:58.83+11 2644104
  2012-10-12-1350003311.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 11:55:16.279+11 407720
  2012-10-12-1350003316.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 11:55:20.37+11 311432
  2012-10-12-1350003320.67-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-12 11:55:52.283+11 2652296
  2012-10-12-1350003353.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 11:55:59.733+11 534626
  2012-10-12-1350003361.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 11:56:05.591+11 368776
  2012-10-12-1350003366.53-demo.wav 40067 CanberraBlackMnt 2012-10-12 11:56:14.393+11 663688
  2012-10-12-1350003376.05-demo.wav 40067 CanberraBlackMnt 2012-10-12 11:56:20.781+11 399496
  2012-10-12-1350003381.63-demo.wav 40067 CanberraBlackMnt 2012-10-12 11:56:24.646+11 255966
  2012-10-12-1350003385.26-demo.wav 40067 CanberraBlackMnt 2012-10-12 11:56:58.303+11 2771072
  2012-10-12-1350003419.17-demo.wav 40067 CanberraBlackMnt 2012-10-12 11:57:01.77+11 220538
  2012-10-12-1350003422.64-demo.wav 40067 CanberraBlackMnt 2012-10-12 11:57:09.885+11 609764
  2012-10-12-1350003884.8-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:04:47.773+11 249644
  2012-10-12-1350003950.57-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:05:54.72+11 346642
  2012-10-12-1350003955.31-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:06:00.985+11 475272
  2012-10-12-1350003963.39-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:06:06.659+11 274568
  2012-10-12-1350003967.09-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:06:13.275+11 520328
  2012-10-12-1350003974.21-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:06:21.219+11 589034
  2012-10-12-1350003981.71-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:06:28.988+11 610440
  2012-10-12-1350003989.26-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:06:31.895+11 217224
  2012-10-12-1350003992.46-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:06:35.827+11 282746
  2012-10-12-1350004056.08-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 12:07:39.799+11 311570
  2012-10-12-1350004061.42-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 12:07:53.101+11 974146
  2012-10-12-1350004073.32-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 12:07:57.983+11 389256
  2012-10-12-1350004088.31-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 12:08:13.897+11 469128
  2012-10-12-1350004175.23-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 12:09:37.962+11 225628
  2012-10-12-1350004178.33-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 12:09:40.838+11 211080
  2012-10-12-1350004181.13-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 12:09:51.119+11 839292
  2012-10-12-1350004247.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:10:51.086+11 344098
  2012-10-12-1350004253.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:11:07.419+11 1185838
  2012-10-12-1350004292.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:11:35.011+11 235656
  2012-10-12-1350004295.95-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-12 12:11:40.813+11 407814
  2012-10-12-1350004301.78-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:11:58.043+11 1366006
  2012-10-12-1350004318.32-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:12:00.759+11 209032
  2012-10-12-1350004343.77-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:12:28.663+11 411272
  2012-10-12-1350004348.83-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:12:31.156+11 198792
  2012-10-12-1350004428.28-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:13:55.179+11 578770
  2012-10-12-1350004435.33-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:14:00.565+11 440432
  2012-10-12-1350004442.38-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:14:14.678+11 1030872
  2012-10-12-1350004454.96-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:14:18.082+11 262280
  2012-10-12-1350004458.74-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:14:26.104+11 618632
  2012-10-12-1350004467.58-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:14:30.308+11 231560
  2012-10-12-1350004472.07-demo.wav 44028 CanberraBlackMnt 2012-10-12 12:14:37.596+11 465032
  2012-10-12-1350004478.68-demo.wav 44028 CanberraBlackMnt 2012-10-12 12:14:41.638+11 247944
  2012-10-12-1350004521.92-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:15:24.872+11 247944
  2012-10-12-1350004526.31-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:15:42.151+11 1329288
  2012-10-12-1350004542.36-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:15:48.16+11 483404
  2012-10-12-1350004549.76-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:15:54.537+11 401414
  2012-10-12-1350004684.22-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:18:07.393+11 265400
  2012-10-12-1350004689.16-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:18:18.261+11 768136
  2012-10-12-1350004699.36-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:18:25.004+11 473224
  2012-10-12-1350004755.17-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:19:18.822+11 307336
  2012-10-12-1350004760.18-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:19:29.354+11 769124
  2012-10-12-1350004769.62-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:19:32.12+11 211080
  2012-10-12-1350004773.18-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:20:14.043+11 3432232
  2012-10-12-1350004922.22-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:22:04.78+11 214458
  2012-10-12-1350004928.13-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:22:10.901+11 229512
  2012-10-12-1350004931.17-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:22:17.63+11 540808
  2012-10-12-1350004964.82-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:22:47.423+11 213324
  2012-10-12-1350005001.05-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:23:23.574+11 211892
  2012-10-12-1350005003.96-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:23:28.031+11 340104
  2012-10-12-1350005012.37-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:23:34.967+11 213128
  2012-10-12-1350005118.04-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:25:22.666+11 388050
  2012-10-12-1350005124.06-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:25:32.511+11 710792
  2012-10-12-1350005132.8-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:25:43.987+11 940168
  2012-10-12-1350005144.79-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:25:53.24+11 704624
  2012-10-12-1350005154.87-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:25:58.195+11 278662
  2012-10-12-1350005160.19-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:26:03.726+11 298858
  2012-10-12-1350005163.87-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:26:06.442+11 219268
  2012-10-12-1350005268.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:27:51.005+11 212676
  2012-10-12-1350005273.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:28:03.271+11 848008
  2012-10-12-1350005283.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:28:11.371+11 641160
  2012-10-12-1350005337.27-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:29:00.871+11 302512
  2012-10-12-1350005344.35-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:29:20.69+11 1371874
  2012-10-12-1350005360.99-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:29:25.102+11 346248
  2012-10-12-1350005365.3-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:29:31.653+11 534664
  2012-10-12-1350005371.9-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:29:52.622+11 1738888
  2012-10-12-1350005461.61-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-12 12:31:08.819+11 604846
  2012-10-12-1350005591.37-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:33:16.83+11 457522
  2012-10-12-1350005598.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:33:26.076+11 653448
  2012-10-12-1350005606.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:33:31.429+11 405640
  2012-10-12-1350005612.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:33:37.573+11 462984
  2012-10-12-1350005618.25-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:33:44.317+11 508026
  2012-10-12-1350005624.72-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:33:48.152+11 288904
  2012-10-12-1350005629.32-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:33:54.721+11 451162
  2012-10-12-1350005634.92-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:33:57.182+11 192642
  2012-10-12-1350005637.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:34:05.827+11 684168
  2012-10-12-1350005647.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:34:11.868+11 340104
  2012-10-12-1350005652.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:34:17.122+11 415880
  2012-10-12-1350005658.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:34:22.486+11 370824
  2012-10-12-1350005663.88-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:34:38.355+11 1216648
  2012-10-12-1350005678.58-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:34:41.168+11 217224
  2012-10-12-1350005681.36-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:34:46.537+11 436360
  2012-10-12-1350005686.71-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:34:52.594+11 488924
  2012-10-12-1350005692.82-demo.wav 44028 CanberraBlackMnt 2012-10-12 12:35:09.264+11 1382508
  2012-10-12-1350005709.58-demo.wav 44028 CanberraBlackMnt 2012-10-12 12:35:11.98+11 204936
  2012-10-12-1350005713.04-demo.wav 44028 CanberraBlackMnt 2012-10-12 12:35:16.551+11 295048
  2012-10-12-1350005717.44-demo.wav 44028 CanberraBlackMnt 2012-10-12 12:35:20.547+11 258122
  2012-10-12-1350005729.68-demo.wav 44028 CanberraBlackMnt 2012-10-12 12:35:46.327+11 1398920
  2012-10-12-1350005746.54-demo.wav 44028 CanberraBlackMnt 2012-10-12 12:35:49.283+11 231560
  2012-10-12-1350005751.33-demo.wav 44028 CanberraBlackMnt 2012-10-12 12:35:54.077+11 231560
  2012-10-12-1350005799.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:36:43.36+11 310760
  2012-10-12-1350005803.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:36:46.539+11 235656
  2012-10-12-1350005910.5-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:38:34.7+11 349804
  2012-10-12-1350005916.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:38:43.522+11 554948
  2012-10-12-1350005927.48-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:39:05.612+11 1521800
  2012-10-12-1350005948.06-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:39:18.078+11 839816
  2012-10-12-1350005959.37-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:39:25.285+11 495752
  2012-10-12-1350005985.1-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:39:47.965+11 239752
  2012-10-12-1350005988.25-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:39:51.559+11 274410
  2012-10-12-1350005992.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:40:00.831+11 727128
  2012-10-12-1350006069.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:41:12.365+11 211478
  2012-10-12-1350006075.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:41:22.185+11 555144
  2012-10-12-1350006082.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:41:27.418+11 376968
  2012-10-12-1350006088.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:41:33.372+11 391304
  2012-10-12-1350006094.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:41:38.867+11 350342
  2012-10-12-1350006130.67-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-12 12:42:14.794+11 346248
  2012-10-12-1350006136.33-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-12 12:42:19.795+11 290952
  2012-10-12-1350006240.76-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:44:06.213+11 457882
  2012-10-12-1350006496.45-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:48:18.976+11 210488
  2012-10-12-1350006535.4-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:49:00.391+11 420346
  2012-10-12-1350006542.33-demo.wav 40067 CanberraBlackMnt 2012-10-12 12:49:21.28+11 1593476
  2012-10-12-1350006561.62-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:49:32.996+11 954504
  2012-10-12-1350006573.3-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:49:36.64+11 280712
  2012-10-12-1350006578.24-demo.wav 40067 CanberraMtAinsli 2012-10-12 12:49:40.906+11 225344
  2012-10-12-1350006581.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:49:51.988+11 915592
  2012-10-12-1350006592.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:49:55.31+11 260232
  2012-10-12-1350006595.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:50:02.643+11 573576
  2012-10-12-1350006604.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:50:09.471+11 385066
  2012-10-12-1350006609.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:50:12.128+11 186448
  2012-10-12-1350006632.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:50:50.389+11 1538184
  2012-10-12-1350006651.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:50:54.814+11 282660
  2012-10-12-1350006655.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:50:58.104+11 254088
  2012-10-12-1350006658.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:51:06.423+11 649352
  2012-10-12-1350006667.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:51:14.332+11 546892
  2012-10-12-1350006674.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:51:18.447+11 309382
  2012-10-12-1350006678.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:52:05.028+11 3868808
  2012-10-12-1350006726.92-demo.wav 44028 CanberraMtAinsli 2012-10-12 12:52:14.026+11 596104
  2012-10-12-1350006737.09-demo.wav 44028 CanberraBlackMnt 2012-10-12 12:52:32.293+11 1280136
  2012-10-12-1350006754.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:52:47.542+11 1085024
  2012-10-12-1350006767.78-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:52:50.234+11 206984
  2012-10-12-1350006771.93-demo.wav 44028 CanberraBlackMnt 2012-10-12 12:53:03.145+11 946312
  2012-10-12-1350006812.17-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-12 12:53:37.195+11 419976
  2012-10-12-1350006817.6-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-12 12:53:40.541+11 245896
  2012-10-12-1350006889.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:54:53.086+11 278904
  2012-10-12-1350006894.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:55:01.019+11 520328
  2012-10-12-1350006901.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:55:05.393+11 346246
  2012-10-12-1350006906.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:55:23.364+11 1434470
  2012-10-12-1350006923.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:56:01.547+11 3190920
  2012-10-12-1350006986.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:56:30.3+11 302784
  2012-10-12-1350006992.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:56:35.589+11 260232
  2012-10-12-1350006997.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:56:40.776+11 284796
  2012-10-12-1350007002.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:56:46.542+11 376854
  2012-10-12-1350007007.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:56:52.406+11 413832
  2012-10-12-1350007013.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:56:55.569+11 186504
  2012-10-12-1350007039.84-demo.wav 44028 CanberraBlackMnt 2012-10-12 12:57:25.951+11 514184
  2012-10-12-1350007046.21-demo.wav 44028 CanberraBlackMnt 2012-10-12 12:57:28.764+11 215176
  2012-10-12-1350007049.32-demo.wav 44028 CanberraBlackMnt 2012-10-12 12:57:33.894+11 385114
  2012-10-12-1350007054.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:58:15.239+11 3457160
  2012-10-12-1350007104.13-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:58:33.376+11 778376
  2012-10-12-1350007113.66-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-12 12:59:00.337+11 2240648
  2012-10-12-1350007141.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:59:07.285+11 504198
  2012-10-12-1350007149.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:59:15.036+11 483464
  2012-10-12-1350007156.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:59:20.786+11 391304
  2012-10-12-1350007161.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:59:26.465+11 458882
  2012-10-12-1350007171.19-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:59:40.511+11 779338
  2012-10-12-1350007181.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:59:43.596+11 202888
  2012-10-12-1350007183.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 12:59:47.11+11 276616
  2012-10-12-1350007266.07-demo.wav 10301 CanberraMtAinsli 2012-10-12 13:01:10.546+11 376650
  2012-10-12-1350007271.44-demo.wav 10301 CanberraMtAinsli 2012-10-12 13:01:14.412+11 247944
  2012-10-12-1350007275.04-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-12 13:01:23.119+11 671880
  2012-10-12-1350007306.58-demo.wav 44028 CanberraMtAinsli 2012-10-12 13:01:49.441+11 237704
  2012-10-12-1350007309.77-demo.wav 44028 CanberraMtAinsli 2012-10-12 13:01:52.59+11 233608
  2012-10-12-1350007424.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:03:48.296+11 325162
  2012-10-12-1350007430.39-demo.wav 10301 CanberraMtAinsli 2012-10-12 13:04:20.775+11 2551944
  2012-10-12-1350007461.78-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:04:28.959+11 601814
  2012-10-12-1350007469.45-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:04:31.884+11 204936
  2012-10-12-1350007486.88-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:04:51.255+11 366728
  2012-10-12-1350007492.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:05:23.029+11 2584650
  2012-10-12-1350007524.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:05:33.498+11 739464
  2012-10-12-1350007534.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:05:41.216+11 587912
  2012-10-12-1350007611.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:06:56.687+11 441092
  2012-10-12-1350007617.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:07:00.609+11 299144
  2012-10-12-1350007681.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:08:14.222+11 1042568
  2012-10-12-1350007696.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:08:18.533+11 202888
  2012-10-12-1350007699.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:08:54.618+11 2988168
  2012-10-12-1350007734.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:08:58.987+11 354132
  2012-10-12-1350007778.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:09:41.318+11 215782
  2012-10-12-1350007879.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:11:22.877+11 260144
  2012-10-12-1350007883.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:11:27.421+11 336008
  2012-10-12-1350007913.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:12:00.76+11 632968
  2012-10-12-1350007921.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:12:08.415+11 581680
  2012-10-12-1350007928.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:12:22.863+11 1194120
  2012-10-12-1350007971.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:13:16.996+11 2164830
  2012-10-12-1350007997.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:13:24.713+11 566258
  2012-10-12-1350008004.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:13:28.588+11 307336
  2012-10-12-1350008008.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:13:32.949+11 350344
  2012-10-12-1350008013.86-demo.wav 10301 CanberraMtAinsli 2012-10-12 13:13:41.706+11 658894
  2012-10-12-1350008064.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:14:26.843+11 216678
  2012-10-12-1350008067.86-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:14:32.197+11 364680
  2012-10-12-1350008072.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:14:36.717+11 348296
  2012-10-12-1350008106.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:15:09.479+11 211096
  2012-10-12-1350008111.72-demo.wav 10301 CanberraMtAinsli 2012-10-12 13:15:18.557+11 573576
  2012-10-12-1350008120.08-demo.wav 10301 CanberraMtAinsli 2012-10-12 13:15:33.119+11 1095816
  2012-10-12-1350008133.67-demo.wav 10301 CanberraMtAinsli 2012-10-12 13:15:36.155+11 209032
  2012-10-12-1350008136.93-demo.wav 10301 CanberraMtAinsli 2012-10-12 13:15:47.038+11 850056
  2012-10-12-1350008147.23-demo.wav 10301 CanberraMtAinsli 2012-10-12 13:15:50.362+11 266376
  2012-10-12-1350008150.6-demo.wav 10301 CanberraMtAinsli 2012-10-12 13:15:54.421+11 321672
  2012-10-12-1350008155.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:16:04.917+11 819258
  2012-10-12-1350008166.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:16:09.964+11 323720
  2012-10-12-1350008197.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:16:42.116+11 350688
  2012-10-12-1350008221.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:17:09.111+11 630920
  2012-10-12-1350008263.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:17:46.378+11 226672
  2012-10-12-1350008268.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:17:53.359+11 376968
  2012-10-12-1350008273.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:17:57.461+11 327742
  2012-10-12-1350008355.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:19:21.744+11 530134
  2012-10-12-1350008362.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:19:27.415+11 374850
  2012-10-12-1350008396.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:20:01.844+11 456066
  2012-10-12-1350008402.09-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:20:04.363+11 192648
  2012-10-12-1350008404.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:20:08.198+11 303240
  2012-10-12-1350008410.08-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:20:50.071+11 3358856
  2012-10-12-1350008451.13-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:20:56.911+11 481700
  2012-10-12-1350008457.26-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:21:04.023+11 567432
  2012-10-12-1350008464.27-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:21:10.944+11 561254
  2012-10-12-1350008471.44-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:21:21.732+11 864356
  2012-10-12-1350008583.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:23:05.55+11 211778
  2012-10-12-1350008678.61-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:24:41.353+11 228976
  2012-10-12-1350008681.95-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:24:44.612+11 223368
  2012-10-12-1350008684.85-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:24:48.017+11 266376
  2012-10-12-1350008688.32-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:24:52.315+11 336008
  2012-10-12-1350008692.6-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:25:06.701+11 1185928
  2012-10-12-1350008746.58-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:25:49.696+11 261960
  2012-10-12-1350008750.99-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:25:54.634+11 302496
  2012-10-12-1350008755.64-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:26:04.384+11 731244
  2012-10-12-1350008764.85-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:26:08.361+11 294982
  2012-10-12-1350008809.01-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:26:54.121+11 426322
  2012-10-12-1350008816.47-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:27:03.31+11 573564
  2012-10-12-1350008933.78-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 13:28:58.316+11 380592
  2012-10-12-1350008940.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:29:16.052+11 960850
  2012-10-12-1350008956.35-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:29:19.327+11 249992
  2012-10-12-1350008959.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:29:23.048+11 262280
  2012-10-12-1350008973.75-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:29:38.04+11 362632
  2012-10-12-1350008981.34-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:29:48.316+11 581768
  2012-10-12-1350008988.62-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:29:50.921+11 194696
  2012-10-12-1350008991.84-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:29:55.316+11 292902
  2012-10-12-1350008996.11-demo.wav 40067 CanberraMtAinsli 2012-10-12 13:30:23.478+11 2300040
  2012-10-12-1350009048.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:30:51.25+11 232130
  2012-10-12-1350009071.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:31:14.238+11 217224
  2012-10-12-1350009075.37-demo.wav 44036 CanberraMtAinsli 2012-10-12 13:31:27.965+11 1054136
  2012-10-12-1350009089.76-demo.wav 44036 CanberraMtAinsli 2012-10-12 13:31:32.41+11 223368
  2012-10-12-1350009100.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:31:46.169+11 491656
  2012-10-12-1350009108.36-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 13:31:54.444+11 510088
  2012-10-12-1350009115.76-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 13:32:09.818+11 1183880
  2012-10-12-1350009148.27-demo.wav 40067 CanberraMtAinsli 2012-10-12 13:32:30.819+11 210482
  2012-10-12-1350009304.87-demo.wav 40067 CanberraBlackMnt 2012-10-12 13:35:07.415+11 211378
  2012-10-12-1350009322.88-demo.wav 44036 CanberraBlackMnt 2012-10-12 13:35:25.809+11 245896
  2012-10-12-1350009326.09-demo.wav 44036 CanberraBlackMnt 2012-10-12 13:35:31.292+11 432264
  2012-10-12-1350009331.57-demo.wav 44036 CanberraBlackMnt 2012-10-12 13:35:34.983+11 286856
  2012-10-12-1350009335.66-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-12 13:36:00.151+11 2054280
  2012-10-12-1350009363.47-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:36:09.05+11 465682
  2012-10-12-1350009413.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:37:08.603+11 1308808
  2012-10-12-1350009453.37-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:37:36.102+11 224588
  2012-10-12-1350009456.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:37:38.704+11 196744
  2012-10-12-1350009458.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:37:42.234+11 284808
  2012-10-12-1350009463.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:37:47.437+11 346396
  2012-10-12-1350009620.62-demo.wav 40067 CanberraBlackMnt 2012-10-12 13:40:25.36+11 399238
  2012-10-12-1350009626.83-demo.wav 44028 CanberraMtAinsli 2012-10-12 13:40:40.688+11 1162068
  2012-10-12-1350009640.97-demo.wav 44028 CanberraMtAinsli 2012-10-12 13:40:43.133+11 184456
  2012-10-12-1350009643.34-demo.wav 44028 CanberraMtAinsli 2012-10-12 13:40:45.609+11 192648
  2012-10-12-1350009645.88-demo.wav 44028 CanberraMtAinsli 2012-10-12 13:40:50.068+11 352392
  2012-10-12-1350009650.33-demo.wav 40067 CanberraBlackMnt 2012-10-12 13:41:13.244+11 1625306
  2012-10-12-1350009678.66-demo.wav 40067 CanberraBlackMnt 2012-10-12 13:41:21.473+11 235656
  2012-10-12-1350009681.75-demo.wav 40067 CanberraBlackMnt 2012-10-12 13:41:24.638+11 241800
  2012-10-12-1350009685.49-demo.wav 40067 CanberraBlackMnt 2012-10-12 13:41:30.263+11 401544
  2012-10-12-1350009690.75-demo.wav 40067 CanberraBlackMnt 2012-10-12 13:41:32.948+11 188552
  2012-10-12-1350009777.33-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-12 13:43:04.378+11 590236
  2012-10-12-1350009785.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:43:13.158+11 671880
  2012-10-12-1350009795.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:43:30.371+11 1271944
  2012-10-12-1350009811.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:43:35.549+11 313480
  2012-10-12-1350009815.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:43:40.925+11 436360
  2012-10-12-1350009821.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:43:59.928+11 1550472
  2012-10-12-1350009841.62-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:44:47.749+11 3874952
  2012-10-12-1350009887.98-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:44:51.727+11 313480
  2012-10-12-1350009892.01-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:44:58.777+11 567432
  2012-10-12-1350009906.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:45:10.556+11 336008
  2012-10-12-1350009913.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 13:45:16.452+11 264216
  2012-10-12-1350010124.15-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-12 13:48:48.389+11 353196
  2012-10-12-1350010130.44-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-12 13:49:01.251+11 903304
  2012-10-12-1350010142.33-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-12 13:49:10.542+11 687728
  2012-10-12-1350010161.06-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-12 13:49:30.119+11 758102
  2012-10-12-1350010171.16-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-12 13:49:42.872+11 978630
  2012-10-12-1350010185.29-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-12 13:49:50.504+11 440398
  2012-10-12-1350010192.77-demo.wav 44036 CanberraBlackMnt 2012-10-12 13:50:01.69+11 748040
  2012-10-12-1350010242.42-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:50:45.294+11 240970
  2012-10-12-1350010247.31-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:50:57.808+11 882824
  2012-10-12-1350010298.71-demo.wav 40067 CanberraBlackMnt 2012-10-12 13:51:43.968+11 442504
  2012-10-12-1350010305.06-demo.wav 40067 CanberraBlackMnt 2012-10-12 13:51:47.452+11 202888
  2012-10-12-1350010307.96-demo.wav 40067 CanberraBlackMnt 2012-10-12 13:51:50.727+11 231460
  2012-10-12-1350010311.62-demo.wav 44028 CanberraMtAinsli 2012-10-12 13:51:59.853+11 687552
  2012-10-12-1350010321.16-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-12 13:52:15.054+11 1165448
  2012-10-12-1350010336.58-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-12 13:52:20.132+11 299144
  2012-10-12-1350010468.9-demo.wav 44028 CanberraMtAinsli 2012-10-12 13:54:32.525+11 304470
  2012-10-12-1350010473.8-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:54:42.304+11 710394
  2012-10-12-1350010483.92-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:54:53.317+11 792712
  2012-10-12-1350010494.11-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:54:56.816+11 225416
  2012-10-12-1350010497.06-demo.wav 44028 CanberraBlackMnt 2012-10-12 13:55:00.556+11 295048
  2012-10-12-1350010593.4-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-12 13:56:51.571+11 1525896
  2012-10-12-1350010660.35-demo.wav 44028 CanberraMtAinsli 2012-10-12 13:57:44.184+11 320256
  2012-10-12-1350010665.63-demo.wav 44028 CanberraMtAinsli 2012-10-12 13:57:47.908+11 190600
  2012-10-12-1350010668.76-demo.wav 44028 CanberraMtAinsli 2012-10-12 13:57:55.593+11 573536
  2012-10-12-1350010787.04-demo.wav 44028 CanberraMtAinsli 2012-10-12 13:59:49.961+11 245564
  2012-10-12-1350010790.85-demo.wav 44028 CanberraMtAinsli 2012-10-12 13:59:53.57+11 227464
  2012-10-12-1350010794.23-demo.wav 44028 CanberraMtAinsli 2012-10-12 14:00:00.156+11 499848
  2012-10-12-1350010942.63-demo.wav 44028 CanberraMtAinsli 2012-10-12 14:02:26.238+11 302464
  2012-10-12-1350010947.04-demo.wav 44028 CanberraMtAinsli 2012-10-12 14:02:29.562+11 209032
  2012-10-12-1350010950.2-demo.wav 44028 CanberraMtAinsli 2012-10-12 14:03:19.314+11 4122760
  2012-10-12-1350011028.18-demo.wav 44028 CanberraMtAinsli 2012-10-12 14:03:50.799+11 215636
  2012-10-12-1350011031.16-demo.wav 44028 CanberraMtAinsli 2012-10-12 14:03:53.788+11 221320
  2012-10-12-1350011034.06-demo.wav 44028 CanberraMtAinsli 2012-10-12 14:03:59.189+11 432264
  2012-10-12-1350011039.61-demo.wav 44028 CanberraMtAinsli 2012-10-12 14:04:04.064+11 374920
  2012-10-12-1350011064.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:04:31.921+11 659592
  2012-10-12-1350011072.2-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:04:36.229+11 338030
  2012-10-12-1350011076.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:04:40.16+11 312734
  2012-10-12-1350011104.58-demo.wav 40067 CanberraBlackMnt 2012-10-12 14:05:07.106+11 215176
  2012-10-12-1350011110.59-demo.wav 40067 CanberraBlackMnt 2012-10-12 14:05:16.567+11 498122
  2012-10-12-1350011119.42-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-12 14:05:24.598+11 434230
  2012-10-12-1350011125.47-demo.wav 44028 CanberraBlackMnt 2012-10-12 14:05:30.462+11 418500
  2012-10-12-1350011162.09-demo.wav 44028 CanberraMtAinsli 2012-10-12 14:06:05.13+11 254518
  2012-10-12-1350011166.77-demo.wav 44028 CanberraBlackMnt 2012-10-12 14:06:18.379+11 970864
  2012-10-12-1350011178.62-demo.wav 44028 CanberraBlackMnt 2012-10-12 14:06:23.366+11 397338
  2012-10-12-1350011225.79-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:07:11.575+11 482568
  2012-10-12-1350011231.86-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:07:14.069+11 188552
  2012-10-12-1350011234.29-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:07:18.927+11 391304
  2012-10-12-1350011239.55-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-12 14:07:26.91+11 616584
  2012-10-12-1350011247.21-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-12 14:07:29.409+11 186502
  2012-10-12-1350011249.69-demo.wav 44010 ACTION 44010 CanberraMtAinsli 2012-10-12 14:07:32.812+11 262256
  2012-10-12-1350011253.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:07:52.079+11 1599624
  2012-10-12-1350011272.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:07:54.939+11 215176
  2012-10-12-1350011275.65-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-12 14:08:13.479+11 1495172
  2012-10-12-1350011294.37-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-12 14:08:21.475+11 595950
  2012-10-12-1350011358.28-demo.wav 40067 CanberraBlackMnt 2012-10-12 14:09:23.529+11 441530
  2012-10-12-1350011402.9-demo.wav 40067 CanberraBlackMnt 2012-10-12 14:10:05.599+11 225940
  2012-10-12-1350011406.78-demo.wav 40067 CanberraBlackMnt 2012-10-12 14:10:10.217+11 288904
  2012-10-12-1350011412.68-demo.wav 40067 CanberraBlackMnt 2012-10-12 14:10:16.148+11 288904
  2012-10-12-1350011416.43-demo.wav 40067 CanberraBlackMnt 2012-10-12 14:10:19.727+11 276616
  2012-10-12-1350011437.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:10:43.809+11 532616
  2012-10-12-1350011512.91-demo.wav 40067 CanberraBlackMnt 2012-10-12 14:11:55.452+11 211468
  2012-10-12-1350011542.49-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:12:25.038+11 212256
  2012-10-12-1350011545.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:12:28.615+11 264328
  2012-10-12-1350011548.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:12:37.437+11 716936
  2012-10-12-1350011558.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:12:48.496+11 868488
  2012-10-12-1350011707.77-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:15:12.25+11 374714
  2012-10-12-1350011713.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:15:40.375+11 2243126
  2012-10-12-1350011759.23-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-12 14:16:04.922+11 477320
  2012-10-12-1350011765.65-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-12 14:16:08.363+11 227432
  2012-10-12-1350011822.87-demo.wav 44028 CanberraMtAinsli 2012-10-12 14:17:05.434+11 216630
  2012-10-12-1350011827.01-demo.wav 44028 CanberraMtAinsli 2012-10-12 14:17:10.34+11 276220
  2012-10-12-1350011870.29-demo.wav 44027 CanberraBlackMnt 2012-10-12 14:18:05.161+11 1251464
  2012-10-12-1350011886.49-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:18:13.695+11 601710
  2012-10-12-1350011894.65-demo.wav 44028 CanberraBlackMnt 2012-10-12 14:18:28.513+11 1159992
  2012-10-12-1350011909.66-demo.wav 44028 CanberraBlackMnt 2012-10-12 14:18:32.955+11 273970
  2012-10-12-1350011913.55-demo.wav 44028 CanberraBlackMnt 2012-10-12 14:18:37.733+11 352392
  2012-10-12-1350011918.03-demo.wav 44028 CanberraBlackMnt 2012-10-12 14:18:51.254+11 1111956
  2012-10-12-1350011931.55-demo.wav 44028 CanberraBlackMnt 2012-10-12 14:18:55.505+11 333960
  2012-10-12-1350011936.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:19:02.896+11 563006
  2012-10-12-1350012034.92-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:20:38.625+11 306338
  2012-10-12-1350012038.82-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:20:42.204+11 282760
  2012-10-12-1350012042.73-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:20:46.983+11 356488
  2012-10-12-1350012103.47-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:21:47.162+11 311126
  2012-10-12-1350012107.54-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:21:50.246+11 227464
  2012-10-12-1350012110.43-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:21:59.821+11 788616
  2012-10-12-1350012120.17-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:23:06.617+11 5582920
  2012-10-12-1350012223.39-demo.wav 40067 CanberraMtAinsli 2012-10-12 14:23:46.27+11 240140
  2012-10-12-1350012227.52-demo.wav 40067 CanberraMtAinsli 2012-10-12 14:23:54.341+11 568292
  2012-10-12-1350012234.73-demo.wav 40067 CanberraMtAinsli 2012-10-12 14:24:00.143+11 454792
  2012-10-12-1350012240.38-demo.wav 40067 CanberraMtAinsli 2012-10-12 14:24:05.001+11 387194
  2012-10-12-1350012359.48-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-12 14:26:06.596+11 595076
  2012-10-12-1350012392.15-demo.wav 44010 ACTION 44010 CanberraBlackMnt 2012-10-12 14:26:39.16+11 583472
  2012-10-12-1350012400.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:26:57.489+11 1447100
  2012-10-12-1350012419.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:27:05.781+11 493704
  2012-10-12-1350012468.6-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:27:52.518+11 327682
  2012-10-12-1350012472.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:27:56.41+11 305288
  2012-10-12-1350012476.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:28:01.426+11 395400
  2012-10-12-1350012508.67-demo.wav 44028 CanberraMtAinsli 2012-10-12 14:28:32.909+11 356488
  2012-10-12-1350012513.39-demo.wav 44028 CanberraMtAinsli 2012-10-12 14:28:36.043+11 223368
  2012-10-12-1350012591.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:29:55.309+11 347674
  2012-10-12-1350012595.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:29:58.982+11 278664
  2012-10-12-1350012599.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:30:07.288+11 649222
  2012-10-12-1350012682.36-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:31:25.131+11 227678
  2012-10-12-1350012685.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:31:29.164+11 305288
  2012-10-12-1350012689.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:31:34.302+11 415880
  2012-10-12-1350012694.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:31:38.566+11 327804
  2012-10-12-1350012699.48-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:31:46.477+11 583564
  2012-10-12-1350012706.99-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:31:53.078+11 510088
  2012-10-12-1350012713.3-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:32:05.386+11 1015918
  2012-10-12-1350012725.63-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:32:25.112+11 1638536
  2012-10-12-1350012831.44-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 14:34:06.697+11 1278196
  2012-10-12-1350012847.72-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 14:34:17.326+11 801364
  2012-10-12-1350012857.92-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 14:34:27.294+11 786568
  2012-10-12-1350012867.99-demo.wav 44027 CanberraBlackMnt 2012-10-12 14:35:03.818+11 2669860
  2012-10-12-1350012904.11-demo.wav 44027 CanberraBlackMnt 2012-10-12 14:35:08.324+11 350344
  2012-10-12-1350013068.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:37:51.364+11 234798
  2012-10-12-1350013071.72-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:37:54.858+11 262280
  2012-10-12-1350013075.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:37:58.448+11 272520
  2012-10-12-1350013078.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:38:02.007+11 282760
  2012-10-12-1350013082.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:38:17.111+11 1188936
  2012-10-12-1350013097.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:38:21.004+11 303240
  2012-10-12-1350013144.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:39:08.356+11 310392
  2012-10-12-1350013148.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:39:10.956+11 196744
  2012-10-12-1350013151.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:39:15.743+11 379016
  2012-10-12-1350013156.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:39:19.617+11 301192
  2012-10-12-1350013304.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:41:47.979+11 283768
  2012-10-12-1350013308.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:41:51.298+11 256136
  2012-10-12-1350013311.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:41:58.186+11 544586
  2012-10-12-1350013412.03-demo.wav 30234 CanberraMtAinsli 2012-10-12 14:43:38.042+11 503356
  2012-10-12-1350013454.22-demo.wav 44028 CanberraBlackMnt 2012-10-12 14:44:16.756+11 209360
  2012-10-12-1350013522.62-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-12 14:45:31.277+11 727266
  2012-10-12-1350013531.55-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-12 14:45:35.007+11 290952
  2012-10-12-1350013535.88-demo.wav 40067 CanberraBlackMnt 2012-10-12 14:45:45.763+11 825898
  2012-10-12-1350013548.18-demo.wav 40067 CanberraBlackMnt 2012-10-12 14:45:50.829+11 223368
  2012-10-12-1350013551.12-demo.wav 40067 CanberraBlackMnt 2012-10-12 14:46:19.249+11 2355336
  2012-10-12-1350013579.69-demo.wav 40067 CanberraMtAinsli 2012-10-12 14:46:39.898+11 1697928
  2012-10-12-1350013600.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:47:06.922+11 2226312
  2012-10-12-1350013629.81-demo.wav 40067 CanberraMtAinsli 2012-10-12 14:47:26.389+11 1389328
  2012-10-12-1350013646.58-demo.wav 40067 CanberraMtAinsli 2012-10-12 14:47:28.739+11 184456
  2012-10-12-1350013650.72-demo.wav 40067 CanberraMtAinsli 2012-10-12 14:47:33.294+11 215176
  2012-10-12-1350013653.66-demo.wav 44036 CanberraBlackMnt 2012-10-12 14:48:22.091+11 4069512
  2012-10-12-1350013713.04-demo.wav 40067 CanberraBlackMnt 2012-10-12 14:49:00.839+11 2332476
  2012-10-12-1350013769.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:49:32.726+11 279514
  2012-10-12-1350013773.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:49:36.96+11 270472
  2012-10-12-1350013777.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:49:41.91+11 376790
  2012-10-12-1350013782.39-demo.wav 44028 CanberraBlackMnt 2012-10-12 14:49:53.1+11 899208
  2012-10-12-1350013793.37-demo.wav 44028 CanberraBlackMnt 2012-10-12 14:49:56.758+11 284802
  2012-10-12-1350013857.65-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:51:00.297+11 220966
  2012-10-12-1350013861.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:51:07.17+11 462408
  2012-10-12-1350013867.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:51:09.75+11 196744
  2012-10-12-1350013870.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:51:14.431+11 366728
  2012-10-12-1350013920.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:52:04.117+11 295620
  2012-10-12-1350013924.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:52:07.929+11 276616
  2012-10-12-1350013928.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:52:11.251+11 252032
  2012-10-12-1350013931.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:52:15.674+11 329864
  2012-10-12-1350013935.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:52:18.295+11 196662
  2012-10-12-1350013939.42-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:52:28.588+11 767810
  2012-10-12-1350013949.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:52:33.383+11 321194
  2012-10-12-1350013954.47-demo.wav 40067 CanberraMtAinsli 2012-10-12 14:52:45.354+11 913500
  2012-10-12-1350013968.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:52:54.973+11 554810
  2012-10-12-1350013975.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:52:58.999+11 315528
  2012-10-12-1350013979.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:53:03.679+11 364680
  2012-10-12-1350013988.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:53:17.078+11 753800
  2012-10-12-1350013997.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:53:20.554+11 268424
  2012-10-12-1350014001.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:53:26.739+11 397406
  2012-10-12-1350014007.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:53:54.088+11 2273416
  2012-10-12-1350014036.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:53:58.987+11 227464
  2012-10-12-1350014039.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:54:45.356+11 3827848
  2012-10-12-1350014085.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:54:49.681+11 341560
  2012-10-12-1350014089.97-demo.wav 44028 CanberraBlackMnt 2012-10-12 14:55:40.766+11 4264072
  2012-10-12-1350014167.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:56:10.804+11 264328
  2012-10-12-1350014171.66-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:56:15.322+11 303474
  2012-10-12-1350014175.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:56:18.179+11 221320
  2012-10-12-1350014185.44-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:56:31.33+11 495752
  2012-10-12-1350014191.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:56:34.287+11 223368
  2012-10-12-1350014194.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:57:04.286+11 2486408
  2012-10-12-1350014254.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:57:37.854+11 294826
  2012-10-12-1350014271.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:57:57.044+11 454792
  2012-10-12-1350014277.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:58:03.131+11 431592
  2012-10-12-1350014288.52-demo.wav i1045420 CanberraBlackMnt 2012-10-12 14:58:12.654+11 345424
  2012-10-12-1350014293.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:58:25.178+11 991368
  2012-10-12-1350014306.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:58:30.243+11 344200
  2012-10-12-1350014310.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:58:35.404+11 397448
  2012-10-12-1350014315.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 14:58:42.389+11 561202
  2012-10-12-1350014350.57-demo.wav 40067 CanberraBlackMnt 2012-10-12 14:59:13.026+11 209032
  2012-10-12-1350014392.82-demo.wav 44028 CanberraBlackMnt 2012-10-12 14:59:55.364+11 212328
  2012-10-12-1350014468.04-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:01:11.584+11 297232
  2012-10-12-1350014472.39-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:01:16.47+11 342152
  2012-10-12-1350014476.77-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:01:21.481+11 395232
  2012-10-12-1350014518.52-demo.wav 44039 CanberraMtAinsli 2012-10-12 15:02:01.022+11 211080
  2012-10-12-1350014522.14-demo.wav 44039 CanberraMtAinsli 2012-10-12 15:02:05.737+11 301192
  2012-10-12-1350014526.27-demo.wav 44039 CanberraMtAinsli 2012-10-12 15:02:08.773+11 213128
  2012-10-12-1350014555.41-demo.wav 44039 CanberraMtAinsli 2012-10-12 15:02:42.176+11 569470
  2012-10-12-1350014616.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:03:45.615+11 786568
  2012-10-12-1350014625.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:03:52.717+11 569396
  2012-10-12-1350014633.26-demo.wav 44028 CanberraBlackMnt 2012-10-12 15:04:20.213+11 2265178
  2012-10-12-1350014690.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:05:03.12+11 1030280
  2012-10-12-1350014703.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:05:06.323+11 252004
  2012-10-12-1350014706.61-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 15:05:28.948+11 1876104
  2012-10-12-1350014729.41-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 15:05:33.587+11 350344
  2012-10-12-1350014734.09-demo.wav 30234 CanberraMtAinsli 2012-10-12 15:05:48.164+11 1181832
  2012-10-12-1350014766.93-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 15:06:11.688+11 401544
  2012-10-12-1350014772.04-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 15:06:15.578+11 296968
  2012-10-12-1350014776.46-demo.wav 44039 CanberraMtAinsli 2012-10-12 15:06:26.474+11 841864
  2012-10-12-1350014789.16-demo.wav 44039 CanberraMtAinsli 2012-10-12 15:06:35.505+11 531236
  2012-10-12-1350014795.79-demo.wav 44039 CanberraMtAinsli 2012-10-12 15:06:39.962+11 350344
  2012-10-12-1350014802.8-demo.wav 44039 CanberraMtAinsli 2012-10-12 15:06:49.682+11 577526
  2012-10-12-1350014809.98-demo.wav 44039 CanberraMtAinsli 2012-10-12 15:06:53.501+11 288904
  2012-10-12-1350014814.83-demo.wav 44039 CanberraMtAinsli 2012-10-12 15:06:57.127+11 192648
  2012-10-12-1350014979.59-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:09:43.646+11 340694
  2012-10-12-1350014984.93-demo.wav 40067 CanberraMtAinsli 2012-10-12 15:10:00.626+11 1312622
  2012-10-12-1350015000.78-demo.wav 40067 CanberraMtAinsli 2012-10-12 15:10:07.032+11 524424
  2012-10-12-1350015187.71-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:13:12.029+11 363962
  2012-10-12-1350015355.49-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:15:59.094+11 301736
  2012-10-12-1350015360.46-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:16:06.605+11 511708
  2012-10-12-1350015366.9-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:16:11.75+11 407688
  2012-10-12-1350015371.98-demo.wav 40067 CanberraMtAinsli 2012-10-12 15:16:27.765+11 1327240
  2012-10-12-1350015388.04-demo.wav 40067 CanberraMtAinsli 2012-10-12 15:16:30.209+11 184456
  2012-10-12-1350015390.5-demo.wav 40067 CanberraMtAinsli 2012-10-12 15:16:33.228+11 229360
  2012-10-12-1350015622.79-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:20:25.682+11 242636
  2012-10-12-1350015627.21-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:20:42.295+11 1262810
  2012-10-12-1350015642.45-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:21:02.748+11 1704072
  2012-10-12-1350015754.75-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 15:22:38.414+11 306178
  2012-10-12-1350015759.72-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 15:22:54.345+11 1224934
  2012-10-12-1350015774.76-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 15:23:00.742+11 501836
  2012-10-12-1350015799.22-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 15:23:30.117+11 917640
  2012-10-12-1350015852.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:24:16.765+11 347484
  2012-10-12-1350015856.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:24:20.223+11 282760
  2012-10-12-1350015861.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:24:25.617+11 345312
  2012-10-12-1350015865.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:24:28.859+11 262238
  2012-10-12-1350015869.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:24:40.073+11 858470
  2012-10-12-1350015883.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:24:47.564+11 370824
  2012-10-12-1350015968.61-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:26:11.357+11 231304
  2012-10-12-1350016000.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:26:42.606+11 210962
  2012-10-12-1350016003.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:26:46.051+11 237704
  2012-10-12-1350016006.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:26:52.661+11 518280
  2012-10-12-1350016046.51-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:27:29.373+11 239300
  2012-10-12-1350016078.28-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:28:01.768+11 292652
  2012-10-12-1350016083.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:28:08.335+11 395400
  2012-10-12-1350016089.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:28:15.109+11 458396
  2012-10-12-1350016096.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:28:24.956+11 741734
  2012-10-12-1350016105.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:28:28.578+11 276616
  2012-10-12-1350016108.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:29:00.689+11 2379074
  2012-10-12-1350016140.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:29:04.603+11 305288
  2012-10-12-1350016145.74-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:29:11.906+11 515170
  2012-10-12-1350016152.44-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:29:20.489+11 675974
  2012-10-12-1350016162.92-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:29:25.842+11 245896
  2012-10-12-1350016166.31-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 15:29:35.278+11 753800
  2012-10-12-1350016177.23-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 15:29:40.446+11 272458
  2012-10-12-1350016208.39-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:30:11.695+11 278664
  2012-10-12-1350016212.49-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:30:14.843+11 198792
  2012-10-12-1350016215.11-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:30:18.15+11 256136
  2012-10-12-1350016221.42-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:30:42.783+11 1794184
  2012-10-12-1350016267.71-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:31:19.289+11 971744
  2012-10-12-1350016280.29-demo.wav 40067 CanberraMtAinsli 2012-10-12 15:31:25.954+11 474430
  2012-10-12-1350016286.15-demo.wav 40067 CanberraMtAinsli 2012-10-12 15:31:31.994+11 491656
  2012-10-12-1350016376.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:33:00.49+11 325248
  2012-10-12-1350016380.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:33:06.343+11 473224
  2012-10-12-1350016386.99-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:33:11.815+11 405168
  2012-10-12-1350016392.67-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:33:31.149+11 1554642
  2012-10-12-1350016411.4-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:33:33.737+11 198792
  2012-10-12-1350016466.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:34:28.566+11 210968
  2012-10-12-1350016468.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:34:32.207+11 276616
  2012-10-12-1350016472.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:34:38.637+11 497712
  2012-10-12-1350016478.9-demo.wav 44028 CanberraBlackMnt 2012-10-12 15:35:14.432+11 2984072
  2012-10-12-1350016514.91-demo.wav 44028 CanberraBlackMnt 2012-10-12 15:35:17.531+11 219272
  2012-10-12-1350016518.44-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:35:48.542+11 2527368
  2012-10-12-1350016548.91-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:35:52.936+11 338056
  2012-10-12-1350016553.96-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:35:56.628+11 223324
  2012-10-12-1350016557.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:36:27.567+11 2543732
  2012-10-12-1350016589.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:36:42.378+11 1050760
  2012-10-12-1350016603.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:36:52.811+11 780982
  2012-10-12-1350016613.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:36:56.453+11 284720
  2012-10-12-1350016636.22-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:37:20.275+11 340104
  2012-10-12-1350016641.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:37:26.315+11 444552
  2012-10-12-1350016687.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:38:13.105+11 499848
  2012-10-12-1350016694.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:38:21.507+11 573088
  2012-10-12-1350016738.53-demo.wav 40067 CanberraMtAinsli 2012-10-12 15:39:01.048+11 210982
  2012-10-12-1350016774.5-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-12 15:39:40.432+11 496220
  2012-10-12-1350016783.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:39:49.524+11 499848
  2012-10-12-1350016791.31-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 15:40:17.265+11 2177160
  2012-10-12-1350016823.81-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 15:40:30.845+11 589960
  2012-10-12-1350016831.84-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 15:40:36.158+11 360108
  2012-10-12-1350016928.19-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:42:10.925+11 229226
  2012-10-12-1350016959.54-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:42:44.061+11 378454
  2012-10-12-1350016964.71-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:42:50.118+11 454670
  2012-10-12-1350016971.26-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:42:59.93+11 726262
  2012-10-12-1350016980.62-demo.wav 40067 CanberraMtAinsli 2012-10-12 15:44:11.406+11 5941384
  2012-10-12-1350017051.58-demo.wav 40067 CanberraMtAinsli 2012-10-12 15:44:20.893+11 781834
  2012-10-12-1350017061.49-demo.wav 40067 CanberraMtAinsli 2012-10-12 15:44:26.117+11 388956
  2012-10-12-1350017069.21-demo.wav 40067 CanberraMtAinsli 2012-10-12 15:44:33.067+11 323690
  2012-10-12-1350017073.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:44:54.2+11 1753224
  2012-10-12-1350017096.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:45:01.498+11 383834
  2012-10-12-1350017101.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:45:05.02+11 278664
  2012-10-12-1350017117.84-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:45:27.834+11 841864
  2012-10-12-1350017149.54-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:45:52.923+11 280972
  2012-10-12-1350017173.08-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:46:19.195+11 514184
  2012-10-12-1350017179.36-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:46:22.886+11 297096
  2012-10-12-1350017183.14-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:46:25.748+11 219140
  2012-10-12-1350017191.08-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:46:34.713+11 305288
  2012-10-12-1350017195.89-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:46:39.923+11 337788
  2012-10-12-1350017246.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:47:28.519+11 210230
  2012-10-12-1350017248.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:47:30.994+11 200840
  2012-10-12-1350017251.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:47:33.931+11 204936
  2012-10-12-1350017254.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:47:36.957+11 233608
  2012-10-12-1350017257.46-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:47:42.437+11 417696
  2012-10-12-1350017336.62-demo.wav 44028 CanberraBlackMnt 2012-10-12 15:48:59.734+11 261268
  2012-10-12-1350017339.93-demo.wav 44028 CanberraBlackMnt 2012-10-12 15:49:02.753+11 237704
  2012-10-12-1350017509.26-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-12 15:51:51.787+11 210118
  2012-10-12-1350017515.29-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 15:52:00.962+11 474180
  2012-10-12-1350017559.36-demo.wav 44028 CanberraBlackMnt 2012-10-12 15:52:43.011+11 306680
  2012-10-12-1350017563.68-demo.wav 44028 CanberraBlackMnt 2012-10-12 15:52:46.255+11 217224
  2012-10-12-1350017566.6-demo.wav 44028 CanberraBlackMnt 2012-10-12 15:52:50.459+11 325768
  2012-10-12-1350017622.74-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 15:53:47.568+11 405640
  2012-10-12-1350017627.73-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 15:53:51.112+11 282698
  2012-10-12-1350017724.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:55:29.228+11 365566
  2012-10-12-1350017729.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:55:32.56+11 266376
  2012-10-12-1350017732.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:55:36.33+11 301192
  2012-10-12-1350017765.11-demo.wav 44028 CanberraBlackMnt 2012-10-12 15:56:07.72+11 218424
  2012-10-12-1350017768.93-demo.wav 44028 CanberraBlackMnt 2012-10-12 15:56:18.461+11 795316
  2012-10-12-1350017778.72-demo.wav 44028 CanberraBlackMnt 2012-10-12 15:56:21.865+11 266376
  2012-10-12-1350017856.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:57:39.243+11 268866
  2012-10-12-1350017859.48-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:57:43.109+11 303240
  2012-10-12-1350017863.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:57:46.253+11 241800
  2012-10-12-1350017869.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:57:52.213+11 186500
  2012-10-12-1350017872.93-demo.wav 44028 CanberraBlackMnt 2012-10-12 15:58:01.177+11 694408
  2012-10-12-1350017881.43-demo.wav 44028 CanberraBlackMnt 2012-10-12 15:58:06.849+11 456832
  2012-10-12-1350017887.35-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 15:58:29.265+11 1841288
  2012-10-12-1350017944.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:59:07.454+11 248122
  2012-10-12-1350017948.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 15:59:12.306+11 291106
  2012-10-12-1350017972.22-demo.wav 40067 CanberraBlackMnt 2012-10-12 15:59:34.331+11 180360
  2012-10-12-1350017987.45-demo.wav 10301 CanberraBlackMnt 2012-10-12 15:59:50.298+11 239502
  2012-10-12-1350018008.1-demo.wav 10301 CanberraBlackMnt 2012-10-12 16:00:11.523+11 288904
  2012-10-12-1350018013.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:00:22.677+11 735352
  2012-10-12-1350018023.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:00:32.953+11 773100
  2012-10-12-1350018033.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:00:35.452+11 194696
  2012-10-12-1350018097.35-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-12 16:01:42.125+11 400730
  2012-10-12-1350018139.8-demo.wav 40067 CanberraMtAinsli 2012-10-12 16:02:22.349+11 210490
  2012-10-12-1350018226.56-demo.wav 40067 CanberraBlackMnt 2012-10-12 16:03:49.091+11 211952
  2012-10-12-1350018229.53-demo.wav 40067 CanberraBlackMnt 2012-10-12 16:03:51.696+11 184456
  2012-10-12-1350018232.22-demo.wav 40067 CanberraBlackMnt 2012-10-12 16:04:00.92+11 731272
  2012-10-12-1350018284.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:04:47.365+11 269680
  2012-10-12-1350018287.69-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:04:50.06+11 200840
  2012-10-12-1350018290.33-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:04:53.176+11 239752
  2012-10-12-1350018366.82-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:06:11.487+11 391142
  2012-10-12-1350018372.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:06:15.626+11 280712
  2012-10-12-1350018390.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:06:36.029+11 460936
  2012-10-12-1350018396.29-demo.wav i1045200 CanberraBlackMnt 2012-10-12 16:07:10.968+11 2914440
  2012-10-12-1350018431.71-demo.wav i1045200 CanberraBlackMnt 2012-10-12 16:07:25.59+11 1167494
  2012-10-12-1350018445.82-demo.wav i1045200 CanberraBlackMnt 2012-10-12 16:07:29.01+11 268424
  2012-10-12-1350018450.62-demo.wav i1045200 CanberraBlackMnt 2012-10-12 16:07:48.941+11 1540230
  2012-10-12-1350018471.64-demo.wav i1045200 CanberraBlackMnt 2012-10-12 16:08:02.717+11 930032
  2012-10-12-1350018484.11-demo.wav 44036 CanberraMtAinsli 2012-10-12 16:08:16.111+11 1007752
  2012-10-12-1350018498.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:08:33.901+11 1310856
  2012-10-12-1350018515.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:08:41.118+11 462984
  2012-10-12-1350018525.44-demo.wav 44028 CanberraBlackMnt 2012-10-12 16:08:54.043+11 723080
  2012-10-12-1350018564.17-demo.wav 40067 CanberraMtAinsli 2012-10-12 16:09:28.895+11 399496
  2012-10-12-1350018569.12-demo.wav 40067 CanberraMtAinsli 2012-10-12 16:09:31.818+11 227464
  2012-10-12-1350018634.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:10:38.005+11 318316
  2012-10-12-1350018639.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:10:42.79+11 309384
  2012-10-12-1350018677.92-demo.wav 40067 CanberraBlackMnt 2012-10-12 16:11:20.984+11 254716
  2012-10-12-1350018682.07-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:11:27.761+11 474784
  2012-10-12-1350018688.75-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:11:35.608+11 573632
  2012-10-12-1350018720.19-demo.wav 40067 CanberraMtAinsli 2012-10-12 16:12:09.846+11 809332
  2012-10-12-1350018830.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:13:54.51+11 299262
  2012-10-12-1350018835.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:13:58.705+11 276616
  2012-10-12-1350018838.97-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-12 16:14:35.408+11 3061896
  2012-10-12-1350018935.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:15:38.914+11 246282
  2012-10-12-1350018940.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:15:44.155+11 319920
  2012-10-12-1350019004.55-demo.wav 44028 CanberraBlackMnt 2012-10-12 16:16:48.949+11 370824
  2012-10-12-1350019041.98-demo.wav 44028 CanberraBlackMnt 2012-10-12 16:17:25.054+11 257062
  2012-10-12-1350019045.23-demo.wav 44028 CanberraBlackMnt 2012-10-12 16:17:28.714+11 293000
  2012-10-12-1350019048.98-demo.wav 44028 CanberraBlackMnt 2012-10-12 16:17:33.715+11 399496
  2012-10-12-1350019053.98-demo.wav 44028 CanberraBlackMnt 2012-10-12 16:17:37.903+11 329864
  2012-10-12-1350019058.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:18:45.771+11 5681254
  2012-10-12-1350019125.95-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:18:51.198+11 442504
  2012-10-12-1350019132.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:18:55.175+11 222652
  2012-10-12-1350019166.07-demo.wav 40067 CanberraBlackMnt 2012-10-12 16:19:28.608+11 212256
  2012-10-12-1350019171.55-demo.wav 44036 CanberraBlackMnt 2012-10-12 16:19:38.997+11 626824
  2012-10-12-1350019179.89-demo.wav 44036 CanberraBlackMnt 2012-10-12 16:19:42.417+11 213128
  2012-10-12-1350019183.96-demo.wav 44036 CanberraBlackMnt 2012-10-12 16:19:48.25+11 362632
  2012-10-12-1350019188.51-demo.wav 44036 CanberraBlackMnt 2012-10-12 16:19:51.27+11 233368
  2012-10-12-1350019215.33-demo.wav 44036 CanberraBlackMnt 2012-10-12 16:20:26.864+11 970888
  2012-10-12-1350019227.26-demo.wav 44036 CanberraBlackMnt 2012-10-12 16:20:32.28+11 422024
  2012-10-12-1350019232.54-demo.wav 44036 CanberraBlackMnt 2012-10-12 16:20:38.945+11 538616
  2012-10-12-1350019290.22-demo.wav 44036 CanberraBlackMnt 2012-10-12 16:21:33.993+11 316862
  2012-10-12-1350019295.02-demo.wav 44036 CanberraBlackMnt 2012-10-12 16:21:39.139+11 346248
  2012-10-12-1350019299.75-demo.wav 44036 CanberraBlackMnt 2012-10-12 16:21:49.417+11 813192
  2012-10-12-1350019312.39-demo.wav 44036 CanberraBlackMnt 2012-10-12 16:21:57.408+11 421996
  2012-10-12-1350019323.75-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 16:22:12.598+11 743560
  2012-10-12-1350019388.72-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 16:23:12.707+11 333570
  2012-10-12-1350019428.35-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 16:23:50.887+11 212074
  2012-10-12-1350019431.05-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 16:23:53.627+11 219272
  2012-10-12-1350019435.1-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 16:24:08.947+11 1163324
  2012-10-12-1350019492.12-demo.wav 40067 CanberraMtAinsli 2012-10-12 16:24:57.167+11 421610
  2012-10-12-1350019498.22-demo.wav 40067 CanberraBlackMnt 2012-10-12 16:25:03.753+11 463616
  2012-10-12-1350019504.47-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:25:10.078+11 471176
  2012-10-12-1350019510.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:25:22.302+11 997428
  2012-10-12-1350019568.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:26:11.879+11 251414
  2012-10-12-1350019572.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:26:14.947+11 231560
  2012-10-12-1350019575.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:26:39.951+11 2084934
  2012-10-12-1350019600.22-demo.wav 44028 CanberraBlackMnt 2012-10-12 16:27:14.902+11 2914440
  2012-10-12-1350019635.09-demo.wav 44028 CanberraBlackMnt 2012-10-12 16:27:17.889+11 235656
  2012-10-12-1350019638.15-demo.wav 44028 CanberraBlackMnt 2012-10-12 16:27:20.782+11 221320
  2012-10-12-1350019641.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:28:01.09+11 3309704
  2012-10-12-1350019747.47-demo.wav 40067 CanberraBlackMnt 2012-10-12 16:29:11.598+11 346238
  2012-10-12-1350019753.14-demo.wav 40067 CanberraBlackMnt 2012-10-12 16:29:27.758+11 1225308
  2012-10-12-1350019768.76-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-12 16:29:36.181+11 617926
  2012-10-12-1350019776.33-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-12 16:29:41.484+11 432264
  2012-10-12-1350019794.48-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-12 16:29:59.634+11 434312
  2012-10-12-1350019827.35-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-12 16:30:40.476+11 1101400
  2012-10-12-1350019861.75-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-12 16:31:20.223+11 1552520
  2012-10-12-1350019887.01-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-12 16:31:38.066+11 927856
  2012-10-12-1350019898.16-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-12 16:31:43.033+11 407664
  2012-10-12-1350019903.17-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-12 16:31:50.381+11 604266
  2012-10-12-1350020000.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:33:23.701+11 300702
  2012-10-12-1350020003.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:33:28.99+11 424072
  2012-10-12-1350020025.71-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 16:34:19.888+11 2864794
  2012-10-12-1350020060.14-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 16:34:23.531+11 284808
  2012-10-12-1350020064.24-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 16:34:33.818+11 805000
  2012-10-12-1350020178.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:36:22.052+11 286244
  2012-10-12-1350020183.25-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:36:30.072+11 570050
  2012-10-12-1350020191.31-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:36:38.08+11 563964
  2012-10-12-1350020200.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:36:43.176+11 223368
  2012-10-12-1350020203.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:36:47.697+11 323720
  2012-10-12-1350020208.18-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:37:08.41+11 1697928
  2012-10-12-1350020248.77-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 16:37:46.459+11 1059844
  2012-10-12-1350020266.58-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 16:37:49.892+11 280712
  2012-10-12-1350020270.09-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 16:37:52.527+11 206984
  2012-10-12-1350020272.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:38:40.102+11 3979400
  2012-10-12-1350020320.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:38:44.232+11 274536
  2012-10-12-1350020382.79-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-12 16:39:45.341+11 211774
  2012-10-12-1350020386.0-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-12 16:39:54.041+11 675976
  2012-10-12-1350020394.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:40:05.983+11 927828
  2012-10-12-1350020450.42-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 16:40:52.955+11 209960
  2012-10-12-1350020543.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:42:27.279+11 303788
  2012-10-12-1350020547.59-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:42:31.279+11 309384
  2012-10-12-1350020551.54-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:42:36.135+11 387208
  2012-10-12-1350020628.64-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:43:51.265+11 220696
  2012-10-12-1350020632.27-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:43:55.017+11 229512
  2012-10-12-1350020653.08-demo.wav 40067 CanberraBlackMnt 2012-10-12 16:44:17.002+11 327350
  2012-10-12-1350020678.6-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-12 16:44:46.127+11 630920
  2012-10-12-1350020708.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:45:19.865+11 954504
  2012-10-12-1350020736.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:45:39.287+11 221320
  2012-10-12-1350020739.43-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:45:45.691+11 526472
  2012-10-12-1350020745.96-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:45:48.102+11 182368
  2012-10-12-1350020830.91-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 16:47:15.07+11 346446
  2012-10-12-1350020836.27-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 16:47:21.557+11 439424
  2012-10-12-1350020842.06-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 16:47:29.32+11 610440
  2012-10-12-1350020899.16-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-12 16:48:26.443+11 610438
  2012-10-12-1350020906.73-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-12 16:48:30.409+11 307336
  2012-10-12-1350020947.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:49:11.008+11 268424
  2012-10-12-1350020952.1-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:49:15.462+11 280712
  2012-10-12-1350020955.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:49:23.115+11 600200
  2012-10-12-1350021064.24-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-12 16:51:11.838+11 637790
  2012-10-12-1350021224.54-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-12 16:53:51.197+11 558644
  2012-10-12-1350021231.39-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-12 16:53:54.456+11 258184
  2012-10-12-1350021329.91-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:55:32.43+11 210566
  2012-10-12-1350021406.83-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:56:49.596+11 228642
  2012-10-12-1350021411.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:57:01.678+11 886256
  2012-10-12-1350021467.24-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-12 16:58:01.04+11 1159820
  2012-10-12-1350021481.29-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:58:12.256+11 921736
  2012-10-12-1350021492.51-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 16:58:15.464+11 247944
  2012-10-12-1350021534.81-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-12 16:58:59.957+11 430038
  2012-10-12-1350021540.18-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-12 16:59:02.604+11 204936
  2012-10-12-1350021542.8-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-12 16:59:15.143+11 1036424
  2012-10-12-1350021651.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:00:53.794+11 226082
  2012-10-12-1350021655.14-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:00:58.858+11 311432
  2012-10-12-1350021659.06-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:01:02.737+11 309384
  2012-10-12-1350021662.93-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:01:06.963+11 338038
  2012-10-12-1350021810.7-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:03:33.486+11 232182
  2012-10-12-1350021813.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:03:37.194+11 293000
  2012-10-12-1350021817.4-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:03:39.974+11 217224
  2012-10-12-1350021820.23-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:03:43.616+11 286728
  2012-10-12-1350021825.05-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:04:02.283+11 1445218
  2012-10-12-1350021842.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:04:08.783+11 497800
  2012-10-12-1350022064.33-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 17:07:47.231+11 243938
  2012-10-12-1350022067.51-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 17:07:50.519+11 254088
  2012-10-12-1350022072.14-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 17:07:59.89+11 651166
  2012-10-12-1350022080.14-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 17:08:21.993+11 1837192
  2012-10-12-1350022102.23-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 17:08:26.706+11 376584
  2012-10-12-1350022107.24-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 17:08:45.269+11 1513572
  2012-10-12-1350022126.26-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 17:08:55.832+11 803520
  2012-10-12-1350022243.05-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:10:45.763+11 225540
  2012-10-12-1350022247.68-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:10:50.604+11 245896
  2012-10-12-1350022348.06-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:12:30.737+11 225304
  2012-10-12-1350022352.22-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:12:38.471+11 526472
  2012-10-12-1350022358.73-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:12:41.971+11 274568
  2012-10-12-1350022362.47-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:12:46.526+11 342152
  2012-10-12-1350022375.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:13:01.451+11 499848
  2012-10-12-1350022459.41-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:14:21.913+11 209430
  2012-10-12-1350022462.5-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:14:26.415+11 327816
  2012-10-12-1350022466.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:14:32.609+11 495752
  2012-10-12-1350022473.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:14:40.566+11 587788
  2012-10-12-1350022591.16-demo.wav 10301 CanberraMtAinsli 2012-10-12 17:16:37.661+11 543614
  2012-10-12-1350022598.11-demo.wav 10301 CanberraMtAinsli 2012-10-12 17:16:45.205+11 596104
  2012-10-12-1350022625.94-demo.wav 44028 CanberraMtAinsli 2012-10-12 17:17:09.449+11 295048
  2012-10-12-1350022631.16-demo.wav 44028 CanberraMtAinsli 2012-10-12 17:17:14.482+11 274828
  2012-10-12-1350022634.65-demo.wav 44028 CanberraMtAinsli 2012-10-12 17:17:20.523+11 493702
  2012-10-12-1350022779.43-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-12 17:19:43.51+11 342228
  2012-10-12-1350022785.06-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 17:19:53.91+11 741512
  2012-10-12-1350022794.17-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 17:20:02.066+11 663644
  2012-10-12-1350022802.58-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 17:20:07.369+11 401536
  2012-10-12-1350022826.1-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 17:20:36.75+11 895112
  2012-10-12-1350022837.62-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-12 17:20:43.596+11 498206
  2012-10-12-1350023085.91-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-12 17:24:51.867+11 498116
  2012-10-12-1350023092.55-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-12 17:24:55.842+11 276580
  2012-10-12-1350023155.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:25:58.664+11 246568
  2012-10-12-1350023159.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:26:04.352+11 448648
  2012-10-12-1350023164.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:26:08.481+11 329864
  2012-10-12-1350023195.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:26:37.842+11 211202
  2012-10-12-1350023198.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:26:41.413+11 278664
  2012-10-12-1350023202.0-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:26:45.27+11 272520
  2012-10-12-1350023217.76-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:27:15.494+11 1491080
  2012-10-12-1350023236.02-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:27:19.942+11 329864
  2012-10-12-1350023255.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:27:42.731+11 647304
  2012-10-12-1350023263.03-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:27:45.692+11 223368
  2012-10-12-1350023343.99-demo.wav 44028 CanberraMtAinsli 2012-10-12 17:29:07.957+11 332028
  2012-10-12-1350023349.32-demo.wav 44028 CanberraMtAinsli 2012-10-12 17:29:13.901+11 380466
  2012-10-12-1350023354.25-demo.wav 44028 CanberraMtAinsli 2012-10-12 17:29:19.813+11 460936
  2012-10-12-1350023644.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:34:06.868+11 209856
  2012-10-12-1350023647.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:34:12.439+11 369500
  2012-10-12-1350023653.11-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:34:44.774+11 2658432
  2012-10-12-1350023687.53-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:34:51.769+11 356488
  2012-10-12-1350023706.37-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:35:10.547+11 351554
  2012-10-12-1350023710.93-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:35:15.197+11 360582
  2012-10-12-1350023715.98-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:35:20.694+11 393352
  2012-10-12-1350023873.4-demo.wav 44028 CanberraMtAinsli 2012-10-12 17:37:59.34+11 498630
  2012-10-12-1350023880.86-demo.wav 44028 CanberraMtAinsli 2012-10-12 17:38:03.991+11 264314
  2012-10-12-1350023896.41-demo.wav 44029 CanberraBlackMnt 2012-10-12 17:38:28.115+11 978396
  2012-10-12-1350023908.32-demo.wav 44029 CanberraBlackMnt 2012-10-12 17:38:31.022+11 229512
  2012-10-12-1350023911.21-demo.wav 44029 CanberraBlackMnt 2012-10-12 17:38:34.249+11 254066
  2012-10-12-1350023984.85-demo.wav 44028 CanberraMtAinsli 2012-10-12 17:39:48.479+11 305288
  2012-10-12-1350023989.34-demo.wav 44028 CanberraMtAinsli 2012-10-12 17:39:52.84+11 295048
  2012-10-12-1350024008.23-demo.wav 44028 CanberraMtAinsli 2012-10-12 17:40:16.039+11 659592
  2012-10-12-1350024017.48-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:40:28.759+11 945988
  2012-10-12-1350024029.29-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:40:37.004+11 649352
  2012-10-12-1350024037.2-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-12 17:41:34.299+11 4789212
  2012-10-12-1350024161.43-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:42:45.17+11 311458
  2012-10-12-1350024184.12-demo.wav 44029 CanberraBlackMnt 2012-10-12 17:43:06.626+11 211080
  2012-10-12-1350024187.79-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-12 17:43:15.214+11 617756
  2012-10-12-1350024195.64-demo.wav 44011 ACTION 44011 CanberraMtAinsli 2012-10-12 17:43:19.457+11 319620
  2012-10-12-1350024216.03-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:43:47.256+11 944264
  2012-10-12-1350024227.48-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:43:49.876+11 202888
  2012-10-12-1350024230.89-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:43:53.55+11 223328
  2012-10-12-1350024249.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:44:14.409+11 379016
  2012-10-12-1350024333.11-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-12 17:45:38.007+11 406244
  2012-10-12-1350024338.12-demo.wav 44011 ACTION 44011 CanberraBlackMnt 2012-10-12 17:45:43.69+11 467080
  2012-10-12-1350024455.56-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:47:38.431+11 241596
  2012-10-12-1350024459.8-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:47:42.408+11 215176
  2012-10-12-1350024463.16-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:48:08.205+11 2099336
  2012-10-12-1350024547.63-demo.wav 44028 CanberraMtAinsli 2012-10-12 17:49:10.772+11 260782
  2012-10-12-1350024552.27-demo.wav 44028 CanberraMtAinsli 2012-10-12 17:49:15.835+11 297018
  2012-10-12-1350024556.0-demo.wav 44028 CanberraMtAinsli 2012-10-12 17:49:22.48+11 542798
  2012-10-12-1350024586.91-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:49:49.601+11 225416
  2012-10-12-1350024590.93-demo.wav 44028 CanberraBlackMnt 2012-10-12 17:49:58.901+11 671880
  2012-10-12-1350024605.89-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:50:23.487+11 1124762
  2012-10-12-1350024623.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:50:26.17+11 211080
  2012-10-12-1350024627.01-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:50:30.544+11 299144
  2012-10-12-1350024630.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:50:34.868+11 329864
  2012-10-12-1350024635.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:50:39.079+11 336008
  2012-10-12-1350024735.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:52:18.872+11 243244
  2012-10-12-1350024740.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:52:26.701+11 534802
  2012-10-12-1350024746.88-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:52:30.286+11 286856
  2012-10-12-1350024780.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:53:04.517+11 323720
  2012-10-12-1350024785.58-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:53:08.906+11 278664
  2012-10-12-1350024789.17-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:53:12.996+11 321672
  2012-10-12-1350024992.87-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:56:37.09+11 353116
  2012-10-12-1350024997.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:56:40.634+11 247944
  2012-10-12-1350025112.57-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:58:36.47+11 327388
  2012-10-12-1350025116.67-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:58:39.727+11 258184
  2012-10-12-1350025131.21-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 17:58:55.539+11 364680
  2012-10-12-1350025290.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:01:33.798+11 265294
  2012-10-12-1350025294.84-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:01:37.231+11 198792
  2012-10-12-1350025297.71-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:01:41.231+11 293000
  2012-10-12-1350025301.81-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:01:46.311+11 376968
  2012-10-12-1350025604.34-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:06:47.392+11 254792
  2012-10-12-1350025607.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:06:50.283+11 229512
  2012-10-12-1350025611.68-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:06:55.715+11 337972
  2012-10-12-1350025615.92-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:06:59.783+11 317576
  2012-10-12-1350025637.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:07:20.9+11 300972
  2012-10-12-1350025641.8-demo.wav 40067 CanberraBlackMnt 2012-10-12 18:07:40.231+11 1546872
  2012-10-12-1350025661.7-demo.wav 40067 CanberraBlackMnt 2012-10-12 18:07:45.361+11 304280
  2012-10-12-1350025665.83-demo.wav 40067 CanberraBlackMnt 2012-10-12 18:07:48.539+11 227464
  2012-10-12-1350025736.12-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:08:59.467+11 278668
  2012-10-12-1350025740.8-demo.wav 40067 CanberraBlackMnt 2012-10-12 18:09:09.868+11 758760
  2012-10-12-1350025767.73-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:09:40.233+11 1048712
  2012-10-12-1350025780.97-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:09:43.841+11 241800
  2012-10-12-1350025784.32-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:09:50.677+11 536576
  2012-10-12-1350025844.79-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:10:51.382+11 552842
  2012-10-12-1350025913.61-demo.wav 40067 CanberraMtAinsli 2012-10-12 18:11:57.278+11 305808
  2012-10-12-1350025918.33-demo.wav 40067 CanberraMtAinsli 2012-10-12 18:12:04.054+11 483464
  2012-10-12-1350025924.75-demo.wav 40067 CanberraMtAinsli 2012-10-12 18:12:07.794+11 255882
  2012-10-12-1350025988.3-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:13:11.512+11 271684
  2012-10-12-1350025991.63-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:13:13.828+11 186504
  2012-10-12-1350025993.94-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:13:22.645+11 733284
  2012-10-12-1350026003.62-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:13:31.271+11 642490
  2012-10-12-1350026121.24-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:15:24.3+11 254920
  2012-10-12-1350026124.52-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:15:27.683+11 264328
  2012-10-12-1350026127.9-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:15:33.19+11 444552
  2012-10-12-1350026328.38-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:18:52.374+11 332924
  2012-10-12-1350026332.55-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:18:54.795+11 190600
  2012-10-12-1350026723.98-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:25:26.565+11 216212
  2012-10-12-1350026727.26-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:25:29.756+11 211080
  2012-10-12-1350026755.15-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:25:58.62+11 293000
  2012-10-12-1350026786.08-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:26:29.496+11 288010
  2012-10-12-1350026789.61-demo.wav 10106 SYD 7 CanberraMtAinsli 2012-10-12 18:26:32.545+11 247944
  2012-10-20-1350690847.07-demo.wav 44040 CanberraBlackMnt 2012-10-20 10:54:14.169+11 596104
  2012-10-20-1350690854.64-demo.wav 30001 FARSHCO CanberraMtAinsli 2012-10-20 10:54:20.472+11 491656
  2012-10-20-1350690860.83-demo.wav 30001 FARSHCO CanberraMtAinsli 2012-10-20 10:54:24.09+11 274568
  2012-10-20-1350690876.41-demo.wav 44040 CanberraBlackMnt 2012-10-20 10:54:49.849+11 1128584
  2012-10-20-1350690890.53-demo.wav 44040 CanberraBlackMnt 2012-10-20 10:54:53.884+11 280654
  2012-10-20-1350690895.51-demo.wav 40067 CanberraMtAinsli 2012-10-20 10:55:01.522+11 503820
  2012-10-20-1350690901.74-demo.wav 40067 CanberraMtAinsli 2012-10-20 10:55:06.197+11 374916
  2012-10-20-1350690932.25-demo.wav 44028 CanberraBlackMnt 2012-10-20 10:55:36.455+11 352392
  2012-10-20-1350690936.71-demo.wav 44028 CanberraBlackMnt 2012-10-20 10:55:40.012+11 274568
  2012-10-20-1350690940.29-demo.wav 44028 CanberraBlackMnt 2012-10-20 10:55:43.936+11 305288
  2012-10-20-1350690945.0-demo.wav 44028 CanberraBlackMnt 2012-10-20 10:55:51.114+11 509046
  2012-10-20-1350690991.21-demo.wav 30001 FARSHCO CanberraMtAinsli 2012-10-20 10:56:36.008+11 398598
  2012-10-20-1350690996.47-demo.wav 30001 FARSHCO CanberraMtAinsli 2012-10-20 10:56:38.943+11 209032
  2012-10-20-1350691001.5-demo.wav 30001 FARSHCO CanberraMtAinsli 2012-10-20 10:56:49.048+11 622728
  2012-10-20-1350691011.2-demo.wav 30001 FARSHCO CanberraMtAinsli 2012-10-20 10:56:55.078+11 325768
  2012-10-20-1350691016.53-demo.wav 30001 FARSHCO CanberraMtAinsli 2012-10-20 10:57:10.868+11 1198208
  2012-10-20-1350691146.81-demo.wav 40067 CanberraMtAinsli 2012-10-20 10:59:10.023+11 268306
  2012-10-20-1350691201.52-demo.wav 44040 CanberraBlackMnt 2012-10-20 11:00:04.821+11 272762
  2012-10-20-1350691207.93-demo.wav 44040 CanberraBlackMnt 2012-10-20 11:00:17.521+11 801090
  2012-10-20-1350691218.5-demo.wav 44040 CanberraBlackMnt 2012-10-20 11:00:23.344+11 403564
  2012-10-20-1350691224.03-demo.wav 44040 CanberraBlackMnt 2012-10-20 11:00:33.316+11 780188
  2012-10-20-1350691233.81-demo.wav 44040 CanberraBlackMnt 2012-10-20 11:01:41.158+11 5644424
  2012-10-20-1350691320.37-demo.wav 44040 CanberraBlackMnt 2012-10-20 11:02:13.18+11 1077134
  2012-10-20-1350691333.36-demo.wav 44040 CanberraBlackMnt 2012-10-20 11:02:16.53+11 266088
  2012-10-20-1350691336.71-demo.wav 44040 CanberraBlackMnt 2012-10-20 11:02:22.003+11 446422
  2012-10-20-1350691403.13-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:03:26.348+11 270472
  2012-10-20-1350691409.35-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:03:36.4+11 594056
  2012-10-20-1350691416.61-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:03:38.841+11 188552
  2012-10-20-1350691419.23-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:03:43.34+11 346248
  2012-10-20-1350691423.81-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:03:50.058+11 526472
  2012-10-20-1350691820.79-demo.wav 40067 CanberraBlackMnt 2012-10-20 11:10:24.047+11 273356
  2012-10-20-1350691825.71-demo.wav 40067 CanberraBlackMnt 2012-10-20 11:10:31.8+11 508040
  2012-10-20-1350691831.97-demo.wav 40067 CanberraBlackMnt 2012-10-20 11:10:40.43+11 712604
  2012-10-20-1350691840.57-demo.wav 40067 CanberraBlackMnt 2012-10-20 11:10:43.638+11 260232
  2012-10-20-1350691913.69-demo.wav 44014 CanberraBlackMnt 2012-10-20 11:12:00.323+11 558204
  2012-10-20-1350691920.55-demo.wav 44014 CanberraBlackMnt 2012-10-20 11:12:03.657+11 260232
  2012-10-20-1350691924.53-demo.wav 44014 CanberraBlackMnt 2012-10-20 11:12:22.891+11 1530026
  2012-10-20-1350692102.16-demo.wav 44014 CanberraBlackMnt 2012-10-20 11:15:08.182+11 505076
  2012-10-20-1350692108.31-demo.wav 44014 CanberraBlackMnt 2012-10-20 11:15:12.202+11 327816
  2012-10-20-1350692150.9-demo.wav 44028 CanberraMtAinsli 2012-10-20 11:15:53.667+11 230274
  2012-10-20-1350692155.22-demo.wav 44028 CanberraMtAinsli 2012-10-20 11:16:00.509+11 444552
  2012-10-20-1350692162.26-demo.wav 44028 CanberraMtAinsli 2012-10-20 11:16:09.409+11 600200
  2012-10-20-1350692270.79-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:17:54.117+11 275180
  2012-10-20-1350692275.04-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:17:57.797+11 229512
  2012-10-20-1350692279.36-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:18:04.637+11 436728
  2012-10-20-1350692285.09-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:18:10.32+11 440456
  2012-10-20-1350692291.96-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:18:16.427+11 370824
  2012-10-20-1350692333.57-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 11:18:56.117+11 210784
  2012-10-20-1350692339.23-demo.wav 44028 CanberraMtAinsli 2012-10-20 11:19:11.84+11 1052514
  2012-10-20-1350692352.76-demo.wav 44028 CanberraMtAinsli 2012-10-20 11:19:15.78+11 250184
  2012-10-20-1350692355.95-demo.wav 44028 CanberraMtAinsli 2012-10-20 11:19:19.48+11 295048
  2012-10-20-1350692359.68-demo.wav 44028 CanberraMtAinsli 2012-10-20 11:19:23.915+11 354440
  2012-10-20-1350692557.4-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:22:40.684+11 269278
  2012-10-20-1350692562.17-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:22:45.213+11 254058
  2012-10-20-1350692565.35-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:22:49.121+11 317546
  2012-10-20-1350692569.42-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:22:54.416+11 419942
  2012-10-20-1350692574.56-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:22:58.85+11 360354
  2012-10-20-1350692579.0-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:23:30.434+11 2633840
  2012-10-20-1350692610.54-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:23:36.545+11 503920
  2012-10-20-1350692616.69-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:23:39.529+11 241750
  2012-10-20-1350693216.04-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 11:33:40.602+11 382674
  2012-10-20-1350693221.96-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 11:33:49.524+11 628332
  2012-10-20-1350693230.23-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 11:34:00.031+11 817248
  2012-10-20-1350693240.19-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 11:34:06.198+11 501650
  2012-10-20-1350693577.0-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:39:39.901+11 244754
  2012-10-20-1350693581.68-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:39:45.82+11 348296
  2012-10-20-1350693586.06-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:39:53.124+11 594056
  2012-10-20-1350693593.31-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:40:19.216+11 2167550
  2012-10-20-1350693675.75-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:41:19.162+11 284756
  2012-10-20-1350693679.33-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:41:21.586+11 188552
  2012-10-20-1350693681.75-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:41:29.959+11 684168
  2012-10-20-1350693795.33-demo.wav 44040 CanberraMtAinsli 2012-10-20 11:43:20.124+11 401098
  2012-10-20-1350693801.9-demo.wav 44040 CanberraBlackMnt 2012-10-20 11:43:35.338+11 1126536
  2012-10-20-1350693817.08-demo.wav 44040 CanberraMtAinsli 2012-10-20 11:43:44.619+11 635016
  2012-10-20-1350693825.23-demo.wav 44040 CanberraMtAinsli 2012-10-20 11:43:48.638+11 284808
  2012-10-20-1350693829.48-demo.wav 44040 CanberraMtAinsli 2012-10-20 11:43:51.875+11 198792
  2012-10-20-1350693833.22-demo.wav 44040 CanberraMtAinsli 2012-10-20 11:43:58.908+11 469128
  2012-10-20-1350693841.72-demo.wav 44040 CanberraMtAinsli 2012-10-20 11:44:12.289+11 881716
  2012-10-20-1350693852.47-demo.wav 44040 CanberraMtAinsli 2012-10-20 11:44:14.968+11 206984
  2012-10-20-1350693855.12-demo.wav 44040 CanberraMtAinsli 2012-10-20 11:44:17.76+11 223368
  2012-10-20-1350693858.57-demo.wav 44040 CanberraMtAinsli 2012-10-20 11:44:22.099+11 297092
  2012-10-20-1350693862.26-demo.wav 44040 CanberraMtAinsli 2012-10-20 11:44:24.557+11 190540
  2012-10-20-1350693865.39-demo.wav 44028 CanberraMtAinsli 2012-10-20 11:44:32.355+11 583814
  2012-10-20-1350693874.14-demo.wav 44028 CanberraMtAinsli 2012-10-20 11:44:37.73+11 297096
  2012-10-20-1350693878.66-demo.wav 44028 CanberraMtAinsli 2012-10-20 11:44:43.154+11 374920
  2012-10-20-1350693883.32-demo.wav 44028 CanberraMtAinsli 2012-10-20 11:45:10.281+11 2259078
  2012-10-20-1350693945.19-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:45:49.631+11 372872
  2012-10-20-1350693949.74-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:45:54.02+11 358536
  2012-10-20-1350693954.44-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:46:01.632+11 606242
  2012-10-20-1350693961.83-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:46:04.805+11 251272
  2012-10-20-1350694090.63-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 11:48:18.274+11 642690
  2012-10-20-1350694098.4-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 11:48:22.277+11 323696
  2012-10-20-1350694102.65-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 11:48:40.193+11 1472648
  2012-10-20-1350694144.84-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-20 11:49:08.553+11 310460
  2012-10-20-1350694149.82-demo.wav 44040 CanberraMtAinsli 2012-10-20 11:49:23.162+11 1117210
  2012-10-20-1350694163.35-demo.wav 44040 CanberraMtAinsli 2012-10-20 11:49:25.65+11 192648
  2012-10-20-1350694166.29-demo.wav 44040 CanberraBlackMnt 2012-10-20 11:49:32.284+11 503944
  2012-10-20-1350694173.04-demo.wav 44040 CanberraBlackMnt 2012-10-20 11:49:38.441+11 448432
  2012-10-20-1350694229.87-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 11:50:34.731+11 409736
  2012-10-20-1350694236.08-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 11:50:42.592+11 542856
  2012-10-20-1350694243.55-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-20 11:50:52.495+11 749362
  2012-10-20-1350694253.38-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 11:51:03.219+11 815272
  2012-10-20-1350694292.0-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 11:51:34.501+11 209394
  2012-10-20-1350694297.61-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 11:51:42.064+11 374920
  2012-10-20-1350694302.85-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 11:51:58.024+11 1276040
  2012-10-20-1350694319.63-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 11:52:11.902+11 1026440
  2012-10-20-1350694332.84-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 11:52:50.542+11 3162214
  2012-10-20-1350694371.39-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 11:53:03.93+11 1048748
  2012-10-20-1350694407.55-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:53:35.279+11 647304
  2012-10-20-1350694415.4-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:53:39.379+11 336008
  2012-10-20-1350694426.7-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 11:53:57.55+11 907400
  2012-10-20-1350694437.74-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 11:54:24.456+11 2236552
  2012-10-20-1350694464.6-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 11:54:26.999+11 200840
  2012-10-20-1350694468.26-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:54:37.025+11 732330
  2012-10-20-1350694477.47-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:54:40.231+11 231560
  2012-10-20-1350694480.39-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:54:43.419+11 254088
  2012-10-20-1350694492.37-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:55:03.387+11 923784
  2012-10-20-1350694504.04-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:55:09.598+11 469128
  2012-10-20-1350694555.92-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 11:56:00.882+11 414258
  2012-10-20-1350694561.86-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 11:56:06.098+11 354440
  2012-10-20-1350694566.23-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 11:56:13.729+11 624586
  2012-10-20-1350694592.66-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 11:56:37.216+11 376968
  2012-10-20-1350694598.19-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 11:56:42.783+11 380178
  2012-10-20-1350694603.27-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 11:56:48.106+11 401544
  2012-10-20-1350694608.55-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 11:56:54.166+11 471176
  2012-10-20-1350694614.32-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 11:56:56.551+11 186504
  2012-10-20-1350694617.44-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 11:57:02.371+11 404752
  2012-10-20-1350694623.2-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 11:57:10.273+11 588468
  2012-10-20-1350694631.22-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 11:57:24.932+11 1146016
  2012-10-20-1350694645.75-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 11:57:37.018+11 943296
  2012-10-20-1350694657.9-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:57:43.907+11 504120
  2012-10-20-1350694664.27-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:57:54.113+11 820746
  2012-10-20-1350694674.91-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:57:58.832+11 327802
  2012-10-20-1350694679.19-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:58:02.878+11 311432
  2012-10-20-1350694691.8-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 11:58:21.738+11 827194
  2012-10-20-1350694702.12-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 11:58:25.414+11 276616
  2012-10-20-1350694705.57-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:58:49.19+11 1980552
  2012-10-20-1350694729.94-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 11:58:55.389+11 454398
  2012-10-20-1350694740.16-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 11:59:15.549+11 1290376
  2012-10-20-1350694756.47-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 11:59:21.707+11 438934
  2012-10-20-1350694761.87-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 11:59:24.412+11 213128
  2012-10-20-1350694764.59-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 11:59:28.364+11 315528
  2012-10-20-1350694769.46-demo.wav 44028 CanberraBlackMnt 2012-10-20 11:59:41.283+11 991516
  2012-10-20-1350694813.63-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 12:00:18.112+11 374920
  2012-10-20-1350694819.48-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:00:25.275+11 484170
  2012-10-20-1350694827.4-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:00:31.378+11 331896
  2012-10-20-1350694832.43-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:00:35.807+11 282624
  2012-10-20-1350694836.44-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:00:42.15+11 476922
  2012-10-20-1350694866.51-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 12:01:21.522+11 1257312
  2012-10-20-1350694882.04-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 12:01:25.09+11 249992
  2012-10-20-1350694885.24-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 12:01:31.662+11 462626
  2012-10-20-1350694892.23-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:02:06.757+11 2898056
  2012-10-20-1350694927.06-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:02:09.915+11 239752
  2012-10-20-1350694930.7-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:02:18.434+11 649352
  2012-10-20-1350694951.19-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:02:39.695+11 712840
  2012-10-20-1350694960.06-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:02:42.964+11 243618
  2012-10-20-1350694963.35-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:02:47.399+11 337986
  2012-10-20-1350694968.33-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:02:54.126+11 487560
  2012-10-20-1350694982.34-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:03:15.886+11 1134728
  2012-10-20-1350695002.18-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:03:40.416+11 1527944
  2012-10-20-1350695021.71-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:03:46.209+11 379016
  2012-10-20-1350695028.12-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:03:53.781+11 477228
  2012-10-20-1350695033.9-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:03:58.61+11 397448
  2012-10-20-1350695039.32-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:04:16.563+11 1450120
  2012-10-20-1350695056.7-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:04:20.9+11 352392
  2012-10-20-1350695061.91-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:04:26.102+11 352392
  2012-10-20-1350695067.0-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:04:30.448+11 290952
  2012-10-20-1350695105.33-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 12:05:15.466+11 850056
  2012-10-20-1350695138.19-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:05:41.758+11 299144
  2012-10-20-1350695141.87-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:05:50.412+11 716862
  2012-10-20-1350695150.58-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:05:53.179+11 217106
  2012-10-20-1350695153.56-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:06:06.565+11 1086014
  2012-10-20-1350695167.37-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:06:12.137+11 396776
  2012-10-20-1350695172.46-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:06:30.65+11 1523848
  2012-10-20-1350695191.37-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:06:33.65+11 188552
  2012-10-20-1350695194.06-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:06:40.334+11 528520
  2012-10-20-1350695200.71-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:06:48.99+11 694762
  2012-10-20-1350695248.27-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 12:07:33.933+11 476250
  2012-10-20-1350695329.91-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 12:08:53.546+11 300954
  2012-10-20-1350695335.1-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-20 12:09:05.805+11 899208
  2012-10-20-1350695346.66-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 12:09:11.275+11 384060
  2012-10-20-1350695351.4-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 12:09:19.138+11 649336
  2012-10-20-1350695425.46-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 12:10:30.954+11 461804
  2012-10-20-1350695432.16-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 12:10:34.664+11 209032
  2012-10-20-1350695437.44-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 12:10:47.803+11 868456
  2012-10-20-1350695490.22-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 12:11:33.382+11 266130
  2012-10-20-1350695494.77-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-20 12:11:48.011+11 1108080
  2012-10-20-1350695508.13-demo.wav 40091 Fire Mgt CanberraBlackMnt 2012-10-20 12:11:50.762+11 217198
  2012-10-20-1350695512.16-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:12:02.965+11 907372
  2012-10-20-1350695523.08-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:12:09.634+11 551010
  2012-10-20-1350695529.76-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:12:16.574+11 571222
  2012-10-20-1350695536.69-demo.wav 40067 CanberraMtAinsli 2012-10-20 12:12:30.264+11 1138790
  2012-10-20-1350695598.27-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:13:20.838+11 212986
  2012-10-20-1350695600.97-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:13:23.39+11 202864
  2012-10-20-1350695603.5-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:13:27.825+11 362608
  2012-10-20-1350695670.51-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 12:14:37.388+11 575600
  2012-10-20-1350695678.41-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 12:14:46.154+11 646552
  2012-10-20-1350695686.28-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 12:14:50.569+11 360554
  2012-10-20-1350695690.69-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 12:15:00.014+11 780238
  2012-10-20-1350695773.16-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 12:16:15.861+11 227464
  2012-10-20-1350695775.98-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 12:16:23.375+11 619882
  2012-10-20-1350695783.97-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 12:16:28.386+11 368082
  2012-10-20-1350695818.98-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 12:17:04.68+11 477352
  2012-10-20-1350695825.69-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 12:17:10.565+11 407664
  2012-10-20-1350695830.69-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 12:17:15.537+11 405612
  2012-10-20-1350695835.66-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 12:17:18.153+11 209006
  2012-10-20-1350695838.27-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 12:17:22.518+11 353624
  2012-10-20-1350695842.65-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:18:33.753+11 5949550
  2012-10-20-1350695913.88-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:18:36.626+11 231536
  2012-10-20-1350695916.74-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:18:43.407+11 558464
  2012-10-20-1350695981.85-demo.wav 44040 CanberraBlackMnt 2012-10-20 12:19:45.628+11 314558
  2012-10-20-1350695987.12-demo.wav 44040 CanberraBlackMnt 2012-10-20 12:19:50.844+11 313446
  2012-10-20-1350695991.96-demo.wav 44040 CanberraBlackMnt 2012-10-20 12:19:55.264+11 278664
  2012-10-20-1350695995.39-demo.wav 44040 CanberraBlackMnt 2012-10-20 12:20:01.263+11 493676
  2012-10-20-1350696002.45-demo.wav 44040 CanberraBlackMnt 2012-10-20 12:20:21.795+11 1624138
  2012-10-20-1350696021.91-demo.wav 44040 CanberraBlackMnt 2012-10-20 12:20:27.714+11 487466
  2012-10-20-1350696027.83-demo.wav 44040 CanberraBlackMnt 2012-10-20 12:20:50.45+11 1896550
  2012-10-20-1350696051.67-demo.wav 44040 CanberraBlackMnt 2012-10-20 12:20:54.135+11 204924
  2012-10-20-1350696054.64-demo.wav 44040 CanberraBlackMnt 2012-10-20 12:21:12.816+11 1525896
  2012-10-20-1350696072.93-demo.wav 44040 CanberraBlackMnt 2012-10-20 12:21:15.992+11 258154
  2012-10-20-1350696078.01-demo.wav 44040 CanberraBlackMnt 2012-10-20 12:21:20.714+11 227464
  2012-10-20-1350696081.33-demo.wav 44040 CanberraBlackMnt 2012-10-20 12:21:27.448+11 516170
  2012-10-20-1350696087.58-demo.wav 44040 CanberraBlackMnt 2012-10-20 12:21:37.388+11 823402
  2012-10-20-1350696097.52-demo.wav 44040 CanberraBlackMnt 2012-10-20 12:21:42.893+11 452222
  2012-10-20-1350696104.73-demo.wav 44040 CanberraBlackMnt 2012-10-20 12:21:50.406+11 475268
  2012-10-20-1350696128.24-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 12:22:12.549+11 360558
  2012-10-20-1350696132.67-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:22:18.053+11 446508
  2012-10-20-1350696139.91-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:22:24.849+11 413308
  2012-10-20-1350696147.01-demo.wav 44040 CanberraMtAinsli 2012-10-20 12:22:35.093+11 678024
  2012-10-20-1350696155.22-demo.wav 44040 CanberraMtAinsli 2012-10-20 12:22:37.998+11 235628
  2012-10-20-1350696159.66-demo.wav 44040 CanberraMtAinsli 2012-10-20 12:22:44.077+11 372872
  2012-10-20-1350696178.07-demo.wav 44040 CanberraMtAinsli 2012-10-20 12:23:00.956+11 241740
  2012-10-20-1350696943.6-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:36:00.298+11 1400968
  2012-10-20-1350696960.49-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:36:03.694+11 268424
  2012-10-20-1350696964.44-demo.wav 44028 CanberraMtAinsli 2012-10-20 12:36:10.807+11 534664
  2012-10-20-1350696971.02-demo.wav 44028 CanberraMtAinsli 2012-10-20 12:36:15.208+11 352392
  2012-10-20-1350696975.38-demo.wav 44028 CanberraMtAinsli 2012-10-20 12:36:18.445+11 256136
  2012-10-20-1350697105.7-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 12:38:28.21+11 209978
  2012-10-20-1350697111.96-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 12:38:40.84+11 747656
  2012-10-20-1350697127.15-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 12:38:52.435+11 442504
  2012-10-20-1350697133.35-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 12:38:55.623+11 190600
  2012-10-20-1350697137.44-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:39:13.388+11 1337670
  2012-10-20-1350697154.48-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:39:18.364+11 321976
  2012-10-20-1350697160.24-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:39:24.648+11 370820
  2012-10-20-1350697164.82-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:39:28.219+11 284700
  2012-10-20-1350697168.38-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:39:32.716+11 364078
  2012-10-20-1350697187.16-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:39:50.05+11 243598
  2012-10-20-1350697236.22-demo.wav 44028 CanberraMtAinsli 2012-10-20 12:40:38.846+11 217310
  2012-10-20-1350697239.12-demo.wav 44028 CanberraMtAinsli 2012-10-20 12:40:41.604+11 206984
  2012-10-20-1350697242.39-demo.wav 44028 CanberraMtAinsli 2012-10-20 12:40:49.895+11 630920
  2012-10-20-1350697250.06-demo.wav 44028 CanberraMtAinsli 2012-10-20 12:40:53.532+11 290820
  2012-10-20-1350697272.05-demo.wav 44028 CanberraMtAinsli 2012-10-20 12:41:15.826+11 317576
  2012-10-20-1350697382.96-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:43:09.067+11 513436
  2012-10-20-1350697390.04-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:43:13.773+11 315400
  2012-10-20-1350697394.38-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:43:21.171+11 569480
  2012-10-20-1350697534.07-demo.wav 44028 CanberraMtAinsli 2012-10-20 12:45:39.626+11 466340
  2012-10-20-1350697541.39-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:45:46.723+11 448648
  2012-10-20-1350697548.17-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:45:55.494+11 612386
  2012-10-20-1350697556.59-demo.wav 44028 CanberraBlackMnt 2012-10-20 12:46:00.501+11 329770
  2012-10-20-1350697647.03-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-20 12:47:29.527+11 208968
  2012-10-20-1350697821.48-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:50:24.65+11 265402
  2012-10-20-1350697858.05-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:51:01.846+11 317132
  2012-10-20-1350697862.12-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:51:05.61+11 293000
  2012-10-20-1350697867.82-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:51:12.477+11 391276
  2012-10-20-1350697873.16-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:51:15.668+11 210286
  2012-10-20-1350697897.7-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:51:42.275+11 385130
  2012-10-20-1350697902.72-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:51:45.272+11 213128
  2012-10-20-1350697905.7-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:51:49.867+11 350344
  2012-10-20-1350697910.54-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:52:05.871+11 1284164
  2012-10-20-1350697925.99-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:52:09.219+11 272494
  2012-10-20-1350697929.34-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:52:44.784+11 2963560
  2012-10-20-1350697964.9-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:52:47.595+11 227434
  2012-10-20-1350697967.7-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:52:50.187+11 209002
  2012-10-20-1350697971.12-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:52:55.313+11 352378
  2012-10-20-1350697978.43-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:53:01.712+11 276558
  2012-10-20-1350697994.24-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:53:32.783+11 1556616
  2012-10-20-1350698013.09-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:53:36.354+11 272520
  2012-10-20-1350698017.32-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:53:41.969+11 389226
  2012-10-20-1350698029.16-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:53:54.975+11 483464
  2012-10-20-1350698035.26-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 12:54:00.004+11 397448
  2012-10-20-1350698042.56-demo.wav 40082 SES Ops 5 CanberraMtAinsli 2012-10-20 12:54:13.488+11 912228
  2012-10-20-1350698053.7-demo.wav 40082 SES Ops 5 CanberraMtAinsli 2012-10-20 12:54:22.03+11 698458
  2012-10-20-1350698062.8-demo.wav 40082 SES Ops 5 CanberraMtAinsli 2012-10-20 12:54:32.155+11 786568
  2012-10-20-1350698072.35-demo.wav 40082 SES Ops 5 CanberraMtAinsli 2012-10-20 12:54:35.818+11 293000
  2012-10-20-1350698130.58-demo.wav 40082 SES Ops 5 CanberraMtAinsli 2012-10-20 12:55:33.406+11 234228
  2012-10-20-1350698133.77-demo.wav 40082 SES Ops 5 CanberraMtAinsli 2012-10-20 12:55:37.536+11 315528
  2012-10-20-1350698146.65-demo.wav 40082 SES Ops 5 CanberraMtAinsli 2012-10-20 12:55:52.31+11 471706
  2012-10-20-1350698155.17-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 12:56:01.369+11 520328
  2012-10-20-1350698162.18-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 12:56:04.678+11 206984
  2012-10-20-1350698242.45-demo.wav 44040 CanberraMtAinsli 2012-10-20 12:57:27.252+11 403892
  2012-10-20-1350698247.91-demo.wav 44040 CanberraMtAinsli 2012-10-20 12:57:30.921+11 254088
  2012-10-20-1350698252.05-demo.wav 44040 CanberraMtAinsli 2012-10-20 12:57:36.329+11 358522
  2012-10-20-1350698287.06-demo.wav 44040 CanberraMtAinsli 2012-10-20 12:58:12.858+11 487560
  2012-10-20-1350698293.02-demo.wav 44040 CanberraMtAinsli 2012-10-20 12:58:18.792+11 485512
  2012-10-20-1350698467.29-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-20 13:01:13.065+11 484182
  2012-10-20-1350698473.33-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-20 13:01:18.835+11 460886
  2012-10-20-1350698514.8-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 13:01:57.321+11 209568
  2012-10-20-1350698518.44-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 13:02:08.515+11 840858
  2012-10-20-1350698540.46-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 13:02:28.955+11 698862
  2012-10-20-1350698549.92-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 13:02:34.324+11 370824
  2012-10-20-1350698592.01-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-20 13:03:15.162+11 263976
  2012-10-20-1350698595.31-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-20 13:03:20.705+11 452744
  2012-10-20-1350698740.62-demo.wav 44040 CanberraMtAinsli 2012-10-20 13:05:44.27+11 305392
  2012-10-20-1350698827.97-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-20 13:07:10.486+11 210730
  2012-10-20-1350698832.25-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 13:07:20.33+11 671490
  2012-10-20-1350698843.14-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 13:07:26.307+11 266376
  2012-10-20-1350698846.88-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 13:07:31.488+11 386888
  2012-10-20-1350698940.1-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 13:09:04.403+11 359890
  2012-10-20-1350698952.16-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 13:09:19.646+11 626824
  2012-10-20-1350698960.61-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-20 13:09:32.002+11 951352
  2012-10-20-1350699015.72-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-20 13:10:35.781+11 1681544
  2012-10-20-1350699035.93-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-20 13:10:39.688+11 315528
  2012-10-20-1350699040.13-demo.wav 44040 CanberraBlackMnt 2012-10-20 13:10:53.147+11 1093768
  2012-10-20-1350699055.42-demo.wav 44040 CanberraBlackMnt 2012-10-20 13:10:58.824+11 286856
  2012-10-20-1350699059.74-demo.wav 44040 CanberraBlackMnt 2012-10-20 13:11:39.836+11 3360904
  2012-10-20-1350699100.0-demo.wav 44040 CanberraBlackMnt 2012-10-20 13:11:47.126+11 597464
  2012-10-20-1350699134.61-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 13:12:18.331+11 309890
  2012-10-20-1350699162.87-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 13:12:46.054+11 264602
  2012-10-20-1350699191.11-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 13:13:15.683+11 382832
  2012-10-20-1350699203.7-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 13:13:37.551+11 1157096
  2012-10-20-1350699218.36-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 13:13:46.893+11 714484
  2012-10-20-1350699227.77-demo.wav 40082 SES Ops 5 CanberraMtAinsli 2012-10-20 13:13:54.606+11 571012
  2012-10-20-1350699236.66-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:14:03.034+11 534664
  2012-10-20-1350699246.59-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:14:13.814+11 603906
  2012-10-20-1350699254.07-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:14:20.639+11 551048
  2012-10-20-1350699260.8-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:14:23.591+11 235608
  2012-10-20-1350699263.74-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:15:17.456+11 4503688
  2012-10-20-1350699331.26-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 13:15:48.775+11 1073290
  2012-10-20-1350699348.93-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 13:15:51.721+11 233608
  2012-10-20-1350699352.96-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 13:16:02.128+11 767234
  2012-10-20-1350699362.96-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 13:16:10.133+11 598876
  2012-10-20-1350699370.93-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 13:16:14.613+11 309384
  2012-10-20-1350699376.45-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:16:23.097+11 556666
  2012-10-20-1350699383.75-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:16:33.651+11 831102
  2012-10-20-1350699465.1-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 13:17:49.661+11 381666
  2012-10-20-1350699495.45-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 13:18:19.187+11 312528
  2012-10-20-1350699512.27-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 13:18:45.187+11 1083528
  2012-10-20-1350699525.76-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 13:18:53.191+11 624700
  2012-10-20-1350699534.06-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:19:10.747+11 1394796
  2012-10-20-1350699551.03-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:19:14.463+11 288904
  2012-10-20-1350699555.1-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:19:19.593+11 376968
  2012-10-20-1350699560.72-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:19:23.847+11 262280
  2012-10-20-1350699564.6-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:19:32.919+11 696450
  2012-10-20-1350699573.07-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:19:37.544+11 376968
  2012-10-20-1350699578.36-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:19:41.436+11 258150
  2012-10-20-1350699595.08-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:20:02.516+11 624776
  2012-10-20-1350699603.08-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:20:06.36+11 276616
  2012-10-20-1350699609.76-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:20:13.888+11 342058
  2012-10-20-1350699614.05-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:20:22.562+11 712840
  2012-10-20-1350699622.7-demo.wav 44040 CanberraMtAinsli 2012-10-20 13:20:31.732+11 759944
  2012-10-20-1350699644.43-demo.wav 44040 CanberraMtAinsli 2012-10-20 13:20:49.322+11 411784
  2012-10-20-1350699649.47-demo.wav 44040 CanberraMtAinsli 2012-10-20 13:20:53.341+11 325626
  2012-10-20-1350699709.49-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 13:21:54.515+11 420174
  2012-10-20-1350699736.99-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 13:22:20.453+11 290952
  2012-10-20-1350699768.02-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:22:53.365+11 449006
  2012-10-20-1350699773.95-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:22:56.14+11 182408
  2012-10-20-1350699776.31-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:23:02.072+11 485394
  2012-10-20-1350699803.34-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:23:27.713+11 366728
  2012-10-20-1350699808.25-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:23:31.142+11 243550
  2012-10-20-1350699811.3-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 13:24:18.398+11 3950728
  2012-10-20-1350699858.76-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 13:24:21.294+11 213128
  2012-10-20-1350699861.7-demo.wav 44040 CanberraBlackMnt 2012-10-20 13:24:39.87+11 1525896
  2012-10-20-1350699883.0-demo.wav 44040 CanberraBlackMnt 2012-10-20 13:26:35.85+11 9461896
  2012-10-20-1350700069.53-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 13:27:54.312+11 396288
  2012-10-20-1350700074.78-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 13:27:58.728+11 331912
  2012-10-20-1350700090.63-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 13:28:19.154+11 714888
  2012-10-20-1350700122.4-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 13:28:52.258+11 827528
  2012-10-20-1350700134.48-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 13:29:06.016+11 966296
  2012-10-20-1350700146.7-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 13:29:09.315+11 219272
  2012-10-20-1350700191.34-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 13:29:56.703+11 448058
  2012-10-20-1350700220.36-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 13:30:22.9+11 211186
  2012-10-20-1350700225.51-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 13:30:39.38+11 1161352
  2012-10-20-1350700357.08-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:32:39.726+11 222614
  2012-10-20-1350700360.6-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:32:45.818+11 436360
  2012-10-20-1350700384.81-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:33:14.774+11 837768
  2012-10-20-1350700396.47-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:33:19.097+11 221314
  2012-10-20-1350700401.05-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:33:27.279+11 526466
  2012-10-20-1350700408.56-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:33:32.72+11 352010
  2012-10-20-1350700412.99-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:33:35.275+11 194696
  2012-10-20-1350700416.22-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-20 13:33:41.88+11 477320
  2012-10-20-1350700422.73-demo.wav 44028 CanberraBlackMnt 2012-10-20 13:33:48.311+11 466214
  2012-10-20-1350700588.06-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 13:36:30.605+11 210574
  2012-10-20-1350700662.25-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:37:45.749+11 291636
  2012-10-20-1350700701.53-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:38:24.064+11 210622
  2012-10-20-1350700719.04-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 13:38:41.554+11 211080
  2012-10-20-1350700738.94-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:39:04.293+11 446600
  2012-10-20-1350700888.27-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:41:32.589+11 360936
  2012-10-20-1350700931.96-demo.wav 44040 CanberraMtAinsli 2012-10-20 13:42:16.482+11 379490
  2012-10-20-1350700938.94-demo.wav 44040 CanberraBlackMnt 2012-10-20 13:42:30.256+11 946604
  2012-10-20-1350700951.89-demo.wav 44040 CanberraBlackMnt 2012-10-20 13:43:35.872+11 5353608
  2012-10-20-1350701030.86-demo.wav 44040 CanberraMtAinsli 2012-10-20 13:43:57.671+11 571528
  2012-10-20-1350701093.36-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:44:58.282+11 408400
  2012-10-20-1350701099.24-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:45:05.54+11 528518
  2012-10-20-1350701107.33-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:45:14.54+11 604296
  2012-10-20-1350701147.46-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:45:49.978+11 210360
  2012-10-20-1350701155.9-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:45:58.84+11 245896
  2012-10-20-1350701188.98-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:46:34.97+11 501794
  2012-10-20-1350701195.78-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:46:40.131+11 364680
  2012-10-20-1350701200.56-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:46:45.133+11 382982
  2012-10-20-1350701206.04-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:46:55.685+11 807400
  2012-10-20-1350701216.23-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:46:59.702+11 290952
  2012-10-20-1350701220.15-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:47:05.696+11 465030
  2012-10-20-1350701226.49-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:47:11.389+11 409728
  2012-10-20-1350701232.5-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:47:16.411+11 327288
  2012-10-20-1350701272.41-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:47:58.839+11 538036
  2012-10-20-1350701279.17-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:48:05.125+11 497800
  2012-10-20-1350701285.24-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:48:11.38+11 516232
  2012-10-20-1350701529.5-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 13:52:14.387+11 408336
  2012-10-20-1350701535.84-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 13:52:19.762+11 329864
  2012-10-20-1350701551.96-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 13:52:36.686+11 395400
  2012-10-20-1350701824.85-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:57:11.092+11 524104
  2012-10-20-1350701831.51-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 13:57:18.119+11 557162
  2012-10-20-1350702030.27-demo.wav 44040 CanberraMtAinsli 2012-10-20 14:00:34.997+11 398952
  2012-10-20-1350702035.34-demo.wav 44040 CanberraMtAinsli 2012-10-20 14:00:38.715+11 286856
  2012-10-20-1350702039.64-demo.wav 44040 CanberraMtAinsli 2012-10-20 14:01:57.42+11 6514824
  2012-10-20-1350702117.53-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:02:11.956+11 1212552
  2012-10-20-1350702152.73-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 14:02:35.222+11 211080
  2012-10-20-1350702156.16-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-20 14:02:43.118+11 581914
  2012-10-20-1350702163.99-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 14:02:51.92+11 664192
  2012-10-20-1350702172.17-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 14:02:55.075+11 245896
  2012-10-20-1350702175.19-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 14:03:01.768+11 552984
  2012-10-20-1350702193.76-demo.wav 44040 CanberraMtAinsli 2012-10-20 14:03:22.623+11 741702
  2012-10-20-1350702202.74-demo.wav 44040 CanberraMtAinsli 2012-10-20 14:03:29.294+11 552794
  2012-10-20-1350702209.45-demo.wav 44040 CanberraMtAinsli 2012-10-20 14:03:52.909+11 1968264
  2012-10-20-1350702242.47-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 14:04:06.632+11 350344
  2012-10-20-1350702247.99-demo.wav 44040 CanberraMtAinsli 2012-10-20 14:04:13.718+11 483464
  2012-10-20-1350702253.83-demo.wav 44040 CanberraMtAinsli 2012-10-20 14:04:17.945+11 348296
  2012-10-20-1350702258.06-demo.wav 44040 CanberraMtAinsli 2012-10-20 14:04:20.85+11 237638
  2012-10-20-1350702261.72-demo.wav 44040 CanberraMtAinsli 2012-10-20 14:04:49.493+11 2330730
  2012-10-20-1350702289.61-demo.wav 44040 CanberraMtAinsli 2012-10-20 14:05:07.108+11 1468546
  2012-10-20-1350702381.31-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 14:06:23.795+11 209108
  2012-10-20-1350702384.78-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 14:06:30.683+11 492570
  2012-10-20-1350702390.94-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 14:06:35.453+11 381064
  2012-10-20-1350702396.5-demo.wav 40082 SES Ops 5 CanberraBlackMnt 2012-10-20 14:06:40.505+11 338056
  2012-10-20-1350702401.71-demo.wav 40082 SES Ops 5 CanberraMtAinsli 2012-10-20 14:06:49.84+11 684168
  2012-10-20-1350702411.39-demo.wav 40082 SES Ops 5 CanberraMtAinsli 2012-10-20 14:06:54.474+11 260214
  2012-10-20-1350702630.34-demo.wav 44040 CanberraMtAinsli 2012-10-20 14:10:34.743+11 367460
  2012-10-20-1350702636.27-demo.wav 44040 CanberraMtAinsli 2012-10-20 14:10:39.098+11 235656
  2012-10-20-1350702639.79-demo.wav 44040 CanberraMtAinsli 2012-10-20 14:10:55.473+11 1317000
  2012-10-20-1350702916.98-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 14:15:19.578+11 216890
  2012-10-20-1350702937.93-demo.wav 40091 Fire Mgt CanberraMtAinsli 2012-10-20 14:15:41.528+11 301192
  2012-10-20-1350703017.09-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 14:16:59.61+11 208322
  2012-10-20-1350703092.28-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:18:16.181+11 326990
  2012-10-20-1350703097.19-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:18:20.216+11 252040
  2012-10-20-1350703124.48-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:18:55.822+11 947548
  2012-10-20-1350703135.99-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:18:58.868+11 241800
  2012-10-20-1350703139.04-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:19:01.691+11 225416
  2012-10-20-1350703142.31-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:19:07.003+11 393232
  2012-10-20-1350703147.17-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:19:12.091+11 413420
  2012-10-20-1350703152.68-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:19:15.472+11 235656
  2012-10-20-1350703408.66-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:23:31.201+11 211170
  2012-10-20-1350703411.36-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:23:34.631+11 274568
  2012-10-20-1350703415.39-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:23:38.219+11 237704
  2012-10-20-1350703419.49-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:23:44.567+11 420494
  2012-10-20-1350703424.72-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:23:50.006+11 442504
  2012-10-20-1350703430.35-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:24:08.056+11 1486984
  2012-10-20-1350703551.66-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:25:54.259+11 216118
  2012-10-20-1350703555.3-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:25:58.74+11 286856
  2012-10-20-1350703559.62-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:26:06.571+11 581038
  2012-10-20-1350703567.18-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:26:10.512+11 280702
  2012-10-20-1350703712.03-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 14:28:34.55+11 209648
  2012-10-20-1350703928.69-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 14:32:11.187+11 208492
  2012-10-20-1350704238.15-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 14:37:20.664+11 210140
  2012-10-20-1350704560.6-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 14:42:44.725+11 345140
  2012-10-20-1350704566.08-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 14:42:51.547+11 458888
  2012-10-20-1350704572.46-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 14:43:00.493+11 668136
  2012-10-20-1350704581.38-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 14:43:09.421+11 670042
  2012-10-20-1350704693.75-demo.wav 44014 CanberraBlackMnt 2012-10-20 14:44:57.746+11 335900
  2012-10-20-1350704697.9-demo.wav 44014 CanberraBlackMnt 2012-10-20 14:45:00.299+11 204936
  2012-10-20-1350704701.18-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 14:45:09.414+11 685264
  2012-10-20-1350704797.73-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:46:41.502+11 315988
  2012-10-20-1350704802.9-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:46:49.542+11 553782
  2012-10-20-1350704810.48-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:46:57.435+11 579926
  2012-10-20-1350704817.62-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:47:06.176+11 716824
  2012-10-20-1350704835.35-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:47:17.947+11 221320
  2012-10-20-1350704838.68-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:47:23.244+11 383112
  2012-10-20-1350704843.4-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:47:25.509+11 180352
  2012-10-20-1350704845.65-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:47:27.822+11 183642
  2012-10-20-1350704884.13-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:48:06.673+11 212350
  2012-10-20-1350704886.82-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:48:09.687+11 243848
  2012-10-20-1350704891.18-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:48:15.939+11 399496
  2012-10-20-1350704896.56-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:48:22.639+11 510088
  2012-10-20-1350704912.01-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:48:59.697+11 2320520
  2012-10-20-1350704939.85-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:49:37.744+11 3178632
  2012-10-20-1350704977.9-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:49:40.074+11 184456
  2012-10-20-1350704980.74-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:49:46.136+11 452744
  2012-10-20-1350705067.91-demo.wav 44014 CanberraBlackMnt 2012-10-20 14:51:14.748+11 575624
  2012-10-20-1350705124.39-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:52:08.972+11 383558
  2012-10-20-1350705132.35-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 14:52:19.064+11 563336
  2012-10-20-1350705139.23-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 14:52:21.6+11 200840
  2012-10-20-1350705142.11-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 14:52:27.724+11 471176
  2012-10-20-1350705152.67-demo.wav 44014 CanberraBlackMnt 2012-10-20 14:52:49.347+11 1395802
  2012-10-20-1350705169.53-demo.wav 44014 CanberraBlackMnt 2012-10-20 14:52:53.926+11 368776
  2012-10-20-1350705227.36-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:53:51.649+11 357134
  2012-10-20-1350705234.92-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:54:01.359+11 540808
  2012-10-20-1350705247.66-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:54:10.674+11 256136
  2012-10-20-1350705250.83-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:54:15.028+11 352346
  2012-10-20-1350705255.18-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:54:17.835+11 225416
  2012-10-20-1350705258.0-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:54:44.831+11 2250888
  2012-10-20-1350705284.99-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:55:07.299+11 1871952
  2012-10-20-1350705307.91-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:55:10.634+11 231560
  2012-10-20-1350705359.94-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:56:02.453+11 210886
  2012-10-20-1350705368.19-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:56:10.716+11 215176
  2012-10-20-1350705370.95-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:56:13.875+11 247944
  2012-10-20-1350705374.9-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:56:17.593+11 223368
  2012-10-20-1350705378.27-demo.wav 44028 CanberraBlackMnt 2012-10-20 14:56:22.013+11 312854
  2012-10-20-1350705558.38-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:59:22.351+11 227986
  2012-10-20-1350705564.87-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:59:31.711+11 575624
  2012-10-20-1350705573.14-demo.wav 44040 CanberraBlackMnt 2012-10-20 14:59:38.937+11 487498
  2012-10-20-1350705579.09-demo.wav 44040 CanberraBlackMnt 2012-10-20 15:00:09.185+11 2525320
  2012-10-20-1350705609.34-demo.wav 44040 CanberraBlackMnt 2012-10-20 15:00:24.78+11 1296520
  2012-10-20-1350705643.06-demo.wav 44040 CanberraBlackMnt 2012-10-20 15:00:51.652+11 721032
  2012-10-20-1350705653.8-demo.wav 44040 CanberraBlackMnt 2012-10-20 15:00:57.76+11 330972
  2012-10-20-1350705989.53-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 15:06:33.311+11 312968
  2012-10-20-1350705994.28-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 15:06:37.459+11 264328
  2012-10-20-1350705998.58-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 15:06:42.876+11 358536
  2012-10-20-1350706003.08-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 15:06:48.055+11 415880
  2012-10-20-1350706008.38-demo.wav 44014 CanberraBlackMnt 2012-10-20 15:06:56.429+11 675976
  2012-10-20-1350706135.06-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 15:08:59.079+11 336162
  2012-10-20-1350706140.71-demo.wav 44028 CanberraBlackMnt 2012-10-20 15:09:06.797+11 512136
  2012-10-20-1350706147.26-demo.wav 44028 CanberraBlackMnt 2012-10-20 15:09:10.179+11 247944
  2012-10-20-1350706150.33-demo.wav 44028 CanberraBlackMnt 2012-10-20 15:09:14.981+11 389212
  2012-10-20-1350706211.87-demo.wav 44040 CanberraMtAinsli 2012-10-20 15:10:15.195+11 278004
  2012-10-20-1350706215.4-demo.wav 44040 CanberraMtAinsli 2012-10-20 15:10:19.487+11 344200
  2012-10-20-1350706220.21-demo.wav 44040 CanberraMtAinsli 2012-10-20 15:10:23.107+11 245896
  2012-10-20-1350706223.28-demo.wav 44040 CanberraMtAinsli 2012-10-20 15:10:25.852+11 219272
  2012-10-20-1350706226.75-demo.wav 44040 CanberraMtAinsli 2012-10-20 15:10:31.674+11 413832
  2012-10-20-1350706232.67-demo.wav 44040 CanberraMtAinsli 2012-10-20 15:10:37.082+11 366132
  2012-10-20-1350706237.35-demo.wav 44040 CanberraMtAinsli 2012-10-20 15:10:41.405+11 340096
  2012-10-20-1350706728.87-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 15:18:52.636+11 314556
  2012-10-20-1350706739.97-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 15:19:12.243+11 1030280
  2012-10-20-1350706752.49-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 15:19:14.902+11 204936
  2012-10-20-1350707448.78-demo.wav 44028 CanberraMtAinsli 2012-10-20 15:30:51.878+11 259464
  2012-10-20-1350707453.37-demo.wav 44028 CanberraBlackMnt 2012-10-20 15:31:00.027+11 553702
  2012-10-20-1350707460.18-demo.wav 44028 CanberraBlackMnt 2012-10-20 15:31:02.979+11 237704
  2012-10-20-1350707463.13-demo.wav 44028 CanberraBlackMnt 2012-10-20 15:31:10.157+11 589746
  2012-10-20-1350707470.31-demo.wav 44028 CanberraBlackMnt 2012-10-20 15:31:16.712+11 536712
  2012-10-20-1350707476.87-demo.wav 44028 CanberraMtAinsli 2012-10-20 15:31:22.406+11 464666
  2012-10-20-1350707668.24-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-20 15:34:33.541+11 443188
  2012-10-20-1350707673.69-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-20 15:34:41.897+11 688264
  2012-10-20-1350707682.07-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-20 15:34:49.489+11 620542
  2012-10-20-1350707810.41-demo.wav 44040 CanberraBlackMnt 2012-10-20 15:36:52.947+11 212038
  2012-10-20-1350707813.11-demo.wav 44040 CanberraBlackMnt 2012-10-20 15:36:56.441+11 282760
  2012-10-20-1350707816.69-demo.wav 44040 CanberraBlackMnt 2012-10-20 15:37:04.335+11 641160
  2012-10-20-1350707825.66-demo.wav 44040 CanberraBlackMnt 2012-10-20 15:37:08.1+11 206984
  2012-10-20-1350707828.26-demo.wav 44040 CanberraBlackMnt 2012-10-20 15:37:14.193+11 499848
  2012-10-20-1350707834.34-demo.wav 44040 CanberraBlackMnt 2012-10-20 15:37:18.357+11 335544
  2012-10-20-1350707839.12-demo.wav 44040 CanberraBlackMnt 2012-10-20 15:37:24.561+11 454436
  2012-10-20-1350707844.72-demo.wav 44040 CanberraBlackMnt 2012-10-20 15:37:27.608+11 245896
  2012-10-20-1350707848.31-demo.wav 44040 CanberraBlackMnt 2012-10-20 15:37:32.553+11 356476
  2012-10-20-1350707900.63-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 15:38:33.113+11 1048712
  2012-10-20-1350707914.2-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 15:38:41.216+11 589960
  2012-10-20-1350707922.21-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 15:38:51.884+11 813110
  2012-10-20-1350707932.07-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 15:38:55.466+11 286422
  2012-10-20-1350708056.8-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 15:41:02.153+11 449782
  2012-10-20-1350708081.97-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-20 15:41:24.536+11 213238
  2012-10-20-1350708085.34-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-20 15:41:30.751+11 452744
  2012-10-20-1350708126.13-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 15:42:08.667+11 209616
  2012-10-20-1350708132.94-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-20 15:42:18.067+11 430216
  2012-10-20-1350708165.72-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-20 15:42:57.16+11 957972
  2012-10-20-1350708177.65-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-20 15:43:03.563+11 495630
  2012-10-20-1350708290.14-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 15:44:56.407+11 524990
  2012-10-20-1350708299.56-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 15:45:03.17+11 299666
  2012-10-20-1350708304.03-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 15:45:15.983+11 1000352
  2012-10-20-1350708316.28-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 15:45:27.95+11 976866
  2012-10-20-1350708328.47-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 15:45:47.559+11 1601668
  2012-10-20-1350708347.71-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 15:45:53.488+11 483458
  2012-10-20-1350708353.64-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 15:46:05.224+11 972936
  2012-10-20-1350708382.18-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 15:46:35.568+11 1117972
  2012-10-20-1350708395.71-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 15:47:12.059+11 3047560
  2012-10-20-1350708831.29-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-20 15:53:55.424+11 342560
  2012-10-20-1350708835.69-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-20 15:54:02.418+11 563246
  2012-10-20-1350708894.47-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 15:54:56.986+11 210094
  2012-10-20-1350708897.14-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 15:55:03.98+11 573576
  2012-10-20-1350708904.3-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 15:55:17.091+11 1068736
  2012-10-20-1350708918.05-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 15:55:27.736+11 809356
  2012-10-20-1350708928.64-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 15:55:35.919+11 610414
  2012-10-20-1350708936.74-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-20 15:55:50.624+11 1162208
  2012-10-20-1350708960.39-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 15:56:13.35+11 1087624
  2012-10-20-1350708974.11-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 15:56:18.302+11 350308
  2012-10-20-1350708978.92-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 15:56:42.624+11 1990792
  2012-10-20-1350709160.88-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 15:59:24.341+11 290082
  2012-10-20-1350709165.19-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 15:59:28.902+11 311432
  2012-10-20-1350709169.35-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 15:59:35.503+11 516232
  2012-10-20-1350709212.47-demo.wav 44040 CanberraBlackMnt 2012-10-20 16:00:16.858+11 368564
  2012-10-20-1350709218.84-demo.wav 44040 CanberraBlackMnt 2012-10-20 16:00:24.626+11 481668
  2012-10-20-1350709225.51-demo.wav 44040 CanberraBlackMnt 2012-10-20 16:00:34.949+11 791508
  2012-10-20-1350709235.09-demo.wav 44040 CanberraBlackMnt 2012-10-20 16:00:38.89+11 321486
  2012-10-20-1350709239.37-demo.wav 44040 CanberraBlackMnt 2012-10-20 16:00:58.113+11 1574852
  2012-10-20-1350713829.3-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 17:17:13.551+11 355900
  2012-10-20-1350713835.28-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 17:17:18.476+11 268424
  2012-10-20-1350713839.52-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 17:17:22.623+11 262280
  2012-10-20-1350713855.9-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-20 17:17:42.376+11 542856
  2012-10-20-1350713863.22-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 17:17:52.626+11 786054
  2012-10-20-1350713873.37-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 17:18:07.216+11 1161352
  2012-10-20-1350713918.55-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 17:18:51.556+11 1089998
  2012-10-20-1350713932.3-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 17:18:56.002+11 313142
  2012-10-20-1350713936.8-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 17:19:01.768+11 412916
  2012-10-20-1350713942.32-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 17:19:05.495+11 268118
  2012-10-20-1350714027.22-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 17:20:30.071+11 234228
  2012-10-20-1350714047.23-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 17:20:50.037+11 237704
  2012-10-20-1350714050.67-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 17:20:53.722+11 256136
  2012-10-20-1350714053.89-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-20 17:20:57.958+11 344200
  2012-10-20-1350714058.92-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 17:21:06.157+11 606308
  2012-10-20-1350714066.31-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 17:21:10.416+11 346248
  2012-10-20-1350714834.4-demo.wav 44028 CanberraBlackMnt 2012-10-20 17:33:56.997+11 216148
  2012-10-20-1350715337.28-demo.wav 44040 CanberraBlackMnt 2012-10-20 17:42:22.082+11 402362
  2012-10-20-1350715364.26-demo.wav 44040 CanberraBlackMnt 2012-10-20 17:42:48.055+11 321640
  2012-10-20-1350715371.57-demo.wav 44040 CanberraBlackMnt 2012-10-20 17:42:54.42+11 239752
  2012-10-20-1350715402.83-demo.wav 44040 CanberraBlackMnt 2012-10-20 17:43:29.879+11 592008
  2012-10-20-1350715410.15-demo.wav 44040 CanberraBlackMnt 2012-10-20 17:43:35.959+11 485512
  2012-10-20-1350715598.72-demo.wav 44028 CanberraMtAinsli 2012-10-20 17:46:43.328+11 384410
  2012-10-20-1350715604.92-demo.wav 44028 CanberraMtAinsli 2012-10-20 17:46:51.355+11 540808
  2012-10-20-1350715611.52-demo.wav 44028 CanberraMtAinsli 2012-10-20 17:46:56.636+11 426120
  2012-10-20-1350715617.61-demo.wav 44028 CanberraMtAinsli 2012-10-20 17:47:02.761+11 432264
  2012-10-20-1350715622.93-demo.wav 44028 CanberraMtAinsli 2012-10-20 17:47:07.07+11 350344
  2012-10-20-1350715627.5-demo.wav 44028 CanberraMtAinsli 2012-10-20 17:47:13.42+11 497680
  2012-10-20-1350715634.07-demo.wav 44028 CanberraMtAinsli 2012-10-20 17:47:18.399+11 366728
  2012-10-20-1350716634.99-demo.wav 44014 CanberraMtAinsli 2012-10-20 18:04:00.287+11 444968
  2012-10-20-1350716640.57-demo.wav 44014 CanberraMtAinsli 2012-10-20 18:04:07.21+11 559240
  2012-10-20-1350716647.39-demo.wav 44014 CanberraMtAinsli 2012-10-20 18:04:10.639+11 274524
  2012-10-20-1350718661.82-demo.wav 44028 CanberraBlackMnt 2012-10-20 18:37:44.521+11 223384
  2012-10-20-1350718687.1-demo.wav 44028 CanberraBlackMnt 2012-10-20 18:38:10.047+11 248486
  2012-10-20-1350718690.14-demo.wav 44028 CanberraBlackMnt 2012-10-20 18:38:12.459+11 196718
  2012-10-20-1350718693.29-demo.wav 44028 CanberraBlackMnt 2012-10-20 18:38:16.452+11 268424
  2012-10-20-1350718697.34-demo.wav 44028 CanberraBlackMnt 2012-10-20 18:38:25.956+11 722976
  2012-10-20-1350718706.09-demo.wav 44028 CanberraBlackMnt 2012-10-20 18:38:58.415+11 2709612
  2012-10-20-1350718738.55-demo.wav 44028 CanberraBlackMnt 2012-10-20 18:39:01.354+11 237680
  2012-10-20-1350718741.45-demo.wav 44028 CanberraBlackMnt 2012-10-20 18:39:04.294+11 241762
  2012-10-20-1350720272.07-demo.wav 44028 CanberraMtAinsli 2012-10-20 19:04:34.619+11 211440
  2012-10-20-1350720278.14-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:04:46.2+11 674058
  2012-10-20-1350720287.19-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:04:52.605+11 456804
  2012-10-20-1350720294.5-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:04:57.382+11 243848
  2012-10-20-1350720298.57-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:05:01.887+11 280694
  2012-10-20-1350720330.3-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:05:33.978+11 311054
  2012-10-20-1350720335.26-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:05:37.795+11 215176
  2012-10-20-1350720338.21-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:05:44.744+11 549000
  2012-10-20-1350720555.55-demo.wav 44028 CanberraMtAinsli 2012-10-20 19:09:18.074+11 210592
  2012-10-20-1350720561.37-demo.wav 44028 CanberraMtAinsli 2012-10-20 19:09:25.486+11 346248
  2012-10-20-1350720565.62-demo.wav 44028 CanberraMtAinsli 2012-10-20 19:09:29.496+11 327782
  2012-10-20-1350720569.6-demo.wav 44028 CanberraMtAinsli 2012-10-20 19:09:32.546+11 249966
  2012-10-20-1350720586.12-demo.wav 44028 CanberraMtAinsli 2012-10-20 19:09:50.437+11 364656
  2012-10-20-1350720591.35-demo.wav 44028 CanberraMtAinsli 2012-10-20 19:09:53.982+11 219272
  2012-10-20-1350720594.64-demo.wav 44028 CanberraMtAinsli 2012-10-20 19:09:57.258+11 223364
  2012-10-20-1350720720.49-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-20 19:12:06.367+11 490496
  2012-10-20-1350720727.37-demo.wav 44028 CanberraMtAinsli 2012-10-20 19:12:24.894+11 1470570
  2012-10-20-1350720745.02-demo.wav 44028 CanberraMtAinsli 2012-10-20 19:12:29.112+11 344170
  2012-10-20-1350720749.23-demo.wav 44028 CanberraMtAinsli 2012-10-20 19:12:33.473+11 358506
  2012-10-20-1350721013.85-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:16:56.353+11 212238
  2012-10-20-1350721016.44-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:17:00.778+11 364656
  2012-10-20-1350721021.35-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:17:07.007+11 475222
  2012-10-20-1350721027.87-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-20 19:17:14.691+11 571528
  2012-10-20-1350721034.78-demo.wav 40078 SES Ops 1 CanberraMtAinsli 2012-10-20 19:17:18.968+11 350320
  2012-10-20-1350722003.24-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:33:25.917+11 224566
  2012-10-20-1350722084.63-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:34:48.15+11 293438
  2012-10-20-1350722088.29-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:34:51.759+11 292976
  2012-10-20-1350722091.88-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:34:54.827+11 249964
  2012-10-20-1350722094.92-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:34:59.331+11 370764
  2012-10-20-1350722099.51-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:35:16.039+11 1384584
  2012-10-20-1350722119.54-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:35:45.767+11 2199688
  2012-10-20-1350722147.62-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:35:49.84+11 188552
  2012-10-20-1350722887.55-demo.wav 44028 CanberraBlackMnt 2012-10-20 19:48:11.741+11 351060
  2012-10-20-1350722933.4-demo.wav 44028 CanberraMtAinsli 2012-10-20 19:48:57.172+11 315858
  2012-10-20-1350722938.55-demo.wav 44028 CanberraMtAinsli 2012-10-20 19:49:01.101+11 215176
  2012-10-20-1350722942.09-demo.wav 44028 CanberraMtAinsli 2012-10-20 19:49:07.65+11 469104
  2012-10-20-1350722947.75-demo.wav 44028 CanberraMtAinsli 2012-10-20 19:49:13.305+11 466924
  2012-10-20-1350723188.56-demo.wav 44014 CanberraBlackMnt 2012-10-20 19:53:13.023+11 374388
  2012-10-20-1350723193.16-demo.wav 44014 CanberraBlackMnt 2012-10-20 19:53:18.167+11 421996
  2012-10-20-1350723198.27-demo.wav 44014 CanberraBlackMnt 2012-10-20 19:53:20.915+11 225386
  2012-10-20-1350723202.39-demo.wav 44014 CanberraMtAinsli 2012-10-20 19:53:31.487+11 761992
  2012-10-20-1350723211.59-demo.wav 44014 CanberraMtAinsli 2012-10-20 19:53:34.907+11 280688
  2012-10-20-1350723215.1-demo.wav 44014 CanberraMtAinsli 2012-10-20 19:53:37.288+11 186504
  2012-10-20-1350723217.39-demo.wav 44014 CanberraMtAinsli 2012-10-20 19:53:40.466+11 260208
  2012-10-20-1350723220.56-demo.wav 44014 CanberraMtAinsli 2012-10-20 19:53:43.341+11 235632
  2012-10-20-1350723354.23-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 19:55:58.511+11 358114
  2012-10-20-1350723359.52-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-20 19:56:06.828+11 614512
  2012-10-20-1350723775.46-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:02:59.542+11 340830
  2012-10-20-1350723780.57-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:03:04.446+11 327792
  2012-10-20-1350723784.74-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:03:08.885+11 348296
  2012-10-20-1350723789.12-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:03:13.663+11 383112
  2012-10-20-1350723815.67-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:03:43.692+11 673642
  2012-10-20-1350723824.18-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:03:53.645+11 796808
  2012-10-20-1350723905.89-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:05:10.047+11 346610
  2012-10-20-1350723911.32-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:05:13.736+11 204936
  2012-10-20-1350723913.83-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:05:18.817+11 419948
  2012-10-20-1350723918.94-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:05:24.998+11 509834
  2012-10-20-1350723975.65-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:06:21.784+11 512406
  2012-10-20-1350723982.93-demo.wav 44028 CanberraMtAinsli 2012-10-20 20:06:31.912+11 755848
  2012-10-20-1350724026.09-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:07:13.683+11 638376
  2012-10-20-1350724034.52-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:07:19.003+11 376960
  2012-10-20-1350724040.89-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:07:45.423+11 2056328
  2012-10-20-1350724072.17-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:07:55.15+11 251962
  2012-10-20-1350724527.07-demo.wav 44028 CanberraMtAinsli 2012-10-20 20:15:29.829+11 232470
  2012-10-20-1350724530.86-demo.wav 44028 CanberraMtAinsli 2012-10-20 20:15:37.544+11 563312
  2012-10-20-1350724537.67-demo.wav 44028 CanberraMtAinsli 2012-10-20 20:15:42.609+11 415856
  2012-10-20-1350724543.87-demo.wav 44028 CanberraMtAinsli 2012-10-20 20:15:47.72+11 325768
  2012-10-20-1350725294.03-demo.wav 44028 CanberraMtAinsli 2012-10-20 20:28:18.92+11 408690
  2012-10-20-1350725299.07-demo.wav 44028 CanberraMtAinsli 2012-10-20 20:28:21.236+11 184428
  2012-10-20-1350726701.55-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:51:44.086+11 212396
  2012-10-20-1350726705.13-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:51:49.085+11 330164
  2012-10-20-1350726709.18-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:51:55.413+11 518250
  2012-10-20-1350726777.71-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:53:00.235+11 211766
  2012-10-20-1350726780.36-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:53:02.742+11 202860
  2012-10-20-1350726784.58-demo.wav 44028 CanberraBlackMnt 2012-10-20 20:53:10.122+11 467050
  2012-10-20-1350726978.94-demo.wav 44014 CanberraBlackMnt 2012-10-20 20:56:25.56+11 552412
  2012-10-20-1350726986.16-demo.wav 44014 CanberraBlackMnt 2012-10-20 20:56:30.529+11 368766
  2012-10-20-1350726990.63-demo.wav 44014 CanberraBlackMnt 2012-10-20 20:56:34.028+11 286824
  2012-10-20-1350726994.13-demo.wav 44014 CanberraBlackMnt 2012-10-20 20:57:10.527+11 3049580
  2012-10-20-1350727213.21-demo.wav 44014 CanberraMtAinsli 2012-10-20 21:00:19.929+11 565140
  2012-10-20-1350727220.04-demo.wav 44014 CanberraMtAinsli 2012-10-20 21:00:22.373+11 198768
  2012-10-20-1350727542.91-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:05:46.592+11 306142
  2012-10-20-1350727548.26-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:05:53.86+11 467598
  2012-10-20-1350727679.68-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:08:04.126+11 373138
  2012-10-20-1350727684.27-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:08:06.506+11 190576
  2012-10-20-1350727686.79-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:08:14.238+11 626824
  2012-10-20-1350727754.95-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:09:17.812+11 239780
  2012-10-20-1350727757.97-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:09:20.257+11 194696
  2012-10-20-1350727760.39-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:09:26.678+11 528520
  2012-10-20-1350727767.68-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:09:33.626+11 498324
  2012-10-20-1350727773.91-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:09:38.371+11 376872
  2012-10-20-1350728022.08-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:13:44.592+11 210914
  2012-10-20-1350728026.47-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:13:51.237+11 401516
  2012-10-20-1350728031.34-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:13:58.345+11 589814
  2012-10-20-1350728038.54-demo.wav 44014 CanberraBlackMnt 2012-10-20 21:14:13.903+11 1292424
  2012-10-20-1350728054.04-demo.wav 44014 CanberraBlackMnt 2012-10-20 21:14:17.769+11 315504
  2012-10-20-1350728057.87-demo.wav 44014 CanberraBlackMnt 2012-10-20 21:14:22.608+11 399346
  2012-10-20-1350728062.71-demo.wav 44014 CanberraBlackMnt 2012-10-20 21:14:48.485+11 2164846
  2012-10-20-1350729188.27-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:33:10.974+11 225776
  2012-10-20-1350729191.71-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:33:14.261+11 217224
  2012-10-20-1350729195.35-demo.wav 44028 CanberraMtAinsli 2012-10-20 21:33:21.618+11 523246
  2012-10-20-1350729203.47-demo.wav 44028 CanberraMtAinsli 2012-10-20 21:33:28.368+11 413832
  2012-10-20-1350729209.52-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:33:37.097+11 637064
  2012-10-20-1350729217.22-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:33:41.406+11 354440
  2012-10-20-1350729221.92-demo.wav 44028 CanberraBlackMnt 2012-10-20 21:33:47.246+11 448648
  2012-10-20-1350729227.85-demo.wav 44014 CanberraBlackMnt 2012-10-20 21:33:59.153+11 948144
  2012-10-20-1350729239.47-demo.wav 44014 CanberraBlackMnt 2012-10-20 21:34:06.429+11 585864
  2012-10-20-1350729246.55-demo.wav 44014 CanberraBlackMnt 2012-10-20 21:34:16.801+11 860296
  2012-10-20-1350734030.46-demo.wav 44028 CanberraMtAinsli 2012-10-20 22:53:57.331+11 576518
  2012-10-20-1350734038.14-demo.wav 44028 CanberraMtAinsli 2012-10-20 22:54:01.001+11 241800
  2012-10-20-1350734042.48-demo.wav 44028 CanberraMtAinsli 2012-10-20 22:54:09.538+11 594056
  2012-10-20-1350734049.65-demo.wav 44028 CanberraMtAinsli 2012-10-20 22:54:25.859+11 1362056
  2012-10-20-1350734067.25-demo.wav 44028 CanberraBlackMnt 2012-10-20 22:54:35.625+11 702676
  2012-10-21-1350738319.2-demo.wav 44028 CanberraBlackMnt 2012-10-21 00:05:21.962+11 233294
  2012-10-21-1350738322.7-demo.wav 44028 CanberraBlackMnt 2012-10-21 00:05:24.866+11 184456
  2012-10-21-1350738325.47-demo.wav 44028 CanberraBlackMnt 2012-10-21 00:05:29.638+11 338056
  2012-10-21-1350738330.32-demo.wav 44028 CanberraBlackMnt 2012-10-21 00:05:35.783+11 458888
  2012-10-21-1350765982.89-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:46:25.401+11 209934
  2012-10-21-1350765987.63-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:46:42.293+11 1233032
  2012-10-21-1350766024.25-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:47:07.675+11 290266
  2012-10-21-1350766053.48-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:47:39.599+11 513752
  2012-10-21-1350766063.2-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:47:50.496+11 610410
  2012-10-21-1350766087.99-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:48:11.329+11 282704
  2012-10-21-1350766091.97-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:48:15.924+11 333960
  2012-10-21-1350766096.13-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:48:20.681+11 378246
  2012-10-21-1350766331.49-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:52:15.767+11 357300
  2012-10-21-1350766336.82-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:52:19.612+11 237704
  2012-10-21-1350766566.15-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:56:09.842+11 309340
  2012-10-21-1350766573.11-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:56:15.603+11 213128
  2012-10-21-1350766575.95-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:56:22.288+11 532616
  2012-10-21-1350766582.68-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:56:28.335+11 477320
  2012-10-21-1350766589.2-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:56:37.095+11 661630
  2012-10-21-1350766597.91-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:56:46.57+11 724960
  2012-10-21-1350766606.74-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:56:49.554+11 239752
  2012-10-21-1350766610.31-demo.wav 44028 CanberraBlackMnt 2012-10-21 07:56:53.959+11 306344
  2012-10-21-1350766942.23-demo.wav 44032 CanberraBlackMnt 2012-10-21 08:02:29.228+11 585400
  2012-10-21-1350766949.38-demo.wav 44032 CanberraBlackMnt 2012-10-21 08:02:37.844+11 710670
  2012-10-21-1350767070.42-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 08:04:34.355+11 329012
  2012-10-21-1350767075.91-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 08:04:41.056+11 429128
  2012-10-21-1350767081.21-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 08:04:46.689+11 460936
  2012-10-21-1350767086.8-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 08:04:51.683+11 411744
  2012-10-21-1350767297.56-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 08:08:20.724+11 265140
  2012-10-21-1350767302.08-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 08:08:30.758+11 729224
  2012-10-21-1350767311.58-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 08:08:39.214+11 641146
  2012-10-21-1350768099.97-demo.wav 44028 CanberraBlackMnt 2012-10-21 08:21:42.673+11 222942
  2012-10-21-1350768103.55-demo.wav 44028 CanberraBlackMnt 2012-10-21 08:21:45.672+11 180360
  2012-10-21-1350768107.57-demo.wav 44028 CanberraBlackMnt 2012-10-21 08:21:55.198+11 636512
  2012-10-21-1350768115.36-demo.wav 44028 CanberraBlackMnt 2012-10-21 08:22:00.384+11 424072
  2012-10-21-1350768120.49-demo.wav 44028 CanberraBlackMnt 2012-10-21 08:22:03.24+11 233526
  2012-10-21-1350768123.35-demo.wav 44028 CanberraBlackMnt 2012-10-21 08:22:07.26+11 329726
  2012-10-21-1350768248.61-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:24:18.785+11 854012
  2012-10-21-1350768286.26-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:24:54.103+11 657292
  2012-10-21-1350768294.27-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:25:01.964+11 645256
  2012-10-21-1350768302.5-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:25:14.907+11 1042568
  2012-10-21-1350768317.81-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:25:24.736+11 579720
  2012-10-21-1350768324.9-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:25:27.052+11 182408
  2012-10-21-1350768706.2-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 08:31:56.493+11 863514
  2012-10-21-1350768822.13-demo.wav 44028 CanberraBlackMnt 2012-10-21 08:33:45.643+11 293596
  2012-10-21-1350768826.61-demo.wav 44028 CanberraBlackMnt 2012-10-21 08:33:49.584+11 252040
  2012-10-21-1350768829.7-demo.wav 44028 CanberraBlackMnt 2012-10-21 08:33:53.812+11 348296
  2012-10-21-1350768834.05-demo.wav 44028 CanberraBlackMnt 2012-10-21 08:33:58.727+11 395400
  2012-10-21-1350768902.35-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 08:35:08.181+11 488224
  2012-10-21-1350769004.25-demo.wav 40067 CanberraBlackMnt 2012-10-21 08:36:46.775+11 209844
  2012-10-21-1350769320.71-demo.wav 44028 CanberraMtAinsli 2012-10-21 08:42:03.788+11 258066
  2012-10-21-1350769326.13-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 08:42:19.321+11 1106056
  2012-10-21-1350769340.13-demo.wav 44028 CanberraBlackMnt 2012-10-21 08:42:26.708+11 549748
  2012-10-21-1350769347.09-demo.wav 44028 CanberraBlackMnt 2012-10-21 08:42:37.955+11 913448
  2012-10-21-1350769358.12-demo.wav 44028 CanberraBlackMnt 2012-10-21 08:42:44.192+11 512010
  2012-10-21-1350769364.35-demo.wav 44028 CanberraBlackMnt 2012-10-21 08:42:49.425+11 426120
  2012-10-21-1350769469.96-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:44:36.55+11 552048
  2012-10-21-1350769578.35-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 08:46:23.203+11 403658
  2012-10-21-1350769584.06-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 08:46:30.09+11 508040
  2012-10-21-1350769591.66-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 08:46:45.622+11 1167496
  2012-10-21-1350769909.18-demo.wav 40067 CanberraBlackMnt 2012-10-21 08:51:51.699+11 209350
  2012-10-21-1350770193.26-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 08:56:38.146+11 409326
  2012-10-21-1350770198.32-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 08:56:41.606+11 278664
  2012-10-21-1350770202.34-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 08:56:53.807+11 962696
  2012-10-21-1350770215.69-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 08:57:12.26+11 1390728
  2012-10-21-1350770232.42-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 08:57:16.112+11 311432
  2012-10-21-1350770236.61-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:57:25.143+11 714888
  2012-10-21-1350770248.97-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:57:33.789+11 405640
  2012-10-21-1350770255.7-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:57:42.851+11 589524
  2012-10-21-1350770272.6-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:57:56.921+11 364680
  2012-10-21-1350770277.59-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:58:01.804+11 356384
  2012-10-21-1350770281.91-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:58:11.377+11 794740
  2012-10-21-1350770292.41-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:58:27.296+11 1242568
  2012-10-21-1350770308.09-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:58:36.722+11 723026
  2012-10-21-1350770317.71-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:58:43.242+11 464282
  2012-10-21-1350770324.08-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:58:53.977+11 832716
  2012-10-21-1350770334.24-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:58:59.359+11 428976
  2012-10-21-1350770343.19-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:59:12.674+11 793392
  2012-10-21-1350770353.43-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:59:21.854+11 706696
  2012-10-21-1350770362.99-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:59:34.391+11 958598
  2012-10-21-1350770374.63-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 08:59:41.173+11 551048
  2012-10-21-1350770382.08-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 08:59:55.222+11 1104008
  2012-10-21-1350770395.42-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:00:01.154+11 481416
  2012-10-21-1350770401.92-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:00:14.665+11 1069192
  2012-10-21-1350770414.83-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:00:21.456+11 557192
  2012-10-21-1350770422.05-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:00:30.788+11 732186
  2012-10-21-1350770431.58-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:00:41.802+11 855986
  2012-10-21-1350770443.13-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:00:51.995+11 743560
  2012-10-21-1350770454.03-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:01:02.697+11 729220
  2012-10-21-1350770463.59-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:01:24.315+11 1360884
  2012-10-21-1350770484.46-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:01:31.82+11 620680
  2012-10-21-1350770492.5-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:01:37.655+11 434312
  2012-10-21-1350770498.1-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:01:45.823+11 647304
  2012-10-21-1350770507.25-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:01:52.069+11 405640
  2012-10-21-1350770513.83-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:01:59.901+11 512136
  2012-10-21-1350770522.02-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:02:10.588+11 718984
  2012-10-21-1350770531.78-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:02:17.087+11 445290
  2012-10-21-1350770537.78-demo.wav 44028 CanberraBlackMnt 2012-10-21 09:02:26.023+11 691646
  2012-10-21-1350770546.26-demo.wav 44028 CanberraBlackMnt 2012-10-21 09:02:28.894+11 223368
  2012-10-21-1350770549.16-demo.wav 44028 CanberraBlackMnt 2012-10-21 09:02:31.558+11 202888
  2012-10-21-1350770552.43-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:02:39.709+11 610440
  2012-10-21-1350770559.9-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:02:45.037+11 432264
  2012-10-21-1350770565.67-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:02:55.529+11 825480
  2012-10-21-1350770575.73-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:03:02.436+11 565384
  2012-10-21-1350770583.68-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:03:12.515+11 739316
  2012-10-21-1350770592.63-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:03:16.446+11 321672
  2012-10-21-1350770597.3-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:03:26.46+11 768136
  2012-10-21-1350770606.61-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:03:31.454+11 407688
  2012-10-21-1350770612.53-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:03:41.967+11 792696
  2012-10-21-1350770622.51-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:03:47.597+11 428168
  2012-10-21-1350770627.7-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:04:09.168+11 1802376
  2012-10-21-1350770649.66-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:04:19.52+11 827528
  2012-10-21-1350770660.44-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:04:33.539+11 1099912
  2012-10-21-1350770673.71-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:04:39.225+11 462984
  2012-10-21-1350770680.16-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:04:46.421+11 526472
  2012-10-21-1350770686.58-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:04:50.962+11 368776
  2012-10-21-1350770691.97-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:05:05.415+11 1126536
  2012-10-21-1350770705.58-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:05:09.096+11 297096
  2012-10-21-1350770709.87-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:05:20.561+11 895112
  2012-10-21-1350770721.29-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:05:34.684+11 1126536
  2012-10-21-1350770738.2-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:05:55.6+11 1457220
  2012-10-21-1350770755.89-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:06:05.682+11 821384
  2012-10-21-1350770766.76-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:06:24.956+11 1527944
  2012-10-21-1350770785.19-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:06:31.014+11 489608
  2012-10-21-1350770792.24-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:06:48.67+11 1378554
  2012-10-21-1350770808.91-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:06:54.363+11 458888
  2012-10-21-1350770814.91-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:07:00.436+11 465032
  2012-10-21-1350770822.62-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:07:20.342+11 1489032
  2012-10-21-1350770840.54-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:07:22.687+11 182408
  2012-10-21-1350770843.48-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:07:37.218+11 1149064
  2012-10-21-1350770857.41-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:07:40.343+11 247944
  2012-10-21-1350770861.82-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:07:48.525+11 565384
  2012-10-21-1350770870.94-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:07:55.082+11 348296
  2012-10-21-1350770875.19-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:08:00.433+11 442504
  2012-10-21-1350770881.16-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:08:19.266+11 1517490
  2012-10-21-1350770899.44-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:08:26.381+11 583816
  2012-10-21-1350770907.03-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:08:34.232+11 605868
  2012-10-21-1350770932.39-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:08:58.364+11 501896
  2012-10-21-1350770940.19-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:09:05.908+11 479302
  2012-10-21-1350770947.27-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:09:23.911+11 1394438
  2012-10-21-1350770965.05-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:09:29.841+11 403580
  2012-10-21-1350770970.65-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:09:36.38+11 483464
  2012-10-21-1350770976.53-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:09:42.227+11 479368
  2012-10-21-1350770983.13-demo.wav 44028 CanberraBlackMnt 2012-10-21 09:09:53.201+11 845938
  2012-10-21-1350770997.06-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:10:03.97+11 580426
  2012-10-21-1350771005.07-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:10:10.695+11 473224
  2012-10-21-1350771011.04-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:10:18.8+11 651400
  2012-10-21-1350771020.79-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:10:26.682+11 493704
  2012-10-21-1350771029.42-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:10:36.208+11 571394
  2012-10-21-1350771036.38-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:10:41.724+11 450696
  2012-10-21-1350771042.41-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:10:47.101+11 395400
  2012-10-21-1350771047.39-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:10:56.157+11 733238
  2012-10-21-1350771056.9-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:11:43.803+11 3936392
  2012-10-21-1350771103.94-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:11:47.137+11 270324
  2012-10-21-1350771115.39-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-21 09:12:15.798+11 1714312
  2012-10-21-1350771136.61-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:12:22.594+11 500978
  2012-10-21-1350771144.15-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:12:28.489+11 366728
  2012-10-21-1350771149.5-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:12:39.911+11 871648
  2012-10-21-1350771160.63-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-21 09:12:55.205+11 1216416
  2012-10-21-1350771175.37-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-21 09:13:01.601+11 524176
  2012-10-21-1350771283.23-demo.wav 40067 CanberraMtAinsli 2012-10-21 09:14:46.301+11 256394
  2012-10-21-1350771287.54-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 09:14:59.715+11 1019946
  2012-10-21-1350771300.71-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 09:15:12.06+11 948814
  2012-10-21-1350771312.45-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 09:15:16.919+11 376968
  2012-10-21-1350771317.03-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 09:15:20.11+11 260232
  2012-10-21-1350771349.73-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:16:08.137+11 1542462
  2012-10-21-1350771551.78-demo.wav 40067 CanberraMtAinsli 2012-10-21 09:19:14.939+11 262460
  2012-10-21-1350772046.0-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:27:38.477+11 1043742
  2012-10-21-1350772060.04-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:27:46.668+11 557322
  2012-10-21-1350772110.48-demo.wav 44028 CanberraBlackMnt 2012-10-21 09:28:33.717+11 270996
  2012-10-21-1350772114.73-demo.wav 44028 CanberraBlackMnt 2012-10-21 09:28:43.976+11 774280
  2012-10-21-1350772124.12-demo.wav 44028 CanberraBlackMnt 2012-10-21 09:28:48.283+11 352392
  2012-10-21-1350772128.43-demo.wav 44028 CanberraBlackMnt 2012-10-21 09:28:51.219+11 235650
  2012-10-21-1350772131.65-demo.wav 44028 CanberraBlackMnt 2012-10-21 09:28:55.91+11 306902
  2012-10-21-1350772454.31-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 09:34:19.301+11 417150
  2012-10-21-1350772459.97-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 09:34:24.039+11 342152
  2012-10-21-1350772466.32-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 09:34:29.875+11 299144
  2012-10-21-1350772470.63-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 09:34:36.575+11 499848
  2012-10-21-1350772478.38-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 09:34:44.877+11 544904
  2012-10-21-1350773124.63-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:45:33.743+11 762084
  2012-10-21-1350773484.58-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:51:29.873+11 442192
  2012-10-21-1350773490.06-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:51:36.278+11 524424
  2012-10-21-1350773497.19-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:51:45.142+11 665736
  2012-10-21-1350773505.29-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:51:51.76+11 544076
  2012-10-21-1350773512.51-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:52:07.216+11 1232302
  2012-10-21-1350773556.09-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:52:50.549+11 1211240
  2012-10-21-1350773571.35-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 09:53:03.469+11 1016012
  2012-10-21-1350773584.88-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:53:28.718+11 2001032
  2012-10-21-1350773608.87-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 09:53:36.695+11 659476
  2012-10-21-1350774403.49-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 10:06:55.682+11 1021356
  2012-10-21-1350774416.49-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 10:07:19.538+11 1931264
  2012-10-21-1350774480.87-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 10:08:18.68+11 1495176
  2012-10-21-1350774862.12-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 10:14:26.705+11 383022
  2012-10-21-1350775143.09-demo.wav 44028 CanberraBlackMnt 2012-10-21 10:19:06.441+11 281128
  2012-10-21-1350775147.54-demo.wav 44028 CanberraBlackMnt 2012-10-21 10:19:10.702+11 268424
  2012-10-21-1350775151.55-demo.wav 44028 CanberraBlackMnt 2012-10-21 10:19:16.734+11 436360
  2012-10-21-1350775162.45-demo.wav 44028 CanberraBlackMnt 2012-10-21 10:19:26.693+11 358512
  2012-10-21-1350775294.14-demo.wav 40081 SES Ops 4 CanberraMtAinsli 2012-10-21 10:21:36.692+11 210576
  2012-10-21-1350775298.32-demo.wav 40081 SES Ops 4 CanberraMtAinsli 2012-10-21 10:21:48.157+11 825480
  2012-10-21-1350775421.82-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 10:23:53.264+11 956304
  2012-10-21-1350775601.47-demo.wav 44028 CanberraBlackMnt 2012-10-21 10:26:44.64+11 263204
  2012-10-21-1350775606.41-demo.wav 44028 CanberraBlackMnt 2012-10-21 10:26:50.098+11 308558
  2012-10-21-1350775610.21-demo.wav 44028 CanberraBlackMnt 2012-10-21 10:26:53.067+11 241800
  2012-10-21-1350775613.48-demo.wav 44028 CanberraBlackMnt 2012-10-21 10:26:59.338+11 493704
  2012-10-21-1350775625.06-demo.wav 44028 CanberraBlackMnt 2012-10-21 10:27:11.293+11 524398
  2012-10-21-1350775634.23-demo.wav 44028 CanberraBlackMnt 2012-10-21 10:27:17.867+11 305264
  2012-10-21-1350775639.39-demo.wav 44028 CanberraBlackMnt 2012-10-21 10:27:24.49+11 428168
  2012-10-21-1350775644.92-demo.wav 44028 CanberraBlackMnt 2012-10-21 10:27:28.16+11 272398
  2012-10-21-1350775923.39-demo.wav 40067 CanberraMtAinsli 2012-10-21 10:32:07.273+11 323786
  2012-10-21-1350775928.42-demo.wav 40067 CanberraMtAinsli 2012-10-21 10:32:10.64+11 188524
  2012-10-21-1350775931.74-demo.wav 40067 CanberraMtAinsli 2012-10-21 10:32:14.789+11 258184
  2012-10-21-1350775934.87-demo.wav 40067 CanberraMtAinsli 2012-10-21 10:32:17.471+11 221290
  2012-10-21-1350775959.71-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 10:32:42.984+11 276588
  2012-10-21-1350776710.65-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 10:45:19.913+11 776300
  2012-10-21-1350777240.07-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 10:54:05.061+11 416948
  2012-10-21-1350777246.05-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 10:54:12.733+11 561264
  2012-10-21-1350777253.96-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 10:54:24.398+11 876636
  2012-10-21-1350777289.24-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 10:54:57.086+11 659568
  2012-10-21-1350777457.14-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 10:57:39.65+11 210814
  2012-10-21-1350777517.28-demo.wav 40067 CanberraBlackMnt 2012-10-21 10:58:39.807+11 215152
  2012-10-21-1350778098.88-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 11:08:22.076+11 265708
  2012-10-21-1350778431.99-demo.wav 44028 CanberraBlackMnt 2012-10-21 11:13:56.248+11 357968
  2012-10-21-1350778653.0-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 11:17:35.519+11 209228
  2012-10-21-1350778735.32-demo.wav 44028 CanberraBlackMnt 2012-10-21 11:18:58.37+11 257664
  2012-10-21-1350778738.99-demo.wav 44028 CanberraBlackMnt 2012-10-21 11:19:01.514+11 213128
  2012-10-21-1350779272.67-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 11:27:58.14+11 456692
  2012-10-21-1350779332.26-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 11:28:54.777+11 210222
  2012-10-21-1350779370.42-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 11:29:34.752+11 362584
  2012-10-21-1350779375.78-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 11:29:40.358+11 385160
  2012-10-21-1350779380.47-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 11:30:30.715+11 4210824
  2012-10-21-1350779430.88-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 11:31:00.127+11 2451592
  2012-10-21-1350779460.9-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 11:31:05.599+11 393720
  2012-10-21-1350779726.67-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 11:35:29.223+11 209772
  2012-10-21-1350779874.62-demo.wav 40067 CanberraMtAinsli 2012-10-21 11:37:57.105+11 210356
  2012-10-21-1350779958.62-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 11:39:21.109+11 208254
  2012-10-21-1350779961.92-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 11:39:24.857+11 247944
  2012-10-21-1350779965.34-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 11:39:28.815+11 293000
  2012-10-21-1350779969.03-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 11:39:32.58+11 299144
  2012-10-21-1350779973.76-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 11:39:37.971+11 356488
  2012-10-21-1350779978.77-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 11:39:44.864+11 514184
  2012-10-21-1350779985.19-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 11:39:49.508+11 363684
  2012-10-21-1350780171.6-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 11:42:56.528+11 411012
  2012-10-21-1350780176.68-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 11:43:00.763+11 344200
  2012-10-21-1350780314.55-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 11:45:18.682+11 343294
  2012-10-21-1350780318.8-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 11:45:21.241+11 206956
  2012-10-21-1350780322.04-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 11:45:30.332+11 694408
  2012-10-21-1350780331.07-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 11:45:33.211+11 182408
  2012-10-21-1350780333.67-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 11:46:00.956+11 2287752
  2012-10-21-1350780361.07-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 11:46:06.599+11 465008
  2012-10-21-1350780522.55-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 11:48:49.575+11 588014
  2012-10-21-1350780530.59-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 11:49:09.711+11 1603690
  2012-10-21-1350780549.83-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 11:49:20.657+11 909426
  2012-10-21-1350780561.65-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 11:49:26.254+11 387184
  2012-10-21-1350780566.45-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 11:49:34.278+11 655432
  2012-10-21-1350780584.32-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 11:49:54.809+11 880752
  2012-10-21-1350780595.76-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-21 11:50:01.956+11 520328
  2012-10-21-1350780603.83-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-21 11:50:13.487+11 809578
  2012-10-21-1350780613.61-demo.wav 40078 SES Ops 1 CanberraBlackMnt 2012-10-21 11:50:18.217+11 387180
  2012-10-21-1350780642.28-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 11:50:46.808+11 381034
  2012-10-21-1350780653.99-demo.wav 40092 PCL CNP CanberraBlackMnt 2012-10-21 11:51:00.397+11 538724
  2012-10-21-1350780693.08-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 11:51:36.935+11 323696
  2012-10-21-1350780697.02-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 11:51:41.991+11 417902
  2012-10-21-1350780703.51-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 11:51:54.276+11 901256
  2012-10-21-1350780774.54-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 11:52:57.459+11 244484
  2012-10-21-1350780808.12-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 11:53:37.566+11 792688
  2012-10-21-1350780817.69-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 11:53:41.06+11 284778
  2012-10-21-1350780821.26-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 11:53:53.02+11 983176
  2012-10-21-1350780834.36-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 11:53:57.148+11 235656
  2012-10-21-1350780837.79-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 11:54:03.276+11 460928
  2012-10-21-1350780845.9-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 11:54:19.743+11 1161334
  2012-10-21-1350780861.83-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 11:54:28.8+11 585836
  2012-10-21-1350780871.94-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 11:54:46.423+11 1212512
  2012-10-21-1350780892.38-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 11:54:56.347+11 333936
  2012-10-21-1350780897.45-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 11:55:01.206+11 315528
  2012-10-21-1350780903.06-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 11:55:06.91+11 323720
  2012-10-21-1350780908.68-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 11:55:17.04+11 699588
  2012-10-21-1350780918.16-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 11:55:21.115+11 249992
  2012-10-21-1350780921.36-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 11:55:27.036+11 477320
  2012-10-21-1350780927.97-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 11:55:48.459+11 1716338
  2012-10-21-1350780949.46-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 11:55:55.996+11 545096
  2012-10-21-1350780956.08-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 11:55:59.852+11 317548
  2012-10-21-1350780969.6-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 11:56:17.838+11 690288
  2012-10-21-1350780977.92-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 11:56:20.344+11 204908
  2012-10-21-1350780984.74-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 11:56:28.388+11 307312
  2012-10-21-1350780988.47-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 11:56:31.656+11 268400
  2012-10-21-1350780991.99-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 11:56:34.193+11 186504
  2012-10-21-1350780995.15-demo.wav 44028 CanberraBlackMnt 2012-10-21 11:56:45.555+11 872560
  2012-10-21-1350781006.59-demo.wav 44028 CanberraBlackMnt 2012-10-21 11:56:49.993+11 283180
  2012-10-21-1350781010.08-demo.wav 44028 CanberraBlackMnt 2012-10-21 11:56:56.681+11 555118
  2012-10-21-1350781016.77-demo.wav 44028 CanberraBlackMnt 2012-10-21 11:57:01.85+11 428122
  2012-10-21-1350781048.92-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 11:57:38.164+11 776304
  2012-10-21-1350781058.34-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 11:57:42.35+11 338046
  2012-10-21-1350781175.15-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 11:59:50.549+11 1290098
  2012-10-21-1350781190.68-demo.wav 44028 CanberraBlackMnt 2012-10-21 11:59:58.814+11 682096
  2012-10-21-1350781200.03-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:00:04.112+11 344200
  2012-10-21-1350781204.57-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:00:09.206+11 391304
  2012-10-21-1350781229.78-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 12:00:43.605+11 1159280
  2012-10-21-1350781244.6-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 12:00:49.93+11 448624
  2012-10-21-1350781250.87-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 12:00:54.244+11 284778
  2012-10-21-1350781254.33-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:01:02.032+11 645232
  2012-10-21-1350781262.12-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:01:08.414+11 530538
  2012-10-21-1350781268.55-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:01:14.637+11 512136
  2012-10-21-1350781292.67-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:01:39.865+11 606300
  2012-10-21-1350781360.1-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 12:02:45.007+11 413010
  2012-10-21-1350781478.02-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:04:44.665+11 554222
  2012-10-21-1350781484.83-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:04:50.378+11 469128
  2012-10-21-1350781490.49-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:04:55.453+11 417928
  2012-10-21-1350781573.64-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:06:16.517+11 240546
  2012-10-21-1350781577.39-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:06:22.437+11 426120
  2012-10-21-1350781582.53-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:06:26.139+11 305264
  2012-10-21-1350781737.83-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 12:09:02.992+11 432276
  2012-10-21-1350781743.54-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 12:09:06.622+11 260232
  2012-10-21-1350781767.19-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 12:09:31.302+11 346248
  2012-10-21-1350781771.76-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 12:09:34.523+11 233608
  2012-10-21-1350781774.88-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 12:09:41.087+11 520328
  2012-10-21-1350781811.62-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 12:10:17.178+11 467078
  2012-10-21-1350782135.6-demo.wav 10301 CanberraMtAinsli 2012-10-21 12:15:38.086+11 209026
  2012-10-21-1350782138.71-demo.wav 10301 CanberraMtAinsli 2012-10-21 12:15:41.629+11 247944
  2012-10-21-1350782150.72-demo.wav 10301 CanberraMtAinsli 2012-10-21 12:15:57.779+11 594056
  2012-10-21-1350782158.73-demo.wav 10301 CanberraMtAinsli 2012-10-21 12:16:04.178+11 458888
  2012-10-21-1350782164.29-demo.wav 10301 CanberraMtAinsli 2012-10-21 12:16:07.544+11 274568
  2012-10-21-1350782167.8-demo.wav 10301 CanberraMtAinsli 2012-10-21 12:16:12.636+11 407688
  2012-10-21-1350782265.2-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 12:17:51.955+11 565838
  2012-10-21-1350782449.66-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:20:52.664+11 250838
  2012-10-21-1350782454.25-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:20:57.131+11 243848
  2012-10-21-1350782457.66-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:21:07.727+11 843912
  2012-10-21-1350782467.86-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:21:12.497+11 390418
  2012-10-21-1350782510.32-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 12:21:52.817+11 209770
  2012-10-21-1350782531.82-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 12:22:14.318+11 211080
  2012-10-21-1350782904.29-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:28:30.488+11 518724
  2012-10-21-1350782911.44-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:28:34.508+11 260232
  2012-10-21-1350782915.62-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:28:39.599+11 336008
  2012-10-21-1350782919.72-demo.wav 44028 CanberraBlackMnt 2012-10-21 12:28:49.317+11 806900
  2012-10-21-1350783302.45-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 12:35:07.654+11 433580
  2012-10-21-1350783661.53-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 12:41:05.849+11 362624
  2012-10-21-1350783667.15-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 12:41:11.541+11 370824
  2012-10-21-1350783671.66-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 12:41:21.991+11 866440
  2012-10-21-1350783820.57-demo.wav 44032 CanberraBlackMnt 2012-10-21 12:43:43.174+11 220310
  2012-10-21-1350783823.32-demo.wav 44032 CanberraBlackMnt 2012-10-21 12:43:47.259+11 331912
  2012-10-21-1350783827.37-demo.wav 44032 CanberraBlackMnt 2012-10-21 12:43:53.835+11 542856
  2012-10-21-1350783834.37-demo.wav 44032 CanberraBlackMnt 2012-10-21 12:44:00.201+11 489336
  2012-10-21-1350783928.34-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 12:45:30.873+11 209854
  2012-10-21-1350784023.5-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 12:47:15.709+11 1021516
  2012-10-21-1350784283.26-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 12:51:27.5+11 353620
  2012-10-21-1350784306.65-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 12:51:50.695+11 342152
  2012-10-21-1350784311.21-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 12:51:54.461+11 274568
  2012-10-21-1350784314.83-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 12:51:59.981+11 434312
  2012-10-21-1350784320.16-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 12:52:03.379+11 272520
  2012-10-21-1350784373.71-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 12:52:57.655+11 328338
  2012-10-21-1350784377.88-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 12:53:00.468+11 219272
  2012-10-21-1350784380.59-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 12:53:04.231+11 307336
  2012-10-21-1350784399.83-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 12:53:23.392+11 301192
  2012-10-21-1350784607.74-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 12:56:50.263+11 210552
  2012-10-21-1350784798.74-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 13:00:08.744+11 835460
  2012-10-21-1350784809.56-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 13:00:25.591+11 1340724
  2012-10-21-1350784826.45-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 13:00:31.844+11 450116
  2012-10-21-1350785043.98-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 13:04:12.302+11 698228
  2012-10-21-1350785087.82-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 13:04:50.855+11 254828
  2012-10-21-1350785092.19-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 13:04:58.489+11 530568
  2012-10-21-1350785108.48-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 13:05:21.513+11 1093706
  2012-10-21-1350785121.68-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 13:05:31.244+11 802880
  2012-10-21-1350785239.05-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 13:07:21.542+11 210642
  2012-10-21-1350785266.42-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 13:07:50.497+11 344200
  2012-10-21-1350785272.62-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 13:07:56.019+11 286856
  2012-10-21-1350785276.14-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 13:08:04.053+11 663688
  2012-10-21-1350785348.12-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 13:09:12.28+11 346682
  2012-10-21-1350785353.22-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 13:09:16.471+11 274568
  2012-10-21-1350785356.6-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 13:09:24.769+11 687944
  2012-10-21-1350785368.67-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 13:09:46.977+11 1534012
  2012-10-21-1350785387.89-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 13:10:03.21+11 1280760
  2012-10-21-1350785405.28-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 13:10:15.382+11 847976
  2012-10-21-1350785469.29-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 13:11:11.841+11 211366
  2012-10-21-1350785473.69-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 13:11:18.525+11 403742
  2012-10-21-1350785481.88-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 13:11:25.807+11 325768
  2012-10-21-1350785498.95-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 13:11:44.741+11 487560
  2012-10-21-1350785504.87-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 13:11:47.879+11 253886
  2012-10-21-1350785730.38-demo.wav 44028 CanberraMtAinsli 2012-10-21 13:15:33.682+11 272578
  2012-10-21-1350785735.2-demo.wav 44028 CanberraMtAinsli 2012-10-21 13:15:47.915+11 1063534
  2012-10-21-1350785749.26-demo.wav 44028 CanberraMtAinsli 2012-10-21 13:15:53.564+11 364680
  2012-10-21-1350785774.79-demo.wav 44028 CanberraMtAinsli 2012-10-21 13:16:17.858+11 260232
  2012-10-21-1350785919.59-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 13:18:42.099+11 208528
  2012-10-21-1350786093.73-demo.wav 44028 CanberraMtAinsli 2012-10-21 13:21:37.992+11 356154
  2012-10-21-1350786098.3-demo.wav 44028 CanberraMtAinsli 2012-10-21 13:21:40.944+11 225416
  2012-10-21-1350786101.92-demo.wav 44028 CanberraMtAinsli 2012-10-21 13:21:48.142+11 524424
  2012-10-21-1350786108.27-demo.wav 44028 CanberraMtAinsli 2012-10-21 13:21:54.332+11 508038
  2012-10-21-1350786114.52-demo.wav 44028 CanberraMtAinsli 2012-10-21 13:22:11.993+11 1464456
  2012-10-21-1350786132.17-demo.wav 44028 CanberraMtAinsli 2012-10-21 13:22:15.439+11 276616
  2012-10-21-1350786159.41-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 13:22:59.892+11 1718408
  2012-10-21-1350786202.17-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 13:23:25.034+11 241800
  2012-10-21-1350786205.29-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 13:23:29.327+11 340104
  2012-10-21-1350786210.75-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 13:23:35.532+11 403430
  2012-10-21-1350786913.25-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 13:35:17.076+11 320420
  2012-10-21-1350786918.7-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 13:35:23.17+11 376968
  2012-10-21-1350787130.95-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 13:39:00.606+11 810282
  2012-10-21-1350787141.45-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 13:39:08.337+11 578598
  2012-10-21-1350787728.01-demo.wav 44028 CanberraBlackMnt 2012-10-21 13:48:54.359+11 534170
  2012-10-21-1350787734.54-demo.wav 44028 CanberraBlackMnt 2012-10-21 13:48:59.033+11 379016
  2012-10-21-1350787739.16-demo.wav 44028 CanberraBlackMnt 2012-10-21 13:49:02.799+11 307178
  2012-10-21-1350788064.62-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 13:54:27.137+11 210284
  2012-10-21-1350788316.55-demo.wav 44028 CanberraBlackMnt 2012-10-21 13:58:39.092+11 209740
  2012-10-21-1350788552.77-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 14:02:36.516+11 315072
  2012-10-21-1350788557.89-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 14:02:42.363+11 374904
  2012-10-21-1350788578.04-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:03:04.043+11 505992
  2012-10-21-1350788584.8-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:03:29.3+11 2054280
  2012-10-21-1350788675.6-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:04:38.898+11 275770
  2012-10-21-1350788680.25-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:04:42.877+11 221320
  2012-10-21-1350788683.0-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:04:52.175+11 772232
  2012-10-21-1350788692.55-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:04:56.306+11 315526
  2012-10-21-1350788696.43-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:05:02.543+11 514184
  2012-10-21-1350788702.67-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:05:23.479+11 1742984
  2012-10-21-1350788723.65-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:05:35.788+11 1020040
  2012-10-21-1350788736.46-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 14:05:46.878+11 876680
  2012-10-21-1350788747.75-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 14:05:52.398+11 391280
  2012-10-21-1350788753.31-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 14:06:05.429+11 1016482
  2012-10-21-1350788765.6-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 14:06:08.647+11 257374
  2012-10-21-1350788898.0-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 14:08:20.535+11 210700
  2012-10-21-1350789227.79-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:13:50.295+11 209422
  2012-10-21-1350789299.44-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 14:15:01.964+11 209362
  2012-10-21-1350789317.0-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 14:15:20.025+11 256136
  2012-10-21-1350789320.25-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 14:15:23.112+11 241800
  2012-10-21-1350789332.27-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 14:15:41.036+11 727554
  2012-10-21-1350789341.21-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 14:15:46.58+11 452744
  2012-10-21-1350789346.7-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 14:15:50.105+11 286828
  2012-10-21-1350789402.81-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:16:45.393+11 215660
  2012-10-21-1350789436.93-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 14:17:20.136+11 269326
  2012-10-21-1350789441.53-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:17:32.31+11 905468
  2012-10-21-1350789452.46-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:18:10.84+11 3217544
  2012-10-21-1350789491.0-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:18:17.456+11 542576
  2012-10-21-1350789497.58-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:18:21.811+11 355336
  2012-10-21-1350789698.29-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:21:40.886+11 209506
  2012-10-21-1350789704.12-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:21:58.438+11 1202312
  2012-10-21-1350789721.54-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:22:04.167+11 223368
  2012-10-21-1350789728.84-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:22:13.039+11 354440
  2012-10-21-1350789733.6-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:22:16.724+11 264326
  2012-10-21-1350789737.38-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:22:23.779+11 538760
  2012-10-21-1350789745.39-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:22:28.677+11 276402
  2012-10-21-1350789748.94-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:22:32.077+11 265916
  2012-10-21-1350789752.59-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:22:45.205+11 1058020
  2012-10-21-1350789797.53-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:23:21.791+11 353444
  2012-10-21-1350789821.5-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:23:44.285+11 235656
  2012-10-21-1350789825.24-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:23:49.695+11 373796
  2012-10-21-1350789830.79-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:23:55.297+11 377146
  2012-10-21-1350789837.24-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:24:06.592+11 786354
  2012-10-21-1350790027.09-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:27:09.959+11 238726
  2012-10-21-1350790031.61-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:27:20.522+11 749704
  2012-10-21-1350790040.65-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:27:25.5+11 409736
  2012-10-21-1350790045.66-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:27:28.34+11 227462
  2012-10-21-1350790049.18-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:27:32.027+11 241800
  2012-10-21-1350790167.44-demo.wav i1045462 CanberraMtAinsli 2012-10-21 14:29:30.495+11 254496
  2012-10-21-1350790170.73-demo.wav i1045462 CanberraMtAinsli 2012-10-21 14:29:34.466+11 315528
  2012-10-21-1350790174.93-demo.wav i1045462 CanberraMtAinsli 2012-10-21 14:29:37.532+11 221320
  2012-10-21-1350790178.79-demo.wav i1045462 CanberraMtAinsli 2012-10-21 14:29:53.694+11 1251464
  2012-10-21-1350790193.95-demo.wav i1045462 CanberraMtAinsli 2012-10-21 14:29:56.884+11 247944
  2012-10-21-1350790198.88-demo.wav i1045462 CanberraMtAinsli 2012-10-21 14:30:05.947+11 592542
  2012-10-21-1350790384.25-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:33:07.792+11 295788
  2012-10-21-1350790389.25-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:33:12.658+11 286160
  2012-10-21-1350790392.82-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:33:18.116+11 446600
  2012-10-21-1350790398.69-demo.wav 44028 CanberraMtAinsli 2012-10-21 14:33:23.35+11 391166
  2012-10-21-1350790480.62-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 14:34:43.138+11 209626
  2012-10-21-1350790529.54-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:35:34.444+11 410114
  2012-10-21-1350790536.22-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:35:38.831+11 221320
  2012-10-21-1350790539.44-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:35:47.354+11 665736
  2012-10-21-1350790558.87-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:36:03.038+11 352392
  2012-10-21-1350790563.67-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:36:08.208+11 382922
  2012-10-21-1350790584.5-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:36:27.45+11 249992
  2012-10-21-1350790588.22-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:36:35.287+11 590954
  2012-10-21-1350790596.15-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:36:48.577+11 1038078
  2012-10-21-1350790609.37-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:36:51.48+11 180360
  2012-10-21-1350790612.6-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:36:54.801+11 188552
  2012-10-21-1350790617.66-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:37:05.779+11 684168
  2012-10-21-1350790627.6-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:37:19.163+11 967826
  2012-10-21-1350790640.02-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:37:22.179+11 184456
  2012-10-21-1350790669.68-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 14:38:00.216+11 883272
  2012-10-21-1350790681.04-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 14:38:09.846+11 739242
  2012-10-21-1350790690.76-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 14:38:29.832+11 1598932
  2012-10-21-1350790774.45-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:39:36.763+11 191544
  2012-10-21-1350790778.34-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:39:42.257+11 329864
  2012-10-21-1350790784.0-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:39:47.523+11 294762
  2012-10-21-1350790788.0-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:39:53.472+11 460936
  2012-10-21-1350790793.6-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:40:11.322+11 1486980
  2012-10-21-1350790824.72-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:40:29.968+11 442504
  2012-10-21-1350790867.53-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 14:41:18.495+11 918800
  2012-10-21-1350790879.31-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 14:41:26.28+11 584242
  2012-10-21-1350790886.43-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 14:41:30.972+11 383112
  2012-10-21-1350790891.32-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 14:41:51.785+11 1716360
  2012-10-21-1350790911.97-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 14:42:34.006+11 3524744
  2012-10-21-1350790954.7-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 14:42:37.483+11 235656
  2012-10-21-1350790959.24-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 14:43:04.262+11 2097288
  2012-10-21-1350790984.83-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 14:43:10.114+11 444552
  2012-10-21-1350791137.05-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 14:45:39.606+11 210834
  2012-10-21-1350791365.13-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:49:27.755+11 218462
  2012-10-21-1350791368.08-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:49:30.468+11 202888
  2012-10-21-1350791371.47-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:49:37.011+11 467080
  2012-10-21-1350791378.16-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:49:52.378+11 1192072
  2012-10-21-1350791392.55-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:49:55.425+11 243848
  2012-10-21-1350791396.19-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 14:50:10.393+11 1189352
  2012-10-21-1350791410.52-demo.wav 40093 PCL Rural CanberraBlackMnt 2012-10-21 14:50:12.767+11 190600
  2012-10-21-1350791651.74-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 14:54:18.284+11 549000
  2012-10-21-1350791659.57-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 14:54:22.828+11 274568
  2012-10-21-1350791755.25-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 14:55:57.808+11 209580
  2012-10-21-1350791775.02-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:56:17.949+11 247944
  2012-10-21-1350791801.12-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:56:44.362+11 274018
  2012-10-21-1350791804.84-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:56:54.911+11 848008
  2012-10-21-1350791815.23-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:56:58.805+11 303162
  2012-10-21-1350791927.13-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 14:58:49.646+11 210088
  2012-10-21-1350791973.59-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:59:38.198+11 384222
  2012-10-21-1350791978.8-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:59:42.825+11 340104
  2012-10-21-1350791984.28-demo.wav 44028 CanberraBlackMnt 2012-10-21 14:59:53.709+11 790314
  2012-10-21-1350791993.84-demo.wav 44028 CanberraBlackMnt 2012-10-21 15:00:09.646+11 1327240
  2012-10-21-1350792089.59-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 15:01:32.112+11 210974
  2012-10-21-1350792215.1-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 15:03:41.951+11 577020
  2012-10-21-1350792223.03-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 15:03:47.264+11 355212
  2012-10-21-1350792453.5-demo.wav 44028 CanberraMtAinsli 2012-10-21 15:07:36.78+11 273224
  2012-10-21-1350792457.92-demo.wav 44028 CanberraMtAinsli 2012-10-21 15:07:42.907+11 419976
  2012-10-21-1350792463.54-demo.wav 44028 CanberraMtAinsli 2012-10-21 15:07:50.727+11 604006
  2012-10-21-1350792470.85-demo.wav 44028 CanberraMtAinsli 2012-10-21 15:07:53.951+11 262012
  2012-10-21-1350792474.07-demo.wav 44028 CanberraMtAinsli 2012-10-21 15:08:11.723+11 1480840
  2012-10-21-1350792761.76-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 15:12:44.349+11 209460
  2012-10-21-1350792879.38-demo.wav 44028 CanberraMtAinsli 2012-10-21 15:14:43.842+11 376968
  2012-10-21-1350792884.04-demo.wav 44028 CanberraMtAinsli 2012-10-21 15:14:48.151+11 348296
  2012-10-21-1350792888.56-demo.wav 44028 CanberraMtAinsli 2012-10-21 15:14:53.672+11 430216
  2012-10-21-1350792893.79-demo.wav 44028 CanberraMtAinsli 2012-10-21 15:14:57.327+11 299008
  2012-10-21-1350792903.64-demo.wav 44028 CanberraMtAinsli 2012-10-21 15:15:10.525+11 579716
  2012-10-21-1350792911.82-demo.wav 44028 CanberraMtAinsli 2012-10-21 15:15:16.509+11 395086
  2012-10-21-1350793140.49-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 15:19:08.864+11 702544
  2012-10-21-1350793149.9-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 15:19:14.522+11 389256
  2012-10-21-1350793154.89-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 15:19:33.044+11 1521800
  2012-10-21-1350793186.31-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 15:19:54.688+11 704648
  2012-10-21-1350793195.02-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 15:20:01.327+11 530568
  2012-10-21-1350793201.45-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 15:20:05.627+11 352376
  2012-10-21-1350793215.42-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 15:20:18.373+11 249992
  2012-10-21-1350793218.82-demo.wav 40093 PCL Rural CanberraMtAinsli 2012-10-21 15:20:23.734+11 413776
  2012-10-21-1350793639.57-demo.wav 44028 CanberraBlackMnt 2012-10-21 15:27:22.171+11 211542
  2012-10-21-1350793647.41-demo.wav 44028 CanberraBlackMnt 2012-10-21 15:27:30.038+11 223368
  2012-10-21-1350793651.74-demo.wav 44028 CanberraBlackMnt 2012-10-21 15:27:35.017+11 276616
  2012-10-21-1350793655.93-demo.wav 44028 CanberraBlackMnt 2012-10-21 15:27:39.916+11 336008
  2012-10-21-1350793660.13-demo.wav 44028 CanberraBlackMnt 2012-10-21 15:28:50.831+11 5931144
  2012-10-21-1350793730.98-demo.wav 44028 CanberraBlackMnt 2012-10-21 15:28:57.676+11 563314
  2012-10-21-1350793899.74-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 15:31:43.223+11 290558
  2012-10-21-1350793904.53-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 15:31:47.75+11 270446
  2012-10-21-1350793908.61-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 15:31:54.556+11 496334
  2012-10-21-1350793915.1-demo.wav 40068 RFS Ops 1 CanberraBlackMnt 2012-10-21 15:31:58.146+11 258184
  2012-10-21-1350793918.48-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 15:32:04.398+11 497800
  2012-10-21-1350793925.26-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 15:32:24.21+11 1586754
  2012-10-21-1350793945.24-demo.wav 30004 L GEORG CanberraBlackMnt 2012-10-21 15:32:29.934+11 392942
  2012-10-21-1350794144.33-demo.wav 44028 CanberraBlackMnt 2012-10-21 15:35:48.226+11 327668
  2012-10-21-1350794152.69-demo.wav 44028 CanberraBlackMnt 2012-10-21 15:35:58.853+11 517814
  2012-10-21-1350794159.65-demo.wav 44028 CanberraBlackMnt 2012-10-21 15:36:02.795+11 266376
  2012-10-21-1350794164.02-demo.wav 44028 CanberraBlackMnt 2012-10-21 15:36:11.348+11 616540
  2012-10-21-1350794248.97-demo.wav 44028 CanberraBlackMnt 2012-10-21 15:37:32.186+11 272520
  2012-10-21-1350794255.64-demo.wav 44028 CanberraBlackMnt 2012-10-21 15:37:40.645+11 422024
  2012-10-21-1350794260.77-demo.wav 44028 CanberraBlackMnt 2012-10-21 15:37:43.023+11 192522
  2012-10-21-1350794542.19-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 15:42:28.416+11 522196
  2012-10-21-1350794549.42-demo.wav 30004 L GEORG CanberraMtAinsli 2012-10-21 15:42:34.447+11 419622
  2012-10-21-1350794624.78-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 15:43:50.246+11 455640
  2012-10-21-1350794630.6-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 15:43:54.613+11 338056
  2012-10-21-1350794635.11-demo.wav 40068 RFS Ops 1 CanberraMtAinsli 2012-10-21 15:44:04.361+11 778150
  \.
 
 
  --
  -- TOC entry 1849 (class 2606 OID 62399)
  -- Dependencies: 161 161
  -- Name: recordings_pkey; Type: CONSTRAINT; Schema: public; Owner: postgres; Tablespace:
  --
 
  ALTER TABLE ONLY recordings
  ADD CONSTRAINT recordings_pkey PRIMARY KEY (filename);
 
 
  --
  -- TOC entry 1855 (class 0 OID 0)
  -- Dependencies: 6
  -- Name: public; Type: ACL; Schema: -; Owner: postgres
  --
 
  REVOKE ALL ON SCHEMA public FROM PUBLIC;
  REVOKE ALL ON SCHEMA public FROM postgres;
  GRANT ALL ON SCHEMA public TO postgres;
  GRANT ALL ON SCHEMA public TO PUBLIC;
 
 
  -- Completed on 2012-10-21 18:20:20
 
  --
  -- PostgreSQL database dump complete
  --
 
 
file:b/favicon.ico (new)
 Binary files /dev/null and b/favicon.ico differ
file:b/ffmpeg.exe (new)
 
  <?php
  include('common.inc.php');
  $sth = $conn->prepare( 'select * from recordings limit 100;');
 
  $sth->execute( );
  $recordings = $sth->fetchAll();
  $convos = Array();
  $convo = Array();
  foreach ($recordings as $i => $recording) {
 
  if (count($convo) > 0 && strcasecmp($convo[count($convos)]['tgid'], $recording['tgid']) != 0) {
  $convos[] = $convo;
  $convo = Array();
  } ;
  //print_r($recording);
  $convo[] = $recording;
  //print_r($convo);
  echo "<br>\n";
  }
  foreach ($convos as $i => $convo) {
  print_r($convo);
  echo "<br>\n";
  }
  ?>
 
 
file:b/humans.txt (new)
  # humanstxt.org/
  # The humans responsible & technology colophon
 
  # TEAM
 
  <name> -- <role> -- <twitter>
 
  # THANKS
 
  <name>
 
  # TECHNOLOGY COLOPHON
 
  HTML5, CSS3
  jQuery, Modernizr
 
file:b/img/.gitignore (new)
 
  build
  .vimrc
  *.swp
  *.swm
  *.swo
  *.vim
  .jhw-cache
  node_modules
  dev
 
file:b/js/flotr2/LICENSE (new)
  Copyright (c) 2012 Carl Sutherland
 
  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:
 
  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.
 
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  THE SOFTWARE.
 
  all: test flotr2
 
  test:
  cd spec; jasmine-headless-webkit -j jasmine.yml -c
 
  libraries:
  smoosh make/lib.json
  cat ./build/bean.js > build/lib.js
  cat ./build/underscore.js >> build/lib.js
  cat ./build/bean.min.js > build/lib.min.js
  echo ";" >> build/lib.min.js
  cat ./build/underscore.min.js >> build/lib.min.js
  echo ";" >> build/lib.min.js
 
  ie:
  smoosh make/ie.json
 
  flotr2: libraries ie
  smoosh make/flotr2.json
  cat build/lib.js build/flotr2.js > flotr2.js
  cat build/lib.min.js > flotr2.min.js
  cat build/flotr2.min.js >> flotr2.min.js
  echo ';' >> flotr2.min.js
  cp build/ie.min.js flotr2.ie.min.js
 
  flotr2-basic: libraries ie
  smoosh make/basic.json
  cat build/lib.min.js > flotr2-basic.min.js
  cat build/flotr2-basic.min.js >> flotr2-basic.min.js
 
  flotr-examples:
  smoosh make/examples.json
  cp build/examples.min.js flotr2.examples.min.js
  cp build/examples-types.js flotr2.examples.types.js
 
  flotr-amd: flotr2
  cat js/amd/pre.js > flotr2.amd.js
  cat build/flotr2.js >> flotr2.amd.js
  cat js/amd/post.js >> flotr2.amd.js
 
  Flotr2
  ======
 
  The Canvas graphing library.
 
  ![Google Groups](http://groups.google.com/intl/en/images/logos/groups_logo_sm.gif)
 
  http://groups.google.com/group/flotr2/
 
  Please fork http://jsfiddle.net/cesutherland/ZFBj5/ with your question or bug reproduction case.
 
 
  API
  ---
 
  The API consists of a primary draw method which accepts a configuration object, helper methods, and several microlibs.
 
  ### Example
 
  ```javascript
  var
  // Container div:
  container = document.getElementById("flotr-example-graph"),
  // First data series:
  d1 = [[0, 3], [4, 8], [8, 5], [9, 13]],
  // Second data series:
  d2 = [],
  // A couple flotr configuration options:
  options = {
  xaxis: {
  minorTickFreq: 4
  },
  grid: {
  minorVerticalLines: true
  }
  },
  i, graph;
 
  // Generated second data set:
  for (i = 0; i < 14; i += 0.5) {
  d2.push([i, Math.sin(i)]);
  }
 
  // Draw the graph:
  graph = Flotr.draw(
  container, // Container element
  [ d1, d2 ], // Array of data series
  options // Configuration options
  );
  ```
 
  ### Microlibs
 
  * [underscore.js](http://documentcloud.github.com/underscore/)
  * [bean.js](https://github.com/fat/bean)
 
  Extending
  ---------
 
  Flotr may be extended by adding new plugins and graph types.
 
  ### Graph Types
 
  Graph types define how a particular chart is rendered. Examples include line, bar, pie.
 
  Existing graph types are found in `js/types/`.
 
  ### Plugins
 
  Plugins extend the core of flotr with new functionality. They can add interactions, new decorations, etc. Examples
  include titles, labels and selection.
 
  The plugins included are found in `js/plugins/`.
 
  Development
  -----------
 
  This project uses [smoosh](https://github.com/fat/smoosh) to build and [jasmine](http://pivotal.github.com/jasmine/)
  with [js-imagediff](https://github.com/HumbleSoftware/js-imagediff) to test. Tests may be executed by
  [jasmine-headless-webkit](http://johnbintz.github.com/jasmine-headless-webkit/) with
  `cd spec; jasmine-headless-webkit -j jasmine.yml -c` or by a browser by navigating to
  `flotr2/spec/SpecRunner.html`.
 
  Shoutouts
  ---------
 
  Thanks to Bas Wenneker, Fabien Ménager and others for all the work on the original Flotr.
  Thanks to Jochen Berger and Jordan Santell for their contributions to Flotr2.
 
 
  Flotr 2 Architecture Notes
 
 
  Global:
  ======
 
  Flotr.js -
  versioning information
  browser detection
  extension (plugins, graph types)
  draw
  clone / merge
  tick size
  tick formatter
  engineering notation
  magnitude
  rad, pixel, floor
  drawText
  measureText
  getBestTextAlign
  align map
  compatibility
 
 
  Graph Architecture:
  ===================
 
  Axis -
  all series
  orientation
  ticks (major, minor)
  scale (d2p, p2d, logarithmic)
  notion of stacks
 
  Series -
  per 'data'
  notion of range (x, y, min, max)
 
  Graph -
  DOM constructon
  event attachment
  options initialization
  data range calculations
  canvas spacing calculations
  event normalization
  draw methods
  DOM cleanup
  event cleanup
 
 
  Utilities:
  ==========
 
  Color
  build colors
  parse textual color data
  convert colors
  clone colors
 
  Text
  calculate text size
  canvas size
  html size
 
  Date
  formatting
  constants
 
 
  Spacing Calculation
  ===================
 
  Flotr
  calculate data
  calculate margins
 
  Chart
  calculate Data Ranges - Explicit or auto data minimum, maximums
  calculate Data Range Extensions - By chart type, extend data range with needs of chart type (ie. stacked bars, stacked lines)
  add Chart Padding - By chart type
 
  Text
  use explicit margins
  calculate label margins
  calculate title margins
 
 
  <!DOCTYPE html>
  <html>
 
  <head>
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <title>Flotr Example Index Page</title>
  <link rel="stylesheet" href="lib/codemirror/lib/codemirror.css" type="text/css" />
  <link rel="stylesheet" href="examples.css" type="text/css" />
  <link rel="stylesheet" href="editor.css" type="text/css" />
  </head>
 
  <body>
  <div id="body-container">
  <div id="content-container">
  <div id="content">
  <div id="examples"></div>
  </div>
  </div>
  </div>
  </body>
 
  <script type="text/javascript" src="../lib/yepnope.js"></script>
  <script type="text/javascript" src="js/includes.dev.js"></script>
 
  </html>
 
  /* Editor */
  .editor {
  position: relative;
  }
  .editor .render {
  height: 240px;
  width: 320px;
  margin: 8px auto;
  }
  .editor .source {
  border: 1px solid #ddd;
  border-radius: 3px;
  }
  .editor .controls {
  position: absolute;;
  z-index: 100;
  right: 8px;
  margin-top: -12px;
  }
  .editor .controls button {
  float: right;
  }
  .editor .errors {
  color: #ee0000;
  padding: 8px;
  font-size: 12px;
  background: #fee;
  border-bottom: 1px solid #eee;
  }
  .editor .errors .error {
  font-weight: bold
  }
  .editor .errors .message {
  font-style: italic;
  }
  .editor .errors .position {
  display: block;
  margin-top: 4px;
  }
  .editor.no-run .controls,
  .editor.no-run .render {
  display: none;
  }
 
  /* html type */
  .editor.html .render {
  height: 400px;
  width: 800px;
  text-align: center;
  }
  .editor.html .render iframe {
  height: 100%;
  width: 100%;
  border: none;
  }
 
  /* CodeMirror */
  .CodeMirror {
  background: #fafafa;
  }
  .CodeMirror.CodeMirror-focused {
  }
  .CodeMirror-scroll {
  height: auto;
  overflow: visible;
  overflow-x: auto;
  }
  .CodeMirror-lines pre,
  .CodeMirror-gutter pre {
  line-height: 16px;
  }
 
 
  body {
  font-family : sans-serif;
  padding: 0px;
  margin: 0px;
  }
 
  /* Example */
 
  .flotr-example {
  display: none;
  margin: 0px auto 48px auto;
  position: relative;
  }
  .flotr-example-label {
  font-size: 18px;
  padding: 14px 0px;
  }
  .flotr-example-editor .editor .render {
  width: 600px;
  height: 400px;
  margin: 12px auto 18px auto;
  }
  .flotr-example-editor .editor .source {
  width: 720px;
  }
 
  /* Chart no-select */
 
  .flotr-example-editor .editor .render,
  .flotr-examples-thumb {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  }
 
 
  /* Examples */
 
  .flotr-examples-thumbs {
  text-align: center;
  }
  .flotr-examples-reset {
  z-index: 100;
  cursor: pointer;
  text-decoration: underline;
  position: absolute;
  top: 260px;
  right: 24px;
  display: none;
  }
  .flotr-examples-collapsed .flotr-examples-reset {
  display: block;
  }
  .flotr-examples-thumb {
  display: inline-block;
  font-size : 11px;
  width : 300px;
  height : 200px;
  margin: 10px 15px;
  border: 2px solid transparent;
  }
  .flotr-examples-thumb.flotr-examples-highlight{
  font-size : 12px;
  width : 330px;
  height : 220px;
  margin: 0px 0px;
  }
  .flotr-examples-thumb .flotr-legend,
  .flotr-examples-thumb .flotr-mouse-value {
  display : none;
  }
 
  .flotr-examples-collapsed .flotr-examples-container {
  margin-top: 20px;
  position: relative;
  margin: 0px auto;
  }
 
  .flotr-examples-collapsed .flotr-examples-thumbs {
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
  }
 
 
  /* Flotr Styles */
 
  .flotr-datagrid-container {
  border: 1px solid #999;
  border-bottom: none;
  background: #fff;
  }
  .flotr-datagrid {
  border-collapse: collapse;
  border-spacing: 0;
  }
  .flotr-datagrid td, .flotr-datagrid th {
  border: 1px solid #ccc;
  padding: 1px 3px;
  min-width: 2em;
  }
  .flotr-datagrid tr:hover, .flotr-datagrid col.hover {
  background: #f3f3f3;
  }
  .flotr-datagrid tr:hover th, .flotr-datagrid th.hover {
  background: #999;
  color: #fff;
  }
  .flotr-datagrid th {
  text-align: left;
  background: #e3e3e3;
  border: 2px outset #fff;
  }
  .flotr-datagrid-toolbar {
  padding: 1px;
  border-bottom: 1px solid #ccc;
  background: #f9f9f9;
  }
  .flotr-datagrid td:hover {
  background: #ccc;
  }
  .flotr-datagrid .first-row th {
  text-align: center;
  }
  .flotr-canvas {
  margin-bottom: -3px;
  padding-bottom: 1px;
  }
  .flotr-tabs-group {
  border-top: 1px solid #999;
  }
  .flotr-tab {
  border: 1px solid #666;
  border-top: none;
  margin: 0 3px;
  padding: 1px 4px;
  cursor: pointer;
  -moz-border-radius: 0 0 4px 4px;
  -webkit-border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-radius: 0 0 4px 4px;
  opacity: 0.5;
  -moz-opacity: 0.5;
  }
  .flotr-tab.selected {
  background: #ddd;
  opacity: 1;
  -moz-opacity: 1;
  }
  .flotr-tab:hover {
  background: #ccc;
  }
 
  /* Large */
  .flotr-examples-large .flotr-example {
  width: 1360px;
  margin: 0px auto;
  position: relative;
  }
  .flotr-examples-large .flotr-example-editor .editor .render {
  margin-left: 0px;
  margin-right: 0px;
  }
  .flotr-examples-large .flotr-example-editor .controls {
  top: 0px;
  }
  .flotr-examples-large .flotr-example-editor .source {
  position: absolute;
  top: 0px;
  right: 0px;
  }
 
  /* Veritical Thumbs */
 
  .flotr-examples-large.flotr-examples-collapsed .flotr-examples-reset,
  .flotr-examples-medium.flotr-examples-collapsed .flotr-examples-reset {
  top: 16px;
  }
 
  .flotr-examples-large.flotr-examples-collapsed .flotr-examples-thumbs,
  .flotr-examples-medium.flotr-examples-collapsed .flotr-examples-thumbs {
  position: fixed;
  width: 400px;
  left: 0px;
  top: 0px;
  overflow-y: auto;
  background: #fff;
  }
  .flotr-examples-large.flotr-examples-collapsed .flotr-examples-thumb,
  .flotr-examples-medium.flotr-examples-collapsed .flotr-examples-thumb {
  display: block;
  float: center;
  margin: 10px auto;
  }
 
  .flotr-examples-large.flotr-examples-collapsed .flotr-examples-container,
  .flotr-examples-medium.flotr-examples-collapsed .flotr-examples-container {
  margin-left: 400px;
  }
 
  /* Vertical Example */
 
  .flotr-examples-small .flotr-example,
  .flotr-examples-medium .flotr-example {
  width: 720px;
  }
  .flotr-examples-small .flotr-example-editor .source,
  .flotr-examples-medium .flotr-example-editor .source {
  position: relative;
  }
 
 Binary files /dev/null and b/js/flotr2/examples/images/butterfly.jpg differ
 Binary files /dev/null and b/js/flotr2/examples/images/checkmark.png differ
 Binary files /dev/null and b/js/flotr2/examples/images/xmark.png differ
  <!DOCTYPE html>
  <html>
 
  <head>
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <title>Flotr Example Index Page</title>
  <link rel="stylesheet" href="lib/codemirror/lib/codemirror.css" type="text/css" />
  <link rel="stylesheet" href="examples.css" type="text/css" />
  <link rel="stylesheet" href="editor.css" type="text/css" />
  </head>
 
  <body>
  <div id="body-container">
  <div id="content-container">
  <div id="content">
  <div id="examples"></div>
  </div>
  </div>
  </div>
  </body>
 
  <script type="text/javascript" src="../lib/yepnope.js"></script>
  <script type="text/javascript" src="js/includes.min.js"></script>
 
  </html>
 
  (function () {
 
  var
  ONERROR = window.onerror,
  COUNT = 0,
  TYPES = {},
 
  T_CONTROLS =
  '<div class="controls">' +
  '<button class="fiddle btn large primary">Fiddle</button>' +
  '<button class="run btn large primary">Run</button>' +
  '</div>',
  T_EDITOR = '<div class="editor"></div>',
  T_SOURCE = '<div class="source"></div>',
  T_ERRORS = '<div class="errors"></div>',
  T_RENDER = '<div class="render"></div>',
  T_IFRAME = '<iframe></iframe>';
 
 
  // Javascript type:
  TYPES.javascript = function Javascript (o) {
  this.onerror = o.onerror;
  };
  TYPES.javascript.prototype = {
  codeMirrorType : 'javascript',
  example : function (o) {
 
  var
  example = o.example,
  render = o.render,
  renderId = $(render).attr('id'),
  args = o.args ? ',' + o.args.toString() : '';
 
  return '(' + example + ')(document.getElementById("' + renderId+ '")' +
  args + ');';
  },
  render : function (o) {
  eval(o.example);
  }
  };
 
  // HTML Type:
  TYPES.html = function Html (o) {
  this.onerror = o.onerror;
  };
  TYPES.html.prototype = {
  codeMirrorType : 'htmlmixed',
  example : function (o) {
  return $.trim(o.example);
  },
  render : function (o) {
 
  var
  example = o.example,
  render = o.render,
  iframe = $(T_IFRAME),
  that = this,
  win, doc;
 
  render.html(iframe);
 
  win = iframe[0].contentWindow;
 
  doc = win.document;
  doc.open();
 
  // Error
  win.onerror = iframe.onerror = function () {
  that.onerror.apply(null, arguments);
  }
 
  doc.write(example);
  doc.close();
  }
  };
 
  // Editor
  function Editor (container, o) {
 
  var
  type = o.type || 'javascript',
  example = o.example || '',
  noRun = o.noRun || false,
  teardown = o.teardown || false,
  controls = $(T_CONTROLS),
  render = $(T_RENDER),
  errors = $(T_ERRORS),
  source = $(T_SOURCE),
  node = $(T_EDITOR),
  renderId = 'editor-render-' + COUNT,
  api,
  render,
  codeMirror;
 
  api = new TYPES[type]({
  onerror : onerror
  });
  if (!api) throw 'Invalid type: API not found for type `' + type + '`.';
 
  render
  .attr('id', renderId);
 
  errors
  .hide();
 
  node
  .append(render)
  .append(controls)
  .append(source)
  .addClass(type)
  .addClass(noRun ? 'no-run' : '');
 
  container = $(container);
  container
  .append(node);
 
  source
  .append(errors)
 
  example = api.example({
  args : o.args,
  example : example,
  render : render
  });
 
  codeMirror = CodeMirror(source[0], {
  value : example,
  readOnly : noRun,
  lineNumbers : true,
  mode : api.codeMirrorType
  });
 
  if (!noRun) {
  controls.delegate('.run', 'click', function () {
  example = codeMirror.getValue();
  execute();
  });
 
  execute();
  }
 
  controls.delegate('.fiddle', 'click', function () {
  fiddle();
  });
 
  // Error handling:
  window.onerror = function (message, url, line) {
 
  onerror(message, url, line);
  console.log(message);
 
  if (ONERROR && $.isFunction(ONERROR)) {
  return ONERROR(message, url, line);
  } else {
  return false;
  }
  }
 
  // Helpers
 
  function execute () {
  errors.hide();
  if (teardown) {
  teardown.call();
  }
  api.render({
  example : example,
  render : render
  });
  }
 
  function onerror (message, url, line) {
  // @TODO Find some js error normalizing lib
 
  var
  doThatSexyThang = false,
  html = '<span class="error">Error: </span>',
  error, stack;
 
  /*
  // Native error type handling:
  if (typeof (message) !== 'string') {
  error = message;
  message = error.message;
  stack = error.stack;
 
  //if (stack) {
  console.log(stack);
  //}
 
  //console.log(message);
 
  }
 
  */
 
  html += '<span class="message">' + message + '</span>';
  if (typeof (line) !== "undefined") {
  html += '<span class="position">';
  html += 'Line <span class="line">' + line + '</span>';
  console.log(url);
  if (url) {
  html += ' of ';
  if (url == window.location) {
  html += '<span class="url">script</span>';
  if (doThatSexyThang) {
  //codeMirror.setMarker(line, '&#8226;');
  }
  } else {
  html += '<span class="url">' + url + '</span>';
  }
  }
  html += '.</span>';
  }
 
  errors.show();
  errors.html(html);
  }
 
  function fiddle () {
  var
  url = 'http://jsfiddle.net/api/post/jquery/1.7/',
  form = $('<form method="post" action="' + url + '" target="_blank"></form>'),
  input;
 
  // Resources
  resources = [
  'https://raw.github.com/HumbleSoftware/Flotr2/master/flotr2.min.js',
  'https://raw.github.com/HumbleSoftware/Flotr2/master/examples/examples.css'
  ];
  input = $('<input type="hidden" name="resources">')
  .attr('value', resources.join(','));
  form.append(input);
 
  // HTML
  input = $('<input type="hidden" name="html">')
  .attr('value', '<div id="'+renderId+'"></div>');
  form.append(input);
 
  // CSS
  input = $('<input type="hidden" name="normalize_css" value="no">')
  form.append(input);
  input = $('<input type="hidden" name="css">')
  .attr('value',
  '#'+renderId+' {\n width: 340px;\n height: 220px;' +
  '\n margin: 24px auto;\n}'
  );
  form.append(input);
 
  // JS
  input = $('<input type="hidden" name="js">')
  .attr('value', '$(function () {\n' + example + '\n});');
 
  form.append(input);
 
  // Submit
  form.append(input);
  $(document.body).append(form);
  form.submit();
  }
 
  COUNT++;
 
  this.setExample = function (source, args) {
  example = api.example({
  args : args,
  example : source,
  render : render
  });
  codeMirror.setValue(example);
  codeMirror.refresh();
  execute();
  }
  }
 
  if (typeof Flotr.Examples === 'undefined') Flotr.Examples = {};
  Flotr.Examples.Editor = Editor;
  })();
 
  (function () {
 
  var
  _ = Flotr._,
 
  DOT = '.',
 
  CN_EXAMPLE = 'flotr-example',
  CN_LABEL = 'flotr-example-label',
  CN_TITLE = 'flotr-example-title',
  CN_MARKUP = 'flotr-example-description',
  CN_EDITOR = 'flotr-example-editor',
 
  ID_GRAPH = 'flotr-example-graph',
 
  TEMPLATE = '' +
  '<div class="' + CN_EXAMPLE + '">' +
  '<div class="' + CN_LABEL + ' ' + CN_TITLE + '"></div>' +
  '<div class="' + CN_MARKUP + '"></div>' +
  '<div class="' + CN_EDITOR + '"></div>' +
  '</div>',
 
  Example = function (o) {
 
  this.options = o;
  this.example = null;
 
  this._initNodes();
  };
 
  Example.prototype = {
 
  setExample : function (example) {
 
  var
  source = this.getSource(example),
  editorNode = this._editorNode;
 
  this.example = example;
 
  Math.seedrandom(example.key);
  this._exampleNode.css({ display: 'block' });
  this._titleNode.html(example.name || '');
  this._markupNode.html(example.description || '');
 
  if (!this._editor) {
  this._editor = new Flotr.Examples.Editor(editorNode, {
  args : example.args,
  example : source,
  teardown : function () {
  // Unbind event listeners from previous examples
  Flotr.EventAdapter.stopObserving($(editorNode).find('.render')[0]);
  $(editorNode).find('canvas').each(function (index, canvas) {
  Flotr.EventAdapter.stopObserving(canvas);
  });
  }
  });
  } else {
  this._editor.setExample(source, example.args);
  }
  },
 
  getSource : function (example) {
 
  var
  source = example.callback.toString();
 
  // Hack for FF code style
  if (navigator.userAgent.search(/firefox/i) !== -1)
  source = js_beautify(source);
 
  return source;
  },
 
  executeCallback : function (example, node) {
  if (!_.isElement(node)) node = node[0];
  var args = (example.args ? [node].concat(example.args) : [node]);
  Math.seedrandom(example.key);
  return example.callback.apply(this, args);
  },
 
  _initNodes : function () {
 
  var
  node = this.options.node,
  example = $(TEMPLATE);
 
  this._titleNode = example.find(DOT + CN_TITLE);
  this._markupNode = example.find(DOT + CN_MARKUP);
  this._editorNode = example.find(DOT + CN_EDITOR);
  this._exampleNode = example;
 
  node.append(example);
  }
  };
 
  Flotr.Examples.Example = Example;
 
  })();
 
  (function () {
 
  var ExampleList = function () {
 
  // Map of examples.
  this.examples = {};
 
  };
 
  ExampleList.prototype = {
 
  add : function (example) {
  this.examples[example.key] = example;
  },
 
  get : function (key) {
  return key ? (this.examples[key] || null) : this.examples;
  },
 
  getType : function (type) {
  return Flotr._.select(this.examples, function (example) {
  return (example.type === type);
  });
  }
  }
 
  Flotr.ExampleList = new ExampleList();
 
  })();
 
  (function () {
 
  var
  E = Flotr.EventAdapter,
  _ = Flotr._,
 
  CLICK = 'click',
  EXAMPLE = 'example',
  MOUSEENTER = 'mouseenter',
  MOUSELEAVE = 'mouseleave',
 
  DOT = '.',
 
  CN_EXAMPLES = 'flotr-examples',
  CN_CONTAINER = 'flotr-examples-container',
  CN_RESET = 'flotr-examples-reset',
  CN_THUMBS = 'flotr-examples-thumbs',
  CN_THUMB = 'flotr-examples-thumb',
  CN_COLLAPSED = 'flotr-examples-collapsed',
  CN_HIGHLIGHT = 'flotr-examples-highlight',
  CN_LARGE = 'flotr-examples-large',
  CN_MEDIUM = 'flotr-examples-medium',
  CN_SMALL = 'flotr-examples-small',
  CN_MOBILE = 'flotr-examples-mobile',
 
  T_THUMB = '<div class="' + CN_THUMB + '"></div>',
 
  TEMPLATE = '' +
  '<div class="' + CN_EXAMPLES + '">' +
  '<div class="' + CN_RESET + '">View All</div>' +
  '<div class="' + CN_THUMBS + '"></div>' +
  '<div class="' + CN_CONTAINER + '"></div>' +
  '</div>'
 
  Examples = function (o) {
 
  if (_.isUndefined(Flotr.ExampleList)) throw "Flotr.ExampleList not defined.";
 
  this.options = o;
  this.list = Flotr.ExampleList;
  this.current = null;
  this.single = false;
 
  this._initNodes();
  this._example = new Flotr.Examples.Example({
  node : this._exampleNode
  });
 
  //console.time(EXAMPLE);
  //console.profile();
  this._initExamples();
  //console.profileEnd();
  //console.timeEnd(EXAMPLE);
  };
 
  Examples.prototype = {
 
  examples : function () {
 
  var
  styles = {cursor : 'pointer'},
  thumbsNode = this._thumbsNode,
  list = this.list.get(),
  that = this;
 
  var
  order = [
  "basic",
  "basic-axis",
  "basic-bars",
  "basic-bars-horizontal",
  "basic-bar-stacked",
  "basic-stacked-horizontal",
  "basic-pie",
  "basic-radar",
  "basic-bubble",
  "basic-candle",
  "basic-legend",
  "mouse-tracking",
  "mouse-zoom",
  "mouse-drag",
  "basic-time",
  "negative-values",
  "click-example",
  "download-image",
  "download-data",
  "advanced-titles",
  "color-gradients",
  "basic-timeline",
  "advanced-markers"
  ];
 
  (function runner () {
  var
  key = order.shift(),
  example = list[key];
 
  if (example.type === 'profile' || example.type === 'test') return;
  var node = $(T_THUMB);
  node.data('example', example);
  thumbsNode.append(node);
  that._example.executeCallback(example, node);
  node.click(function () {that._loadExample(example)});
 
  if (order.length) setTimeout(runner, 20);
  })();
 
  function zoomHandler (e) {
  var
  node = $(e.currentTarget),
  example = node.data('example'),
  orientation = e.data.orientation;
  if (orientation ^ node.hasClass(CN_HIGHLIGHT)) {
  node.toggleClass(CN_HIGHLIGHT).css(styles);
  that._example.executeCallback(example, node);
  }
  }
 
  thumbsNode.delegate(DOT + CN_THUMB, 'mouseenter', {orientation : true}, zoomHandler);
  thumbsNode.delegate(DOT + CN_THUMB, 'mouseleave', {orientation : false}, zoomHandler);
 
  if ($(window).hashchange) {
  $(window).hashchange(function () {
  that._loadHash();
  });
  }
  },
 
  _loadExample : function (example) {
  if (example) {
  if (this._currentExample !== example) {
  this._currentExample = example;
  } else {
  return;
  }
 
  window.location.hash = '!'+(this.single ? 'single/' : '')+example.key;
 
  if (!scroller) {
  this._thumbsNode.css({
  position: 'absolute',
  height: '0px',
  overflow: 'hidden',
  width: '0px'
  });
  this._resetNode.css({
  top: '16px'
  });
  }
 
  this._examplesNode.addClass(CN_COLLAPSED);
  this._exampleNode.show();
  this._example.setExample(example);
  this._resize();
  $(document).scrollTop(0);
  }
  },
 
  _reset : function () {
  window.location.hash = '';
 
  if (!scroller) {
  this._thumbsNode.css({
  position: '',
  height: '',
  overflow: '',
  width: ''
  });
  }
 
  this._examplesNode.removeClass(CN_COLLAPSED);
  this._thumbsNode.height('');
  this._exampleNode.hide();
  },
 
  _initNodes : function () {
 
  var
  node = $(this.options.node),
  that = this,
  examplesNode = $(TEMPLATE);
 
  that._resetNode = examplesNode.find(DOT+CN_RESET);
  that._exampleNode = examplesNode.find(DOT+CN_CONTAINER);
  that._thumbsNode = examplesNode.find(DOT+CN_THUMBS);
  that._examplesNode = examplesNode;
 
  that._resetNode.click(function () {
  that._reset();
  });
 
  node.append(examplesNode);
 
  this._initResizer();
  },
 
  _initResizer : function () {
 
  var
  that = this,
  node = that._examplesNode,
  page = $(window),
  currentClass;
 
  $(window).resize(applySize);
  applySize();
 
  function applySize () {
 
  var
  height = page.height() - (that.options.thumbPadding || 0),
  width = page.width(),
  newClass;
 
  if (width > 1760) {
  newClass = CN_LARGE;
  that._thumbsNode.height(height);
  } else if (width > 1140) {
  newClass = CN_MEDIUM;
  that._thumbsNode.height(height);
  } else {
  newClass = CN_SMALL;
  that._thumbsNode.height('');
  }
 
  if (currentClass !== newClass) {
  if (currentClass)
  that._examplesNode.removeClass(currentClass);
  that._examplesNode.addClass(newClass);
  currentClass = newClass;
  }
  }
 
  this._resize = applySize;
  },
  _initExamples : function () {
  var
  hash = window.location.hash,
  example, params;
 
  hash = hash.substring(2);
  params = hash.split('/');
 
  if (params.length == 1) {
  this.examples();
  if (hash) {
  this._loadHash();
  }
  }
  else {
  if (params[0] == 'single') {
  this.single = true;
  this._loadExample(
  this.list.get(params[1])
  );
  }
  }
  },
  _loadHash : function () {
 
  var
  hash = window.location.hash,
  example;
 
  hash = hash.substring(2);
  if (hash) {
  example = this.list.get(hash);
  this._loadExample(example);
  } else {
  this._reset();
  }
  }
  }
 
  var scroller = (function () {
 
  var
  mobile = !!(
  navigator.userAgent.match(/Android/i) ||
  navigator.userAgent.match(/webOS/i) ||
  navigator.userAgent.match(/iPhone/i) ||
  navigator.userAgent.match(/iPod/i)
  ),
  mozilla = !!$.browser.mozilla;
 
  return (!mobile || mozilla);
  })();
 
  Flotr.Examples = Examples;
 
  })();
 
  (function () {
 
  var
  D = Flotr.DOM,
  E = Flotr.EventAdapter,
  _ = Flotr._,
  CLICK = 'click',
 
  ID_EXAMPLE_PROFILE = 'example-profile',
  ID_EXAMPLES = 'examples',
 
  Profile = function (o) {
 
  if (_.isUndefined(Flotr.ExampleList)) throw "Flotr.ExampleList not defined.";
 
  this.editMode = 'off';
  this.list = Flotr.ExampleList;
  this.current = null;
  this.single = false;
 
  this.init();
  };
 
  Profile.prototype = _.extend({}, Flotr.Examples.prototype, {
 
  examples : function () {
  var
  examplesNode = document.getElementById(ID_EXAMPLES),
  listNode = D.node('<ul></ul>'),
  profileNode;
 
  _.each(this.list.getType('profile'), function (example) {
  profileNode = D.node('<li>' + example.name + '</li>');
  D.insert(listNode, profileNode);
  E.observe(profileNode, CLICK, _.bind(function () {
  this.example(example);
  }, this));
  }, this);
 
  D.insert(examplesNode, listNode);
  },
 
  example : function (example) {
  this._renderSource(example);
  this.profileStart(example);
  setTimeout(_.bind(function () {
  this._renderGraph(example);
  this.profileEnd();
  }, this), 50);
  },
 
  profileStart : function (example) {
  var profileNode = document.getElementById(ID_EXAMPLE_PROFILE);
  this._startTime = new Date();
  profileNode.innerHTML = '<div>Profile started for "'+example.name+'"...</div>';
  },
 
  profileEnd : function (example) {
  var
  profileNode = document.getElementById(ID_EXAMPLE_PROFILE);
  profileTime = (new Date()) - this._startTime;
 
  this._startTime = null;
 
  profileNode.innerHTML += '<div>Profile complete: '+profileTime+'ms<div>';
  }
 
  });
 
  Flotr.Profile = Profile;
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'advanced-markers',
  name : 'Advanced Markers',
  callback : advanced_markers,
  timeout : 150
  });
 
  function advanced_markers (container) {
 
  var
  xmark = new Image(),
  checkmark = new Image(),
  bars = {
  data: [],
  bars: {
  show: true,
  barWidth: 0.6,
  lineWidth: 0,
  fillOpacity: 0.8
  }
  }, markers = {
  data: [],
  markers: {
  show: true,
  position: 'ct',
  labelFormatter: function (o) {
  return (o.y >= 5) ? checkmark : xmark;
  }
  }
  },
  flotr = Flotr,
  point,
  graph,
  i;
 
 
  for (i = 0; i < 8; i++) {
  point = [i, Math.ceil(Math.random() * 10)];
  bars.data.push(point);
  markers.data.push(point);
  }
 
  var runner = function () {
  if (!xmark.complete || !checkmark.complete) {
  setTimeout(runner, 50);
  return;
  }
 
  graph = flotr.draw(
  container,
  [bars, markers], {
  yaxis: {
  min: 0,
  max: 11
  },
  xaxis: {
  min: -0.5,
  max: 7.5
  },
  grid: {
  verticalLines: false
  }
  }
  );
  }
 
  xmark.onload = runner;
  xmark.src = 'images/xmark.png';
  checkmark.src = 'images/checkmark.png';
  };
 
  })();
 
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'advanced-titles',
  name : 'Advanced Titles',
  callback : advanced_titles
  });
 
  function advanced_titles (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  d4 = [],
  d5 = [],
  graph,
  i;
 
  for (i = 0; i <= 10; i += 0.1) {
  d1.push([i, 4 + Math.pow(i,1.5)]);
  d2.push([i, Math.pow(i,3)]);
  d3.push([i, i*5+3*Math.sin(i*4)]);
  d4.push([i, i]);
  if (i.toFixed(1)%1 == 0) {
  d5.push([i, 2*i]);
  }
  }
 
  // Draw the graph.
  graph = Flotr.draw(
  container,[
  { data : d1, label : 'y = 4 + x^(1.5)', lines : { fill : true } },
  { data : d2, label : 'y = x^3', yaxis : 2 },
  { data : d3, label : 'y = 5x + 3sin(4x)' },
  { data : d4, label : 'y = x' },
  { data : d5, label : 'y = 2x', lines : { show : true }, points : { show : true } }
  ], {
  title : 'Advanced Titles Example',
  subtitle : 'You can save me as an image',
  xaxis : {
  noTicks : 7,
  tickFormatter : function (n) { return '('+n+')'; },
  min : 1,
  max : 7.5,
  labelsAngle : 45,
  title : 'x Axis'
  },
  yaxis : {
  ticks : [[0, "Lower"], 10, 20, 30, [40, "Upper"]],
  max : 40,
  title : 'y = f(x)'
  },
  y2axis : { color : '#FF0000', max : 500, title : 'y = x^3' },
  grid : {
  verticalLines : false,
  backgroundColor : 'white'
  },
  HtmlText : false,
  legend : {
  position : 'nw'
  }
  });
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-axis',
  name : 'Basic Axis',
  callback : basic_axis
  });
 
  function basic_axis (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  d4 = [],
  d5 = [], // Data
  ticks = [[ 0, "Lower"], 10, 20, 30, [40, "Upper"]], // Ticks for the Y-Axis
  graph;
 
  for(var i = 0; i <= 10; i += 0.1){
  d1.push([i, 4 + Math.pow(i,1.5)]);
  d2.push([i, Math.pow(i,3)]);
  d3.push([i, i*5+3*Math.sin(i*4)]);
  d4.push([i, i]);
  if( i.toFixed(1)%1 == 0 ){
  d5.push([i, 2*i]);
  }
  }
 
  d3[30][1] = null;
  d3[31][1] = null;
 
  function ticksFn (n) { return '('+n+')'; }
 
  graph = Flotr.draw(container, [
  { data : d1, label : 'y = 4 + x^(1.5)', lines : { fill : true } },
  { data : d2, label : 'y = x^3'},
  { data : d3, label : 'y = 5x + 3sin(4x)'},
  { data : d4, label : 'y = x'},
  { data : d5, label : 'y = 2x', lines : { show : true }, points : { show : true } }
  ], {
  xaxis : {
  noTicks : 7, // Display 7 ticks.
  tickFormatter : ticksFn, // Displays tick values between brackets.
  min : 1, // Part of the series is not displayed.
  max : 7.5 // Part of the series is not displayed.
  },
  yaxis : {
  ticks : ticks, // Set Y-Axis ticks
  max : 40 // Maximum value along Y-Axis
  },
  grid : {
  verticalLines : false,
  backgroundColor : {
  colors : [[0,'#fff'], [1,'#ccc']],
  start : 'top',
  end : 'bottom'
  }
  },
  legend : {
  position : 'nw'
  },
  title : 'Basic Axis example',
  subtitle : 'This is a subtitle'
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-bar-stacked',
  name : 'Stacked Bars',
  callback : bars_stacked
  });
 
  Flotr.ExampleList.add({
  key : 'basic-stacked-horizontal',
  name : 'Stacked Horizontal Bars',
  args : [true],
  callback : bars_stacked,
  tolerance : 5
  });
 
  function bars_stacked (container, horizontal) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  graph, i;
 
  for (i = -10; i < 10; i++) {
  if (horizontal) {
  d1.push([Math.random(), i]);
  d2.push([Math.random(), i]);
  d3.push([Math.random(), i]);
  } else {
  d1.push([i, Math.random()]);
  d2.push([i, Math.random()]);
  d3.push([i, Math.random()]);
  }
  }
 
  graph = Flotr.draw(container,[
  { data : d1, label : 'Serie 1' },
  { data : d2, label : 'Serie 2' },
  { data : d3, label : 'Serie 3' }
  ], {
  legend : {
  backgroundColor : '#D2E8FF' // Light blue
  },
  bars : {
  show : true,
  stacked : true,
  horizontal : horizontal,
  barWidth : 0.6,
  lineWidth : 1,
  shadowSize : 0
  },
  grid : {
  verticalLines : horizontal,
  horizontalLines : !horizontal
  }
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-bars',
  name : 'Basic Bars',
  callback : basic_bars
  });
 
  Flotr.ExampleList.add({
  key : 'basic-bars-horizontal',
  name : 'Horizontal Bars',
  args : [true],
  callback : basic_bars,
  tolerance : 5
  });
 
  function basic_bars (container, horizontal) {
 
  var
  horizontal = (horizontal ? true : false), // Show horizontal bars
  d1 = [], // First data series
  d2 = [], // Second data series
  point, // Data point variable declaration
  i;
 
  for (i = 0; i < 4; i++) {
 
  if (horizontal) {
  point = [Math.ceil(Math.random()*10), i];
  } else {
  point = [i, Math.ceil(Math.random()*10)];
  }
 
  d1.push(point);
 
  if (horizontal) {
  point = [Math.ceil(Math.random()*10), i+0.5];
  } else {
  point = [i+0.5, Math.ceil(Math.random()*10)];
  }
 
  d2.push(point);
  };
 
  // Draw the graph
  Flotr.draw(
  container,
  [d1, d2],
  {
  bars : {
  show : true,
  horizontal : horizontal,
  shadowSize : 0,
  barWidth : 0.5
  },
  mouse : {
  track : true,
  relative : true
  },
  yaxis : {
  min : 0,
  autoscaleMargin : 1
  }
  }
  );
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-bubble',
  name : 'Basic Bubble',
  callback : basic_bubble
  });
 
  function basic_bubble (container) {
 
  var
  d1 = [],
  d2 = [],
  point, graph, i;
 
  for (i = 0; i < 10; i++ ){
  point = [i, Math.ceil(Math.random()*10), Math.ceil(Math.random()*10)];
  d1.push(point);
 
  point = [i, Math.ceil(Math.random()*10), Math.ceil(Math.random()*10)];
  d2.push(point);
  }
 
  // Draw the graph
  graph = Flotr.draw(container, [d1, d2], {
  bubbles : { show : true, baseRadius : 5 },
  xaxis : { min : -4, max : 14 },
  yaxis : { min : -4, max : 14 }
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-candle',
  name : 'Basic Candle',
  callback : basic_candle
  });
 
  function basic_candle (container) {
 
  var
  d1 = [],
  price = 3.206,
  graph,
  i, a, b, c;
 
  for (i = 0; i < 50; i++) {
  a = Math.random();
  b = Math.random();
  c = (Math.random() * (a + b)) - b;
  d1.push([i, price, price + a, price - b, price + c]);
  price = price + c;
  }
 
  // Graph
  graph = Flotr.draw(container, [ d1 ], {
  candles : { show : true, candleWidth : 0.6 },
  xaxis : { noTicks : 10 }
  });
  }
 
  })();
 
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-legend',
  name : 'Basic Legend',
  callback : basic_legend
  });
 
  function basic_legend (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  data,
  graph, i;
 
  // Data Generation
  for (i = 0; i < 15; i += 0.5) {
  d1.push([i, i + Math.sin(i+Math.PI)]);
  d2.push([i, i]);
  d3.push([i, 15-Math.cos(i)]);
  }
 
  data = [
  { data : d1, label :'x + sin(x+&pi;)' },
  { data : d2, label :'x' },
  { data : d3, label :'15 - cos(x)' }
  ];
 
 
  // This function prepend each label with 'y = '
  function labelFn (label) {
  return 'y = ' + label;
  }
 
  // Draw graph
  graph = Flotr.draw(container, data, {
  legend : {
  position : 'se', // Position the legend 'south-east'.
  labelFormatter : labelFn, // Format the labels.
  backgroundColor : '#D2E8FF' // A light blue background color.
  },
  HtmlText : false
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-pie',
  name : 'Basic Pie',
  callback : basic_pie
  });
 
  function basic_pie (container) {
 
  var
  d1 = [[0, 4]],
  d2 = [[0, 3]],
  d3 = [[0, 1.03]],
  d4 = [[0, 3.5]],
  graph;
 
  graph = Flotr.draw(container, [
  { data : d1, label : 'Comedy' },
  { data : d2, label : 'Action' },
  { data : d3, label : 'Romance',
  pie : {
  explode : 50
  }
  },
  { data : d4, label : 'Drama' }
  ], {
  HtmlText : false,
  grid : {
  verticalLines : false,
  horizontalLines : false
  },
  xaxis : { showLabels : false },
  yaxis : { showLabels : false },
  pie : {
  show : true,
  explode : 6
  },
  mouse : { track : true },
  legend : {
  position : 'se',
  backgroundColor : '#D2E8FF'
  }
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-radar',
  name : 'Basic Radar',
  callback : basic_radar
  });
 
  function basic_radar (container) {
 
  // Fill series s1 and s2.
  var
  s1 = { label : 'Actual', data : [[0, 3], [1, 8], [2, 5], [3, 5], [4, 3], [5, 9]] },
  s2 = { label : 'Target', data : [[0, 8], [1, 7], [2, 8], [3, 2], [4, 4], [5, 7]] },
  graph, ticks;
 
  // Radar Labels
  ticks = [
  [0, "Statutory"],
  [1, "External"],
  [2, "Videos"],
  [3, "Yippy"],
  [4, "Management"],
  [5, "oops"]
  ];
 
  // Draw the graph.
  graph = Flotr.draw(container, [ s1, s2 ], {
  radar : { show : true},
  grid : { circular : true, minorHorizontalLines : true},
  yaxis : { min : 0, max : 10, minorTickFreq : 2},
  xaxis : { ticks : ticks}
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-stacked',
  name : 'Basic Stacked',
  callback : basic_stacked,
  type : 'test'
  });
 
  function basic_stacked (container) {
 
  var
  d1 = [[0, 3], [4, 8], [8, 2], [9, 3]], // First data series
  d2 = [[0, 2], [4, 3], [8, 8], [9, 4]], // Second data series
  i, graph;
 
  // Draw Graph
  graph = Flotr.draw(container, [ d1, d2 ], {
  lines: {
  show : true,
  stacked: true
  },
  xaxis: {
  minorTickFreq: 4
  },
  grid: {
  minorVerticalLines: true
  }
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-stepped',
  name : 'Basic Stepped',
  callback : basic_stepped,
  type : 'test'
  });
 
  function basic_stepped (container) {
 
  var
  d1 = [[0, 3], [4, 8], [8, 5], [9, 13]], // First data series
  d2 = [], // Second data series
  i, graph;
 
  // Generate first data set
  for (i = 0; i < 14; i += 0.5) {
  d2.push([i, Math.sin(i)]);
  }
 
  // Draw Graph
  graph = Flotr.draw(container, [ d1, d2 ], {
  lines: {
  steps : true,
  show : true
  },
  xaxis: {
  minorTickFreq: 4
  },
  yaxis: {
  autoscale: true
  },
  grid: {
  minorVerticalLines: true
  },
  mouse : {
  track : true,
  relative : true
  }
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-time',
  name : 'Basic Time',
  callback : basic_time,
  description : "<p>Select an area of the graph to zoom. Click to reset the chart.</p>"
  });
 
  function basic_time (container) {
 
  var
  d1 = [],
  start = new Date("2009/01/01 01:00").getTime(),
  options,
  graph,
  i, x, o;
 
  for (i = 0; i < 100; i++) {
  x = start+(i*1000*3600*24*36.5);
  d1.push([x, i+Math.random()*30+Math.sin(i/20+Math.random()*2)*20+Math.sin(i/10+Math.random())*10]);
  }
 
  options = {
  xaxis : {
  mode : 'time',
  labelsAngle : 45
  },
  selection : {
  mode : 'x'
  },
  HtmlText : false,
  title : 'Time'
  };
 
  // Draw graph with default options, overwriting with passed options
  function drawGraph (opts) {
 
  // Clone the options, so the 'options' variable always keeps intact.
  o = Flotr._.extend(Flotr._.clone(options), opts || {});
 
  // Return a new graph.
  return Flotr.draw(
  container,
  [ d1 ],
  o
  );
  }
 
  graph = drawGraph();
 
  Flotr.EventAdapter.observe(container, 'flotr:select', function(area){
  // Draw selected area
  graph = drawGraph({
  xaxis : { min : area.x1, max : area.x2, mode : 'time', labelsAngle : 45 },
  yaxis : { min : area.y1, max : area.y2 }
  });
  });
 
  // When graph is clicked, draw the graph with default area.
  Flotr.EventAdapter.observe(container, 'flotr:click', function () { graph = drawGraph(); });
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-timeline',
  name : 'Basic Timeline',
  callback : basic_timeline
  });
 
  function basic_timeline (container) {
 
  var
  d1 = [[1, 4, 5]],
  d2 = [[3.2, 3, 4]],
  d3 = [[1.9, 2, 2], [5, 2, 3.3]],
  d4 = [[1.55, 1, 9]],
  d5 = [[5, 0, 2.3]],
  data = [],
  timeline = { show : true, barWidth : .5 },
  markers = [],
  labels = ['Obama', 'Bush', 'Clinton', 'Palin', 'McCain'],
  i, graph, point;
 
  // Timeline
  Flotr._.each([d1, d2, d3, d4, d5], function (d) {
  data.push({
  data : d,
  timeline : Flotr._.clone(timeline)
  });
  });
 
  // Markers
  Flotr._.each([d1, d2, d3, d4, d5], function (d) {
  point = d[0];
  markers.push([point[0], point[1]]);
  });
  data.push({
  data: markers,
  markers: {
  show: true,
  position: 'rm',
  fontSize: 11,
  labelFormatter : function (o) { return labels[o.index]; }
  }
  });
 
  // Draw Graph
  graph = Flotr.draw(container, data, {
  xaxis: {
  noTicks: 3,
  tickFormatter: function (x) {
  var
  x = parseInt(x),
  months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
  return months[(x-1)%12];
  }
  },
  yaxis: {
  showLabels : false
  },
  grid: {
  horizontalLines : false
  }
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic',
  name : 'Basic',
  callback : basic
  });
 
  function basic (container) {
 
  var
  d1 = [[0, 3], [4, 8], [8, 5], [9, 13]], // First data series
  d2 = [], // Second data series
  i, graph;
 
  // Generate first data set
  for (i = 0; i < 14; i += 0.5) {
  d2.push([i, Math.sin(i)]);
  }
 
  // Draw Graph
  graph = Flotr.draw(container, [ d1, d2 ], {
  xaxis: {
  minorTickFreq: 4
  },
  grid: {
  minorVerticalLines: true
  }
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'click-example',
  name : 'Click Example',
  callback : click_example
  });
 
  function click_example (container) {
 
  var
  d1 = [[0,0]], // Point at origin
  options,
  graph;
 
  options = {
  xaxis: {min: 0, max: 15},
  yaxis: {min: 0, max: 15},
  lines: {show: true},
  points: {show: true},
  mouse: {track:true},
  title: 'Click Example'
  };
 
  graph = Flotr.draw(container, [d1], options);
 
  // Add a point to the series and redraw the graph
  Flotr.EventAdapter.observe(container, 'flotr:click', function(position){
 
  // Add a point to the series at the location of the click
  d1.push([position.x, position.y]);
 
  // Sort the series.
  d1 = d1.sort(function (a, b) { return a[0] - b[0]; });
 
  // Redraw the graph, with the new series.
  graph = Flotr.draw(container, [d1], options);
  });
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'color-gradients',
  name : 'Color Gradients',
  callback : color_gradients
  });
 
  function color_gradients (container) {
 
  var
  bars = {
  data: [],
  bars: {
  show: true,
  barWidth: 0.8,
  lineWidth: 0,
  fillColor: {
  colors: ['#CB4B4B', '#fff'],
  start: 'top',
  end: 'bottom'
  },
  fillOpacity: 0.8
  }
  }, markers = {
  data: [],
  markers: {
  show: true,
  position: 'ct'
  }
  }, lines = {
  data: [],
  lines: {
  show: true,
  fillColor: ['#00A8F0', '#fff'],
  fill: true,
  fillOpacity: 1
  }
  },
  point,
  graph,
  i;
 
  for (i = 0; i < 8; i++) {
  point = [i, Math.ceil(Math.random() * 10)];
  bars.data.push(point);
  markers.data.push(point);
  }
 
  for (i = -1; i < 9; i += 0.01){
  lines.data.push([i, i*i/8+2]);
  }
 
  graph = Flotr.draw(
  container,
  [lines, bars, markers], {
  yaxis: {
  min: 0,
  max: 11
  },
  xaxis: {
  min: -0.5,
  max: 7.5
  },
  grid: {
  verticalLines: false,
  backgroundColor: ['#fff', '#ccc']
  }
  }
  );
  };
 
  })();
 
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'download-data',
  name : 'Download Data',
  callback : download_data
  });
 
  function download_data (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  d4 = [],
  d5 = [],
  graph,
  i,x;
 
  for (i = 0; i <= 100; i += 1) {
  x = i / 10;
  d1.push([x, 4 + Math.pow(x,1.5)]);
  d2.push([x, Math.pow(x,3)]);
  d3.push([x, i*5+3*Math.sin(x*4)]);
  d4.push([x, x]);
  if(x%1 === 0 ){
  d5.push([x, 2*x]);
  }
  }
 
  // Draw the graph.
  graph = Flotr.draw(
  container, [
  { data : d1, label : 'y = 4 + x^(1.5)', lines : { fill : true } },
  { data : d2, label : 'y = x^3' },
  { data : d3, label : 'y = 5x + 3sin(4x)' },
  { data : d4, label : 'y = x' },
  { data : d5, label : 'y = 2x', lines : { show : true }, points : { show : true } }
  ],{
  xaxis : {
  noTicks : 7,
  tickFormatter : function (n) { return '('+n+')'; },
  min: 1, // Part of the series is not displayed.
  max: 7.5
  },
  yaxis : {
  ticks : [[ 0, "Lower"], 10, 20, 30, [40, "Upper"]],
  max : 40
  },
  grid : {
  verticalLines : false,
  backgroundColor : 'white'
  },
  legend : {
  position : 'nw'
  },
  spreadsheet : {
  show : true,
  tickFormatter : function (e) { return e+''; }
  }
  });
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'download-image',
  name : 'Download Image',
  callback : download_image,
  description : '' +
  '<form name="image-download" id="image-download" action="" onsubmit="return false">' +
  '<label><input type="radio" name="format" value="png" checked="checked" /> PNG</label>' +
  '<label><input type="radio" name="format" value="jpeg" /> JPEG</label>' +
 
  '<button name="to-image" onclick="CurrentExample(\'to-image\')">To Image</button>' +
  '<button name="download" onclick="CurrentExample(\'download\')">Download</button>' +
  '<button name="reset" onclick="CurrentExample(\'reset\')">Reset</button>' +
  '</form>'
  });
 
  function download_image (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  d4 = [],
  d5 = [],
  graph,
  i;
 
  for (i = 0; i <= 10; i += 0.1) {
  d1.push([i, 4 + Math.pow(i,1.5)]);
  d2.push([i, Math.pow(i,3)]);
  d3.push([i, i*5+3*Math.sin(i*4)]);
  d4.push([i, i]);
  if( i.toFixed(1)%1 == 0 ){
  d5.push([i, 2*i]);
  }
  }
 
  // Draw the graph
  graph = Flotr.draw(
  container,[
  {data:d1, label:'y = 4 + x^(1.5)', lines:{fill:true}},
  {data:d2, label:'y = x^3', yaxis:2},
  {data:d3, label:'y = 5x + 3sin(4x)'},
  {data:d4, label:'y = x'},
  {data:d5, label:'y = 2x', lines: {show: true}, points: {show: true}}
  ],{
  title: 'Download Image Example',
  subtitle: 'You can save me as an image',
  xaxis:{
  noTicks: 7, // Display 7 ticks.
  tickFormatter: function(n){ return '('+n+')'; }, // => displays tick values between brackets.
  min: 1, // => part of the series is not displayed.
  max: 7.5, // => part of the series is not displayed.
  labelsAngle: 45,
  title: 'x Axis'
  },
  yaxis:{
  ticks: [[0, "Lower"], 10, 20, 30, [40, "Upper"]],
  max: 40,
  title: 'y = f(x)'
  },
  y2axis:{color:'#FF0000', max: 500, title: 'y = x^3'},
  grid:{
  verticalLines: false,
  backgroundColor: 'white'
  },
  HtmlText: false,
  legend: {
  position: 'nw'
  }
  });
 
  this.CurrentExample = function (operation) {
 
  var
  format = $('#image-download input:radio[name=format]:checked').val();
  if (Flotr.isIE && Flotr.isIE < 9) {
  alert(
  "Your browser doesn't allow you to get a bitmap image from the plot, " +
  "you can only get a VML image that you can use in Microsoft Office.<br />"
  );
  }
 
  if (operation == 'to-image') {
  graph.download.saveImage(format, null, null, true)
  } else if (operation == 'download') {
  graph.download.saveImage(format);
  } else if (operation == 'reset') {
  graph.download.restoreCanvas();
  }
  };
 
  return graph;
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'mouse-drag',
  name : 'Mouse Drag',
  callback : mouse_drag
  });
 
  function mouse_drag (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  options,
  graph,
  start,
  i;
 
  for (i = -40; i < 40; i += 0.5) {
  d1.push([i, Math.sin(i)+3*Math.cos(i)]);
  d2.push([i, Math.pow(1.1, i)]);
  d3.push([i, 40 - i+Math.random()*10]);
  }
 
  options = {
  xaxis: {min: 0, max: 20},
  title : 'Mouse Drag'
  };
 
  // Draw graph with default options, overwriting with passed options
  function drawGraph (opts) {
 
  // Clone the options, so the 'options' variable always keeps intact.
  var o = Flotr._.extend(Flotr._.clone(options), opts || {});
 
  // Return a new graph.
  return Flotr.draw(
  container,
  [ d1, d2, d3 ],
  o
  );
  }
 
  graph = drawGraph();
 
  function initializeDrag (e) {
  start = graph.getEventPosition(e);
  Flotr.EventAdapter.observe(document, 'mousemove', move);
  Flotr.EventAdapter.observe(document, 'mouseup', stopDrag);
  }
 
  function move (e) {
  var
  end = graph.getEventPosition(e),
  xaxis = graph.axes.x,
  offset = start.x - end.x;
 
  graph = drawGraph({
  xaxis : {
  min : xaxis.min + offset,
  max : xaxis.max + offset
  }
  });
  // @todo: refector initEvents in order not to remove other observed events
  Flotr.EventAdapter.observe(graph.overlay, 'mousedown', initializeDrag);
  }
 
  function stopDrag () {
  Flotr.EventAdapter.stopObserving(document, 'mousemove', move);
  }
 
  Flotr.EventAdapter.observe(graph.overlay, 'mousedown', initializeDrag);
 
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'mouse-tracking',
  name : 'Mouse Tracking',
  callback : mouse_tracking
  });
 
  function mouse_tracking (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  graph, i;
 
  for (i = 0; i < 20; i += 0.5) {
  d1.push([i, 2*i]);
  d2.push([i, i*1.5+1.5*Math.sin(i)]);
  d3.push([i, 3*Math.cos(i)+10]);
  }
 
  graph = Flotr.draw(
  container,
  [
  {
  data : d1,
  mouse : { track : false } // Disable mouse tracking for d1
  },
  d2,
  d3
  ],
  {
  mouse : {
  track : true, // Enable mouse tracking
  lineColor : 'purple',
  relative : true,
  position : 'ne',
  sensibility : 1,
  trackDecimals : 2,
  trackFormatter : function (o) { return 'x = ' + o.x +', y = ' + o.y; }
  },
  crosshair : {
  mode : 'xy'
  }
  }
  );
 
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'mouse-zoom',
  name : 'Mouse Zoom',
  callback : mouse_zoom,
  description : "<p>Select an area of the graph to zoom. Click to reset the chart.</p>"
  });
 
  function mouse_zoom (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  options,
  graph,
  i;
 
  for (i = 0; i < 40; i += 0.5) {
  d1.push([i, Math.sin(i)+3*Math.cos(i)]);
  d2.push([i, Math.pow(1.1, i)]);
  d3.push([i, 40 - i+Math.random()*10]);
  }
 
  options = {
  selection : { mode : 'x', fps : 30 },
  title : 'Mouse Zoom'
  };
 
  // Draw graph with default options, overwriting with passed options
  function drawGraph (opts) {
 
  // Clone the options, so the 'options' variable always keeps intact.
  var o = Flotr._.extend(Flotr._.clone(options), opts || {});
 
  // Return a new graph.
  return Flotr.draw(
  container,
  [ d1, d2, d3 ],
  o
  );
  }
 
  // Actually draw the graph.
  graph = drawGraph();
 
  // Hook into the 'flotr:select' event.
  Flotr.EventAdapter.observe(container, 'flotr:select', function (area) {
 
  // Draw graph with new area
  graph = drawGraph({
  xaxis: {min:area.x1, max:area.x2},
  yaxis: {min:area.y1, max:area.y2}
  });
  });
 
  // When graph is clicked, draw the graph with default area.
  Flotr.EventAdapter.observe(container, 'flotr:click', function () { drawGraph(); });
  };
 
  })();
 
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'negative-values',
  name : 'Negative Values',
  callback : negative_values
  });
 
  function negative_values (container) {
 
  var
  d0 = [], // Line through y = 0
  d1 = [], // Random data presented as a scatter plot.
  d2 = [], // A regression line for the scatter.
  sx = 0,
  sy = 0,
  sxy = 0,
  sxsq = 0,
  xmean,
  ymean,
  alpha,
  beta,
  n, x, y;
 
  for (n = 0; n < 20; n++){
 
  x = n;
  y = x + Math.random()*8 - 15;
 
  d0.push([x, 0]);
  d1.push([x, y]);
 
  // Computations used for regression line
  sx += x;
  sy += y;
  sxy += x*y;
  sxsq += Math.pow(x,2);
  }
 
  xmean = sx/n;
  ymean = sy/n;
  beta = ((n*sxy) - (sx*sy))/((n*sxsq)-(Math.pow(sx,2)));
  alpha = ymean - (beta * xmean);
 
  // Compute the regression line.
  for (n = 0; n < 20; n++){
  d2.push([n, alpha + beta*n])
  }
 
  // Draw the graph
  graph = Flotr.draw(
  container, [
  { data : d0, shadowSize : 0, color : '#545454' }, // Horizontal
  { data : d1, label : 'y = x + (Math.random() * 8) - 15', points : { show : true } }, // Scatter
  { data : d2, label : 'y = ' + alpha.toFixed(2) + ' + ' + beta.toFixed(2) + '*x' } // Regression
  ],
  {
  legend : { position : 'se', backgroundColor : '#D2E8FF' },
  title : 'Negative Values'
  }
  );
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'profile-bars',
  name : 'Profile Bars',
  type : 'profile',
  callback : profile_bars
  });
 
  /*
  Flotr.ExampleList.add({
  key : 'basic-bars-horizontal',
  name : 'Horizontal Bars',
  args : [true],
  callback : basic_bars
  });
  */
 
  function profile_bars (container, horizontal) {
 
  var
  horizontal = (horizontal ? true : false), // Show horizontal bars
  d1 = [], // First data series
  d2 = [], // Second data series
  point, // Data point variable declaration
  i;
 
  for (i = 0; i < 5000; i++) {
 
  if (horizontal) {
  point = [Math.ceil(Math.random()*10), i];
  } else {
  point = [i, Math.ceil(Math.random()*10)];
  }
 
  d1.push(point);
 
  if (horizontal) {
  point = [Math.ceil(Math.random()*10), i+0.5];
  } else {
  point = [i+0.5, Math.ceil(Math.random()*10)];
  }
 
  d2.push(point);
  };
 
  // Draw the graph
  Flotr.draw(
  container,
  [d1, d2],
  {
  bars : {
  show : true,
  horizontal : horizontal,
  barWidth : 0.5
  },
  mouse : {
  track : true,
  relative : true
  },
  yaxis : {
  min : 0,
  autoscaleMargin : 1
  }
  }
  );
  }
 
  })();
 
  yepnope([
  // Libs
  '../lib/bean-min.js',
  '../lib/underscore-min.js',
  {
  test : (navigator.appVersion.indexOf("MSIE") != -1 && parseFloat(navigator.appVersion.split("MSIE")[1]) < 9),
  // Load for IE < 9
  yep : [
  '../lib/excanvas.js',
  '../lib/base64.js',
  '../lib/canvastext.js'
  ]
  },
  'lib/codemirror/lib/codemirror.js',
  'lib/codemirror/mode/javascript/javascript.js',
  'lib/beautify.js',
  'lib/randomseed.js',
  'lib/jquery-1.7.1.min.js',
  'lib/jquery.ba-hashchange.min.js',
 
  // Flotr
  '../js/Flotr.js',
  '../js/DefaultOptions.js',
  '../js/Color.js',
  '../js/Date.js',
  '../js/DOM.js',
  '../js/EventAdapter.js',
  '../js/Text.js',
  '../js/Graph.js',
  '../js/Axis.js',
  '../js/Series.js',
  '../js/types/lines.js',
  '../js/types/bars.js',
  '../js/types/points.js',
  '../js/types/pie.js',
  '../js/types/candles.js',
  '../js/types/markers.js',
  '../js/types/radar.js',
  '../js/types/bubbles.js',
  '../js/types/gantt.js',
  '../js/types/timeline.js',
  '../js/plugins/download.js',
  '../js/plugins/selection.js',
  '../js/plugins/spreadsheet.js',
  '../js/plugins/grid.js',
  '../js/plugins/hit.js',
  '../js/plugins/crosshair.js',
  '../js/plugins/labels.js',
  '../js/plugins/legend.js',
  '../js/plugins/titles.js',
 
  // Examples
  'js/Examples.js',
  'js/ExampleList.js',
  'js/Example.js',
  'js/Editor.js',
  'js/Profile.js',
  'js/examples/basic.js',
  'js/examples/basic-axis.js',
  'js/examples/basic-bars.js',
  'js/examples/basic-bars-stacked.js',
  'js/examples/basic-pie.js',
  'js/examples/basic-radar.js',
  'js/examples/basic-bubble.js',
  'js/examples/basic-candle.js',
  'js/examples/basic-legend.js',
  'js/examples/mouse-tracking.js',
  'js/examples/mouse-zoom.js',
  'js/examples/mouse-drag.js',
  'js/examples/basic-time.js',
  'js/examples/negative-values.js',
  'js/examples/click-example.js',
  'js/examples/download-image.js',
  'js/examples/download-data.js',
  'js/examples/advanced-titles.js',
  'js/examples/color-gradients.js',
  'js/examples/profile-bars.js',
  'js/examples/basic-timeline.js',
  'js/examples/advanced-markers.js',
 
  { complete : function () {
  if (Flotr.ExamplesCallback) {
  Flotr.ExamplesCallback();
  } else {
  Examples = new Flotr.Examples({
  node : document.getElementById('examples')
  });
  }
  }
  }
  ]);
 
  yepnope([
  {
  test : (navigator.appVersion.indexOf("MSIE") != -1 && parseFloat(navigator.appVersion.split("MSIE")[1]) < 9),
  // Load for IE < 9
  yep : [
  '../flotr2.ie.min.js'
  ]
  },
  '../flotr2.min.js',
 
  'lib/codemirror/lib/codemirror.js',
  'lib/codemirror/mode/javascript/javascript.js',
  'lib/beautify.js',
  'lib/randomseed.js',
  'lib/jquery-1.7.1.min.js',
  'lib/jquery.ba-hashchange.min.js',
 
  // Examples
  '../flotr2.examples.min.js',
  '../flotr2.examples.types.js',
 
  { complete : function () {
  if (Flotr.ExamplesCallback) {
  Flotr.ExamplesCallback();
  } else {
  Examples = new Flotr.Examples({
  node : document.getElementById('examples')
  });
  }
  }
  }
  ]);
 
 
  /*jslint onevar: false, plusplus: false */
  /*
 
  JS Beautifier
  ---------------
 
 
  Written by Einar Lielmanis, <einar@jsbeautifier.org>
  http://jsbeautifier.org/
 
  Originally converted to javascript by Vital, <vital76@gmail.com>
  "End braces on own line" added by Chris J. Shull, <chrisjshull@gmail.com>
 
  You are free to use this in any way you want, in case you find this useful or working for you.
 
  Usage:
  js_beautify(js_source_text);
  js_beautify(js_source_text, options);
 
  The options are:
  indent_size (default 4) — indentation size,
  indent_char (default space) — character to indent with,
  preserve_newlines (default true) — whether existing line breaks should be preserved,
  preserve_max_newlines (default unlimited) - maximum number of line breaks to be preserved in one chunk,
 
  jslint_happy (default false) — if true, then jslint-stricter mode is enforced.
 
  jslint_happy !jslint_happy
  ---------------------------------
  function () function()
 
  brace_style (default "collapse") - "collapse" | "expand" | "end-expand"
  put braces on the same line as control statements (default), or put braces on own line (Allman / ANSI style), or just put end braces on own line.
 
  e.g
 
  js_beautify(js_source_text, {
  'indent_size': 1,
  'indent_char': '\t'
  });
 
 
  */
 
 
 
  function js_beautify(js_source_text, options) {
 
  var input, output, token_text, last_type, last_text, last_last_text, last_word, flags, flag_store, indent_string;
  var whitespace, wordchar, punct, parser_pos, line_starters, digits;
  var prefix, token_type, do_block_just_closed;
  var wanted_newline, just_added_newline, n_newlines;
  var preindent_string = '';
 
 
  // Some interpreters have unexpected results with foo = baz || bar;
  options = options ? options : {};
 
  var opt_brace_style;
 
  // compatibility
  if (options.space_after_anon_function !== undefined && options.jslint_happy === undefined) {
  options.jslint_happy = options.space_after_anon_function;
  }
  if (options.braces_on_own_line !== undefined) { //graceful handling of depricated option
  opt_brace_style = options.braces_on_own_line ? "expand" : "collapse";
  }
  opt_brace_style = options.brace_style ? options.brace_style : (opt_brace_style ? opt_brace_style : "collapse");
 
 
  var opt_indent_size = options.indent_size ? options.indent_size : 4;
  var opt_indent_char = options.indent_char ? options.indent_char : ' ';
  var opt_preserve_newlines = typeof options.preserve_newlines === 'undefined' ? true : options.preserve_newlines;
  var opt_max_preserve_newlines = typeof options.max_preserve_newlines === 'undefined' ? false : options.max_preserve_newlines;
  var opt_jslint_happy = options.jslint_happy === 'undefined' ? false : options.jslint_happy;
  var opt_keep_array_indentation = typeof options.keep_array_indentation === 'undefined' ? false : options.keep_array_indentation;
 
  just_added_newline = false;
 
  // cache the source's length.
  var input_length = js_source_text.length;
 
  function trim_output(eat_newlines) {
  eat_newlines = typeof eat_newlines === 'undefined' ? false : eat_newlines;
  while (output.length && (output[output.length - 1] === ' '
  || output[output.length - 1] === indent_string
  || output[output.length - 1] === preindent_string
  || (eat_newlines && (output[output.length - 1] === '\n' || output[output.length - 1] === '\r')))) {
  output.pop();
  }
  }
 
  function trim(s) {
  return s.replace(/^\s\s*|\s\s*$/, '');
  }
 
  function force_newline()
  {
  var old_keep_array_indentation = opt_keep_array_indentation;
  opt_keep_array_indentation = false;
  print_newline()
  opt_keep_array_indentation = old_keep_array_indentation;
  }
 
  function print_newline(ignore_repeated) {
 
  flags.eat_next_space = false;
  if (opt_keep_array_indentation && is_array(flags.mode)) {
  return;
  }
 
  ignore_repeated = typeof ignore_repeated === 'undefined' ? true : ignore_repeated;
 
  flags.if_line = false;
  trim_output();
 
  if (!output.length) {
  return; // no newline on start of file
  }
 
  if (output[output.length - 1] !== "\n" || !ignore_repeated) {
  just_added_newline = true;
  output.push("\n");
  }
  if (preindent_string) {
  output.push(preindent_string);
  }
  for (var i = 0; i < flags.indentation_level; i += 1) {
  output.push(indent_string);
  }
  if (flags.var_line && flags.var_line_reindented) {
  output.push(indent_string); // skip space-stuffing, if indenting with a tab
  }
  }
 
 
 
  function print_single_space() {
  if (flags.eat_next_space) {
  flags.eat_next_space = false;
  return;
  }
  var last_output = ' ';
  if (output.length) {
  last_output = output[output.length - 1];
  }
  if (last_output !== ' ' && last_output !== '\n' && last_output !== indent_string) { // prevent occassional duplicate space
  output.push(' ');
  }
  }
 
 
  function print_token() {
  just_added_newline = false;
  flags.eat_next_space = false;
  output.push(token_text);
  }
 
  function indent() {
  flags.indentation_level += 1;
  }
 
 
  function remove_indent() {
  if (output.length && output[output.length - 1] === indent_string) {
  output.pop();
  }
  }
 
  function set_mode(mode) {
  if (flags) {
  flag_store.push(flags);
  }
  flags = {
  previous_mode: flags ? flags.mode : 'BLOCK',
  mode: mode,
  var_line: false,
  var_line_tainted: false,
  var_line_reindented: false,
  in_html_comment: false,
  if_line: false,
  in_case: false,
  eat_next_space: false,
  indentation_baseline: -1,
  indentation_level: (flags ? flags.indentation_level + ((flags.var_line && flags.var_line_reindented) ? 1 : 0) : 0),
  ternary_depth: 0
  };
  }
 
  function is_array(mode) {
  return mode === '[EXPRESSION]' || mode === '[INDENTED-EXPRESSION]';
  }
 
  function is_expression(mode) {
  return mode === '[EXPRESSION]' || mode === '[INDENTED-EXPRESSION]' || mode === '(EXPRESSION)';
  }
 
  function restore_mode() {
  do_block_just_closed = flags.mode === 'DO_BLOCK';
  if (flag_store.length > 0) {
  flags = flag_store.pop();
  }
  }
 
  function all_lines_start_with(lines, c) {
  for (var i = 0; i < lines.length; i++) {
  if (trim(lines[i])[0] != c) {
  return false;
  }
  }
  return true;
  }
 
  function in_array(what, arr) {
  for (var i = 0; i < arr.length; i += 1) {
  if (arr[i] === what) {
  return true;
  }
  }
  return false;
  }
 
  function get_next_token() {
  n_newlines = 0;
 
  if (parser_pos >= input_length) {
  return ['', 'TK_EOF'];
  }
 
  wanted_newline = false;
 
  var c = input.charAt(parser_pos);
  parser_pos += 1;
 
 
  var keep_whitespace = opt_keep_array_indentation && is_array(flags.mode);
 
  if (keep_whitespace) {
 
  //
  // slight mess to allow nice preservation of array indentation and reindent that correctly
  // first time when we get to the arrays:
  // var a = [
  // ....'something'
  // we make note of whitespace_count = 4 into flags.indentation_baseline
  // so we know that 4 whitespaces in original source match indent_level of reindented source
  //
  // and afterwards, when we get to
  // 'something,
  // .......'something else'
  // we know that this should be indented to indent_level + (7 - indentation_baseline) spaces
  //
  var whitespace_count = 0;
 
  while (in_array(c, whitespace)) {
 
  if (c === "\n") {
  trim_output();
  output.push("\n");
  just_added_newline = true;
  whitespace_count = 0;
  } else {
  if (c === '\t') {
  whitespace_count += 4;
  } else if (c === '\r') {
  // nothing
  } else {
  whitespace_count += 1;
  }
  }
 
  if (parser_pos >= input_length) {
  return ['', 'TK_EOF'];
  }
 
  c = input.charAt(parser_pos);
  parser_pos += 1;
 
  }
  if (flags.indentation_baseline === -1) {
  flags.indentation_baseline = whitespace_count;
  }
 
  if (just_added_newline) {
  var i;
  for (i = 0; i < flags.indentation_level + 1; i += 1) {
  output.push(indent_string);
  }
  if (flags.indentation_baseline !== -1) {
  for (i = 0; i < whitespace_count - flags.indentation_baseline; i++) {
  output.push(' ');
  }
  }
  }
 
  } else {
  while (in_array(c, whitespace)) {
 
  if (c === "\n") {
  n_newlines += ( (opt_max_preserve_newlines) ? (n_newlines <= opt_max_preserve_newlines) ? 1: 0: 1 );
  }
 
 
  if (parser_pos >= input_length) {
  return ['', 'TK_EOF'];
  }
 
  c = input.charAt(parser_pos);
  parser_pos += 1;
 
  }
 
  if (opt_preserve_newlines) {
  if (n_newlines > 1) {
  for (i = 0; i < n_newlines; i += 1) {
  print_newline(i === 0);
  just_added_newline = true;
  }
  }
  }
  wanted_newline = n_newlines > 0;
  }
 
 
  if (in_array(c, wordchar)) {
  if (parser_pos < input_length) {
  while (in_array(input.charAt(parser_pos), wordchar)) {
  c += input.charAt(parser_pos);
  parser_pos += 1;
  if (parser_pos === input_length) {
  break;
  }
  }
  }
 
  // small and surprisingly unugly hack for 1E-10 representation
  if (parser_pos !== input_length && c.match(/^[0-9]+[Ee]$/) && (input.charAt(parser_pos) === '-' || input.charAt(parser_pos) === '+')) {
 
  var sign = input.charAt(parser_pos);
  parser_pos += 1;
 
  var t = get_next_token(parser_pos);
  c += sign + t[0];
  return [c, 'TK_WORD'];
  }
 
  if (c === 'in') { // hack for 'in' operator
  return [c, 'TK_OPERATOR'];
  }
  if (wanted_newline && last_type !== 'TK_OPERATOR'
  && last_type !== 'TK_EQUALS'
  && !flags.if_line && (opt_preserve_newlines || last_text !== 'var')) {
  print_newline();
  }
  return [c, 'TK_WORD'];
  }
 
  if (c === '(' || c === '[') {
  return [c, 'TK_START_EXPR'];
  }
 
  if (c === ')' || c === ']') {
  return [c, 'TK_END_EXPR'];
  }
 
  if (c === '{') {
  return [c, 'TK_START_BLOCK'];
  }
 
  if (c === '}') {
  return [c, 'TK_END_BLOCK'];
  }
 
  if (c === ';') {
  return [c, 'TK_SEMICOLON'];
  }
 
  if (c === '/') {
  var comment = '';
  // peek for comment /* ... */
  var inline_comment = true;
  if (input.charAt(parser_pos) === '*') {
  parser_pos += 1;
  if (parser_pos < input_length) {
  while (! (input.charAt(parser_pos) === '*' && input.charAt(parser_pos + 1) && input.charAt(parser_pos + 1) === '/') && parser_pos < input_length) {
  c = input.charAt(parser_pos);
  comment += c;
  if (c === '\x0d' || c === '\x0a') {
  inline_comment = false;
  }
  parser_pos += 1;
  if (parser_pos >= input_length) {
  break;
  }
  }
  }
  parser_pos += 2;
  if (inline_comment) {
  return ['/*' + comment + '*/', 'TK_INLINE_COMMENT'];
  } else {
  return ['/*' + comment + '*/', 'TK_BLOCK_COMMENT'];
  }
  }
  // peek for comment // ...
  if (input.charAt(parser_pos) === '/') {
  comment = c;
  while (input.charAt(parser_pos) !== '\r' && input.charAt(parser_pos) !== '\n') {
  comment += input.charAt(parser_pos);
  parser_pos += 1;
  if (parser_pos >= input_length) {
  break;
  }
  }
  parser_pos += 1;
  if (wanted_newline) {
  print_newline();
  }
  return [comment, 'TK_COMMENT'];
  }
 
  }
 
  if (c === "'" || // string
  c === '"' || // string
  (c === '/' &&
  ((last_type === 'TK_WORD' && in_array(last_text, ['return', 'do'])) ||
  (last_type === 'TK_COMMENT' || last_type === 'TK_START_EXPR' || last_type === 'TK_START_BLOCK' || last_type === 'TK_END_BLOCK' || last_type === 'TK_OPERATOR' || last_type === 'TK_EQUALS' || last_type === 'TK_EOF' || last_type === 'TK_SEMICOLON')))) { // regexp
  var sep = c;
  var esc = false;
  var resulting_string = c;
 
  if (parser_pos < input_length) {
  if (sep === '/') {
  //
  // handle regexp separately...
  //
  var in_char_class = false;
  while (esc || in_char_class || input.charAt(parser_pos) !== sep) {
  resulting_string += input.charAt(parser_pos);
  if (!esc) {
  esc = input.charAt(parser_pos) === '\\';
  if (input.charAt(parser_pos) === '[') {
  in_char_class = true;
  } else if (input.charAt(parser_pos) === ']') {
  in_char_class = false;
  }
  } else {
  esc = false;
  }
  parser_pos += 1;
  if (parser_pos >= input_length) {
  // incomplete string/rexp when end-of-file reached.
  // bail out with what had been received so far.
  return [resulting_string, 'TK_STRING'];
  }
  }
 
  } else {
  //
  // and handle string also separately
  //
  while (esc || input.charAt(parser_pos) !== sep) {
  resulting_string += input.charAt(parser_pos);
  if (!esc) {
  esc = input.charAt(parser_pos) === '\\';
  } else {
  esc = false;
  }
  parser_pos += 1;
  if (parser_pos >= input_length) {
  // incomplete string/rexp when end-of-file reached.
  // bail out with what had been received so far.
  return [resulting_string, 'TK_STRING'];
  }
  }
  }
 
 
 
  }
 
  parser_pos += 1;
 
  resulting_string += sep;
 
  if (sep === '/') {
  // regexps may have modifiers /regexp/MOD , so fetch those, too
  while (parser_pos < input_length && in_array(input.charAt(parser_pos), wordchar)) {
  resulting_string += input.charAt(parser_pos);
  parser_pos += 1;
  }
  }
  return [resulting_string, 'TK_STRING'];
  }
 
  if (c === '#') {
 
 
  if (output.length === 0 && input.charAt(parser_pos) === '!') {
  // shebang
  resulting_string = c;
  while (parser_pos < input_length && c != '\n') {
  c = input.charAt(parser_pos);
  resulting_string += c;
  parser_pos += 1;
  }
  output.push(trim(resulting_string) + '\n');
  print_newline();
  return get_next_token();
  }
 
 
 
  // Spidermonkey-specific sharp variables for circular references
  // https://developer.mozilla.org/En/Sharp_variables_in_JavaScript
  // http://mxr.mozilla.org/mozilla-central/source/js/src/jsscan.cpp around line 1935
  var sharp = '#';
  if (parser_pos < input_length && in_array(input.charAt(parser_pos), digits)) {
  do {
  c = input.charAt(parser_pos);
  sharp += c;
  parser_pos += 1;
  } while (parser_pos < input_length && c !== '#' && c !== '=');
  if (c === '#') {
  //
  } else if (input.charAt(parser_pos) === '[' && input.charAt(parser_pos + 1) === ']') {
  sharp += '[]';
  parser_pos += 2;
  } else if (input.charAt(parser_pos) === '{' && input.charAt(parser_pos + 1) === '}') {
  sharp += '{}';
  parser_pos += 2;
  }
  return [sharp, 'TK_WORD'];
  }
  }
 
  if (c === '<' && input.substring(parser_pos - 1, parser_pos + 3) === '<!--') {
  parser_pos += 3;
  flags.in_html_comment = true;
  return ['<!--', 'TK_COMMENT'];
  }
 
  if (c === '-' && flags.in_html_comment && input.substring(parser_pos - 1, parser_pos + 2) === '-->') {
  flags.in_html_comment = false;
  parser_pos += 2;
  if (wanted_newline) {
  print_newline();
  }
  return ['-->', 'TK_COMMENT'];
  }
 
  if (in_array(c, punct)) {
  while (parser_pos < input_length && in_array(c + input.charAt(parser_pos), punct)) {
  c += input.charAt(parser_pos);
  parser_pos += 1;
  if (parser_pos >= input_length) {
  break;
  }
  }
 
  if (c === '=') {
  return [c, 'TK_EQUALS'];
  } else {
  return [c, 'TK_OPERATOR'];
  }
  }
 
  return [c, 'TK_UNKNOWN'];
  }
 
  //----------------------------------
  indent_string = '';
  while (opt_indent_size > 0) {
  indent_string += opt_indent_char;
  opt_indent_size -= 1;
  }
 
  while (js_source_text && (js_source_text[0] === ' ' || js_source_text[0] === '\t')) {
  preindent_string += js_source_text[0];
  js_source_text = js_source_text.substring(1);
  }
  input = js_source_text;
 
  last_word = ''; // last 'TK_WORD' passed
  last_type = 'TK_START_EXPR'; // last token type
  last_text = ''; // last token text
  last_last_text = ''; // pre-last token text
  output = [];
 
  do_block_just_closed = false;
 
  whitespace = "\n\r\t ".split('');
  wordchar = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_$'.split('');
  digits = '0123456789'.split('');
 
  punct = '+ - * / % & ++ -- = += -= *= /= %= == === != !== > < >= <= >> << >>> >>>= >>= <<= && &= | || ! !! , : ? ^ ^= |= ::'.split(' ');
 
  // words which should always start on new line.
  line_starters = 'continue,try,throw,return,var,if,switch,case,default,for,while,break,function'.split(',');
 
  // states showing if we are currently in expression (i.e. "if" case) - 'EXPRESSION', or in usual block (like, procedure), 'BLOCK'.
  // some formatting depends on that.
  flag_store = [];
  set_mode('BLOCK');
 
  parser_pos = 0;
  while (true) {
  var t = get_next_token(parser_pos);
  token_text = t[0];
  token_type = t[1];
  if (token_type === 'TK_EOF') {
  break;
  }
 
  switch (token_type) {
 
  case 'TK_START_EXPR':
 
  if (token_text === '[') {
 
  if (last_type === 'TK_WORD' || last_text === ')') {
  // this is array index specifier, break immediately
  // a[x], fn()[x]
  if (in_array(last_text, line_starters)) {
  print_single_space();
  }
  set_mode('(EXPRESSION)');
  print_token();
  break;
  }
 
  if (flags.mode === '[EXPRESSION]' || flags.mode === '[INDENTED-EXPRESSION]') {
  if (last_last_text === ']' && last_text === ',') {
  // ], [ goes to new line
  if (flags.mode === '[EXPRESSION]') {
  flags.mode = '[INDENTED-EXPRESSION]';
  if (!opt_keep_array_indentation) {
  indent();
  }
  }
  set_mode('[EXPRESSION]');
  if (!opt_keep_array_indentation) {
  print_newline();
  }
  } else if (last_text === '[') {
  if (flags.mode === '[EXPRESSION]') {
  flags.mode = '[INDENTED-EXPRESSION]';
  if (!opt_keep_array_indentation) {
  indent();
  }
  }
  set_mode('[EXPRESSION]');
 
  if (!opt_keep_array_indentation) {
  print_newline();
  }
  } else {
  set_mode('[EXPRESSION]');
  }
  } else {
  set_mode('[EXPRESSION]');
  }
 
 
 
  } else {
  set_mode('(EXPRESSION)');
  }
 
  if (last_text === ';' || last_type === 'TK_START_BLOCK') {
  print_newline();
  } else if (last_type === 'TK_END_EXPR' || last_type === 'TK_START_EXPR' || last_type === 'TK_END_BLOCK' || last_text === '.') {
  // do nothing on (( and )( and ][ and ]( and .(
  } else if (last_type !== 'TK_WORD' && last_type !== 'TK_OPERATOR') {
  print_single_space();
  } else if (last_word === 'function' || last_word === 'typeof') {
  // function() vs function ()
  if (opt_jslint_happy) {
  print_single_space();
  }
  } else if (in_array(last_text, line_starters) || last_text === 'catch') {
  print_single_space();
  }
  print_token();
 
  break;
 
  case 'TK_END_EXPR':
  if (token_text === ']') {
  if (opt_keep_array_indentation) {
  if (last_text === '}') {
  // trim_output();
  // print_newline(true);
  remove_indent();
  print_token();
  restore_mode();
  break;
  }
  } else {
  if (flags.mode === '[INDENTED-EXPRESSION]') {
  if (last_text === ']') {
  restore_mode();
  print_newline();
  print_token();
  break;
  }
  }
  }
  }
  restore_mode();
  print_token();
  break;
 
  case 'TK_START_BLOCK':
 
  if (last_word === 'do') {
  set_mode('DO_BLOCK');
  } else {
  set_mode('BLOCK');
  }
  if (opt_brace_style=="expand") {
  if (last_type !== 'TK_OPERATOR') {
  if (last_text === 'return' || last_text === '=') {
  print_single_space();
  } else {
  print_newline(true);
  }
  }
  print_token();
  indent();
  } else {
  if (last_type !== 'TK_OPERATOR' && last_type !== 'TK_START_EXPR') {
  if (last_type === 'TK_START_BLOCK') {
  print_newline();
  } else {
  print_single_space();
  }
  } else {
  // if TK_OPERATOR or TK_START_EXPR
  if (is_array(flags.previous_mode) && last_text === ',') {
  if (last_last_text === '}') {
  // }, { in array context
  print_single_space();
  } else {
  print_newline(); // [a, b, c, {
  }
  }
  }
  indent();
  print_token();
  }
 
  break;
 
  case 'TK_END_BLOCK':
  restore_mode();
  if (opt_brace_style=="expand") {
  if (last_text !== '{') {
  print_newline();
  }
  print_token();
  } else {
  if (last_type === 'TK_START_BLOCK') {
  // nothing
  if (just_added_newline) {
  remove_indent();
  } else {
  // {}
  trim_output();
  }
  } else {
  if (is_array(flags.mode) && opt_keep_array_indentation) {
  // we REALLY need a newline here, but newliner would skip that
  opt_keep_array_indentation = false;
  print_newline();
  opt_keep_array_indentation = true;
 
  } else {
  print_newline();
  }
  }
  print_token();
  }
  break;
 
  case 'TK_WORD':
 
  // no, it's not you. even I have problems understanding how this works
  // and what does what.
  if (do_block_just_closed) {
  // do {} ## while ()
  print_single_space();
  print_token();
  print_single_space();
  do_block_just_closed = false;
  break;
  }
 
  if (token_text === 'function') {
  if (flags.var_line) {
  flags.var_line_reindented = true;
  }
  if ((just_added_newline || last_text === ';') && last_text !== '{') {
  // make sure there is a nice clean space of at least one blank line
  // before a new function definition
  n_newlines = just_added_newline ? n_newlines : 0;
  if ( ! opt_preserve_newlines) {
  n_newlines = 1;
  }
 
  for (var i = 0; i < 2 - n_newlines; i++) {
  print_newline(false);
  }
  }
  }
 
  if (token_text === 'case' || token_text === 'default') {
  if (last_text === ':') {
  // switch cases following one another
  remove_indent();
  } else {
  // case statement starts in the same line where switch
  flags.indentation_level--;
  print_newline();
  flags.indentation_level++;
  }
  print_token();
  flags.in_case = true;
  break;
  }
 
  prefix = 'NONE';
 
  if (last_type === 'TK_END_BLOCK') {
 
  if (!in_array(token_text.toLowerCase(), ['else', 'catch', 'finally'])) {
  prefix = 'NEWLINE';
  } else {
  if (opt_brace_style=="expand" || opt_brace_style=="end-expand") {
  prefix = 'NEWLINE';
  } else {
  prefix = 'SPACE';
  print_single_space();
  }
  }
  } else if (last_type === 'TK_SEMICOLON' && (flags.mode === 'BLOCK' || flags.mode === 'DO_BLOCK')) {
  prefix = 'NEWLINE';
  } else if (last_type === 'TK_SEMICOLON' && is_expression(flags.mode)) {
  prefix = 'SPACE';
  } else if (last_type === 'TK_STRING') {
  prefix = 'NEWLINE';
  } else if (last_type === 'TK_WORD') {
  if (last_text === 'else') {
  // eat newlines between ...else *** some_op...
  // won't preserve extra newlines in this place (if any), but don't care that much
  trim_output(true);
  }
  prefix = 'SPACE';
  } else if (last_type === 'TK_START_BLOCK') {
  prefix = 'NEWLINE';
  } else if (last_type === 'TK_END_EXPR') {
  print_single_space();
  prefix = 'NEWLINE';
  }
 
  if (in_array(token_text, line_starters) && last_text !== ')') {
  if (last_text == 'else') {
  prefix = 'SPACE';
  } else {
  prefix = 'NEWLINE';
  }
  }
 
  if (flags.if_line && last_type === 'TK_END_EXPR') {
  flags.if_line = false;
  }
  if (in_array(token_text.toLowerCase(), ['else', 'catch', 'finally'])) {
  if (last_type !== 'TK_END_BLOCK' || opt_brace_style=="expand" || opt_brace_style=="end-expand") {
  print_newline();
  } else {
  trim_output(true);
  print_single_space();
  }
  } else if (prefix === 'NEWLINE') {
  if ((last_type === 'TK_START_EXPR' || last_text === '=' || last_text === ',') && token_text === 'function') {
  // no need to force newline on 'function': (function
  // DONOTHING
  } else if (token_text === 'function' && last_text == 'new') {
  print_single_space();
  } else if (last_text === 'return' || last_text === 'throw') {
  // no newline between 'return nnn'
  print_single_space();
  } else if (last_type !== 'TK_END_EXPR') {
  if ((last_type !== 'TK_START_EXPR' || token_text !== 'var') && last_text !== ':') {
  // no need to force newline on 'var': for (var x = 0...)
  if (token_text === 'if' && last_word === 'else' && last_text !== '{') {
  // no newline for } else if {
  print_single_space();
  } else {
  flags.var_line = false;
  flags.var_line_reindented = false;
  print_newline();
  }
  }
  } else if (in_array(token_text, line_starters) && last_text != ')') {
  flags.var_line = false;
  flags.var_line_reindented = false;
  print_newline();
  }
  } else if (is_array(flags.mode) && last_text === ',' && last_last_text === '}') {
  print_newline(); // }, in lists get a newline treatment
  } else if (prefix === 'SPACE') {
  print_single_space();
  }
  print_token();
  last_word = token_text;
 
  if (token_text === 'var') {
  flags.var_line = true;
  flags.var_line_reindented = false;
  flags.var_line_tainted = false;
  }
 
  if (token_text === 'if') {
  flags.if_line = true;
  }
  if (token_text === 'else') {
  flags.if_line = false;
  }
 
  break;
 
  case 'TK_SEMICOLON':
 
  print_token();
  flags.var_line = false;
  flags.var_line_reindented = false;
  if (flags.mode == 'OBJECT') {
  // OBJECT mode is weird and doesn't get reset too well.
  flags.mode = 'BLOCK';
  }
  break;
 
  case 'TK_STRING':
 
  if (last_type === 'TK_START_BLOCK' || last_type === 'TK_END_BLOCK' || last_type === 'TK_SEMICOLON') {
  print_newline();
  } else if (last_type === 'TK_WORD') {
  print_single_space();
  }
  print_token();
  break;
 
  case 'TK_EQUALS':
  if (flags.var_line) {
  // just got an '=' in a var-line, different formatting/line-breaking, etc will now be done
  flags.var_line_tainted = true;
  }
  print_single_space();
  print_token();
  print_single_space();
  break;
 
  case 'TK_OPERATOR':
 
  var space_before = true;
  var space_after = true;
 
  if (flags.var_line && token_text === ',' && (is_expression(flags.mode))) {
  // do not break on comma, for(var a = 1, b = 2)
  flags.var_line_tainted = false;
  }
 
  if (flags.var_line) {
  if (token_text === ',') {
  if (flags.var_line_tainted) {
  print_token();
  flags.var_line_reindented = true;
  flags.var_line_tainted = false;
  print_newline();
  break;
  } else {
  flags.var_line_tainted = false;
  }
  // } else if (token_text === ':') {
  // hmm, when does this happen? tests don't catch this
  // flags.var_line = false;
  }
  }
 
  if (last_text === 'return' || last_text === 'throw') {
  // "return" had a special handling in TK_WORD. Now we need to return the favor
  print_single_space();
  print_token();
  break;
  }
 
  if (token_text === ':' && flags.in_case) {
  print_token(); // colon really asks for separate treatment
  print_newline();
  flags.in_case = false;
  break;
  }
 
  if (token_text === '::') {
  // no spaces around exotic namespacing syntax operator
  print_token();
  break;
  }
 
  if (token_text === ',') {
  if (flags.var_line) {
  if (flags.var_line_tainted) {
  print_token();
  print_newline();
  flags.var_line_tainted = false;
  } else {
  print_token();
  print_single_space();
  }
  } else if (last_type === 'TK_END_BLOCK' && flags.mode !== "(EXPRESSION)") {
  print_token();
  if (flags.mode === 'OBJECT' && last_text === '}') {
  print_newline();
  } else {
  print_single_space();
  }
  } else {
  if (flags.mode === 'OBJECT') {
  print_token();
  print_newline();
  } else {
  // EXPR or DO_BLOCK
  print_token();
  print_single_space();
  }
  }
  break;
  // } else if (in_array(token_text, ['--', '++', '!']) || (in_array(token_text, ['-', '+']) && (in_array(last_type, ['TK_START_BLOCK', 'TK_START_EXPR', 'TK_EQUALS']) || in_array(last_text, line_starters) || in_array(last_text, ['==', '!=', '+=', '-=', '*=', '/=', '+', '-'])))) {
  } else if (in_array(token_text, ['--', '++', '!']) || (in_array(token_text, ['-', '+']) && (in_array(last_type, ['TK_START_BLOCK', 'TK_START_EXPR', 'TK_EQUALS', 'TK_OPERATOR']) || in_array(last_text, line_starters)))) {
  // unary operators (and binary +/- pretending to be unary) special cases
 
  space_before = false;
  space_after = false;
 
  if (last_text === ';' && is_expression(flags.mode)) {
  // for (;; ++i)
  // ^^^
  space_before = true;
  }
  if (last_type === 'TK_WORD' && in_array(last_text, line_starters)) {
  space_before = true;
  }
 
  if (flags.mode === 'BLOCK' && (last_text === '{' || last_text === ';')) {
  // { foo; --i }
  // foo(); --bar;
  print_newline();
  }
  } else if (token_text === '.') {
  // decimal digits or object.property
  space_before = false;
 
  } else if (token_text === ':') {
  if (flags.ternary_depth == 0) {
  flags.mode = 'OBJECT';
  space_before = false;
  } else {
  flags.ternary_depth -= 1;
  }
  } else if (token_text === '?') {
  flags.ternary_depth += 1;
  }
  if (space_before) {
  print_single_space();
  }
 
  print_token();
 
  if (space_after) {
  print_single_space();
  }
 
  if (token_text === '!') {
  // flags.eat_next_space = true;
  }
 
  break;
 
  case 'TK_BLOCK_COMMENT':
 
  var lines = token_text.split(/\x0a|\x0d\x0a/);
 
  if (all_lines_start_with(lines.slice(1), '*')) {
  // javadoc: reformat and reindent
  print_newline();
  output.push(lines[0]);
  for (i = 1; i < lines.length; i++) {
  print_newline();
  output.push(' ');
  output.push(trim(lines[i]));
  }
 
  } else {
 
  // simple block comment: leave intact
  if (lines.length > 1) {
  // multiline comment block starts with a new line
  print_newline();
  trim_output();
  } else {
  // single-line /* comment */ stays where it is
  print_single_space();
 
  }
 
  for (i = 0; i < lines.length; i++) {
  output.push(lines[i]);
  output.push('\n');
  }
 
  }
  print_newline();
  break;
 
  case 'TK_INLINE_COMMENT':
 
  print_single_space();
  print_token();
  if (is_expression(flags.mode)) {
  print_single_space();
  } else {
  force_newline();
  }
  break;
 
  case 'TK_COMMENT':
 
  // print_newline();
  if (wanted_newline) {
  print_newline();
  } else {
  print_single_space();
  }
  print_token();
  force_newline();
  break;
 
  case 'TK_UNKNOWN':
  if (last_text === 'return' || last_text === 'throw') {
  print_single_space();
  }
  print_token();
  break;
  }
 
  last_last_text = last_text;
  last_type = token_type;
  last_text = token_text;
  }
 
  var sweet_code = preindent_string + output.join('').replace(/[\n ]+$/, '');
  return sweet_code;
 
  }
 
  // Add support for CommonJS. Just put this file somewhere on your require.paths
  // and you will be able to `var js_beautify = require("beautify").js_beautify`.
  if (typeof exports !== "undefined")
  exports.js_beautify = js_beautify;
 
  Copyright (C) 2011 by Marijn Haverbeke <marijnh@gmail.com>
 
  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:
 
  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.
 
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  THE SOFTWARE.
 
  # CodeMirror 2
 
  CodeMirror 2 is a rewrite of [CodeMirror
  1](http://github.com/marijnh/CodeMirror). The docs live
  [here](http://codemirror.net/doc/manual.html), and the project page is
  [http://codemirror.net/](http://codemirror.net/).
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Active Line Demo</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <script src="../mode/xml/xml.js"></script>
  <link rel="stylesheet" href="../doc/docs.css">
 
  <style type="text/css">
  .CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}
  .activeline {background: #f0fcff !important;}
  </style>
  </head>
  <body>
  <h1>CodeMirror: Active Line Demo</h1>
 
  <form><textarea id="code" name="code">
  <?xml version="1.0" encoding="UTF-8"?>
  <rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"
  xmlns:georss="http://www.georss.org/georss"
  xmlns:twitter="http://api.twitter.com">
  <channel>
  <title>Twitter / codemirror</title>
  <link>http://twitter.com/codemirror</link>
  <atom:link type="application/rss+xml"
  href="http://twitter.com/statuses/user_timeline/242283288.rss" rel="self"/>
  <description>Twitter updates from CodeMirror / codemirror.</description>
  <language>en-us</language>
  <ttl>40</ttl>
  <item>
  <title>codemirror: http://cloud-ide.com &#8212; they're springing up like mushrooms. This one
  uses CodeMirror as its editor.</title>
  <description>codemirror: http://cloud-ide.com &#8212; they're springing up like mushrooms. This
  one uses CodeMirror as its editor.</description>
  <pubDate>Thu, 17 Mar 2011 23:34:47 +0000</pubDate>
  <guid>http://twitter.com/codemirror/statuses/48527733722058752</guid>
  <link>http://twitter.com/codemirror/statuses/48527733722058752</link>
  <twitter:source>web</twitter:source>
  <twitter:place/>
  </item>
  <item>
  <title>codemirror: Posted a description of the CodeMirror 2 internals at
  http://codemirror.net/2/internals.html</title>
  <description>codemirror: Posted a description of the CodeMirror 2 internals at
  http://codemirror.net/2/internals.html</description>
  <pubDate>Wed, 02 Mar 2011 12:15:09 +0000</pubDate>
  <guid>http://twitter.com/codemirror/statuses/42920879788789760</guid>
  <link>http://twitter.com/codemirror/statuses/42920879788789760</link>
  <twitter:source>web</twitter:source>
  <twitter:place/>
  </item>
  </channel>
  </rss></textarea></form>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  mode: "application/xml",
  lineNumbers: true,
  onCursorActivity: function() {
  editor.setLineClass(hlLine, null);
  hlLine = editor.setLineClass(editor.getCursor().line, "activeline");
  }
  });
  var hlLine = editor.setLineClass(0, "activeline");
  </script>
 
  <p>Styling the current cursor line.</p>
 
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Mode-Changing Demo</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <script src="../mode/javascript/javascript.js"></script>
  <script src="../mode/scheme/scheme.js"></script>
  <link rel="stylesheet" href="../doc/docs.css">
 
  <style type="text/css">
  .CodeMirror {border: 1px solid black;}
  </style>
  </head>
  <body>
  <h1>CodeMirror: Mode-Changing demo</h1>
 
  <form><textarea id="code" name="code">
  ;; If there is Scheme code in here, the editor will be in Scheme mode.
  ;; If you put in JS instead, it'll switch to JS mode.
 
  (define (double x)
  (* x x))
  </textarea></form>
 
  <p>On changes to the content of the above editor, a (crude) script
  tries to auto-detect the language used, and switches the editor to
  either JavaScript or Scheme mode based on that.</p>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  mode: "scheme",
  lineNumbers: true,
  matchBrackets: true,
  tabMode: "indent",
  onChange: function() {
  clearTimeout(pending);
  setTimeout(update, 400);
  }
  });
  var pending;
  function looksLikeScheme(code) {
  return !/^\s*\(\s*function\b/.test(code) && /^\s*[;\(]/.test(code);
  }
  function update() {
  editor.setOption("mode", looksLikeScheme(editor.getValue()) ? "scheme" : "javascript");
  }
  </script>
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Autocomplete Demo</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <script src="../lib/util/simple-hint.js"></script>
  <link rel="stylesheet" href="../lib/util/simple-hint.css">
  <script src="../lib/util/javascript-hint.js"></script>
  <script src="../mode/javascript/javascript.js"></script>
  <link rel="stylesheet" href="../doc/docs.css">
  <style type="text/css">.CodeMirror {border: 1px solid #eee;}</style>
  </head>
  <body>
  <h1>CodeMirror: Autocomplete demo</h1>
 
  <form><textarea id="code" name="code">
  function getCompletions(token, context) {
  var found = [], start = token.string;
  function maybeAdd(str) {
  if (str.indexOf(start) == 0) found.push(str);
  }
  function gatherCompletions(obj) {
  if (typeof obj == "string") forEach(stringProps, maybeAdd);
  else if (obj instanceof Array) forEach(arrayProps, maybeAdd);
  else if (obj instanceof Function) forEach(funcProps, maybeAdd);
  for (var name in obj) maybeAdd(name);
  }
 
  if (context) {
  // If this is a property, see if it belongs to some object we can
  // find in the current environment.
  var obj = context.pop(), base;
  if (obj.className == "js-variable")
  base = window[obj.string];
  else if (obj.className == "js-string")
  base = "";
  else if (obj.className == "js-atom")
  base = 1;
  while (base != null && context.length)
  base = base[context.pop().string];
  if (base != null) gatherCompletions(base);
  }
  else {
  // If not, just look in the window object and any local scope
  // (reading into JS mode internals to get at the local variables)
  for (var v = token.state.localVars; v; v = v.next) maybeAdd(v.name);
  gatherCompletions(window);
  forEach(keywords, maybeAdd);
  }
  return found;
  }
  </textarea></form>
 
  <p>Press <strong>ctrl-space</strong> to activate autocompletion. See
  the code (<a href="../lib/util/simple-hint.js">here</a>
  and <a href="../lib/util/javascript-hint.js">here</a>) to figure out
  how it works.</p>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  extraKeys: {"Ctrl-Space": function(cm) {CodeMirror.simpleHint(cm, CodeMirror.javascriptHint);}}
  });
  </script>
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Emacs bindings demo</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <script src="../mode/clike/clike.js"></script>
  <script src="../keymap/emacs.js"></script>
  <link rel="stylesheet" href="../doc/docs.css">
 
  <style type="text/css">
  .CodeMirror {border-top: 1px solid #eee; border-bottom: 1px solid #eee;}
  </style>
  </head>
  <body>
  <h1>CodeMirror: Emacs bindings demo</h1>
 
  <form><textarea id="code" name="code">
  #include "syscalls.h"
  /* getchar: simple buffered version */
  int getchar(void)
  {
  static char buf[BUFSIZ];
  static char *bufp = buf;
  static int n = 0;
  if (n == 0) { /* buffer is empty */
  n = read(0, buf, sizeof buf);
  bufp = buf;
  }
  return (--n >= 0) ? (unsigned char) *bufp++ : EOF;
  }
  </textarea></form>
 
  <p>The emacs keybindings are enabled by
  including <a href="../keymap/emacs.js">keymap/emacs.js</a> and setting
  the <code>keyMap</code> option to <code>"emacs"</code>. Because
  CodeMirror's internal API is quite different from Emacs, they are only
  a loose approximation of actual emacs bindings, though.</p>
 
  <p>Also note that a lot of browsers disallow certain keys from being
  captured. For example, Chrome blocks both Ctrl-W and Ctrl-N, with the
  result that idiomatic use of Emacs keys will constantly close your tab
  or open a new window.</p>
 
  <script>
  CodeMirror.commands.save = function() {
  var elt = editor.getWrapperElement();
  elt.style.background = "#def";
  setTimeout(function() { elt.style.background = ""; }, 300);
  };
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  mode: "text/x-csrc",
  keyMap: "emacs"
  });
  </script>
 
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Code Folding Demo</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <script src="../lib/util/foldcode.js"></script>
  <script src="../mode/javascript/javascript.js"></script>
  <link rel="stylesheet" href="../doc/docs.css">
 
  <style type="text/css">
  .CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}
  .CodeMirror-gutter {min-width: 2.6em; cursor: pointer;}
  </style>
  </head>
  <body>
  <h1>CodeMirror: Code Folding Demo</h1>
 
  <form><div style="max-width: 50em"><textarea id="code" name="code"></textarea></div></form>
 
  <script id="script">
  window.onload = function() {
  var te = document.getElementById("code");
  var sc = document.getElementById("script");
  te.value = (sc.textContent || sc.innerText || sc.innerHTML).replace(/^\s*/, "");
 
  var foldFunc = CodeMirror.newFoldFunction(CodeMirror.braceRangeFinder);
  function keyEvent(cm, e) {
  if (e.keyCode == 81 && e.ctrlKey) {
  if (e.type == "keydown") {
  e.stop();
  setTimeout(function() {foldFunc(cm, cm.getCursor().line);}, 50);
  }
  return true;
  }
  }
 
  window.editor = CodeMirror.fromTextArea(te, {
  mode: "javascript",
  lineNumbers: true,
  lineWrapping: true,
  onGutterClick: foldFunc,
  extraKeys: {"Ctrl-Q": function(cm){foldFunc(cm, cm.getCursor().line);}}
  });
 
  foldFunc(editor, 6);
  foldFunc(editor, 16);
  };
  </script>
 
  <p>Demonstration of code folding using the code
  in <a href="../lib/util/foldcode.js"><code>foldcode.js</code></a>.
  Press ctrl-q or click on the gutter to fold a block, again
  to unfold.</p>
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Formatting Demo</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <script src="../lib/util/formatting.js"></script>
  <script src="../mode/css/css.js"></script>
  <script src="../mode/xml/xml.js"></script>
  <script src="../mode/javascript/javascript.js"></script>
  <script src="../mode/htmlmixed/htmlmixed.js"></script>
  <link rel="stylesheet" href="../doc/docs.css">
 
  <style type="text/css">
  .CodeMirror {
  border: 1px solid #eee;
  }
  td {
  padding-right: 20px;
  }
  </style>
  </head>
  <body>
  <h1>CodeMirror: Formatting demo</h1>
 
  <form><textarea id="code" name="code"><script> function (s,e){ for(var i=0; i < 1; i++) test("test();a=1");} </script>
  <script>
  function test(c){ for (var i = 0; i < 10; i++){ process("a.b();c = null;", 300);}
  }
  </script>
  <table><tr><td>test 1</td></tr><tr><td>test 2</td></tr></table>
  <script> function test() { return 1;} </script>
  <style> .test { font-size: medium; font-family: monospace; }
  </style></textarea></form>
 
  <p>Select a piece of code and click one of the links below to apply automatic formatting to the selected text or comment/uncomment the selected text. Note that the formatting behavior depends on the current block's mode.
  <table>
  <tr>
  <td>
  <a href="javascript:autoFormatSelection()">
  Autoformat Selected
  </a>
  </td>
  <td>
  <a href="javascript:commentSelection(true)">
  Comment Selected
  </a>
  </td>
  <td>
  <a href="javascript:commentSelection(false)">
  Uncomment Selected
  </a>
  </td>
  </tr>
  </table>
  </p>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  mode: "htmlmixed"
  });
  CodeMirror.commands["selectAll"](editor);
 
  function getSelectedRange() {
  return { from: editor.getCursor(true), to: editor.getCursor(false) };
  }
 
  function autoFormatSelection() {
  var range = getSelectedRange();
  editor.autoFormatRange(range.from, range.to);
  }
 
  function commentSelection(isComment) {
  var range = getSelectedRange();
  editor.commentRange(isComment, range.from, range.to);
  }
  </script>
 
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Full Screen Editing</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <link rel="stylesheet" href="../theme/night.css">
  <script src="../mode/xml/xml.js"></script>
  <link rel="stylesheet" href="../doc/docs.css">
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
 
  <style type="text/css">
  .CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}
  .fullscreen {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  margin: 0;
  padding: 0;
  border: 0px solid #BBBBBB;
  opacity: 1;
  }
  </style>
  </head>
  <body>
  <h1>CodeMirror: Full Screen Editing</h1>
 
  <form><textarea id="code" name="code" rows="5">
  <dt id="option_indentWithTabs"><code>indentWithTabs (boolean)</code></dt>
  <dd>Whether, when indenting, the first N*8 spaces should be
  replaced by N tabs. Default is false.</dd>
 
  <dt id="option_tabMode"><code>tabMode (string)</code></dt>
  <dd>Determines what happens when the user presses the tab key.
  Must be one of the following:
  <dl>
  <dt><code>"classic" (the default)</code></dt>
  <dd>When nothing is selected, insert a tab. Otherwise,
  behave like the <code>"shift"</code> mode. (When shift is
  held, this behaves like the <code>"indent"</code> mode.)</dd>
  <dt><code>"shift"</code></dt>
  <dd>Indent all selected lines by
  one <a href="#option_indentUnit"><code>indentUnit</code></a>.
  If shift was held while pressing tab, un-indent all selected
  lines one unit.</dd>
  <dt><code>"indent"</code></dt>
  <dd>Indent the line the 'correctly', based on its syntactic
  context. Only works if the
  mode <a href="#indent">supports</a> it.</dd>
  <dt><code>"default"</code></dt>
  <dd>Do not capture tab presses, let the browser apply its
  default behaviour (which usually means it skips to the next
  control).</dd>
  </dl></dd>
 
  <dt id="option_enterMode"><code>enterMode (string)</code></dt>
  <dd>Determines whether and how new lines are indented when the
  enter key is pressed. The following modes are supported:
  <dl>
  <dt><code>"indent" (the default)</code></dt>
  <dd>Use the mode's indentation rules to give the new line
  the correct indentation.</dd>
  <dt><code>"keep"</code></dt>
  <dd>Indent the line the same as the previous line.</dd>
  <dt><code>"flat"</code></dt>
  <dd>Do not indent the new line.</dd>
  </dl></dd>
 
  <dt id="option_enterMode"><code>enterMode (string)</code></dt>
  <dd>Determines whether and how new lines are indented when the
  enter key is pressed. The following modes are supported:
  <dl>
  <dt><code>"indent" (the default)</code></dt>
  <dd>Use the mode's indentation rules to give the new line
  the correct indentation.</dd>
  <dt><code>"keep"</code></dt>
  <dd>Indent the line the same as the previous line.</dd>
  <dt><code>"flat"</code></dt>
  <dd>Do not indent the new line.</dd>
  </dl></dd>
 
  <dt id="option_enterMode"><code>enterMode (string)</code></dt>
  <dd>Determines whether and how new lines are indented when the
  enter key is pressed. The following modes are supported:
  <dl>
  <dt><code>"indent" (the default)</code></dt>
  <dd>Use the mode's indentation rules to give the new line
  the correct indentation.</dd>
  <dt><code>"keep"</code></dt>
  <dd>Indent the line the same as the previous line.</dd>
  <dt><code>"flat"</code></dt>
  <dd>Do not indent the new line.</dd>
  </dl></dd>
 
  <dt id="option_enterMode"><code>enterMode (string)</code></dt>
  <dd>Determines whether and how new lines are indented when the
  enter key is pressed. The following modes are supported:
  <dl>
  <dt><code>"indent" (the default)</code></dt>
  <dd>Use the mode's indentation rules to give the new line
  the correct indentation.</dd>
  <dt><code>"keep"</code></dt>
  <dd>Indent the line the same as the previous line.</dd>
  <dt><code>"flat"</code></dt>
  <dd>Do not indent the new line.</dd>
  </dl></dd>
 
  </textarea></form>
  <script>
 
  (function () {
 
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  theme: "night",
  extraKeys: {"F11": toggleFullscreenEditing, "Esc": toggleFullscreenEditing}
  });
 
  function toggleFullscreenEditing()
  {
  var editorDiv = $('.CodeMirror-scroll');
  if (!editorDiv.hasClass('fullscreen')) {
  toggleFullscreenEditing.beforeFullscreen = { height: editorDiv.height(), width: editorDiv.width() }
  editorDiv.addClass('fullscreen');
  editorDiv.height('100%');
  editorDiv.width('100%');
  editor.refresh();
  }
  else {
  editorDiv.removeClass('fullscreen');
  editorDiv.height(toggleFullscreenEditing.beforeFullscreen.height);
  editorDiv.width(toggleFullscreenEditing.beforeFullscreen.width);
  editor.refresh();
  }
  }
 
  })();
  </script>
 
  <p>Press <strong>F11</strong> (or <strong>ESC</strong> in Safari on Mac OS X) when cursor is in the editor to toggle full screen editing.</p>
 
  <p><strong>Note:</strong> Does not currently work correctly in IE
  6 and 7, where setting the height of something
  to <code>100%</code> doesn't make it full-screen.</p>
 
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Breakpoint Demo</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <script src="../mode/javascript/javascript.js"></script>
  <link rel="stylesheet" href="../doc/docs.css">
 
  <style type="text/css">
  .CodeMirror-gutter {
  width: 3em;
  background: white;
  }
  .CodeMirror {
  border: 1px solid #aaa;
  }
  </style>
  </head>
  <body>
  <h1>CodeMirror: Breakpoint demo</h1>
 
  <form><textarea id="code" name="code">
  CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  onGutterClick: function(cm, n) {
  var info = cm.lineInfo(n);
  if (info.markerText)
  cm.clearMarker(n);
  else
  cm.setMarker(n, "<span style=\"color: #900\">●</span> %N%");
  }
  });
  </textarea></form>
 
  <p>Click the line-number gutter to add or remove 'breakpoints'.</p>
 
  <script>
  CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  onGutterClick: function(cm, n) {
  var info = cm.lineInfo(n);
  if (info.markerText)
  cm.clearMarker(n);
  else
  cm.setMarker(n, "<span style=\"color: #900\">●</span> %N%");
  }
  });
  </script>
 
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Overlay Parser Demo</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <script src="../lib/util/overlay.js"></script>
  <script src="../mode/xml/xml.js"></script>
  <link rel="stylesheet" href="../doc/docs.css">
 
  <style type="text/css">
  .CodeMirror {border: 1px solid black;}
  .cm-mustache {color: #0ca;}
  </style>
  </head>
  <body>
  <h1>CodeMirror: Overlay Parser Demo</h1>
 
  <form><textarea id="code" name="code">
  <html>
  <body>
  <h1>{{title}}</h1>
  <p>These are links to {{things}}:</p>
  <ul>{{#links}}
  <li><a href="{{url}}">{{text}}</a></li>
  {{/links}}</ul>
  </body>
  </html>
  </textarea></form>
 
  <script>
  CodeMirror.defineMode("mustache", function(config, parserConfig) {
  var mustacheOverlay = {
  token: function(stream, state) {
  if (stream.match("{{")) {
  while ((ch = stream.next()) != null)
  if (ch == "}" && stream.next() == "}") break;
  return "mustache";
  }
  while (stream.next() != null && !stream.match("{{", false)) {}
  return null;
  }
  };
  return CodeMirror.overlayParser(CodeMirror.getMode(config, parserConfig.backdrop || "text/html"), mustacheOverlay);
  });
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {mode: "mustache"});
  </script>
 
  <p>Demonstration of a mode that parses HTML, highlighting
  the <a href="http://mustache.github.com/">Mustache</a> templating
  directives inside of it by using the code
  in <a href="../lib/util/overlay.js"><code>overlay.js</code></a>. View
  source to see the 15 lines of code needed to accomplish this.</p>
 
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: HTML5 preview</title>
  <meta charset=utf-8>
  <script src=../lib/codemirror.js></script>
  <script src=../mode/xml/xml.js></script>
  <script src=../mode/javascript/javascript.js></script>
  <script src=../mode/css/css.js></script>
  <script src=../mode/htmlmixed/htmlmixed.js></script>
  <link rel=stylesheet href=../lib/codemirror.css>
  <link rel=stylesheet href=../doc/docs.css>
  <style type=text/css>
  .CodeMirror {
  float: left;
  width: 50%;
  border: 1px solid black;
  }
  iframe {
  width: 49%;
  float: left;
  height: 300px;
  border: 1px solid black;
  border-left: 0px;
  }
  </style>
  </head>
  <body>
  <h1>CodeMirror: HTML5 preview</h1>
  <textarea id=code name=code>
  <!doctype html>
  <html>
  <head>
  <meta charset=utf-8>
  <title>HTML5 canvas demo</title>
  <style>p {font-family: monospace;}</style>
  </head>
  <body>
  <p>Canvas pane goes here:</p>
  <canvas id=pane width=300 height=200></canvas>
  <script>
  var canvas = document.getElementById('pane');
  var context = canvas.getContext('2d');
 
  context.fillStyle = 'rgb(250,0,0)';
  context.fillRect(10, 10, 55, 50);
 
  context.fillStyle = 'rgba(0, 0, 250, 0.5)';
  context.fillRect(30, 30, 55, 50);
  </script>
  </body>
  </html></textarea>
  <iframe id=preview></iframe>
  <script>
  var delay;
  // Initialize CodeMirror editor with a nice html5 canvas demo.
  var editor = CodeMirror.fromTextArea(document.getElementById('code'), {
  mode: 'text/html',
  tabMode: 'indent',
  onChange: function() {
  clearTimeout(delay);
  delay = setTimeout(updatePreview, 300);
  }
  });
 
  function updatePreview() {
  var previewFrame = document.getElementById('preview');
  var preview = previewFrame.contentDocument || previewFrame.contentWindow.document;
  preview.open();
  preview.write(editor.getValue());
  preview.close();
  }
  setTimeout(updatePreview, 300);
  </script>
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Autoresize Demo</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <script src="../mode/css/css.js"></script>
  <link rel="stylesheet" href="../doc/docs.css">
 
  <style type="text/css">
  .CodeMirror {
  border: 1px solid #eee;
  }
  .CodeMirror-scroll {
  height: auto;
  overflow-y: hidden;
  overflow-x: auto;
  width: 100%;
  }
  </style>
  </head>
  <body>
  <h1>CodeMirror: Autoresize demo</h1>
 
  <form><textarea id="code" name="code">
  .CodeMirror-scroll {
  height: auto;
  overflow-y: hidden;
  overflow-x: auto;
  width: 100%
  }</textarea></form>
 
  <p>By setting a few CSS properties, CodeMirror can be made to
  automatically resize to fit its content.</p>
 
  <script>
  CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true
  });
  </script>
 
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Mode Runner Demo</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <script src="../lib/util/runmode.js"></script>
  <script src="../mode/xml/xml.js"></script>
  <link rel="stylesheet" href="../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: Mode Runner Demo</h1>
 
  <textarea id="code" style="width: 90%; height: 7em; border: 1px solid black; padding: .2em .4em;">
  <foobar>
  <blah>Enter your xml here and press the button below to display
  it as highlighted by the CodeMirror XML mode</blah>
  <tag2 foo="2" bar="&amp;quot;bar&amp;quot;"/>
  </foobar></textarea><br>
  <button onclick="doHighlight();">Highlight!</button>
  <pre id="output" class="cm-s-default"></pre>
 
  <script>
  function doHighlight() {
  CodeMirror.runMode(document.getElementById("code").value, "application/xml",
  document.getElementById("output"));
  }
  </script>
 
  <p>Running a CodeMirror mode outside of the editor.
  The <code>CodeMirror.runMode</code> function, defined
  in <code><a href="../lib/util/runmode.js">lib/runmode.js</a></code> takes the following arguments:</p>
 
  <dl>
  <dt><code>text (string)</code></dt>
  <dd>The document to run through the highlighter.</dd>
  <dt><code>mode (<a href="../doc/manual.html#option_mode">mode spec</a>)</code></dt>
  <dd>The mode to use (must be loaded as normal).</dd>
  <dt><code>output (function or DOM node)</code></dt>
  <dd>If this is a function, it will be called for each token with
  two arguments, the token's text and the token's style class (may
  be <code>null</code> for unstyled tokens). If it is a DOM node,
  the tokens will be converted to <code>span</code> elements as in
  an editor, and inserted into the node
  (through <code>innerHTML</code>).</dd>
  </dl>
 
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Search/Replace Demo</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <script src="../mode/xml/xml.js"></script>
  <script src="../lib/util/dialog.js"></script>
  <link rel="stylesheet" href="../lib/util/dialog.css">
  <script src="../lib/util/searchcursor.js"></script>
  <script src="../lib/util/search.js"></script>
  <link rel="stylesheet" href="../doc/docs.css">
 
  <style type="text/css">
  .CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}
  dt {font-family: monospace; color: #666;}
  </style>
  </head>
  <body>
  <h1>CodeMirror: Search/Replace Demo</h1>
 
  <form><textarea id="code" name="code">
  <dt id="option_indentWithTabs"><code>indentWithTabs (boolean)</code></dt>
  <dd>Whether, when indenting, the first N*8 spaces should be
  replaced by N tabs. Default is false.</dd>
 
  <dt id="option_tabMode"><code>tabMode (string)</code></dt>
  <dd>Determines what happens when the user presses the tab key.
  Must be one of the following:
  <dl>
  <dt><code>"classic" (the default)</code></dt>
  <dd>When nothing is selected, insert a tab. Otherwise,
  behave like the <code>"shift"</code> mode. (When shift is
  held, this behaves like the <code>"indent"</code> mode.)</dd>
  <dt><code>"shift"</code></dt>
  <dd>Indent all selected lines by
  one <a href="#option_indentUnit"><code>indentUnit</code></a>.
  If shift was held while pressing tab, un-indent all selected
  lines one unit.</dd>
  <dt><code>"indent"</code></dt>
  <dd>Indent the line the 'correctly', based on its syntactic
  context. Only works if the
  mode <a href="#indent">supports</a> it.</dd>
  <dt><code>"default"</code></dt>
  <dd>Do not capture tab presses, let the browser apply its
  default behaviour (which usually means it skips to the next
  control).</dd>
  </dl></dd>
 
  <dt id="option_enterMode"><code>enterMode (string)</code></dt>
  <dd>Determines whether and how new lines are indented when the
  enter key is pressed. The following modes are supported:
  <dl>
  <dt><code>"indent" (the default)</code></dt>
  <dd>Use the mode's indentation rules to give the new line
  the correct indentation.</dd>
  <dt><code>"keep"</code></dt>
  <dd>Indent the line the same as the previous line.</dd>
  <dt><code>"flat"</code></dt>
  <dd>Do not indent the new line.</dd>
  </dl></dd>
  </textarea></form>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {mode: "text/html", lineNumbers: true});
  </script>
 
  <p>Demonstration of primitive search/replace functionality. The
  keybindings (which can be overridden by custom keymaps) are:</p>
  <dl>
  <dt>Ctrl-F / Cmd-F</dt><dd>Start searching</dd>
  <dt>Ctrl-G / Cmd-G</dt><dd>Find next</dd>
  <dt>Shift-Ctrl-G / Shift-Cmd-G</dt><dd>Find previous</dd>
  <dt>Shift-Ctrl-F / Cmd-Option-F</dt><dd>Replace</dd>
  <dt>Shift-Ctrl-R / Shift-Cmd-Option-F</dt><dd>Replace all</dd>
  </dl>
  <p>Searching is enabled by
  including <a href="../lib/util/search.js">lib/util/search.js</a>.
  For good-looking input dialogs, you also want to include
  <a href="../lib/util/dialog.js">lib/util/dialog.js</a>
  and <a href="../lib/util/dialog.css">lib/util/dialog.css</a>.</p>
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Theme Demo</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <link rel="stylesheet" href="../theme/neat.css">
  <link rel="stylesheet" href="../theme/elegant.css">
  <link rel="stylesheet" href="../theme/night.css">
  <link rel="stylesheet" href="../theme/monokai.css">
  <link rel="stylesheet" href="../theme/cobalt.css">
  <link rel="stylesheet" href="../theme/eclipse.css">
  <link rel="stylesheet" href="../theme/rubyblue.css">
  <script src="../mode/javascript/javascript.js"></script>
  <link rel="stylesheet" href="../doc/docs.css">
 
  <style type="text/css">
  .CodeMirror {border: 1px solid black;}
  </style>
  </head>
  <body>
  <h1>CodeMirror: Theme demo</h1>
 
  <form><textarea id="code" name="code">
  function findSequence(goal) {
  function find(start, history) {
  if (start == goal)
  return history;
  else if (start > goal)
  return null;
  else
  return find(start + 5, "(" + history + " + 5)") ||
  find(start * 3, "(" + history + " * 3)");
  }
  return find(1, "1");
  }</textarea></form>
 
  <p>Select a theme: <select onchange="selectTheme(this)">
  <option selected>default</option>
  <option>night</option>
  <option>monokai</option>
  <option>neat</option>
  <option>elegant</option>
  <option>cobalt</option>
  <option>eclipse</option>
  <option>rubyblue</option>
  </select>
  </p>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true
  });
  function selectTheme(node) {
  var theme = node.options[node.selectedIndex].innerHTML;
  editor.setOption("theme", theme);
  }
  </script>
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Vim bindings demo</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <script src="../mode/clike/clike.js"></script>
  <script src="../keymap/vim.js"></script>
  <link rel="stylesheet" href="../doc/docs.css">
 
  <style type="text/css">
  .CodeMirror {border-top: 1px solid #eee; border-bottom: 1px solid #eee;}
  </style>
  </head>
  <body>
  <h1>CodeMirror: Vim bindings demo</h1>
 
  <form><textarea id="code" name="code">
  #include "syscalls.h"
  /* getchar: simple buffered version */
  int getchar(void)
  {
  static char buf[BUFSIZ];
  static char *bufp = buf;
  static int n = 0;
  if (n == 0) { /* buffer is empty */
  n = read(0, buf, sizeof buf);
  bufp = buf;
  }
  return (--n >= 0) ? (unsigned char) *bufp++ : EOF;
  }
  </textarea></form>
 
  <p>The vim keybindings are enabled by
  including <a href="../keymap/vim.js">keymap/vim.js</a> and setting
  the <code>keyMap</code> option to <code>"vim"</code>. Because
  CodeMirror's internal API is quite different from Vim, they are only
  a loose approximation of actual vim bindings, though.</p>
 
  <script>
  CodeMirror.commands.save = function(){alert("Saving");};
  CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  mode: "text/x-csrc",
  keyMap: "vim"
  });
  </script>
 
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Visible tabs demo</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <script src="../mode/clike/clike.js"></script>
  <link rel="stylesheet" href="../doc/docs.css">
 
  <style type="text/css">
  .CodeMirror {border-top: 1px solid #eee; border-bottom: 1px solid #eee;}
  .cm-tab:after {
  content: "\21e5";
  display: -moz-inline-block;
  display: -webkit-inline-block;
  display: inline-block;
  width: 0px;
  position: relative;
  overflow: visible;
  left: -1.4em;
  color: #aaa;
  }
  </style>
  </head>
  <body>
  <h1>CodeMirror: Visible tabs demo</h1>
 
  <form><textarea id="code" name="code">
  #include "syscalls.h"
  /* getchar: simple buffered version */
  int getchar(void)
  {
  static char buf[BUFSIZ];
  static char *bufp = buf;
  static int n = 0;
  if (n == 0) { /* buffer is empty */
  n = read(0, buf, sizeof buf);
  bufp = buf;
  }
  return (--n >= 0) ? (unsigned char) *bufp++ : EOF;
  }
  </textarea></form>
 
  <p>Tabs inside the editor are spans with the
  class <code>cm-tab</code>, and can be styled. This demo uses
  an <code>:after</code> pseudo-class CSS hack that will not work on old
  browsers. You can use a more conservative technique like a background
  image as an alternative.</p>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  tabSize: 4,
  indentUnit: 4,
  indentWithTabs: true,
  mode: "text/x-csrc"
  });
  </script>
 
  </body>
  </html>
 
 Binary files /dev/null and b/js/flotr2/examples/lib/codemirror/doc/baboon.png differ
  <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  <!-- Created with Inkscape (http://www.inkscape.org/) -->
 
  <svg
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:cc="http://creativecommons.org/ns#"
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:svg="http://www.w3.org/2000/svg"
  xmlns="http://www.w3.org/2000/svg"
  xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
  xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
  id="svg3181"
  version="1.1"
  inkscape:version="0.48.0 r9654"
  width="1750"
  height="960"
  xml:space="preserve"
  sodipodi:docname="baboon_vector.svg"><metadata
  id="metadata3187"><rdf:RDF><cc:Work
  rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
  rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
  id="defs3185"><clipPath
  clipPathUnits="userSpaceOnUse"
  id="clipPath3195"><path
  d="M 0,768 1400,768 1400,0 0,0 0,768 z"
  id="path3197" /></clipPath><clipPath
  clipPathUnits="userSpaceOnUse"
  id="clipPath3215"><path
  d="M 0,768 1400,768 1400,0 0,0 0,768 z"
  id="path3217" /></clipPath></defs><sodipodi:namedview
  pagecolor="#ffffff"
  bordercolor="#666666"
  borderopacity="1"
  objecttolerance="10"
  gridtolerance="10"
  guidetolerance="10"
  inkscape:pageopacity="0"
  inkscape:pageshadow="2"
  inkscape:window-width="1440"
  inkscape:window-height="851"
  id="namedview3183"
  showgrid="false"
  inkscape:zoom="0.20550291"
  inkscape:cx="1534.1667"
  inkscape:cy="795.78156"
  inkscape:window-x="0"
  inkscape:window-y="0"
  inkscape:window-maximized="1"
  inkscape:current-layer="g3189" /><g
  id="g3189"
  inkscape:groupmode="layer"
  inkscape:label="baboon_vector"
  transform="matrix(1.25,0,0,-1.25,0,960)"><g
  id="g3191"><g
  id="g3193"
  clip-path="url(#clipPath3195)"><g
  id="g3199"
  transform="translate(458.9561,569.9678)"><path
  d="m 0,0 59.835,69.355 87.034,26.518 133.949,-7.479 c 0,0 74.116,-32.639 74.795,-34.678 0.68,-2.04 84.314,-59.155 84.314,-59.155 l 12.238,-74.795 5.439,-97.912 -13.598,-25.159 -4.76,-40.797 -18.358,-23.118 24.39,-5.561 0.501,-5.192 -14.012,-60.641 16.477,-93.368 7.223,-49.972 -208.295,-51.754 -18.552,4.005 -37.468,8.325 -10.036,4.036 -66.885,10.101 c 0,0 -14.959,74.793 -16.999,73.433 -2.039,-1.359 -42.836,56.437 -42.836,56.437 l -19.719,65.274 12.48,74.571 -7.961,9.643 -26.479,16.187 -12.716,38.309 4.08,48.277 8.769,38.985 L 6.608,-74.308 0,0 z"
  style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
  id="path3201" /></g><g
  id="g3203"
  transform="translate(78.8657,682.1582)"><path
  d="M 0,0 142.789,40.797 259.74,52.355 313.457,-232.543 204.665,-291.698 78.194,-293.738 0,0 z"
  style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
  id="path3205" /></g><g
  id="g3207"
  transform="translate(269.5122,345.2344)"><path
  d="M 0,0 18.801,-74.425 40.728,-85.408 59.539,-59.541 40.259,13.503 36.821,15.669 0,0 z"
  style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
  id="path3209" /></g></g></g><g
  id="g3223"
  transform="translate(741.918,109.0332)"><path
  d="m 0,0 -17.236,-9.401 -16.452,-22.721 -0.783,12.537 6.268,17.234 13.317,6.268 L 0,7.833 14.884,3.917 0,0 z m 172.622,-21.824 c -0.031,0.271 -0.081,0.535 -0.117,0.804 -20.85,7.653 -49.59,7.327 -66.874,10.927 -13.849,2.886 -23.047,9.119 -27.032,12.298 -9.863,-8.494 -12.025,-14.377 -12.025,-14.377 0,0 -9.816,15.309 -30.17,25.76 -7.05,3.621 -17.767,5.691 -29.341,5.691 -24.297,0 -52.384,-9.155 -58.339,-32.223 -10.458,-40.511 9.697,-76.594 49.814,-77.623 1.325,-0.034 2.623,-0.12 3.894,-0.12 36.131,0 48.855,8.572 58.323,15.478 0.027,0.021 0.104,0 0.104,0 0,0 25.126,-11.506 53.529,-11.506 4.419,0 9.156,0.415 14.249,1.063 31.641,4.018 47.989,28.124 43.985,63.828"
  style="fill:#df0019;fill-opacity:1;fill-rule:nonzero;stroke:none"
  id="path3225"
  inkscape:connector-curvature="0" /></g><g
  id="g3227"
  transform="translate(300.8481,270.0254)"><path
  d="m 0,0 c -3.063,-0.691 -12.535,0.784 -12.535,0.784 l 6.267,-25.853 43.481,13.319 -9.01,27.418 C 28.203,15.668 7.867,1.777 0,0"
  style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
  id="path3229"
  inkscape:connector-curvature="0" /></g><g
  id="g3231"
  transform="translate(211.66052,615.85984)"><path
  d="m 0,0 -16.243,-2.871 -15.462,-9.4 4.323,-10.938 14.568,9.89 L 2.75,-8.771 0,0 z"
  style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
  id="path3233"
  inkscape:connector-curvature="0" /></g><g
  id="g3235"
  transform="translate(274.15732,626.4084)"><path
  d="m 0,0 -15.64,0.407 -14.279,-3.608 2.008,-9.747 14.756,4.208 L 1.111,-8.215 0,0 z"
  style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
  id="path3237"
  inkscape:connector-curvature="0" /></g><path
  style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
  d="M 436.65625 22.28125 C 436.65625 22.28125 338.18375 25.385 251 42.8125 C 163.24875 60.35375 70.40625 99.65625 70.40625 99.65625 L 175.1875 495.28125 L 327.96875 492.34375 L 337.75 527.59375 C 337.75 527.59375 365.095 523.25875 373 518.78125 C 376.31375 516.90375 383.78125 508 383.78125 508 L 377.75 484.65625 L 504.21875 407.15625 L 436.65625 22.28125 z M 410.53125 55.1875 L 465.6875 393.3125 L 346.59375 456.625 L 202.75 466.46875 L 112 114.40625 L 263 79.1875 L 410.53125 55.1875 z "
  transform="matrix(0.8,0,0,-0.8,0,768)"
  id="path3253" /><g
  id="g3247"
  transform="matrix(1.199238,-0.02879331,0.02673084,1.0520756,172.41935,498.37339)"><path
  d="m 0,0 c 0,0 -1.861,1.481 -9.143,-1.457 9.712,18.867 9.439,39.989 9.439,39.989 0,0 -3.106,-2.465 -11.311,-8.47 9.241,23.044 5.338,72.525 5.338,72.525 0,0 -17.493,40.746 -13.657,45.799 8.841,11.65 23.834,23.968 44.295,25.594 17.935,1.424 44.606,-4.953 55.865,-15.284 4.536,-4.161 23.367,-47.493 23.367,-47.493 0,0 6.104,-35.271 11.619,-54.108 5.513,-18.839 11.054,-26.674 21.284,-34.825 17.831,-14.207 27.076,-29.938 27.076,-29.938 L 143.399,3.945 c 3.655,-17.356 14.875,-34.28 27.39,-47.672 -12.863,1.507 -19.61,8.783 -19.61,8.783 0,0 2.151,-12.664 9.109,-26.554 l 28.712,15.264 -1.762,10.805 c -5.128,9.304 -9.336,15.534 -9.336,15.534 0,0 2.089,0.956 7.385,-3.572 l -2.005,12.296 c -4.814,9.391 -11.773,16.752 -25.115,31.113 5.944,-6.087 15.438,-5.379 20.751,-4.356 l -0.572,3.512 c -2.231,1.278 -5.494,3.171 -10.241,5.957 -12.43,7.299 -22.326,21.049 -22.326,21.049 0,0 12.85,1.815 20.513,11.022 -7.316,-2.641 -18.585,0.799 -18.585,0.799 -17.086,6.772 -15.022,30.217 -17.687,50.587 -2.667,20.37 -9.299,34.125 -9.299,34.125 0,0 -0.243,2.149 11.91,-5.906 -7.744,33.215 -35.545,44.94 -35.545,44.94 0,0 2.223,2.79 22.843,0.044 -16.469,15.817 -32.303,16.896 -32.303,16.896 0,0 10.077,2.25 23.611,0.24 0,0 -3.327,3.508 -7.549,6.453 L 35.985,194.291 -77.543,167.815 -8.211,-101.17 17.481,-99.413 C 8.602,-85.114 -0.371,-63.837 -2.15,-40.857 -4.911,-5.208 0,0 0,0"
  style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
  id="path3249"
  inkscape:connector-curvature="0" /></g><g
  id="g3255"
  transform="translate(204.22134,580.88353)"><path
  d="m 0,0 c 0,-1.418 0.43,-2.736 1.168,-3.83 1.523,0.677 3.551,1.094 5.786,1.094 2.164,0 4.133,-0.39 5.639,-1.029 0.711,1.081 1.129,2.374 1.129,3.765 0,3.79 -3.072,6.861 -6.861,6.861 C 3.071,6.861 0,3.79 0,0"
  style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
  id="path3257"
  inkscape:connector-curvature="0" /></g><g
  id="g3259"
  transform="translate(256.3311,595.31646)"><path
  d="m 0,0 c 0,-1.418 0.43,-2.736 1.168,-3.83 1.524,0.677 3.552,1.094 5.787,1.094 2.163,0 4.132,-0.39 5.638,-1.029 0.712,1.081 1.129,2.373 1.129,3.765 0,3.79 -3.072,6.861 -6.861,6.861 C 3.071,6.861 0,3.79 0,0"
  style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
  id="path3261"
  inkscape:connector-curvature="0" /></g><g
  id="g4174"
  transform="matrix(0.99694509,0.07810563,-0.07810563,0.99694509,47.348748,-15.348299)"><g
  transform="translate(222.5098,610.1558)"
  id="g3219"><path
  inkscape:connector-curvature="0"
  id="path3221"
  style="fill:#df0019;fill-opacity:1;fill-rule:nonzero;stroke:none"
  d="m 0,0 4.45,2.752 5.34,3.785 7.05,-8.226 7.093,-33.359 17.801,-51.259 13.86,-30.215 26.261,-1.55 -6.685,-35.653 c 0,0 -49.98,-21.871 -49.545,-21.911 -42.657,4.001 -12.553,43.066 -8.631,47.301 L 3.666,-47.869 0,0 z" /></g><g
  transform="translate(247.626,467.3545)"
  id="g3239"><path
  inkscape:connector-curvature="0"
  id="path3241"
  style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
  d="M 0,0 C -3.044,-0.345 -5.232,-3.092 -4.888,-6.136 -4.543,-9.18 1.576,-2.254 13.308,-4.961 13.971,-1.97 3.044,0.344 0,0" /></g><g
  transform="translate(279.4419,476.5762)"
  id="g3243"><path
  inkscape:connector-curvature="0"
  id="path3245"
  style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
  d="M 0,0 C 3.271,1.08 6.798,-0.697 7.88,-3.969 8.96,-7.24 -0.55,-3.044 -11.258,-11.329 -13.345,-8.586 -3.272,-1.081 0,0" /></g><g
  transform="translate(284.1929,525.9082)"
  id="g3263"><path
  inkscape:connector-curvature="0"
  id="path3265"
  style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
  d="M 0,0 C 0,0 -6.972,28.671 -6.972,29.355 L 1.585,2.864 9.999,-10.564 13.634,-32.697 7.922,-11.098 0,0 z M -0.633,-15.036 -9.19,-4.86 -16.478,25.776 c -0.202,0.684 9.106,-28.811 9.106,-28.811 l 8.64,-11.642 2.469,-17.336 -4.37,16.977 z m -6.339,-6.085 -10.457,16.826 -5.444,28.646 6.614,-27.842 11.311,-18.026 1.413,-9.583 -3.437,9.979 z m -53.462,-13.246 -1.437,24.944 -2.682,28.754 5.106,-29.895 1.212,-21.677 4.139,-18.236 -6.338,16.11 z m -4.265,-19.55 -6.665,15.516 0.404,29.205 -0.882,28.169 3.104,-28.396 0.808,-26.697 4.242,-15.972 2.423,-6.617 -3.434,4.792 z m -9.695,-2.967 -7.117,16.885 1.318,32.01 0,25.223 2.115,-25.061 -0.581,-31.259 5.869,-16.429 5.056,-8.671 -6.66,7.302 z m 103.144,-7.97 -6.676,20.38 2.141,11.54 L 16.499,-9.376 4.557,13.104 -5.879,53.97 c 0,0 -8.325,-7.41 -16.781,-8.08 -8.455,-0.671 -15.09,4.018 -15.09,4.018 0,0 3.592,-17.761 8.659,-37.597 5.069,-19.836 17.528,-44.866 17.528,-44.866 0,0 21.578,-8.197 24.302,-16.587 2.724,-8.391 -3.508,-22.911 -14.102,-26.551 -10.593,-3.64 -32.284,-8.262 -32.284,-8.262 0,0 -19,1.512 -20.438,14.26 0,0 4.131,16.406 10.418,19.225 6.285,2.819 21.362,11.174 21.362,11.174 l -8.254,1.332 -7.664,-1.332 c 0,0 -4.784,11.295 -10.973,35.086 -6.19,23.79 -8.967,42.485 -8.967,42.485 0,0 -3.912,-4.391 -14.199,-4.885 -10.286,-0.494 -16.031,7.988 -16.031,7.988 l 1.027,-30.185 -1.049,-25.83 -0.15,-29.22 5.102,-15.99 19.818,-30.448 c 0,0 14.102,-9.293 31.728,-9.293 16.453,1.328 51.131,18.047 51.131,18.047 l 9.536,16.687 z" /></g></g><g
  id="g3267"
  transform="translate(847.2637,321.5059)"><path
  d="m 0,0 c 2.252,3.516 6.693,15.3 6.693,15.3 0,0 3.778,-13.306 1.912,-17.213 -3.056,-6.404 -23.905,-15.3 -23.905,-15.3 0,0 12.196,12.364 15.3,17.213 m -33.514,23.16 -0.757,56.352 c 0,0 11.136,-14.028 11.843,-19.739 1.176,-9.491 -11.086,-36.613 -11.086,-36.613 m -17.575,236.921 c 0,0 12.453,-15.338 14.854,-21.39 1.424,-3.591 2.286,-15.287 2.286,-15.287 l -17.14,36.677 z M -98.574,-86.136 c -9.757,-0.906 -29.836,1.016 -38.912,4.708 -7.499,3.05 -25.734,19.656 -25.734,19.656 l 24.187,-10.86 -4.701,17.627 15.272,-22.009 41.813,-5.356 c 0,0 -8.812,-3.477 -11.925,-3.766 m -74.428,157.941 c -4.518,10.057 -1.763,44.065 -1.763,44.065 0,0 7.544,-31.093 12.338,-40.541 6.978,-13.754 37.015,-49.352 37.015,-49.352 0,0 -40.824,30.759 -47.59,45.828 m -17.833,-149.47 -40.407,24.724 1.636,-17.575 0.026,-0.035 -5.178,-29.811 -2.056,-10.701 0.383,-33.34 -4.982,36.406 6.41,41.45 -11.063,8.338 -17.532,43.159 23.502,-38.779 2.351,14.101 40.634,-25.695 11.924,-5.651 13.809,-28.871 -19.457,22.28 z m -85.522,138.863 17.212,-34.424 c 0,0 -12.972,11.185 -15.299,16.257 -1.905,4.152 -1.913,18.167 -1.913,18.167 m -2.367,66.042 c 0,0 -6.206,15.581 -6.323,21.082 -0.168,7.817 4.568,23.148 7.695,30.315 0.755,1.73 4.103,6.341 4.103,6.341 0,0 -4.654,-24.542 -5.347,-32.829 -0.518,-6.205 -0.128,-24.909 -0.128,-24.909 m -7.195,-114.809 c -0.334,3.363 1.912,13.387 1.912,13.387 l 3.825,-29.643 c 0,0 -5.313,11.967 -5.737,16.256 m -20.082,53.549 c -1.394,3.571 -0.956,15.301 -0.956,15.301 l 13.388,-30.6 c 0,0 -10.639,10.71 -12.432,15.299 m -6.03,106.795 c 0,0 -0.315,35.831 4.637,46.379 4.531,9.647 29.936,30.356 29.936,30.356 0,0 -17.824,-22.47 -21.503,-31.2 -5.089,-12.077 -10.119,-51.437 -10.119,-51.437 l -2.951,5.902 z M 50.121,205.01 c 3.335,-9.155 1.168,-38.956 1.168,-38.956 0,0 -5.451,29.987 -9.221,39.366 -4.214,10.487 -23.014,38.907 -23.014,38.907 0,0 26.78,-27.546 31.067,-39.317 M 54.506,95.624 c 0,0 6.884,-18.586 5.738,-24.861 -0.773,-4.241 -9.562,-14.345 -9.562,-14.345 0,0 2.414,12.874 2.868,17.212 0.573,5.474 0.956,21.994 0.956,21.994 M 19.125,-13.389 c 0,0 9.656,22.183 11.062,30.068 1.235,6.941 0,28.203 0,28.203 0,0 8.477,-22.819 7.106,-30.538 C 35.845,6.183 19.125,-13.389 19.125,-13.389 m 441.487,-40.965 c -3.249,8.935 -6.587,17.23 -10.01,24.928 l -1.862,28.873 -8.857,-4.876 -25.862,49.457 -4.828,-10.34 c -32.69,31.48 -70.457,34.284 -111.982,31.646 -65.568,-4.163 -91.587,-41.63 -79.098,-57.241 12.49,-15.613 18.733,-5.205 40.589,5.203 21.858,10.407 74.937,26.017 110.323,-2.082 35.386,-28.1 86.383,-109.281 50.997,-169.646 -35.386,-60.365 -105.626,-105.385 -182.135,-88.465 -86.422,19.112 -126.078,60.082 -177.675,74.811 -8.311,1.334 -18.347,2.789 -24.791,3.191 -12.671,0.792 -21.6,14.727 -21.6,14.727 l 17.181,-9.327 25.763,-2.36 c 2.331,14 9.395,49.054 9.395,49.054 l -8.688,87.29 -18.668,-27.06 -7.246,10.184 -21.349,-22.915 -15.473,-1.959 14.67,6.596 21.38,29.409 6.7,-13.754 19.485,24.691 0.004,-0.011 16.47,9.525 -3.123,68.69 10.407,-10.407 -4.163,40.59 22.173,71.502 -34.662,91.899 16.652,-4.162 -19.773,35.386 -40.591,38.509 9.368,17.693 -93.671,9.368 -20.229,-7.165 -18.437,38.292 13.22,8.813 -69.039,14.69 2.938,19.095 -80.791,-23.303 -26.147,-19.191 -116.339,0 8.814,-10.188 -42.501,-40.641 -8.911,-78.491 7.344,-1.494 8.814,-45.548 23.502,-24.978 19.096,45.533 -14.689,-4.409 41.13,48.474 30.848,26.44 -14.69,-1.469 19.096,16.158 105.763,2.938 72.917,15.799 -41.623,-14.742 -30.181,-7.285 -104.079,-1.043 1.04,-11.449 -64.526,-61.403 14.571,2.081 -27.844,-63.28 c -15.017,-13.719 -28.06,-55.016 -36.687,-75.145 -9.367,-21.856 -20.816,-39.55 -20.816,-39.55 0,0 -30.182,-6.244 -61.405,-18.734 -31.224,-12.489 -43.713,4.163 -43.713,4.163 l -3.122,-8.326 c 0,0 -18.28,-9.057 -39.303,-11.825 -16.43,-2.162 -9.967,-20.946 -9.613,-26.684 0.405,-6.57 4.294,-19.774 8.325,-24.978 3.227,-4.165 12.525,-10.425 17.694,-11.448 12.039,-2.385 28.101,5.204 45.794,17.693 74.936,-6.245 103.241,-10.321 126.974,8.326 14.572,11.448 29.142,22.897 41.631,40.59 l -15.611,42.671 -8.327,-14.569 -5.807,44.931 1.841,17.863 5.547,-51.234 7.789,9.257 35.387,-70.772 11.448,4.164 c 0,0 13.515,-18.583 23.057,-32.881 l -26.02,25.006 -10.224,-5.964 -11.076,22.152 c 0,0 -13.383,-2.353 -24.727,-18.027 -15.862,-21.915 -23.503,-24.678 -17.627,-78.735 5.876,-54.055 16.452,-54.055 64.632,-121.039 11.752,-16.452 14.601,-18.465 14.601,-18.465 l -51.03,-27.365 -22.327,-5.876 -21.384,-11.28 c 0,0 4.744,-8.174 7.495,-9.369 4.739,-2.062 20.613,1.56 20.613,1.56 0,0 15.603,-6.763 36.756,-6.763 21.152,0 32.903,8.225 47.005,8.225 14.101,0 38.78,-8.225 57.582,-5.876 18.802,2.351 22.328,12.927 22.328,12.927 l -51.706,54.057 -4.675,47.096 -56.605,75.769 -3.038,9.437 65.791,-82.24 5.107,-46.75 55.161,-61.405 37.468,-8.325 c 0,0 -0.257,1.226 -0.625,3.114 -6.146,15.664 -6.986,34.894 -1.999,54.214 6.975,27.012 38.85,36.596 64.029,36.596 12.506,0 24.179,-2.312 32.025,-6.341 12.912,-6.63 21.851,-15.076 27.029,-20.917 3.673,4.516 7.133,7.194 11.833,11.11 0,0 12.143,-11.751 45.047,-14.101 27.14,-1.939 45.048,-8.226 70.901,-19.585 53.676,-23.584 102.5,-61.785 207.618,-45.132 105.119,16.651 206.073,113.444 164.442,227.929"
  style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
  id="path3269"
  inkscape:connector-curvature="0" /></g><path
  inkscape:connector-curvature="0"
  style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
  d="m 329.26398,723.3082 -118.025,-19.2 -120.800003,-28.175 72.600003,-281.65 115.075,7.875 95.275,50.65 -44.125,270.5 z m -6.55,-10.575 40.675,-252.4 -87.85,-47.275 -106.125,-7.325 -66.95,262.8 111.4,26.275 108.85,17.925 z"
  id="path3253-3" /></g></svg>
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Compression Helper</title>
  <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Sans|Droid+Sans:bold"/>
  <link rel="stylesheet" type="text/css" href="docs.css"/>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  </head>
  <body>
 
  <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMirror</a></h1>
 
  <pre class="grey">
  <img src="baboon.png" class="logo" alt="logo"/>/* Script compression
  helper */
  </pre>
 
  <p>To optimize loading CodeMirror, especially when including a
  bunch of different modes, it is recommended that you combine and
  minify (and preferably also gzip) the scripts. This page makes
  those first two steps very easy. Simply select the version and
  scripts you need in the form below, and
  click <strong>Compress</strong> to download the minified script
  file.</p>
 
  <form id="form" action="http://marijnhaverbeke.nl/uglifyjs" method="post">
  <input type="hidden" id="download" name="download" value="codemirror-compressed.js"/>
  <p>Version: <select id="version" onchange="setVersion(this);" style="padding: 1px">
  <option value="http://codemirror.net/">HEAD</option>
  <option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.2;f=">2.2</option>
  <option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.18;f=">2.18</option>
  <option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.16;f=">2.16</option>
  <option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.15;f=">2.15</option>
  <option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.13;f=">2.13</option>
  <option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.12;f=">2.12</option>
  <option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.11;f=">2.11</option>
  <option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.1;f=">2.1</option>
  <option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.02;f=">2.02</option>
  <option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.01;f=">2.01</option>
  <option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=v2.0;f=">2.0</option>
  <option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=beta2;f=">beta2</option>
  <option value="http://marijnhaverbeke.nl/git/codemirror2?a=blob_plain;hb=beta1;f=">beta1</option>
  </select></p>
 
  <select multiple="multiple" name="code_url" style="width: 40em;" class="field" id="files">
  <optgroup label="CodeMirror Library">
  <option value="http://codemirror.net/lib/codemirror.js" selected>codemirror.js</option>
  </optgroup>
  <optgroup label="Modes">
  <option value="http://codemirror.net/mode/clike/clike.js">clike.js</option>
  <option value="http://codemirror.net/mode/clojure/clojure.js">clojure.js</option>
  <option value="http://codemirror.net/mode/coffeescript/coffeescript.js">coffeescript.js</option>
  <option value="http://codemirror.net/mode/css/css.js">css.js</option>
  <option value="http://codemirror.net/mode/diff/diff.js">diff.js</option>
  <option value="http://codemirror.net/mode/gfm/gfm.js">gfm.js</option>
  <option value="http://codemirror.net/mode/groovy/groovy.js">groovy.js</option>
  <option value="http://codemirror.net/mode/haskell/haskell.js">haskell.js</option>
  <option value="http://codemirror.net/mode/htmlembedded/htmlembedded.js">htmlembedded.js</option>
  <option value="http://codemirror.net/mode/htmlmixed/htmlmixed.js">htmlmixed.js</option>
  <option value="http://codemirror.net/mode/javascript/javascript.js">javascript.js</option>
  <option value="http://codemirror.net/mode/jinja2/jinja2.js">jinja2.js</option>
  <option value="http://codemirror.net/mode/lua/lua.js">lua.js</option>
  <option value="http://codemirror.net/mode/markdown/markdown.js">markdown.js</option>
  <option value="http://codemirror.net/mode/ntriples/ntriples.js">ntriples.js</option>
  <option value="http://codemirror.net/mode/pascal/pascal.js">pascal.js</option>
  <option value="http://codemirror.net/mode/perl/perl.js">perl.js</option>
  <option value="http://codemirror.net/mode/php/php.js">php.js</option>
  <option value="http://codemirror.net/mode/plsql/plsql.js">plsql.js</option>
  <option value="http://codemirror.net/mode/python/python.js">python.js</option>
  <option value="http://codemirror.net/mode/r/r.js">r.js</option>
  <option value="http://codemirror.net/mode/rpm/changes/changes.js">rpm/changes.js</option>
  <option value="http://codemirror.net/mode/rpm/spec/spec.js">rpm/spec.js</option>
  <option value="http://codemirror.net/mode/rst/rst.js">rst.js</option>
  <option value="http://codemirror.net/mode/ruby/ruby.js">ruby.js</option>
  <option value="http://codemirror.net/mode/rust/rust.js">rust.js</option>
  <option value="http://codemirror.net/mode/scheme/scheme.js">scheme.js</option>
  <option value="http://codemirror.net/mode/smalltalk/smalltalk.js">smalltalk.js</option>
  <option value="http://codemirror.net/mode/sparql/sparql.js">sparql.js</option>
  <option value="http://codemirror.net/mode/stex/stex.js">stex.js</option>
  <option value="http://codemirror.net/mode/tiddlywiki/tiddlywiki.js">tiddlywiki.js</option>
  <option value="http://codemirror.net/mode/velocity/velocity.js">velocity.js</option>
  <option value="http://codemirror.net/mode/xml/xml.js">xml.js</option>
  <option value="http://codemirror.net/mode/yaml/yaml.js">yaml.js</option>
  </optgroup>
  <optgroup label="Utilities and add-ons">
  <option value="http://codemirror.net/lib/util/overlay.js">overlay.js</option>
  <option value="http://codemirror.net/lib/util/runmode.js">runmode.js</option>
  <option value="http://codemirror.net/lib/util/simple-hint.js">simple-hint.js</option>
  <option value="http://codemirror.net/lib/util/javascript-hint.js">javascript-hint.js</option>
  <option value="http://codemirror.net/lib/util/foldcode.js">codefold.js</option>
  <option value="http://codemirror.net/lib/util/dialog.js">dialog.js</option>
  <option value="http://codemirror.net/lib/util/search.js">search.js</option>
  </optgroup>
  <optgroup label="Keymaps">
  <option value="http://codemirror.net/keymap/emacs.js">emacs.js</option>
  </optgroup>
  </select></p>
 
  <p>
  <button type="submit">Compress</button> with <a href="http://github.com/mishoo/UglifyJS/">UglifyJS</a>
  </p>
 
  <p>Custom code to add to the compressed file:<textarea name="js_code" style="width: 100%; height: 15em;" class="field"></textarea></p>
  </form>
 
  <script type="text/javascript">
  function setVersion(ver) {
  var urlprefix = ver.options[ver.selectedIndex].value;
  var select = document.getElementById("files"), m;
  for (var optgr = select.firstChild; optgr; optgr = optgr.nextSibling)
  for (var opt = optgr.firstChild; opt; opt = opt.nextSibling) {
  if (opt.nodeName != "OPTION")
  continue;
  else if (m = opt.value.match(/^http:\/\/codemirror.net\/2\/(.*)$/))
  opt.value = urlprefix + m[1];
  else if (m = opt.value.match(/http:\/\/marijnhaverbeke.nl\/git\/codemirror\?a=blob_plain;hb=[^;]+;f=(.*)$/))
  opt.value = urlprefix + m[1];
  }
  }
  </script>
 
  </body>
  </html>
 
 
  body {
  font-family: Droid Sans, Arial, sans-serif;
  line-height: 1.5;
  max-width: 64.3em;
  margin: 3em auto;
  padding: 0 1em;
  }
 
  h1 {
  letter-spacing: -3px;
  font-size: 3.23em;
  font-weight: bold;
  margin: 0;
  }
 
  h2 {
  font-size: 1.23em;
  font-weight: bold;
  margin: .5em 0;
  letter-spacing: -1px;
  }
 
  h3 {
  font-size: 1em;
  font-weight: bold;
  margin: .4em 0;
  }
 
  pre {
  background-color: #eee;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  padding: 1em;
  }
 
  pre.code {
  margin: 0 1em;
  }
 
  .grey {
  font-size: 2.2em;
  padding: .5em 1em;
  line-height: 1.2em;
  margin-top: .5em;
  position: relative;
  }
 
  img.logo {
  position: absolute;
  right: -25px;
  bottom: 4px;
  }
 
  a:link, a:visited, .quasilink {
  color: #df0019;
  cursor: pointer;
  text-decoration: none;
  }
 
  a:hover, .quasilink:hover {
  color: #800004;
  }
 
  h1 a:link, h1 a:visited, h1 a:hover {
  color: black;
  }
 
  ul {
  margin: 0;
  padding-left: 1.2em;
  }
 
  a.download {
  color: white;
  background-color: #df0019;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1.23em;
  font-weight: bold;
  text-decoration: none;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  padding: .5em 0;
  margin-bottom: 1em;
  }
 
  a.download:hover {
  background-color: #bb0010;
  }
 
  .rel {
  margin-bottom: 0;
  }
 
  .rel-note {
  color: #777;
  font-size: .9em;
  margin-top: .1em;
  }
 
  .logo-braces {
  color: #df0019;
  position: relative;
  top: -4px;
  }
 
  .blk {
  float: left;
  }
 
  .left {
  width: 37em;
  padding-right: 6.53em;
  padding-bottom: 1em;
  }
 
  .left1 {
  width: 15.24em;
  padding-right: 6.45em;
  }
 
  .left2 {
  width: 15.24em;
  }
 
  .right {
  width: 20.68em;
  }
 
  .leftbig {
  width: 42.44em;
  padding-right: 6.53em;
  }
 
  .rightsmall {
  width: 15.24em;
  }
 
  .clear:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
  }
  .clear { display: inline-block; }
  /* start commented backslash hack \*/
  * html .clear { height: 1%; }
  .clear { display: block; }
  /* close commented backslash hack */
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Internals</title>
  <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Sans|Droid+Sans:bold"/>
  <link rel="stylesheet" type="text/css" href="docs.css"/>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <style>dl dl {margin: 0;} .update {color: #d40 !important}</style>
  </head>
  <body>
 
  <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMirror</a></h1>
 
  <pre class="grey">
  <img src="baboon.png" class="logo" alt="logo"/>/* (Re-) Implementing A Syntax-
  Highlighting Editor in JavaScript */
  </pre>
 
  <div class="clear"><div class="leftbig blk">
 
  <p style="font-size: 85%" id="intro">
  <strong>Topic:</strong> JavaScript, code editor implementation<br>
  <strong>Author:</strong> Marijn Haverbeke<br>
  <strong>Date:</strong> March 2nd 2011 (updated November 13th 2011)
  </p>
 
  <p>This is a followup to
  my <a href="http://codemirror.net/story.html">Brutal Odyssey to the
  Dark Side of the DOM Tree</a> story. That one describes the
  mind-bending process of implementing (what would become) CodeMirror 1.
  This one describes the internals of CodeMirror 2, a complete rewrite
  and rethink of the old code base. I wanted to give this piece another
  Hunter Thompson copycat subtitle, but somehow that would be out of
  place—the process this time around was one of straightforward
  engineering, requiring no serious mind-bending whatsoever.</p>
 
  <p>So, what is wrong with CodeMirror 1? I'd estimate, by mailing list
  activity and general search-engine presence, that it has been
  integrated into about a thousand systems by now. The most prominent
  one, since a few weeks,
  being <a href="http://googlecode.blogspot.com/2011/01/make-quick-fixes-quicker-on-google.html">Google
  code's project hosting</a>. It works, and it's being used widely.</a>
 
  <p>Still, I did not start replacing it because I was bored. CodeMirror
  1 was heavily reliant on <code>designMode</code>
  or <code>contentEditable</code> (depending on the browser). Neither of
  these are well specified (HTML5 tries
  to <a href="http://www.w3.org/TR/html5/editing.html#contenteditable">specify</a>
  their basics), and, more importantly, they tend to be one of the more
  obscure and buggy areas of browser functionality—CodeMirror, by using
  this functionality in a non-typical way, was constantly running up
  against browser bugs. WebKit wouldn't show an empty line at the end of
  the document, and in some releases would suddenly get unbearably slow.
  Firefox would show the cursor in the wrong place. Internet Explorer
  would insist on linkifying everything that looked like a URL or email
  address, a behaviour that can't be turned off. Some bugs I managed to
  work around (which was often a frustrating, painful process), others,
  such as the Firefox cursor placement, I gave up on, and had to tell
  user after user that they were known problems, but not something I
  could help.</p>
 
  <p>Also, there is the fact that <code>designMode</code> (which seemed
  to be less buggy than <code>contentEditable</code> in Webkit and
  Firefox, and was thus used by CodeMirror 1 in those browsers) requires
  a frame. Frames are another tricky area. It takes some effort to
  prevent getting tripped up by domain restrictions, they don't
  initialize synchronously, behave strangely in response to the back
  button, and, on several browsers, can't be moved around the DOM
  without having them re-initialize. They did provide a very nice way to
  namespace the library, though—CodeMirror 1 could freely pollute the
  namespace inside the frame.</p>
 
  <p>Finally, working with an editable document means working with
  selection in arbitrary DOM structures. Internet Explorer (8 and
  before) has an utterly different (and awkward) selection API than all
  of the other browsers, and even among the different implementations of
  <code>document.selection</code>, details about how exactly a selection
  is represented vary quite a bit. Add to that the fact that Opera's
  selection support tended to be very buggy until recently, and you can
  imagine why CodeMirror 1 contains 700 lines of selection-handling
  code.</p>
 
  <p>And that brings us to the main issue with the CodeMirror 1
  code base: The proportion of browser-bug-workarounds to real
  application code was getting dangerously high. By building on top of a
  few dodgy features, I put the system in a vulnerable position—any
  incompatibility and bugginess in these features, I had to paper over
  with my own code. Not only did I have to do some serious stunt-work to
  get it to work on older browsers (as detailed in the
  previous <a href="http://codemirror.net/story.html">story</a>), things
  also kept breaking in newly released versions, requiring me to come up
  with <em>new</em> scary hacks in order to keep up. This was starting
  to lose its appeal.</p>
 
  <h2 id="approach">General Approach</h2>
 
  <p>What CodeMirror 2 does is try to sidestep most of the hairy hacks
  that came up in version 1. I owe a lot to the
  <a href="http://ace.ajax.org">ACE</a> editor for inspiration on how to
  approach this.</p>
 
  <p>I absolutely did not want to be completely reliant on key events to
  generate my input. Every JavaScript programmer knows that key event
  information is horrible and incomplete. Some people (most awesomely
  Mihai Bazon with <a href="http://ymacs.org">Ymacs</a>) have been able
  to build more or less functioning editors by directly reading key
  events, but it takes a lot of work (the kind of never-ending, fragile
  work I described earlier), and will never be able to properly support
  things like multi-keystoke international character
  input. <a href="#keymap" class="update">[see below for caveat]</a></p>
 
  <p>So what I do is focus a hidden textarea, and let the browser
  believe that the user is typing into that. What we show to the user is
  a DOM structure we built to represent his document. If this is updated
  quickly enough, and shows some kind of believable cursor, it feels
  like a real text-input control.</p>
 
  <p>Another big win is that this DOM representation does not have to
  span the whole document. Some CodeMirror 1 users insisted that they
  needed to put a 30 thousand line XML document into CodeMirror. Putting
  all that into the DOM takes a while, especially since, for some
  reason, an editable DOM tree is slower than a normal one on most
  browsers. If we have full control over what we show, we must only
  ensure that the visible part of the document has been added, and can
  do the rest only when needed. (Fortunately, the <code>onscroll</code>
  event works almost the same on all browsers, and lends itself well to
  displaying things only as they are scrolled into view.)</p>
 
  <h2 id="input">Input</h2>
 
  <p>ACE uses its hidden textarea only as a text input shim, and does
  all cursor movement and things like text deletion itself by directly
  handling key events. CodeMirror's way is to let the browser do its
  thing as much as possible, and not, for example, define its own set of
  key bindings. One way to do this would have been to have the whole
  document inside the hidden textarea, and after each key event update
  the display DOM to reflect what's in that textarea.</p>
 
  <p>That'd be simple, but it is not realistic. For even medium-sized
  document the editor would be constantly munging huge strings, and get
  terribly slow. What CodeMirror 2 does is put the current selection,
  along with an extra line on the top and on the bottom, into the
  textarea.</p>
 
  <p>This means that the arrow keys (and their ctrl-variations), home,
  end, etcetera, do not have to be handled specially. We just read the
  cursor position in the textarea, and update our cursor to match it.
  Also, copy and paste work pretty much for free, and people get their
  native key bindings, without any special work on my part. For example,
  I have emacs key bindings configured for Chrome and Firefox. There is
  no way for a script to detect this. <a class="update"
  href="#keymap">[no longer the case]</a></p>
 
  <p>Of course, since only a small part of the document sits in the
  textarea, keys like page up and ctrl-end won't do the right thing.
  CodeMirror is catching those events and handling them itself.</p>
 
  <h2 id="selection">Selection</h2>
 
  <p>Getting and setting the selection range of a textarea in modern
  browsers is trivial—you just use the <code>selectionStart</code>
  and <code>selectionEnd</code> properties. On IE you have to do some
  insane stuff with temporary ranges and compensating for the fact that
  moving the selection by a 'character' will treat \r\n as a single
  character, but even there it is possible to build functions that
  reliably set and get the selection range.</p>
 
  <p>But consider this typical case: When I'm somewhere in my document,
  press shift, and press the up arrow, something gets selected. Then, if
  I, still holding shift, press the up arrow again, the top of my
  selection is adjusted. The selection remembers where its <em>head</em>
  and its <em>anchor</em> are, and moves the head when we shift-move.
  This is a generally accepted property of selections, and done right by
  every editing component built in the past twenty years.</p>
 
  <p>But not something that the browser selection APIs expose.</p>
 
  <p>Great. So when someone creates an 'upside-down' selection, the next
  time CodeMirror has to update the textarea, it'll re-create the
  selection as an 'upside-up' selection, with the anchor at the top, and
  the next cursor motion will behave in an unexpected way—our second
  up-arrow press in the example above will not do anything, since it is
  interpreted in exactly the same way as the first.</p>
 
  <p>No problem. We'll just, ehm, detect that the selection is
  upside-down (you can tell by the way it was created), and then, when
  an upside-down selection is present, and a cursor-moving key is
  pressed in combination with shift, we quickly collapse the selection
  in the textarea to its start, allow the key to take effect, and then
  combine its new head with its old anchor to get the <em>real</em>
  selection.</p>
 
  <p>In short, scary hacks could not be avoided entirely in CodeMirror
  2.</p>
 
  <p>And, the observant reader might ask, how do you even know that a
  key combo is a cursor-moving combo, if you claim you support any
  native key bindings? Well, we don't, but we can learn. The editor
  keeps a set known cursor-movement combos (initialized to the
  predictable defaults), and updates this set when it observes that
  pressing a certain key had (only) the effect of moving the cursor.
  This, of course, doesn't work if the first time the key is used was
  for extending an inverted selection, but it works most of the
  time.</p>
 
  <h2 id="update">Intelligent Updating</h2>
 
  <p>One thing that always comes up when you have a complicated internal
  state that's reflected in some user-visible external representation
  (in this case, the displayed code and the textarea's content) is
  keeping the two in sync. The naive way is to just update the display
  every time you change your state, but this is not only error prone
  (you'll forget), it also easily leads to duplicate work on big,
  composite operations. Then you start passing around flags indicating
  whether the display should be updated in an attempt to be efficient
  again and, well, at that point you might as well give up completely.</p>
 
  <p>I did go down that road, but then switched to a much simpler model:
  simply keep track of all the things that have been changed during an
  action, and then, only at the end, use this information to update the
  user-visible display.</p>
 
  <p>CodeMirror uses a concept of <em>operations</em>, which start by
  calling a specific set-up function that clears the state and end by
  calling another function that reads this state and does the required
  updating. Most event handlers, and all the user-visible methods that
  change state are wrapped like this. There's a method
  called <code>operation</code> that accepts a function, and returns
  another function that wraps the given function as an operation.</p>
 
  <p>It's trivial to extend this (as CodeMirror does) to detect nesting,
  and, when an operation is started inside an operation, simply
  increment the nesting count, and only do the updating when this count
  reaches zero again.</p>
 
  <p>If we have a set of changed ranges and know the currently shown
  range, we can (with some awkward code to deal with the fact that
  changes can add and remove lines, so we're dealing with a changing
  coordinate system) construct a map of the ranges that were left
  intact. We can then compare this map with the part of the document
  that's currently visible (based on scroll offset and editor height) to
  determine whether something needs to be updated.</p>
 
  <p>CodeMirror uses two update algorithms—a full refresh, where it just
  discards the whole part of the DOM that contains the edited text and
  rebuilds it, and a patch algorithm, where it uses the information
  about changed and intact ranges to update only the out-of-date parts
  of the DOM. When more than 30 percent (which is the current heuristic,
  might change) of the lines need to be updated, the full refresh is
  chosen (since it's faster to do than painstakingly finding and
  updating all the changed lines), in the other case it does the
  patching (so that, if you scroll a line or select another character,
  the whole screen doesn't have to be
  re-rendered). <span class="update">[the full-refresh
  algorithm was dropped, it wasn't really faster than the patching
  one]</span></p>
 
  <p>All updating uses <code>innerHTML</code> rather than direct DOM
  manipulation, since that still seems to be by far the fastest way to
  build documents. There's a per-line function that combines the
  highlighting, <a href="manual.html#markText">marking</a>, and
  selection info for that line into a snippet of HTML. The patch updater
  uses this to reset individual lines, the refresh updater builds an
  HTML chunk for the whole visible document at once, and then uses a
  single <code>innerHTML</code> update to do the refresh.</p>
 
  <h2 id="parse">Parsers can be Simple</h2>
 
  <p>When I wrote CodeMirror 1, I
  thought <a href="http://codemirror.net/story.html#parser">interruptable
  parsers</a> were a hugely scary and complicated thing, and I used a
  bunch of heavyweight abstractions to keep this supposed complexity
  under control: parsers
  were <a href="http://bob.pythonmac.org/archives/2005/07/06/iteration-in-javascript/">iterators</a>
  that consumed input from another iterator, and used funny
  closure-resetting tricks to copy and resume themselves.</p>
 
  <p>This made for a rather nice system, in that parsers formed strictly
  separate modules, and could be composed in predictable ways.
  Unfortunately, it was quite slow (stacking three or four iterators on
  top of each other), and extremely intimidating to people not used to a
  functional programming style.</p>
 
  <p>With a few small changes, however, we can keep all those
  advantages, but simplify the API and make the whole thing less
  indirect and inefficient. CodeMirror
  2's <a href="manual.html#modeapi">mode API</a> uses explicit state
  objects, and makes the parser/tokenizer a function that simply takes a
  state and a character stream abstraction, advances the stream one
  token, and returns the way the token should be styled. This state may
  be copied, optionally in a mode-defined way, in order to be able to
  continue a parse at a given point. Even someone who's never touched a
  lambda in his life can understand this approach. Additionally, far
  fewer objects are allocated in the course of parsing now.</p>
 
  <p>The biggest speedup comes from the fact that the parsing no longer
  has to touch the DOM though. In CodeMirror 1, on an older browser, you
  could <em>see</em> the parser work its way through the document,
  managing some twenty lines in each 50-millisecond time slice it got. It
  was reading its input from the DOM, and updating the DOM as it went
  along, which any experienced JavaScript programmer will immediately
  spot as a recipe for slowness. In CodeMirror 2, the parser usually
  finishes the whole document in a single 100-millisecond time slice—it
  manages some 1500 lines during that time on Chrome. All it has to do
  is munge strings, so there is no real reason for it to be slow
  anymore.</p>
 
  <h2 id="summary">What Gives?</h2>
 
  <p>Given all this, what can you expect from CodeMirror 2?</p>
 
  <ul>
 
  <li><strong>Small.</strong> the base library is
  some <span class="update">45k</span> when minified
  now, <span class="update">17k</span> when gzipped. It's smaller than
  its own logo.</li>
 
  <li><strong>Lightweight.</strong> CodeMirror 2 initializes very
  quickly, and does almost no work when it is not focused. This means
  you can treat it almost like a textarea, have multiple instances on a
  page without trouble.</li>
 
  <li><strong>Huge document support.</strong> Since highlighting is
  really fast, and no DOM structure is being built for non-visible
  content, you don't have to worry about locking up your browser when a
  user enters a megabyte-sized document.</li>
 
  <li><strong>Extended API.</strong> Some things kept coming up in the
  mailing list, such as marking pieces of text or lines, which were
  extremely hard to do with CodeMirror 1. The new version has proper
  support for these built in.</li>
 
  <li><strong>Tab support.</strong> Tabs inside editable documents were,
  for some reason, a no-go. At least six different people announced they
  were going to add tab support to CodeMirror 1, none survived (I mean,
  none delivered a working version). CodeMirror 2 no longer removes tabs
  from your document.</li>
 
  <li><strong>Sane styling.</strong> <code>iframe</code> nodes aren't
  really known for respecting document flow. Now that an editor instance
  is a plain <code>div</code> element, it is much easier to size it to
  fit the surrounding elements. You don't even have to make it scroll if
  you do not <a href="../demo/resize.html">want to</a>.</li>
 
  </ul>
 
  <p>On the downside, a CodeMirror 2 instance is <em>not</em> a native
  editable component. Though it does its best to emulate such a
  component as much as possible, there is functionality that browsers
  just do not allow us to hook into. Doing select-all from the context
  menu, for example, is not currently detected by CodeMirror.</p>
 
  <p id="changes" style="margin-top: 2em;"><span style="font-weight:
  bold">[Updates from November 13th 2011]</span> Recently, I've made
  some changes to the codebase that cause some of the text above to no
  longer be current. I've left the text intact, but added markers at the
  passages that are now inaccurate. The new situation is described
  below.</p>
 
  <h2 id="btree">Content Representation</h2>
 
  <p>The original implementation of CodeMirror 2 represented the
  document as a flat array of line objects. This worked well—splicing
  arrays will require the part of the array after the splice to be
  moved, but this is basically just a simple <code>memmove</code> of a
  bunch of pointers, so it is cheap even for huge documents.</p>
 
  <p>However, I recently added line wrapping and code folding (line
  collapsing, basically). Once lines start taking up a non-constant
  amount of vertical space, looking up a line by vertical position
  (which is needed when someone clicks the document, and to determine
  the visible part of the document during scrolling) can only be done
  with a linear scan through the whole array, summing up line heights as
  you go. Seeing how I've been going out of my way to make big documents
  fast, this is not acceptable.</p>
 
  <p>The new representation is based on a B-tree. The leaves of the tree
  contain arrays of line objects, with a fixed minimum and maximum size,
  and the non-leaf nodes simply hold arrays of child nodes. Each node
  stores both the amount of lines that live below them and the vertical
  space taken up by these lines. This allows the tree to be indexed both
  by line number and by vertical position, and all access has
  logarithmic complexity in relation to the document size.</p>
 
  <p>I gave line objects and tree nodes parent pointers, to the node
  above them. When a line has to update its height, it can simply walk
  these pointers to the top of the tree, adding or subtracting the
  difference in height from each node it encounters. The parent pointers
  also make it cheaper (in complexity terms, the difference is probably
  tiny in normal-sized documents) to find the current line number when
  given a line object. In the old approach, the whole document array had
  to be searched. Now, we can just walk up the tree and count the sizes
  of the nodes coming before us at each level.</p>
 
  <p>I chose B-trees, not regular binary trees, mostly because they
  allow for very fast bulk insertions and deletions. When there is a big
  change to a document, it typically involves adding, deleting, or
  replacing a chunk of subsequent lines. In a regular balanced tree, all
  these inserts or deletes would have to be done separately, which could
  be really expensive. In a B-tree, to insert a chunk, you just walk
  down the tree once to find where it should go, insert them all in one
  shot, and then break up the node if needed. This breaking up might
  involve breaking up nodes further up, but only requires a single pass
  back up the tree. For deletion, I'm somewhat lax in keeping things
  balanced—I just collapse nodes into a leaf when their child count goes
  below a given number. This means that there are some weird editing
  patterns that may result in a seriously unbalanced tree, but even such
  an unbalanced tree will perform well, unless you spend a day making
  strangely repeating edits to a really big document.</p>
 
  <h2 id="keymap">Keymaps</h2>
 
  <p><a href="#approach">Above</a>, I claimed that directly catching key
  events for things like cursor movement is impractical because it
  requires some browser-specific kludges. I then proceeded to explain
  some awful <a href="#selection">hacks</a> that were needed to make it
  possible for the selection changes to be detected through the
  textarea. In fact, the second hack is about as bad as the first.</p>
 
  <p>On top of that, in the presence of user-configurable tab sizes and
  collapsed and wrapped lines, lining up cursor movement in the textarea
  with what's visible on the screen becomes a nightmare. Thus, I've
  decided to move to a model where the textarea's selection is no longer
  depended on.</p>
 
  <p>So I moved to a model where all cursor movement is handled by my
  own code. This adds support for a goal column, proper interaction of
  cursor movement with collapsed lines, and makes it possible for
  vertical movement to move through wrapped lines properly, instead of
  just treating them like non-wrapped lines.</p>
 
  <p>The key event handlers now translate the key event into a string,
  something like <code>Ctrl-Home</code> or <code>Shift-Cmd-R</code>, and
  use that string to look up an action to perform. To make keybinding
  customizable, this lookup goes through
  a <a href="manual.html#option_keyMap">table</a>, using a scheme that
  allows such tables to be chained together (for example, the default
  Mac bindings fall through to a table named 'emacsy', which defines
  basic Emacs-style bindings like <code>Ctrl-F</code>, and which is also
  used by the custom Emacs bindings).</p>
 
  <p>A new
  option <a href="manual.html#option_extraKeys"><code>extraKeys</code></a>
  allows ad-hoc keybindings to be defined in a much nicer way than what
  was possible with the
  old <a href="manual.html#option_onKeyEvent"><code>onKeyEvent</code></a>
  callback. You simply provide an object mapping key identifiers to
  functions, instead of painstakingly looking at raw key events.</p>
 
  <p>Built-in commands map to strings, rather than functions, for
  example <code>"goLineUp"</code> is the default action bound to the up
  arrow key. This allows new keymaps to refer to them without
  duplicating any code. New commands can be defined by assigning to
  the <code>CodeMirror.commands</code> object, which maps such commands
  to functions.</p>
 
  <p>The hidden textarea now only holds the current selection, with no
  extra characters around it. This has a nice advantage: polling for
  input becomes much, much faster. If there's a big selection, this text
  does not have to be read from the textarea every time—when we poll,
  just noticing that something is still selected is enough to tell us
  that no new text was typed.</p>
 
  <p>The reason that cheap polling is important is that many browsers do
  not fire useful events on IME (input method engine) input, which is
  the thing where people inputting a language like Japanese or Chinese
  use multiple keystrokes to create a character or sequence of
  characters. Most modern browsers fire <code>input</code> when the
  composing is finished, but many don't fire anything when the character
  is updated <em>during</em> composition. So we poll, whenever the
  editor is focused, to provide immediate updates of the display.</p>
 
  </div><div class="rightsmall blk">
 
  <h2>Contents</h2>
 
  <ul>
  <li><a href="#intro">Introduction</a></li>
  <li><a href="#approach">General Approach</a></li>
  <li><a href="#input">Input</a></li>
  <li><a href="#selection">Selection</a></li>
  <li><a href="#update">Intelligent Updating</a></li>
  <li><a href="#parse">Parsing</a></li>
  <li><a href="#summary">What Gives?</a></li>
  <li><a href="#btree">Content Representation</a></li>
  <li><a href="#keymap">Key Maps</a></li>
  </ul>
 
  </div></div>
 
  <div style="height: 2em">&nbsp;</div>
 
  </body></html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: User Manual</title>
  <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Sans|Droid+Sans:bold"/>
  <link rel="stylesheet" type="text/css" href="docs.css"/>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <style>dl dl {margin: 0;}</style>
  </head>
  <body>
 
  <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMirror</a></h1>
 
  <pre class="grey">
  <img src="baboon.png" class="logo" alt="logo"/>/* User manual and
  reference guide */
  </pre>
 
  <div class="clear"><div class="leftbig blk">
 
  <h2 id="overview">Overview</h2>
 
  <p>CodeMirror is a code-editor component that can be embedded in
  Web pages. The code library provides <em>only</em> the editor
  component, no accompanying buttons, auto-completion, or other IDE
  functionality. It does provide a rich API on top of which such
  functionality can be straightforwardly implemented. See
  the <a href="#addons">add-ons</a> included in the distribution,
  and
  the <a href="http://www.octolabs.com/javascripts/codemirror-ui/">CodeMirror
  UI</a> project, for reusable implementations of extra features.</p>
 
  <p>CodeMirror works with language-specific modes. Modes are
  JavaScript programs that help color (and optionally indent) text
  written in a given language. The distribution comes with a few
  modes (see the <code>mode/</code> directory), and it isn't hard
  to <a href="#modeapi">write new ones</a> for other languages.</p>
 
  <h2 id="usage">Basic Usage</h2>
 
  <p>The easiest way to use CodeMirror is to simply load the script
  and style sheet found under <code>lib/</code> in the distribution,
  plus a mode script from one of the <code>mode/</code> directories
  and a theme stylesheet from <code>theme/</code>. (See
  also <a href="compress.html">the compression helper</a>.) For
  example:</p>
 
  <pre>&lt;script src="lib/codemirror.js">&lt;/script>
  &lt;link rel="stylesheet" href="../lib/codemirror.css">
  &lt;script src="mode/javascript/javascript.js">&lt;/script></pre>
 
  <p>Having done this, an editor instance can be created like
  this:</p>
 
  <pre>var myCodeMirror = CodeMirror(document.body);</pre>
 
  <p>The editor will be appended to the document body, will start
  empty, and will use the mode that we loaded. To have more control
  over the new editor, a configuration object can be passed
  to <code>CodeMirror</code> as a second argument:</p>
 
  <pre>var myCodeMirror = CodeMirror(document.body, {
  value: "function myScript(){return 100;}\n",
  mode: "javascript"
  });</pre>
 
  <p>This will initialize the editor with a piece of code already in
  it, and explicitly tell it to use the JavaScript mode (which is
  useful when multiple modes are loaded).
  See <a href="#config">below</a> for a full discussion of the
  configuration options that CodeMirror accepts.</p>
 
  <p>In cases where you don't want to append the editor to an
  element, and need more control over the way it is inserted, the
  first argument to the <code>CodeMirror</code> function can also
  be a function that, when given a DOM element, inserts it into the
  document somewhere. This could be used to, for example, replace a
  textarea with a real editor:</p>
 
  <pre>var myCodeMirror = CodeMirror(function(elt) {
  myTextArea.parentNode.replaceChild(elt, myTextArea);
  }, {value: myTextArea.value});</pre>
 
  <p>However, for this use case, which is a common way to use
  CodeMirror, the library provides a much more powerful
  shortcut:</p>
 
  <pre>var myCodeMirror = CodeMirror.fromTextArea(myTextArea);</pre>
 
  <p>This will, among other things, ensure that the textarea's value
  is updated when the form (if it is part of a form) is submitted.
  See the <a href="#fromTextArea">API reference</a> for a full
  description of this method.</p>
 
  <h2 id="config">Configuration</h2>
 
  <p>Both the <code>CodeMirror</code> function and
  its <code>fromTextArea</code> method take as second (optional)
  argument an object containing configuration options. Any option
  not supplied like this will be taken
  from <code>CodeMirror.defaults</code>, an object containing the
  default options. You can update this object to change the defaults
  on your page.</p>
 
  <p>Options are not checked in any way, so setting bogus option
  values is bound to lead to odd errors.</p>
 
  <p>These are the supported options:</p>
 
  <dl>
  <dt id="option_value"><code>value (string)</code></dt>
  <dd>The starting value of the editor.</dd>
 
  <dt id="option_mode"><code>mode (string or object)</code></dt>
  <dd>The mode to use. When not given, this will default to the
  first mode that was loaded. It may be a string, which either
  simply names the mode or is
  a <a href="http://en.wikipedia.org/wiki/MIME">MIME</a> type
  associated with the mode. Alternatively, it may be an object
  containing configuration options for the mode, with
  a <code>name</code> property that names the mode (for
  example <code>{name: "javascript", json: true}</code>). The demo
  pages for each mode contain information about what configuration
  parameters the mode supports. You can ask CodeMirror which modes
  and MIME types are loaded with
  the <code>CodeMirror.listModes</code>
  and <code>CodeMirror.listMIMEs</code> functions.</dd>
 
  <dt id="option_theme"><code>theme (string)</code></dt>
  <dd>The theme to style the editor with. You must make sure the
  CSS file defining the corresponding <code>.cm-s-[name]</code>
  styles is loaded (see
  the <a href="../theme/"><code>theme</code></a> directory in the
  distribution). The default is <code>"default"</code>, for which
  colors are included in <code>codemirror.css</code>. It is
  possible to use multiple theming classes at once—for
  example <code>"foo bar"</code> will assign both
  the <code>cm-s-foo</code> and the <code>cm-s-bar</code> classes
  to the editor.</dd>
 
  <dt id="option_indentUnit"><code>indentUnit (integer)</code></dt>
  <dd>How many spaces a block (whatever that means in the edited
  language) should be indented. The default is 2.</dd>
 
  <dt id="option_tabSize"><code>tabSize (integer)</code></dt>
  <dd>The width of a tab character. Defaults to 4.</dd>
 
  <dt id="option_indentWithTabs"><code>indentWithTabs (boolean)</code></dt>
  <dd>Whether, when indenting, the first N*<code>tabSize</code>
  spaces should be replaced by N tabs. Default is false.</dd>
 
  <dt id="option_electricChars"><code>electricChars (boolean)</code></dt>
  <dd>Configures whether the editor should re-indent the current
  line when a character is typed that might change its proper
  indentation (only works if the mode supports indentation).
  Default is true.</dd>
 
  <dt id="option_keyMap"><code>keyMap (string)</code></dt>
  <dd>Configures the keymap to use. The default
  is <code>"default"</code>, which is the only keymap defined
  in <code>codemirror.js</code> itself. Extra keymaps are found in
  the <a href="../keymap/"><code>keymap</code></a> directory.</dd>
 
  <dt id="option_extraKeys"><code>extraKeys (object)</code></dt>
  <dd>Can be used to specify extra keybindings for the editor.
  When given, should be an object with property names
  like <code>Ctrl-A</code>, <code>Home</code>,
  and <code>Ctrl-Alt-Left</code>. See
  the <code>CodeMirror.keyNames</code> object for the names of all
  the keys. The values in this object can either be functions,
  which will be called with the CodeMirror instance when the key
  is pressed, or strings, which should name commands defined
  in <code>CodeMirror.commands</code> (not documented properly,
  but looking at the source and the definition of the built-in
  keymaps, they should be rather obvious).</dd>
 
  <dt id="option_lineWrapping"><code>lineWrapping (boolean)</code></dt>
  <dd>Whether CodeMirror should scroll or wrap for long lines.
  Defaults to <code>false</code> (scroll).</dd>
 
  <dt id="option_lineNumbers"><code>lineNumbers (boolean)</code></dt>
  <dd>Whether to show line numbers to the left of the editor.</dd>
 
  <dt id="option_firstLineNumber"><code>firstLineNumber (integer)</code></dt>
  <dd>At which number to start counting lines. Default is 1.</dd>
 
  <dt id="option_gutter"><code>gutter (boolean)</code></dt>
  <dd>Can be used to force a 'gutter' (empty space on the left of
  the editor) to be shown even when no line numbers are active.
  This is useful for setting <a href="#setMarker">markers</a>.</dd>
 
  <dt id="option_fixedGutter"><code>fixedGutter (boolean)</code></dt>
  <dd>When enabled (off by default), this will make the gutter
  stay visible when the document is scrolled horizontally.</dd>
 
  <dt id="option_readOnly"><code>readOnly (boolean)</code></dt>
  <dd>This disables editing of the editor content by the user.</dd>
 
  <dt id="option_onChange"><code>onChange (function)</code></dt>
  <dd>When given, this function will be called every time the
  content of the editor is changed. It will be given the editor
  instance as first argument, and an <code>{from, to, newText,
  next}</code> object containing information about the changes
  that occurred as second argument. <code>from</code>
  and <code>to</code> are the positions (in the pre-change
  coordinate system) where the change started and
  ended. <code>newText</code> is an array of strings representing
  the text that replaced the changed range (split by line). If
  multiple changes happened during a single operation, the object
  will have a <code>next</code> property pointing to another
  change object (which may point to another, etc).</dd>
 
  <dt id="option_onCursorActivity"><code>onCursorActivity (function)</code></dt>
  <dd>Will be called when the cursor or selection moves, or any
  change is made to the editor content.</dd>
 
  <dt id="option_onGutterClick"><code>onGutterClick (function)</code></dt>
  <dd>When given, will be called whenever the editor gutter (the
  line-number area) is clicked. Will be given the editor instance
  as first argument, the (zero-based) number of the line that was
  clicked as second argument, and the raw <code>mousedown</code>
  event object as third argument.</dd>
 
  <dt id="option_onFocus"><code>onFocus, onBlur (function)</code></dt>
  <dd>The given functions will be called whenever the editor is
  focused or unfocused.</dd>
 
  <dt id="option_onScroll"><code>onScroll (function)</code></dt>
  <dd>When given, will be called whenever the editor is
  scrolled.</dd>
 
  <dt id="option_onHighlightComplete"><code>onHighlightComplete (function)</code></dt>
  <dd>Whenever the editor's content has been fully highlighted,
  this function (if given) will be called. It'll be given a single
  argument, the editor instance.</dd>
 
  <dt id="option_onUpdate"><code>onUpdate (function)</code></dt>
  <dd>Will be called whenever CodeMirror updates its DOM display.</dd>
 
  <dt id="option_matchBrackets"><code>matchBrackets (boolean)</code></dt>
  <dd>Determines whether brackets are matched whenever the cursor
  is moved next to a bracket.</dd>
 
  <dt id="option_workTime"><code>workTime, workDelay (number)</code></dt>
  <dd>Highlighting is done by a pseudo background-thread that will
  work for <code>workTime</code> milliseconds, and then use
  timeout to sleep for <code>workDelay</code> milliseconds. The
  defaults are 200 and 300, you can change these options to make
  the highlighting more or less aggressive.</dd>
 
  <dt id="option_pollInterval"><code>pollInterval (number)</code></dt>
  <dd>Indicates how quickly CodeMirror should poll its input
  textarea for changes. Most input is captured by events, but some
  things, like IME input on some browsers, doesn't generate events
  that allow CodeMirror to properly detect it. Thus, it polls.
  Default is 100 milliseconds.</dd>
 
  <dt id="option_undoDepth"><code>undoDepth (integer)</code></dt>
  <dd>The maximum number of undo levels that the editor stores.
  Defaults to 40.</dd>
 
  <dt id="option_tabindex"><code>tabindex (integer)</code></dt>
  <dd>The <a href="http://www.w3.org/TR/html401/interact/forms.html#adef-tabindex">tab
  index</a> to assign to the editor. If not given, no tab index
  will be assigned.</dd>
 
  <dt id="option_document"><code>document (DOM document)</code></dt>
  <dd>Use this if you want to display the editor in another DOM.
  By default it will use the global <code>document</code>
  object.</dd>
 
  <dt id="option_onKeyEvent"><code>onKeyEvent (function)</code></dt>
  <dd>This provides a rather low-level hook into CodeMirror's key
  handling. If provided, this function will be called on
  every <code>keydown</code>, <code>keyup</code>,
  and <code>keypress</code> event that CodeMirror captures. It
  will be passed two arguments, the editor instance and the key
  event. This key event is pretty much the raw key event, except
  that a <code>stop()</code> method is always added to it. You
  could feed it to, for example, <code>jQuery.Event</code> to
  further normalize it.<br>This function can inspect the key
  event, and handle it if it wants to. It may return true to tell
  CodeMirror to ignore the event. Be wary that, on some browsers,
  stopping a <code>keydown</code> does not stop
  the <code>keypress</code> from firing, whereas on others it
  does. If you respond to an event, you should probably inspect
  its <code>type</code> property and only do something when it
  is <code>keydown</code> (or <code>keypress</code> for actions
  that need character data).</dd>
  </dl>
 
  <h2 id="styling">Customized Styling</h2>
 
  <p>Up to a certain extent, CodeMirror's look can be changed by
  modifying style sheet files. The style sheets supplied by modes
  simply provide the colors for that mode, and can be adapted in a
  very straightforward way. To style the editor itself, it is
  possible to alter or override the styles defined
  in <a href="../lib/codemirror.css"><code>codemirror.css</code></a>.</p>
 
  <p>Some care must be taken there, since a lot of the rules in this
  file are necessary to have CodeMirror function properly. Adjusting
  colors should be safe, of course, and with some care a lot of
  other things can be changed as well. The CSS classes defined in
  this file serve the following roles:</p>
 
  <dl>
  <dt id="class_CodeMirror"><code>CodeMirror</code></dt>
  <dd>The outer element of the editor. This should be used for
  borders and positioning. Can also be used to set styles that
  should hold for everything inside the editor (such as font
  and font size), or to set a background.</dd>
 
  <dt id="class_CodeMirror_scroll"><code>CodeMirror-scroll</code></dt>
  <dd>This determines whether the editor scrolls (<code>overflow:
  auto</code> + fixed height). By default, it does. Giving
  this <code>height: auto; overflow: visible;</code> will cause
  the editor to resize to fit its content.</dd>
 
  <dt id="class_CodeMirror_focused"><code>CodeMirror-focused</code></dt>
  <dd>Whenever the editor is focused, the top element gets this
  class. This is used to hide the cursor and give the selection a
  different color when the editor is not focused.</dd>
 
  <dt id="class_CodeMirror_gutter"><code>CodeMirror-gutter</code></dt>
  <dd>Use this for giving a background or a border to the editor
  gutter. Don't set any padding here,
  use <code>CodeMirror-gutter-text</code> for that. By default,
  the gutter is 'fluid', meaning it will adjust its width to the
  maximum line number or line marker width. You can also set a
  fixed width if you want.</dd>
 
  <dt id="class_CodeMirror_gutter_text"><code>CodeMirror-gutter-text</code></dt>
  <dd>Used to style the actual line numbers. For the numbers to
  line up, you must make sure that the font in the gutter is the
  same as the one in the rest of the editor, so you should
  probably only set font style and size in
  the <code>CodeMirror</code> class.</dd>
 
  <dt id="class_CodeMirror_lines"><code>CodeMirror-lines</code></dt>
  <dd>The visible lines. If this has vertical
  padding, <code>CodeMirror-gutter</code> should have the same
  padding.</dd>
 
  <dt id="class_CodeMirror_cursor"><code>CodeMirror-cursor</code></dt>
  <dd>The cursor is a block element that is absolutely positioned.
  You can make it look whichever way you want.</dd>
 
  <dt id="class_CodeMirror_selected"><code>CodeMirror-selected</code></dt>
  <dd>The selection is represented by <code>span</code> elements
  with this class.</dd>
 
  <dt id="class_CodeMirror_matchingbracket"><code>CodeMirror-matchingbracket</code>,
  <code>CodeMirror-nonmatchingbracket</code></dt>
  <dd>These are used to style matched (or unmatched) brackets.</dd>
  </dl>
 
  <p>The actual lines, as well as the cursor, are represented
  by <code>pre</code> elements. By default no text styling (such as
  bold) that might change line height is applied. If you do want
  such effects, you'll have to give <code>CodeMirror pre</code> a
  fixed height. Also, you must still take care that character width
  is constant.</p>
 
  <p>If your page's style sheets do funky things to
  all <code>div</code> or <code>pre</code> elements (you probably
  shouldn't do that), you'll have to define rules to cancel these
  effects out again for elements under the <code>CodeMirror</code>
  class.</p>
 
  <p>Themes are also simply CSS files, which define colors for
  various syntactic elements. See the files in
  the <a href="../theme/"><code>theme</code></a> directory.</p>
 
  <h2 id="api">Programming API</h2>
 
  <p>A lot of CodeMirror features are only available through its API.
  This has the disadvantage that you need to do work to enable them,
  and the advantage that CodeMirror will fit seamlessly into your
  application.</p>
 
  <p>Whenever points in the document are represented, the API uses
  objects with <code>line</code> and <code>ch</code> properties.
  Both are zero-based. CodeMirror makes sure to 'clip' any positions
  passed by client code so that they fit inside the document, so you
  shouldn't worry too much about sanitizing your coordinates. If you
  give <code>ch</code> a value of <code>null</code>, or don't
  specify it, it will be replaced with the length of the specified
  line.</p>
 
  <dl>
  <dt id="getValue"><code>getValue() → string</code></dt>
  <dd>Get the current editor content.</dd>
  <dt id="setValue"><code>setValue(string)</code></dt>
  <dd>Set the editor content.</dd>
 
  <dt id="getSelection"><code>getSelection() → string</code></dt>
  <dd>Get the currently selected code.</dd>
  <dt id="replaceSelection"><code>replaceSelection(string)</code></dt>
  <dd>Replace the selection with the given string.</dd>
 
  <dt id="focus"><code>focus()</code></dt>
  <dd>Give the editor focus.</dd>
 
  <dt id="setOption"><code>setOption(option, value)</code></dt>
  <dd>Change the configuration of the editor. <code>option</code>
  should the name of an <a href="#config">option</a>,
  and <code>value</code> should be a valid value for that
  option.</dd>
  <dt id="getOption"><code>getOption(option) → value</code></dt>
  <dd>Retrieves the current value of the given option for this
  editor instance.</dd>
 
  <dt id="cursorCoords"><code>cursorCoords(start) → object</code></dt>
  <dd>Returns an <code>{x, y, yBot}</code> object containing the
  coordinates of the cursor relative to the top-left corner of the
  page. <code>yBot</code> is the coordinate of the bottom of the
  cursor. <code>start</code> is a boolean indicating whether you
  want the start or the end of the selection.</dd>
  <dt id="charCoords"><code>charCoords(pos) → object</code></dt>
  <dd>Like <code>cursorCoords</code>, but returns the position of
  an arbitrary characters. <code>pos</code> should be
  a <code>{line, ch}</code> object.</dd>
  <dt id="coordsChar"><code>coordsChar(object) → pos</code></dt>
  <dd>Given an <code>{x, y}</code> object (in page coordinates),
  returns the <code>{line, ch}</code> position that corresponds to
  it.</dd>
 
  <dt id="undo"><code>undo()</code></dt>
  <dd>Undo one edit (if any undo events are stored).</dd>
  <dt id="redo"><code>redo()</code></dt>
  <dd>Redo one undone edit.</dd>
  <dt id="historySize"><code>historySize() → object</code></dt>
  <dd>Returns an object with <code>{undo, redo}</code> properties,
  both of which hold integers, indicating the amount of stored
  undo and redo operations.</dd>
  <dt id="clearHistory"><code>clearHistory()</code></dt>
  <dd>Clears the editor's undo history.</dd>
 
  <dt id="indentLine"><code>indentLine(line, dir)</code></dt>
  <dd>Reset the given line's indentation to the indentation
  prescribed by the mode. If the second argument is given,
  indentation will be increased (if <code>dir</code> is true) or
  decreased (if false) by an <a href="#option_indentUnit">indent
  unit</a> instead.</dd>
 
  <dt id="getTokenAt"><code>getTokenAt(pos) → object</code></dt>
  <dd>Retrieves information about the token the current mode found
  at the given position (a <code>{line, ch}</code> object). The
  returned object has the following properties:
  <dl>
  <dt><code>start</code></dt><dd>The character (on the given line) at which the token starts.</dd>
  <dt><code>end</code></dt><dd>The character at which the token ends.</dd>
  <dt><code>string</code></dt><dd>The token's string.</dd>
  <dt><code>className</code></dt><dd>The class the mode assigned
  to the token. (Can be null when no class was assigned.)</dd>
  <dt><code>state</code></dt><dd>The mode's state at the end of this token.</dd>
  </dl></dd>
 
  <dt id="markText"><code>markText(from, to, className) → object</code></dt>
  <dd>Can be used to mark a range of text with a specific CSS
  class name. <code>from</code> and <code>to</code> should
  be <code>{line, ch}</code> objects. The method will return an
  object with two methods, <code>clear()</code>, which removes the
  mark, and <code>find()</code>, which returns a <code>{from,
  to}</code> (both document positions), indicating the current
  position of the marked range.</dd>
 
  <dt id="setBookmark"><code>setBookmark(pos) → object</code></dt>
  <dd>Inserts a bookmark, a handle that follows the text around it
  as it is being edited, at the given position. A bookmark has two
  methods <code>find()</code> and <code>clear()</code>. The first
  returns the current position of the bookmark, if it is still in
  the document, and the second explicitly removes the
  bookmark.</dd>
 
  <dt id="setMarker"><code>setMarker(line, text, className) → lineHandle</code></dt>
  <dd>Add a gutter marker for the given line. Gutter markers are
  shown in the line-number area (instead of the number for this
  line). Both <code>text</code> and <code>className</code> are
  optional. Setting <code>text</code> to a Unicode character like
  ● tends to give a nice effect. To put a picture in the gutter,
  set <code>text</code> to a space and <code>className</code> to
  something that sets a background image. If you
  specify <code>text</code>, the given text (which may contain
  HTML) will, by default, replace the line number for that line.
  If this is not what you want, you can include the
  string <code>%N%</code> in the text, which will be replaced by
  the line number.</dd>
  <dt id="clearMarker"><code>clearMarker(line)</code></dt>
  <dd>Clears a marker created
  with <code>setMarker</code>. <code>line</code> can be either a
  number or a handle returned by <code>setMarker</code> (since a
  number may now refer to a different line if something was added
  or deleted).</dd>
  <dt id="setLineClass"><code>setLineClass(line, className) → lineHandle</code></dt>
  <dd>Set a CSS class name for the given line. <code>line</code>
  can be a number or a line handle (as returned
  by <code>setMarker</code> or this function).
  Pass <code>null</code> to clear the class for a line.</dd>
  <dt id="hideLine"><code>hideLine(line) → lineHandle</code></dt>
  <dd>Hide the given line (either by number or by handle). Hidden
  lines don't show up in the editor, and their numbers are skipped
  when <a href="#option_lineNumbers">line numbers</a> are enabled.
  Deleting a region around them does delete them, and coping a
  region around will include them in the copied text.</dd>
  <dt id="showLine"><code>showLine(line) → lineHandle</code></dt>
  <dd>The inverse of <code>hideLine</code>—re-shows a previously
  hidden line, by number or by handle.</dd>
 
  <dt id="onDeleteLine"><code>onDeleteLine(line, func)</code></dt>
  <dd>Register a function that should be called when the line is
  deleted from the document.</dd>
 
  <dt id="lineInfo"><code>lineInfo(line) → object</code></dt>
  <dd>Returns the line number, text content, and marker status of
  the given line, which can be either a number or a handle
  returned by <code>setMarker</code>. The returned object has the
  structure <code>{line, handle, text, markerText, markerClass}</code>.</dd>
 
  <dt id="getLineHandle"><code>getLineHandle(num) → lineHandle</code></dt>
  <dd>Fetches the line handle for the given line number.</dd>
 
  <dt id="addWidget"><code>addWidget(pos, node, scrollIntoView)</code></dt>
  <dd>Puts <code>node</code>, which should be an absolutely
  positioned DOM node, into the editor, positioned right below the
  given <code>{line, ch}</code> position.
  When <code>scrollIntoView</code> is true, the editor will ensure
  that the entire node is visible (if possible). To remove the
  widget again, simply use DOM methods (move it somewhere else, or
  call <code>removeChild</code> on its parent).</dd>
 
  <dt id="matchBrackets"><code>matchBrackets()</code></dt>
  <dd>Force matching-bracket-highlighting to happen.</dd>
 
  <dt id="lineCount"><code>lineCount() → number</code></dt>
  <dd>Get the number of lines in the editor.</dd>
 
  <dt id="getCursor"><code>getCursor(start) → object</code></dt>
  <dd><code>start</code> is a boolean indicating whether the start
  or the end of the selection must be retrieved. If it is not
  given, the current cursor pos, i.e. the side of the selection
  that would move if you pressed an arrow key, is chosen.
  A <code>{line, ch}</code> object will be returned.</dd>
  <dt id="somethingSelected"><code>somethingSelected() → boolean</code></dt>
  <dd>Return true if any text is selected.</dd>
  <dt id="setCursor"><code>setCursor(pos)</code></dt>
  <dd>Set the cursor position. You can either pass a
  single <code>{line, ch}</code> object, or the line and the
  character as two separate parameters.</dd>
  <dt id="setSelection"><code>setSelection(start, end)</code></dt>
  <dd>Set the selection range. <code>start</code>
  and <code>end</code> should be <code>{line, ch}</code> objects.</dd>
 
  <dt id="getLine"><code>getLine(n) → string</code></dt>
  <dd>Get the content of line <code>n</code>.</dd>
  <dt id="setLine"><code>setLine(n, text)</code></dt>
  <dd>Set the content of line <code>n</code>.</dd>
  <dt id="removeLine"><code>removeLine(n)</code></dt>
  <dd>Remove the given line from the document.</dd>
 
  <dt id="getRange"><code>getRange(from, to) → string</code></td>
  <dd>Get the text between the given points in the editor, which
  should be <code>{line, ch}</code> objects.</dd>
  <dt id="replaceRange"><code>replaceRange(string, from, to)</code></dt>
  <dd>Replace the part of the document between <code>from</code>
  and <code>to</code> with the given string. <code>from</code>
  and <code>to</code> must be <code>{line, ch}</code>
  objects. <code>to</code> can be left off to simply insert the
  string at position <code>from</code>.</dd>
 
  <dt id="posFromIndex"><code>posFromIndex(index) → object</code></dt>
  <dd>Calculates and returns a <code>{line, ch}</code> object for a
  zero-based <code>index</code> who's value is relative to the start of the
  editor's text. If the <code>index</code> is out of range of the text then
  the returned object is clipped to start or end of the text
  respectively.</dd>
  <dt id="indexFromPos"><code>indexFromPos(object) → number</code></dt>
  <dd>The reverse of <a href="#posFromIndex"><code>posFromIndex</code></a>.</dd>
  </dl>
 
  <p>The following are more low-level methods:</p>
 
  <dl>
  <dt id="operation"><code>operation(func) → result</code></dt>
  <dd>CodeMirror internally buffers changes and only updates its
  DOM structure after it has finished performing some operation.
  If you need to perform a lot of operations on a CodeMirror
  instance, you can call this method with a function argument. It
  will call the function, buffering up all changes, and only doing
  the expensive update after the function returns. This can be a
  lot faster. The return value from this method will be the return
  value of your function.</dd>
 
  <dt id="refresh"><code>refresh()</code></dt>
  <dd>If your code does something to change the size of the editor
  element (window resizes are already listened for), or unhides
  it, you should probably follow up by calling this method to
  ensure CodeMirror is still looking as intended.</dd>
 
  <dt id="getInputField"><code>getInputField() → textarea</code></dt>
  <dd>Returns the hiden textarea used to read input.</dd>
  <dt id="getWrapperElement"><code>getWrapperElement() → node</code></dt>
  <dd>Returns the DOM node that represents the editor. Remove this
  from your tree to delete an editor instance.</dd>
  <dt id="getScrollerElement"><code>getScrollerElement() → node</code></dt>
  <dd>Returns the DOM node that is responsible for the sizing and
  the scrolling of the editor. You can change
  the <code>height</code> and <code>width</code> styles of this
  element to resize an editor. (You might have to call
  the <a href="#refresh"><code>refresh</code></a> method
  afterwards.)</dd>
  <dt id="getGutterElement"><code>getGutterElement() → node</code></dt>
  <dd>Fetches the DOM node that represents the editor gutter.</dd>
 
  <dt id="getStateAfter"><code>getStateAfter(line) → state</code></dt>
  <dd>Returns the mode's parser state, if any, at the end of the
  given line number. If no line number is given, the state at the
  end of the document is returned. This can be useful for storing
  parsing errors in the state, or getting other kinds of
  contextual information for a line.</dd>
  </dl>
 
  <p id="fromTextArea">Finally, the <code>CodeMirror</code> object
  itself has a method <code>fromTextArea</code>. This takes a
  textarea DOM node as first argument and an optional configuration
  object as second. It will replace the textarea with a CodeMirror
  instance, and wire up the form of that textarea (if any) to make
  sure the editor contents are put into the textarea when the form
  is submitted. A CodeMirror instance created this way has two
  additional methods:</p>
 
  <dl>
  <dt id="save"><code>save()</code></dt>
  <dd>Copy the content of the editor into the textarea.</dd>
 
  <dt id="toTextArea"><code>toTextArea()</code></dt>
  <dd>Remove the editor, and restore the original textarea (with
  the editor's current content).</dd>
 
  <dt id="getTextArea"><code>getTextArea() → textarea</code></dt>
  <dd>Returns the textarea that the instance was based on.</dd>
  </dl>
 
  <p id="defineExtension">If you want to define extra methods in terms
  of the CodeMirror API, it is possible to
  use <code>CodeMirror.defineExtension(name, value)</code>. This
  will cause the given value (usually a method) to be added to all
  CodeMirror instances created from then on.</p>
 
  <h2 id="addons">Add-ons</h2>
 
  <p>The <code>lib/util</code> directory in the distribution
  contains a number of reusable components that implement extra
  editor functionality. In brief, they are:</p>
 
  <dl>
  <dt id="util_dialog"><a href="../lib/util/dialog.js"><code>dialog.js</code></a></dt>
  <dd>Provides a very simple way to query users for text input.
  Adds an <code>openDialog</code> method to CodeMirror instances,
  which can be called with an HTML fragment that provides the
  prompt (should include an <code>input</code> tag), and a
  callback function that is called when text has been entered.
  Depends on <code>lib/util/dialog.css</code>.</dd>
  <dt id="util_searchcursor"><a href="../lib/util/searchcursor.js"><code>searchcursor.js</code></a></dt>
  <dd>Adds the <code>getSearchCursor(query, start, caseFold) →
  cursor</code> method to CodeMirror instances, which can be used
  to implement search/replace functionality. <code>query</code>
  can be a regular expression or a string (only strings will match
  across lines—if they contain newlines). <code>start</code>
  provides the starting position of the search. It can be
  a <code>{line, ch}</code> object, or can be left off to default
  to the start of the document. <code>caseFold</code> is only
  relevant when matching a string. It will cause the search to be
  case-insensitive. A search cursor has the following methods:
  <dl>
  <dt><code>findNext(), findPrevious() → boolean</code></dt>
  <dd>Search forward or backward from the current position.
  The return value indicates whether a match was found. If
  matching a regular expression, the return value will be the
  array returned by the <code>match</code> method, in case you
  want to extract matched groups.</dd>
  <dt><code>from(), to() → object</code></dt>
  <dd>These are only valid when the last call
  to <code>findNext</code> or <code>findPrevious</code> did
  not return false. They will return <code>{line, ch}</code>
  objects pointing at the start and end of the match.</dd>
  <dt><code>replace(text)</code></dt>
  <dd>Replaces the currently found match with the given text
  and adjusts the cursor position to reflect the
  replacement.</dd>
  </dl></dd>
 
  <dt id="util_search"><a href="../lib/util/search.js"><code>search.js</code></a></dt>
  <dd>Implements the search commands. CodeMirror has keys bound to
  these by default, but will not do anything with them unless an
  implementation is provided. Depends
  on <code>searchcursor.js</code>, and will make use
  of <a href="#util_dialog"><code>openDialog</code></a> when
  available to make prompting for search queries less ugly.</dd>
  <dt id="util_foldcode"><a href="../lib/util/foldcode.js"><code>foldcode.js</code></a></dt>
  <dd>Helps with code folding. See <a href="../demo/folding.html">the
  demo</a> for an example.
  Call <code>CodeMirror.newFoldFunction</code> with a range-finder
  helper function to create a function that will, when applied to
  a CodeMirror instance and a line number, attempt to fold or
  unfold the block starting at the given line. A range-finder is a
  language-specific functoin that also takes an instance and a
  line number, and returns an end line for the block, or null if
  no block is started on that line. This file
  provides <code>CodeMirror.braceRangeFinder</code>, which finds
  blocks in brace languages (JavaScript, C, Java, etc).</dd>
  <dt id="util_runmode"><a href="../lib/util/runmode.js"><code>runmode.js</code></a></dt>
  <dd>Can be used to run a CodeMirror mode over text without
  actually opening an editor instance.
  See <a href="../demo/runmode.html">the demo</a> for an
  example.</dd>
  <dt id="util_simple-hint"><a href="../lib/util/simple-hint.js"><code>simple-hint.js</code></a></dt>
  <dd>Provides a framework for showing autocompletion hints.
  Defines <code>CodeMirror.simpleHint</code>, which takes a
  CodeMirror instance and a hinting function, and pops up a widget
  that allows the user to select a completion. Hinting functions
  are function that take an editor instance, and return
  a <code>{list, from, to}</code> object, where <code>list</code>
  is an array of strings (the completions), and <code>from</code>
  and <code>to</code> give the start and end of the token that is
  being completed. Depends
  on <code>lib/util/simple-hint.css</code>.</dd>
  <dt id="util_javascript-hint"><a href="../lib/util/javascript-hint.js"><code>javascript-hint.js</code></a></dt>
  <dd>Defines <code>CodeMirror.javaScriptHint</code>, which is a
  simple hinting function for the JavaScript mode.</dd>
  </dl>
 
  <h2 id="modeapi">Writing CodeMirror Modes</h2>
 
  <p>Modes typically consist of a single JavaScript file. This file
  defines, in the simplest case, a lexer (tokenizer) for your
  language—a function that takes a character stream as input,
  advances it past a token, and returns a style for that token. More
  advanced modes can also handle indentation for the language.</p>
 
  <p id="defineMode">The mode script should
  call <code>CodeMirror.defineMode</code> to register itself with
  CodeMirror. This function takes two arguments. The first should be
  the name of the mode, for which you should use a lowercase string,
  preferably one that is also the name of the files that define the
  mode (i.e. <code>"xml"</code> is defined <code>xml.js</code>). The
  second argument should be a function that, given a CodeMirror
  configuration object (the thing passed to
  the <code>CodeMirror</code> function) and an optional mode
  configuration object (as in
  the <a href="#option_mode"><code>mode</code></a> option), returns
  a mode object.</p>
 
  <p>Typically, you should use this second argument
  to <code>defineMode</code> as your module scope function (modes
  should not leak anything into the global scope!), i.e. write your
  whole mode inside this function.</p>
 
  <p>The main responsibility of a mode script is <em>parsing</em>
  the content of the editor. Depending on the language and the
  amount of functionality desired, this can be done in really easy
  or extremely complicated ways. Some parsers can be stateless,
  meaning that they look at one element (<em>token</em>) of the code
  at a time, with no memory of what came before. Most, however, will
  need to remember something. This is done by using a <em>state
  object</em>, which is an object that is always passed when
  reading a token, and which can be mutated by the tokenizer.</p>
 
  <p id="startState">Modes that use a state must define
  a <code>startState</code> method on their mode object. This is a
  function of no arguments that produces a state object to be used
  at the start of a document.</p>
 
  <p id="token">The most important part of a mode object is
  its <code>token(stream, state)</code> method. All modes must
  define this method. It should read one token from the stream it is
  given as an argument, optionally update its state, and return a
  style string, or <code>null</code> for tokens that do not have to
  be styled. For your styles, you can either use the 'standard' ones
  defined in the themes (without the <code>cm-</code> prefix), or
  define your own (as the <a href="../mode/diff/index.html">diff</a>
  mode does) and have people include a custom CSS file for your
  mode.<p>
 
  <p id="StringStream">The stream object encapsulates a line of code
  (tokens may never span lines) and our current position in that
  line. It has the following API:</p>
 
  <dl>
  <dt><code>eol() → boolean</code></dt>
  <dd>Returns true only if the stream is at the end of the
  line.</dd>
  <dt><code>sol() → boolean</code></dt>
  <dd>Returns true only if the stream is at the start of the
  line.</dd>
 
  <dt><code>peek() → character</code></dt>
  <dd>Returns the next character in the stream without advancing
  it. Will return <code>undefined</code> at the end of the
  line.</dd>
  <dt><code>next() → character</code></dt>
  <dd>Returns the next character in the stream and advances it.
  Also returns <code>undefined</code> when no more characters are
  available.</dd>
 
  <dt><code>eat(match) → character</code></dt>
  <dd><code>match</code> can be a character, a regular expression,
  or a function that takes a character and returns a boolean. If
  the next character in the stream 'matches' the given argument,
  it is consumed and returned. Otherwise, <code>undefined</code>
  is returned.</dd>
  <dt><code>eatWhile(match) → boolean</code></dt>
  <dd>Repeatedly calls <code>eat</code> with the given argument,
  until it fails. Returns true if any characters were eaten.</dd>
  <dt><code>eatSpace() → boolean</code></dt>
  <dd>Shortcut for <code>eatWhile</code> when matching
  white-space.</dd>
  <dt><code>skipToEnd()</code></dt>
  <dd>Moves the position to the end of the line.</dd>
  <dt><code>skipTo(ch) → boolean</code></dt>
  <dd>Skips to the next occurrence of the given character, if
  found on the current line (doesn't advance the stream if the
  character does not occur on the line). Returns true if the
  character was found.</dd>
  <dt><code>match(pattern, consume, caseFold) → boolean</code></dt>
  <dd>Act like a
  multi-character <code>eat</code>—if <code>consume</code> is true
  or not given—or a look-ahead that doesn't update the stream
  position—if it is false. <code>pattern</code> can be either a
  string or a regular expression starting with <code>^</code>.
  When it is a string, <code>caseFold</code> can be set to true to
  make the match case-insensitive. When successfully matching a
  regular expression, the returned value will be the array
  returned by <code>match</code>, in case you need to extract
  matched groups.</dd>
 
  <dt><code>backUp(n)</code></dt>
  <dd>Backs up the stream <code>n</code> characters. Backing it up
  further than the start of the current token will cause things to
  break, so be careful.</dd>
  <dt><code>column() → integer</code></dt>
  <dd>Returns the column (taking into account tabs) at which the
  current token starts. Can be used to find out whether a token
  starts a new line.</dd>
  <dt><code>indentation() → integer</code></dt>
  <dd>Tells you how far the current line has been indented, in
  spaces. Corrects for tab characters.</dd>
 
  <dt><code>current() → string</code></dt>
  <dd>Get the string between the start of the current token and
  the current stream position.</dd>
  </dl>
 
  <p id="blankLine">By default, blank lines are simply skipped when
  tokenizing a document. For languages that have significant blank
  lines, you can define a <code>blankLine(state)</code> method on
  your mode that will get called whenever a blank line is passed
  over, so that it can update the parser state.</p>
 
  <p id="copyState">Because state object are mutated, and CodeMirror
  needs to keep valid versions of a state around so that it can
  restart a parse at any line, copies must be made of state objects.
  The default algorithm used is that a new state object is created,
  which gets all the properties of the old object. Any properties
  which hold arrays get a copy of these arrays (since arrays tend to
  be used as mutable stacks). When this is not correct, for example
  because a mode mutates non-array properties of its state object, a
  mode object should define a <code>copyState</code> method,
  which is given a state and should return a safe copy of that
  state.</p>
 
  <p id="compareStates">By default, CodeMirror will stop re-parsing
  a document as soon as it encounters a few lines that were
  highlighted the same in the old parse as in the new one. It is
  possible to provide an explicit way to test whether a state is
  equivalent to another one, which CodeMirror will use (instead of
  the unchanged-lines heuristic) to decide when to stop
  highlighting. You do this by providing
  a <code>compareStates</code> method on your mode object, which
  takes two state arguments and returns a boolean indicating whether
  they are equivalent. See the XML mode, which uses this to provide
  reliable highlighting of bad closing tags, as an example.</p>
 
  <p id="indent">If you want your mode to provide smart indentation
  (though the <a href="#indentLine"><code>indentLine</code></a>
  method and the <code>indentAuto</code>
  and <code>newlineAndIndent</code> commands, which keys can be
  <a href="#option_extraKeys">bound</a> to), you must define
  an <code>indent(state, textAfter)</code> method on your mode
  object.</p>
 
  <p>The indentation method should inspect the given state object,
  and optionally the <code>textAfter</code> string, which contains
  the text on the line that is being indented, and return an
  integer, the amount of spaces to indent. It should usually take
  the <a href="#option_indentUnit"><code>indentUnit</code></a>
  option into account.</p>
 
  <p id="electricChars">Finally, a mode may define
  an <code>electricChars</code> property, which should hold a string
  containing all the characters that should trigger the behaviour
  described for
  the <a href="#option_electricChars"><code>electricChars</code></a>
  option.</p>
 
  <p>So, to summarize, a mode <em>must</em> provide
  a <code>token</code> method, and it <em>may</em>
  provide <code>startState</code>, <code>copyState</code>,
  <code>compareStates</code>, and <code>indent</code> methods. For
  an example of a trivial mode, see
  the <a href="../mode/diff/diff.js">diff mode</a>, for a more involved
  example, see the <a href="../mode/clike/clike.js">C-like
  mode</a>.</p>
 
  <p>Sometimes, it is useful for modes to <em>nest</em>—to have one
  mode delegate work to another mode. An example of this kind of
  mode is the <a href="../mode/htmlmixed/htmlmixed.js">mixed-mode HTML
  mode</a>. To implement such nesting, it is usually necessary to
  create mode objects and copy states yourself. To create a mode
  object, there are <code>CodeMirror.getMode(options,
  parserConfig)</code>, where the first argument is a configuration
  object as passed to the mode constructor function, and the second
  argument is a mode specification as in
  the <a href="#option_mode"><code>mode</code></a> option. To copy a
  state object, call <code>CodeMirror.copyState(mode, state)</code>,
  where <code>mode</code> is the mode that created the given
  state.</p>
 
  <p>To make indentation work properly in a nested parser, it is
  advisable to give the <code>startState</code> method of modes that
  are intended to be nested an optional argument that provides the
  base indentation for the block of code. The JavaScript and CSS
  parser do this, for example, to allow JavaScript and CSS code
  inside the mixed-mode HTML mode to be properly indented.</p>
 
  <p>Finally, it is possible to associate your mode, or a certain
  configuration of your mode, with
  a <a href="http://en.wikipedia.org/wiki/MIME">MIME</a> type. For
  example, the JavaScript mode associates itself
  with <code>text/javascript</code>, and its JSON variant
  with <code>application/json</code>. To do this,
  call <code>CodeMirror.defineMIME(mime, modeSpec)</code>,
  where <code>modeSpec</code> can be a string or object specifying a
  mode, as in the <a href="#option_mode"><code>mode</code></a>
  option.</p>
 
  </div><div class="rightsmall blk">
 
  <h2>Contents</h2>
 
  <ul>
  <li><a href="#overview">Overview</a></li>
  <li><a href="#usage">Basic Usage</a></li>
  <li><a href="#config">Configuration</a></li>
  <li><a href="#styling">Customized Styling</a></li>
  <li><a href="#api">Programming API</a></li>
  <li><a href="#addons">Add-ons</a></li>
  <li><a href="#modeapi">Writing CodeMirror Modes</a></li>
  </ul>
 
  </div></div>
 
  <div style="height: 2em">&nbsp;</div>
 
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror</title>
  <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Sans|Droid+Sans:bold"/>
  <link rel="stylesheet" type="text/css" href="docs.css"/>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <link rel="alternate" href="http://twitter.com/statuses/user_timeline/242283288.rss" type="application/rss+xml"/>
  </head>
  <body>
 
  <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMirror</a></h1>
 
  <pre class="grey">
  <img src="baboon.png" class="logo" alt="logo"/>/* Old release history */
 
  </pre>
  <p class="rel">07-06-2011: <a href="http://codemirror.net/codemirror-2.1.zip">Version 2.1</a>:</p>
  <p class="rel-note">Add
  a <a href="manual.html#option_theme">theme</a> system
  (<a href="../demo/theme.html">demo</a>). Note that this is not
  backwards-compatible—you'll have to update your styles and
  modes!</p>
 
  <p class="rel">07-06-2011: <a href="http://codemirror.net/codemirror-2.02.zip">Version 2.02</a>:</p>
  <ul class="rel-note">
  <li>Add a <a href="../mode/lua/index.html">Lua mode</a>.</li>
  <li>Fix reverse-searching for a regexp.</li>
  <li>Empty lines can no longer break highlighting.</li>
  <li>Rework scrolling model (the outer wrapper no longer does the scrolling).</li>
  <li>Solve horizontal jittering on long lines.</li>
  <li>Add <a href="../demo/runmode.html">runmode.js</a>.</li>
  <li>Immediately re-highlight text when typing.</li>
  <li>Fix problem with 'sticking' horizontal scrollbar.</li>
  </ul>
 
  <p class="rel">26-05-2011: <a href="http://codemirror.net/codemirror-2.01.zip">Version 2.01</a>:</p>
  <ul class="rel-note">
  <li>Add a <a href="../mode/smalltalk/index.html">Smalltalk mode</a>.</li>
  <li>Add a <a href="../mode/rst/index.html">reStructuredText mode</a>.</li>
  <li>Add a <a href="../mode/python/index.html">Python mode</a>.</li>
  <li>Add a <a href="../mode/plsql/index.html">PL/SQL mode</a>.</li>
  <li><code>coordsChar</code> now works</li>
  <li>Fix a problem where <code>onCursorActivity</code> interfered with <code>onChange</code>.</li>
  <li>Fix a number of scrolling and mouse-click-position glitches.</li>
  <li>Pass information about the changed lines to <code>onChange</code>.</li>
  <li>Support cmd-up/down on OS X.</li>
  <li>Add triple-click line selection.</li>
  <li>Don't handle shift when changing the selection through the API.</li>
  <li>Support <code>"nocursor"</code> mode for <code>readOnly</code> option.</li>
  <li>Add an <code>onHighlightComplete</code> option.</li>
  <li>Fix the context menu for Firefox.</li>
  </ul>
 
  <p class="rel">28-03-2011: <a href="http://codemirror.net/codemirror-2.0.zip">Version 2.0</a>:</p>
  <p class="rel-note">CodeMirror 2 is a complete rewrite that's
  faster, smaller, simpler to use, and less dependent on browser
  quirks. See <a href="internals.html">this</a>
  and <a href="http://groups.google.com/group/codemirror/browse_thread/thread/5a8e894024a9f580">this</a>
  for more information.</a>
 
  <p class="rel">28-03-2011: <a href="http://codemirror.net/codemirror-1.0.zip">Version 1.0</a>:</p>
  <ul class="rel-note">
  <li>Fix error when debug history overflows.</li>
  <li>Refine handling of C# verbatim strings.</li>
  <li>Fix some issues with JavaScript indentation.</li>
  </ul>
 
  <p class="rel">22-02-2011: <a href="https://github.com/marijnh/codemirror2/tree/beta2">Version 2.0 beta 2</a>:</p>
  <p class="rel-note">Somewhate more mature API, lots of bugs shaken out.</a>
 
  <p class="rel">17-02-2011: <a href="http://codemirror.net/codemirror-0.94.zip">Version 0.94</a>:</p>
  <ul class="rel-note">
  <li><code>tabMode: "spaces"</code> was modified slightly (now indents when something is selected).</li>
  <li>Fixes a bug that would cause the selection code to break on some IE versions.</li>
  <li>Disabling spell-check on WebKit browsers now works.</li>
  </ul>
 
  <p class="rel">08-02-2011: <a href="http://codemirror.net/">Version 2.0 beta 1</a>:</p>
  <p class="rel-note">CodeMirror 2 is a complete rewrite of
  CodeMirror, no longer depending on an editable frame.</p>
 
  <p class="rel">19-01-2011: <a href="http://codemirror.net/codemirror-0.93.zip">Version 0.93</a>:</p>
  <ul class="rel-note">
  <li>Added a <a href="contrib/regex/index.html">Regular Expression</a> parser.</li>
  <li>Fixes to the PHP parser.</li>
  <li>Support for regular expression in search/replace.</li>
  <li>Add <code>save</code> method to instances created with <code>fromTextArea</code>.</li>
  <li>Add support for MS T-SQL in the SQL parser.</li>
  <li>Support use of CSS classes for highlighting brackets.</li>
  <li>Fix yet another hang with line-numbering in hidden editors.</li>
  </ul>
 
  <p class="rel">17-12-2010: <a href="http://codemirror.net/codemirror-0.92.zip">Version 0.92</a>:</p>
  <ul class="rel-note">
  <li>Make CodeMirror work in XHTML documents.</li>
  <li>Fix bug in handling of backslashes in Python strings.</li>
  <li>The <code>styleNumbers</code> option is now officially
  supported and documented.</li>
  <li><code>onLineNumberClick</code> option added.</li>
  <li>More consistent names <code>onLoad</code> and
  <code>onCursorActivity</code> callbacks. Old names still work, but
  are deprecated.</li>
  <li>Add a <a href="contrib/freemarker/index.html">Freemarker</a> mode.</li>
  </ul>
 
  <p class="rel">11-11-2010: <a
  href="http://codemirror.net/codemirror-0.91.zip">Version 0.91</a>:</p>
  <ul class="rel-note">
  <li>Adds support for <a href="contrib/java">Java</a>.</li>
  <li>Small additions to the <a href="contrib/php">PHP</a> and <a href="contrib/sql">SQL</a> parsers.</li>
  <li>Work around various <a href="https://bugs.webkit.org/show_bug.cgi?id=47806">Webkit</a> <a href="https://bugs.webkit.org/show_bug.cgi?id=23474">issues</a>.</li>
  <li>Fix <code>toTextArea</code> to update the code in the textarea.</li>
  <li>Add a <code>noScriptCaching</code> option (hack to ease development).</li>
  <li>Make sub-modes of <a href="mixedtest.html">HTML mixed</a> mode configurable.</li>
  </ul>
 
  <p class="rel">02-10-2010: <a
  href="http://codemirror.net/codemirror-0.9.zip">Version 0.9</a>:</p>
  <ul class="rel-note">
  <li>Add support for searching backwards.</li>
  <li>There are now parsers for <a href="contrib/scheme/index.html">Scheme</a>, <a href="contrib/xquery/index.html">XQuery</a>, and <a href="contrib/ometa/index.html">OmetaJS</a>.</li>
  <li>Makes <code>height: "dynamic"</code> more robust.</li>
  <li>Fixes bug where paste did not work on OS X.</li>
  <li>Add a <code>enterMode</code> and <code>electricChars</code> options to make indentation even more customizable.</li>
  <li>Add <code>firstLineNumber</code> option.</li>
  <li>Fix bad handling of <code>@media</code> rules by the CSS parser.</li>
  <li>Take a new, more robust approach to working around the invisible-last-line bug in WebKit.</li>
  </ul>
 
  <p class="rel">22-07-2010: <a
  href="http://codemirror.net/codemirror-0.8.zip">Version 0.8</a>:</p>
  <ul class="rel-note">
  <li>Add a <code>cursorCoords</code> method to find the screen
  coordinates of the cursor.</li>
  <li>A number of fixes and support for more syntax in the PHP parser.</li>
  <li>Fix indentation problem with JSON-mode JS parser in Webkit.</li>
  <li>Add a <a href="compress.html">minification</a> UI.</li>
  <li>Support a <code>height: dynamic</code> mode, where the editor's
  height will adjust to the size of its content.</li>
  <li>Better support for IME input mode.</li>
  <li>Fix JavaScript parser getting confused when seeing a no-argument
  function call.</li>
  <li>Have CSS parser see the difference between selectors and other
  identifiers.</li>
  <li>Fix scrolling bug when pasting in a horizontally-scrolled
  editor.</li>
  <li>Support <code>toTextArea</code> method in instances created with
  <code>fromTextArea</code>.</li>
  <li>Work around new Opera cursor bug that causes the cursor to jump
  when pressing backspace at the end of a line.</li>
  </ul>
 
  <p class="rel">27-04-2010: <a
  href="http://codemirror.net/codemirror-0.67.zip">Version
  0.67</a>:</p>
  <p class="rel-note">More consistent page-up/page-down behaviour
  across browsers. Fix some issues with hidden editors looping forever
  when line-numbers were enabled. Make PHP parser parse
  <code>"\\"</code> correctly. Have <code>jumpToLine</code> work on
  line handles, and add <code>cursorLine</code> function to fetch the
  line handle where the cursor currently is. Add new
  <code>setStylesheet</code> function to switch style-sheets in a
  running editor.</p>
 
  <p class="rel">01-03-2010: <a
  href="http://codemirror.net/codemirror-0.66.zip">Version
  0.66</a>:</p>
  <p class="rel-note">Adds <code>removeLine</code> method to API.
  Introduces the <a href="contrib/plsql/index.html">PLSQL parser</a>.
  Marks XML errors by adding (rather than replacing) a CSS class, so
  that they can be disabled by modifying their style. Fixes several
  selection bugs, and a number of small glitches.</p>
 
  <p class="rel">12-11-2009: <a
  href="http://codemirror.net/codemirror-0.65.zip">Version
  0.65</a>:</p>
  <p class="rel-note">Add support for having both line-wrapping and
  line-numbers turned on, make paren-highlighting style customisable
  (<code>markParen</code> and <code>unmarkParen</code> config
  options), work around a selection bug that Opera
  <em>re</em>introduced in version 10.</p>
 
  <p class="rel">23-10-2009: <a
  href="http://codemirror.net/codemirror-0.64.zip">Version
  0.64</a>:</p>
  <p class="rel-note">Solves some issues introduced by the
  paste-handling changes from the previous release. Adds
  <code>setSpellcheck</code>, <code>setTextWrapping</code>,
  <code>setIndentUnit</code>, <code>setUndoDepth</code>,
  <code>setTabMode</code>, and <code>setLineNumbers</code> to
  customise a running editor. Introduces an <a
  href="contrib/sql/index.html">SQL</a> parser. Fixes a few small
  problems in the <a href="contrib/python/index.html">Python</a>
  parser. And, as usual, add workarounds for various newly discovered
  browser incompatibilities.</p>
 
  <p class="rel"><em>31-08-2009</em>: <a
  href="http://codemirror.net/codemirror-0.63.zip">Version
  0.63</a>:</p>
  <p class="rel-note"> Overhaul of paste-handling (less fragile), fixes for several
  serious IE8 issues (cursor jumping, end-of-document bugs) and a number
  of small problems.</p>
 
  <p class="rel"><em>30-05-2009</em>: <a
  href="http://codemirror.net/codemirror-0.62.zip">Version
  0.62</a>:</p>
  <p class="rel-note">Introduces <a href="contrib/python/index.html">Python</a>
  and <a href="contrib/lua/index.html">Lua</a> parsers. Add
  <code>setParser</code> (on-the-fly mode changing) and
  <code>clearHistory</code> methods. Make parsing passes time-based
  instead of lines-based (see the <code>passTime</code> option).</p>
 
  </body></html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Reporting Bugs</title>
  <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Sans|Droid+Sans:bold"/>
  <link rel="stylesheet" type="text/css" href="docs.css"/>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <style>li { margin-top: 1em; }</style>
  </head>
  <body>
 
  <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMirror</a></h1>
 
  <pre class="grey">
  <img src="baboon.png" class="logo" alt="logo"/>/* Reporting bugs
  effectively */
  </pre>
 
  <div class="left">
 
  <p>So you found a problem in CodeMirror. By all means, report it! Bug
  reports from users are the main drive behind improvements to
  CodeMirror. But first, please read over these points:</p>
 
  <ol>
  <li>CodeMirror is maintained by volunteers. They don't owe you
  anything, so be polite. Reports with an indignant or belligerent
  tone tend to be moved to the bottom of the pile.</li>
 
  <li>Include information about <strong>the browser in which the
  problem occurred</strong>. Even if you tested several browsers, and
  the problem occurred in all of them, mention this fact in the bug
  report. Also include browser version numbers and the operating
  system that you're on.</li>
 
  <li>Mention which release of CodeMirror you're using. Preferably,
  try also with the current development snapshot, to ensure the
  problem has not already been fixed.</li>
 
  <li>Mention very precisely what went wrong. "X is broken" is not a
  good bug report. What did you expect to happen? What happened
  instead? Describe the exact steps a maintainer has to take to make
  the problem occur. We can not fix something that we can not
  observe.</li>
 
  <li>If the problem can not be reproduced in any of the demos
  included in the CodeMirror distribution, please provide an HTML
  document that demonstrates the problem. The best way to do this is
  to go to <a href="http://jsbin.com/ihunin/edit">jsbin.com</a>, enter
  it there, press save, and include the resulting link in your bug
  report.</li>
  </ol>
 
  </div>
 
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Upgrading to v2.2</title>
  <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Sans|Droid+Sans:bold"/>
  <link rel="stylesheet" type="text/css" href="docs.css"/>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  </head>
  <body>
 
  <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMirror</a></h1>
 
  <pre class="grey">
  <img src="baboon.png" class="logo" alt="logo"/>/* Upgrading to v2.2
  */
  </pre>
 
  <div class="left">
 
  <p>There are a few things in the 2.2 release that require some care
  when upgrading.</p>
 
  <h2>No more default.css</h2>
 
  <p>The default theme is now included
  in <a href="../lib/codemirror.css"><code>codemirror.css</code></a>, so
  you do not have to included it separately anymore. (It was tiny, so
  even if you're not using it, the extra data overhead is negligible.)
 
  <h2>Different key customization</h2>
 
  <p>CodeMirror has moved to a system
  where <a href="manual.html#option_keyMap">keymaps</a> are used to
  bind behavior to keys. This means <a href="../demo/emacs.html">custom
  bindings</a> are now possible.</p>
 
  <p>Three options that influenced key
  behavior, <code>tabMode</code>, <code>enterMode</code>,
  and <code>smartHome</code>, are no longer supported. Instead, you can
  provide custom bindings to influence the way these keys act. This is
  done through the
  new <a href="manual.html#option_extraKeys"><code>extraKeys</code></a>
  option, which can hold an object mapping key names to functionality. A
  simple example would be:</p>
 
  <pre> extraKeys: {
  "Ctrl-S": function(instance) { saveText(instance.getValue()); },
  "Ctrl-/": "undo"
  }</pre>
 
  <p>Keys can be mapped either to functions, which will be given the
  editor instance as argument, or to strings, which are mapped through
  functions through the <code>CodeMirror.commands</code> table, which
  contains all the built-in editing commands, and can be inspected and
  extended by external code.</p>
 
  <p>By default, the <code>Home</code> key is bound to
  the <code>"goLineStartSmart"</code> command, which moves the cursor to
  the first non-whitespace character on the line. You can set do this to
  make it always go to the very start instead:</p>
 
  <pre> extraKeys: {"Home": "goLineStart"}</pre>
 
  <p>Similarly, <code>Enter</code> is bound
  to <code>"newLineAndIndent"</code> by default. You can bind it to
  something else to get different behavior. To disable special handling
  completely and only get a newline character inserted, you can bind it
  to <code>false</code>:</p>
 
  <pre> extraKeys: {"Enter": false}</pre>
 
  <p>The same works for <code>Tab</code>. If you don't want CodeMirror
  to handle it, bind it to <code>false</code>. The default behaviour is
  to indent the current line more (<code>"indentMore"</code> command),
  and indent it less when shift is held (<code>"indentLess"</code>).
  There are also <code>"indentAuto"</code> (smart indent)
  and <code>"insertTab"</code> commands provided for alternate
  behaviors. Or you can write your own handler function to do something
  different altogether.</p>
 
  <h2>Tabs</h2>
 
  <p>Handling of tabs changed completely. The display width of tabs can
  now be set with the <code>tabSize</code> option, and tabs can
  be <a href="../demo/visibletabs.html">styled</a> by setting CSS rules
  for the <code>cm-tab</code> class.</p>
 
  <p>The default width for tabs is now 4, as opposed to the 8 that is
  hard-wired into browsers. If you are relying on 8-space tabs, make
  sure you explicitly set <code>tabSize: 8</code> in your options.</p>
 
  </div>
 
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror</title>
  <link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Droid+Sans|Droid+Sans:bold"/>
  <link rel="stylesheet" type="text/css" href="doc/docs.css"/>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <link rel="alternate" href="http://twitter.com/statuses/user_timeline/242283288.rss" type="application/rss+xml"/>
  </head>
  <body>
 
  <h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMirror</a></h1>
 
  <pre class="grey">
  <img src="doc/baboon.png" class="logo" alt="logo"/>/* In-browser code editing
  made bearable */
  </pre>
 
  <div class="clear"><div class="left blk">
 
  <p style="margin-top: 0">CodeMirror is a JavaScript library that can
  be used to create a relatively pleasant editor interface for
  code-like content &#x2015; computer programs, HTML markup, and
  similar. If a mode has been written for the language you are
  editing, the code will be coloured, and the editor will optionally
  help you with indentation.</p>
 
  <p>This is the project page for CodeMirror 2, the currently more
  actively developed, and recommended
  version. <a href="1/index.html">CodeMirror 1</a> is still available
  from here.</p>
 
  <div class="clear"><div class="left1 blk">
 
  <h2 style="margin-top: 0">Supported modes:</h2>
 
  <ul>
  <li><a href="mode/clike/index.html">C, Java, C#, and similar</a></li>
  <li><a href="mode/clojure/index.html">Clojure</a></li>
  <li><a href="mode/coffeescript/index.html">CoffeeScript</a></li>
  <li><a href="mode/css/index.html">CSS</a></li>
  <li><a href="mode/diff/index.html">diff</a></li>
  <li><a href="mode/groovy/index.html">Groovy</a></li>
  <li><a href="mode/haskell/index.html">Haskell</a></li>
  <li><a href="mode/htmlembedded/index.html">HTML embedded scripts</a></li>
  <li><a href="mode/htmlmixed/index.html">HTML mixed-mode</a></li>
  <li><a href="mode/javascript/index.html">JavaScript</a></li>
  <li><a href="mode/jinja2/index.html">Jinja2</a></li>
  <li><a href="mode/lua/index.html">Lua</a></li>
  <li><a href="mode/markdown/index.html">Markdown</a> (<a href="mode/gfm/index.html">Github-flavour</a>)</li>
  <li><a href="mode/ntriples/index.html">NTriples</a></li>
  <li><a href="mode/pascal/index.html">Pascal</a></li>
  <li><a href="mode/perl/index.html">Perl</a></li>
  <li><a href="mode/php/index.html">PHP</a></li>
  <li><a href="mode/plsql/index.html">PL/SQL</a></li>
  <li><a href="mode/python/index.html">Python</a></li>
  <li><a href="mode/r/index.html">R</a></li>
  <li>RPM <a href="mode/rpm/spec/index.html">spec</a> and <a href="mode/rpm/changes/index.html">changelog</a></li>
  <li><a href="mode/rst/index.html">reStructuredText</a></li>
  <li><a href="mode/ruby/index.html">Ruby</a></li>
  <li><a href="mode/rust/index.html">Rust</a></li>
  <li><a href="mode/scheme/index.html">Scheme</a></li>
  <li><a href="mode/smalltalk/index.html">Smalltalk</a></li>
  <li><a href="mode/sparql/index.html">SPARQL</a></li>
  <li><a href="mode/stex/index.html">sTeX, LaTeX</a></li>
  <li><a href="mode/tiddlywiki/index.html">Tiddlywiki</a></li>
  <li><a href="mode/velocity/index.html">Velocity</a></li>
  <li><a href="mode/xml/index.html">XML/HTML</a> (<a href="mode/xmlpure/index.html">alternative XML</a>)</li>
  <li><a href="mode/yaml/index.html">YAML</a></li>
  </ul>
 
  </div><div class="left2 blk">
 
  <h2 style="margin-top: 0">Usage demos:</h2>
 
  <ul>
  <li><a href="demo/complete.html">Autocompletion</a></li>
  <li><a href="demo/mustache.html">Mode overlays</a></li>
  <li><a href="demo/search.html">Search/replace</a></li>
  <li><a href="demo/folding.html">Code folding</a></li>
  <li><a href="demo/preview.html">HTML editor with preview</a></li>
  <li><a href="demo/resize.html">Auto-resizing editor</a></li>
  <li><a href="demo/marker.html">Setting breakpoints</a></li>
  <li><a href="demo/activeline.html">Highlighting the current line</a></li>
  <li><a href="demo/theme.html">Theming</a></li>
  <li><a href="demo/runmode.html">Stand-alone highlighting</a></li>
  <li><a href="demo/fullscreen.html">Full-screen editing</a></li>
  <li><a href="demo/changemode.html">Mode auto-changing</a></li>
  <li><a href="demo/visibletabs.html">Visible tabs</a></li>
  <li><a href="demo/formatting.html">Autoformatting of code</a></li>
  <li><a href="demo/emacs.html">Emacs keybindings</a></li>
  <li><a href="demo/vim.html">Vim keybindings</a></li>
  </ul>
 
  <h2>Real-world uses:</h2>
 
  <ul>
  <li><a href="http://jsbin.com">jsbin.com</a> (JS playground)</li>
  <li><a href="http://buzzard.ups.edu/">Sage demo</a> (math system)</li>
  <li><a href="http://www.sourcelair.com/">sourceLair</a> (online IDE)</li>
  <li><a href="http://eloquentjavascript.net/chapter1.html">Eloquent JavaScript</a> (book)</a></li>
  <li><a href="http://www.mergely.com/">Mergely</a> (interactive diffing)</li>
  <li><a href="http://paperjs.org/">Paper.js</a> (graphics scripting)</li>
  <li><a href="http://www.wescheme.org/">WeScheme</a> (learning tool)</li>
  <li><a href="http://webglplayground.net/">WebGL playground</a></li>
  <li><a href="http://ql.io/">ql.io</a> (http API query helper)</li>
  <li><a href="http://elm-lang.org/Examples.elm">Elm language examples</a></li>
  </ul>
 
  </div></div>
 
  <h2 id="code">Getting the code</h2>
 
  <p>All of CodeMirror is released under a <a
  href="LICENSE">MIT-style</a> license. To get it, you can download
  the <a href="http://codemirror.net/codemirror.zip">latest
  release</a> or the current <a
  href="http://codemirror.net/codemirror2-latest.zip">development
  snapshot</a> as zip files. To create a custom minified script file,
  you can use the <a href="doc/compress.html">compression API</a>.</p>
 
  <p>We use <a href="http://git-scm.com/">git</a> for version control.
  The main repository can be fetched in this way:</p>
 
  <pre class="code">git clone http://marijnhaverbeke.nl/git/codemirror2</pre>
 
  <p>CodeMirror can also be found on GitHub at <a
  href="http://github.com/marijnh/CodeMirror2">marijnh/CodeMirror2</a>.
  If you plan to hack on the code and contribute patches, the best way
  to do it is to create a GitHub fork, and send pull requests.</p>
 
  <h2 id="documention">Documentation</h2>
 
  <p>The <a href="doc/manual.html">manual</a> is your first stop for
  learning how to use this library. It starts with a quick explanation
  of how to use the editor, and then describes the API in detail.</p>
 
  <p>For those who want to learn more about the code, there is
  an <a href="doc/internals.html">overview of the internals</a> available.
  The <a href="http://github.com/marijnh/CodeMirror2">source code</a>
  itself is, for the most part, also well commented.</p>
 
  <h2 id="support">Support and bug reports</h2>
 
  <p>There is
  a <a href="http://groups.google.com/group/codemirror">Google
  group</a> (a sort of mailing list/newsgroup thing) for discussion
  and news related to CodeMirror. When reporting a bug,
  <a href="doc/reporting.html">read this first</a>. If you have
  a <a href="http://github.com">github</a> account,
  simply <a href="http://github.com/marijnh/CodeMirror2/issues">open
  an issue there</a>. Otherwise, post something to
  the <a href="http://groups.google.com/group/codemirror">group</a>,
  or e-mail me directly: <a href="mailto:marijnh@gmail.com">Marijn
  Haverbeke</a>.</p>
 
  <h2 id="supported">Supported browsers</h2>
 
  <p>The following browsers are able to run CodeMirror:</p>
 
  <ul>
  <li>Firefox 2 or higher</li>
  <li>Chrome, any version</li>
  <li>Safari 3 or higher</li>
  <li>Internet Explorer 6 or higher</li>
  <li>Opera 9 or higher (with some key-handling problems on OS X)</li>
  </ul>
 
  <p>I am not actively testing against every new browser release, and
  vendors have a habit of introducing bugs all the time, so I am
  relying on the community to tell me when something breaks.
  See <a href="#support">here</a> for information on how to contact
  me.</p>
 
  <h2 id="commercial">Commercial support</h2>
 
  <p>CodeMirror is developed and maintained by me, Marijn Haverbeke,
  in my own time. If your company is getting value out of CodeMirror,
  please consider purchasing a support contract.</p>
 
  <ul>
  <li>You'll be funding further work on CodeMirror.</li>
  <li>You ensure that you get a quick response when you have a
  problem, even when I am otherwise busy.</li>
  </ul>
 
  <p>CodeMirror support contracts exist in two
  forms—<strong>basic</strong> at €100 per month,
  and <strong>premium</strong> at €500 per
  month. <a href="mailto:marijnh@gmail.com">Contact me</a> for further
  information.</p>
 
  </div>
 
  <div class="right blk">
 
  <a href="http://codemirror.net/codemirror.zip" class="download">Download the latest release</a>
 
  <h2>Support CodeMirror</h2>
 
  <ul>
  <li>Donate
  (<span onclick="document.getElementById('paypal').submit();"
  class="quasilink">Paypal</span>
  or <span onclick="document.getElementById('bankinfo').style.display = 'block';"
  class="quasilink">bank</span>)</li>
  <li>Purchase <a href="#commercial">commercial support</a></li>
  </ul>
 
  <p id="bankinfo" style="display: none;">
  Bank: <i>Rabobank</i><br/>
  Country: <i>Netherlands</i><br/>
  SWIFT: <i>RABONL2U</i><br/>
  Account: <i>147850770</i><br/>
  Name: <i>Marijn Haverbeke</i><br/>
  IBAN: <i>NL26 RABO 0147 8507 70</i>
  </p>
 
  <h2>Releases:</h2>
 
  <p class="rel">20-12-2011: <a href="http://codemirror.net/codemirror-2.2.zip">Version 2.2</a>:</p>
 
  <ul class="rel-note">
  <li>Slightly incompatible API changes. Read <a href="doc/upgrade_v2.2.html">this</a>.</li>
  <li>New approach
  to <a href="doc/manual.html#option_extraKeys">binding</a> keys,
  support for <a href="doc/manual.html#option_keyMap">custom
  bindings</a>.</li>
  <li>Support for overwrite (insert).</li>
  <li><a href="doc/manual.html#option_tabSize">Custom-width</a>
  and <a href="demo/visibletabs.html">stylable</a> tabs.</li>
  <li>Moved more code into <a href="doc/manual.html#addons">add-on scripts</a>.</li>
  <li>Support for sane vertical cursor movement in wrapped lines.</li>
  <li>More reliable handling of
  editing <a href="doc/manual.html#markText">marked text</a>.</li>
  <li>Add minimal <a href="demo/emacs.html">emacs</a>
  and <a href="demo/vim.html">vim</a> bindings.</li>
  <li>Rename <code>coordsFromIndex</code>
  to <a href="doc/manual.html#posFromIndex"><code>posFromIndex</code></a>,
  add <a href="doc/manual.html#indexFromPos"><code>indexFromPos</code></a>
  method.</li>
  </ul>
 
  <p class="rel">21-11-2011: <a href="http://codemirror.net/codemirror-2.18.zip">Version 2.18</a>:</p>
  <p class="rel-note">Fixes <code>TextMarker.clear</code>, which is broken in 2.17.</p>
 
  <p class="rel">21-11-2011: <a href="http://codemirror.net/codemirror-2.17.zip">Version 2.17</a>:</p>
  <ul class="rel-note">
  <li>Add support for <a href="doc/manual.html#option_lineWrapping">line
  wrapping</a> and <a href="doc/manual.html#hideLine">code
  folding</a>.</li>
  <li>Add <a href="mode/gfm/index.html">Github-style Markdown</a> mode.</li>
  <li>Add <a href="theme/monokai.css">Monokai</a>
  and <a href="theme/rubyblue.css">Rubyblue</a> themes.</li>
  <li>Add <a href="doc/manual.html#setBookmark"><code>setBookmark</code></a> method.</li>
  <li>Move some of the demo code into reusable components
  under <a href="lib/util/"><code>lib/util</code></a>.</li>
  <li>Make screen-coord-finding code faster and more reliable.</li>
  <li>Fix drag-and-drop in Firefox.</li>
  <li>Improve support for IME.</li>
  <li>Speed up content rendering.</li>
  <li>Fix browser's built-in search in Webkit.</li>
  <li>Make double- and triple-click work in IE.</li>
  <li>Various fixes to modes.</li>
  </ul>
 
  <p class="rel">27-10-2011: <a href="http://codemirror.net/codemirror-2.16.zip">Version 2.16</a>:</p>
  <ul class="rel-note">
  <li>Add <a href="mode/perl/index.html">Perl</a>, <a href="mode/rust/index.html">Rust</a>, <a href="mode/tiddlywiki/index.html">TiddlyWiki</a>, and <a href="mode/groovy/index.html">Groovy</a> modes.</li>
  <li>Dragging text inside the editor now moves, rather than copies.</li>
  <li>Add a <a href="doc/manual.html#coordsFromIndex"><code>coordsFromIndex</code></a> method.</li>
  <li><strong>API change</strong>: <code>setValue</code> now no longer clears history. Use <a href="doc/manual.html#clearHistory"><code>clearHistory</code></a> for that.</li>
  <li><strong>API change</strong>: <a href="doc/manual.html#markText"><code>markText</code></a> now
  returns an object with <code>clear</code> and <code>find</code>
  methods. Marked text is now more robust when edited.</li>
  <li>Fix editing code with tabs in Internet Explorer.</li>
  </ul>
 
  <p class="rel">26-09-2011: <a href="http://codemirror.net/codemirror-2.15.zip">Version 2.15</a>:</p>
  <p class="rel-note">Fix bug that snuck into 2.14: Clicking the
  character that currently has the cursor didn't re-focus the
  editor.</p>
 
  <p class="rel">26-09-2011: <a href="http://codemirror.net/codemirror-2.14.zip">Version 2.14</a>:</p>
  <ul class="rel-note">
  <li>Add <a href="mode/clojure/index.html">Clojure</a>, <a href="mode/pascal/index.html">Pascal</a>, <a href="mode/ntriples/index.html">NTriples</a>, <a href="mode/jinja2/index.html">Jinja2</a>, and <a href="mode/markdown/index.html">Markdown</a> modes.</li>
  <li>Add <a href="theme/cobalt.css">Cobalt</a> and <a href="theme/eclipse.css">Eclipse</a> themes.</li>
  <li>Add a <a href="doc/manual.html#option_fixedGutter"><code>fixedGutter</code></a> option.</li>
  <li>Fix bug with <code>setValue</code> breaking cursor movement.</li>
  <li>Make gutter updates much more efficient.</li>
  <li>Allow dragging of text out of the editor (on modern browsers).</li>
  </ul>
 
  <p class="rel">23-08-2011: <a href="http://codemirror.net/codemirror-2.13.zip">Version 2.13</a>:</p>
  <ul class="rel-note">
  <li>Add <a href="mode/ruby/index.html">Ruby</a>, <a href="mode/r/index.html">R</a>, <a href="mode/coffeescript/index.html">CoffeeScript</a>, and <a href="mode/velocity/index.html">Velocity</a> modes.</li>
  <li>Add <a href="doc/manual.html#getGutterElement"><code>getGutterElement</code></a> to API.</li>
  <li>Several fixes to scrolling and positioning.</li>
  <li>Add <a href="doc/manual.html#option_smartHome"><code>smartHome</code></a> option.</li>
  <li>Add an experimental <a href="mode/xmlpure/index.html">pure XML</a> mode.</li>
  </ul>
 
  <p class="rel">25-07-2011: <a href="http://codemirror.net/codemirror-2.12.zip">Version 2.12</a>:</p>
  <ul class="rel-note">
  <li>Add a <a href="mode/sparql/index.html">SPARQL</a> mode.</li>
  <li>Fix bug with cursor jumping around in an unfocused editor in IE.</li>
  <li>Allow key and mouse events to bubble out of the editor. Ignore widget clicks.</li>
  <li>Solve cursor flakiness after undo/redo.</li>
  <li>Fix block-reindent ignoring the last few lines.</li>
  <li>Fix parsing of multi-line attrs in XML mode.</li>
  <li>Use <code>innerHTML</code> for HTML-escaping.</li>
  <li>Some fixes to indentation in C-like mode.</li>
  <li>Shrink horiz scrollbars when long lines removed.</li>
  <li>Fix width feedback loop bug that caused the width of an inner DIV to shrink.</li>
  </ul>
 
  <p class="rel">04-07-2011: <a href="http://codemirror.net/codemirror-2.11.zip">Version 2.11</a>:</p>
  <ul class="rel-note">
  <li>Add a <a href="mode/scheme/index.html">Scheme mode</a>.</li>
  <li>Add a <code>replace</code> method to search cursors, for cursor-preserving replacements.</li>
  <li>Make the <a href="mode/clike/index.html">C-like mode</a> mode more customizeable.</li>
  <li>Update XML mode to spot mismatched tags.</li>
  <li>Add <code>getStateAfter</code> API and <code>compareState</code> mode API methods for finer-grained mode magic.</li>
  <li>Add a <code>getScrollerElement</code> API method to manipulate the scrolling DIV.</li>
  <li>Fix drag-and-drop for Firefox.</li>
  <li>Add a C# configuration for the <a href="mode/clike/index.html">C-like mode</a>.</li>
  <li>Add <a href="demo/fullscreen.html">full-screen editing</a> and <a href="demo/changemode.html">mode-changing</a> demos.</li>
  </ul>
 
  <p><a href="doc/oldrelease.html">Older releases...</a></p>
 
  </div></div>
 
  <div style="height: 2em">&nbsp;</div>
 
  <form action="https://www.paypal.com/cgi-bin/webscr" method="post" id="paypal">
  <input type="hidden" name="cmd" value="_s-xclick"/>
  <input type="hidden" name="hosted_button_id" value="3FVHS5FGUY7CC"/>
  </form>
 
  </body>
  </html>
 
 
  // TODO number prefixes
  (function() {
  // Really primitive kill-ring implementation.
  var killRing = [];
  function addToRing(str) {
  killRing.push(str);
  if (killRing.length > 50) killRing.shift();
  }
  function getFromRing() { return killRing[killRing.length - 1] || ""; }
  function popFromRing() { if (killRing.length > 1) killRing.pop(); return getFromRing(); }
 
  CodeMirror.keyMap.emacs = {
  "Ctrl-X": function(cm) {cm.setOption("keyMap", "emacs-Ctrl-X");},
  "Ctrl-W": function(cm) {addToRing(cm.getSelection()); cm.replaceSelection("");},
  "Ctrl-Alt-W": function(cm) {addToRing(cm.getSelection()); cm.replaceSelection("");},
  "Alt-W": function(cm) {addToRing(cm.getSelection());},
  "Ctrl-Y": function(cm) {cm.replaceSelection(getFromRing());},
  "Alt-Y": function(cm) {cm.replaceSelection(popFromRing());},
  "Ctrl-/": "undo", "Shift-Ctrl--": "undo", "Shift-Alt-,": "goDocStart", "Shift-Alt-.": "goDocEnd",
  "Ctrl-S": "findNext", "Ctrl-R": "findPrev", "Ctrl-G": "clearSearch", "Shift-Alt-5": "replace",
  "Ctrl-Z": "undo", "Cmd-Z": "undo",
  fallthrough: ["basic", "emacsy"]
  };
 
  CodeMirror.keyMap["emacs-Ctrl-X"] = {
  "Ctrl-S": "save", "Ctrl-W": "save", "S": "saveAll", "F": "open", "U": "undo", "K": "close",
  auto: "emacs", catchall: function(cm) {/*ignore*/}
  };
  })();
 
  (function() {
  var count = "";
  function pushCountDigit(digit) { return function(cm) {count += digit;} }
  function popCount() { var i = parseInt(count); count = ""; return i || 1; }
  function countTimes(func) {
  if (typeof func == "string") func = CodeMirror.commands[func];
  return function(cm) { for (var i = 0, c = popCount(); i < c; ++i) func(cm); }
  }
 
  function iterObj(o, f) {
  for (var prop in o) if (o.hasOwnProperty(prop)) f(prop, o[prop]);
  }
 
  var word = [/\w/, /[^\w\s]/], bigWord = [/\S/];
  function findWord(line, pos, dir, regexps) {
  var stop = 0, next = -1;
  if (dir > 0) { stop = line.length; next = 0; }
  var start = stop, end = stop;
  // Find bounds of next one.
  outer: for (; pos != stop; pos += dir) {
  for (var i = 0; i < regexps.length; ++i) {
  if (regexps[i].test(line.charAt(pos + next))) {
  start = pos;
  for (; pos != stop; pos += dir) {
  if (!regexps[i].test(line.charAt(pos + next))) break;
  }
  end = pos;
  break outer;
  }
  }
  }
  return {from: Math.min(start, end), to: Math.max(start, end)};
  }
  function moveToWord(cm, regexps, dir, where) {
  var cur = cm.getCursor(), ch = cur.ch, line = cm.getLine(cur.line), word;
  while (true) {
  word = findWord(line, ch, dir, regexps);
  ch = word[where == "end" ? "to" : "from"];
  if (ch == cur.ch && word.from != word.to) ch = word[dir < 0 ? "from" : "to"];
  else break;
  }
  cm.setCursor(cur.line, word[where == "end" ? "to" : "from"], true);
  }
 
  var map = CodeMirror.keyMap.vim = {
  "0": function(cm) {count.length > 0 ? pushCountDigit("0")(cm) : CodeMirror.commands.goLineStart(cm);},
  "I": function(cm) {popCount(); cm.setOption("keyMap", "vim-insert");},
  "G": function(cm) {cm.setOption("keyMap", "vim-prefix-g");},
  catchall: function(cm) {/*ignore*/}
  };
  // Add bindings for number keys
  for (var i = 1; i < 10; ++i) map[i] = pushCountDigit(i);
  // Add bindings that are influenced by number keys
  iterObj({"H": "goColumnLeft", "L": "goColumnRight", "J": "goLineDown", "K": "goLineUp",
  "Left": "goColumnLeft", "Right": "goColumnRight", "Down": "goLineDown", "Up": "goLineUp",
  "Backspace": "goCharLeft", "Space": "goCharRight",
  "B": function(cm) {moveToWord(cm, word, -1, "end");},
  "E": function(cm) {moveToWord(cm, word, 1, "end");},
  "W": function(cm) {moveToWord(cm, word, 1, "start");},
  "Shift-B": function(cm) {moveToWord(cm, bigWord, -1, "end");},
  "Shift-E": function(cm) {moveToWord(cm, bigWord, 1, "end");},
  "Shift-W": function(cm) {moveToWord(cm, bigWord, 1, "start");},
  "U": "undo", "Ctrl-R": "redo", "Shift-4": "goLineEnd"},
  function(key, cmd) { map[key] = countTimes(cmd); });
 
  CodeMirror.keyMap["vim-prefix-g"] = {
  "E": countTimes(function(cm) { moveToWord(cm, word, -1, "start");}),
  "Shift-E": countTimes(function(cm) { moveToWord(cm, bigWord, -1, "start");}),
  auto: "vim", catchall: function(cm) {/*ignore*/}
  };
 
  CodeMirror.keyMap["vim-insert"] = {
  "Esc": function(cm) {cm.setOption("keyMap", "vim");},
  fallthrough: ["default"]
  };
  })();
 
  .CodeMirror {
  line-height: 1em;
  font-family: monospace;
  }
 
  .CodeMirror-scroll {
  overflow: auto;
  height: 300px;
  /* This is needed to prevent an IE[67] bug where the scrolled content
  is visible outside of the scrolling box. */
  position: relative;
  }
 
  .CodeMirror-gutter {
  position: absolute; left: 0; top: 0;
  z-index: 10;
  background-color: #f7f7f7;
  border-right: 1px solid #eee;
  min-width: 2em;
  height: 100%;
  }
  .CodeMirror-gutter-text {
  color: #aaa;
  text-align: right;
  padding: .4em .2em .4em .4em;
  white-space: pre !important;
  }
  .CodeMirror-lines {
  padding: .4em;
  }
 
  .CodeMirror pre {
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  border-width: 0; margin: 0; padding: 0; background: transparent;
  font-family: inherit;
  font-size: inherit;
  padding: 0; margin: 0;
  white-space: pre;
  word-wrap: normal;
  }
 
  .CodeMirror-wrap pre {
  word-wrap: break-word;
  white-space: pre-wrap;
  }
  .CodeMirror-wrap .CodeMirror-scroll {
  overflow-x: hidden;
  }
 
  .CodeMirror textarea {
  outline: none !important;
  }
 
  .CodeMirror pre.CodeMirror-cursor {
  z-index: 10;
  position: absolute;
  visibility: hidden;
  border-left: 1px solid black;
  }
  .CodeMirror-focused pre.CodeMirror-cursor {
  visibility: visible;
  }
 
  span.CodeMirror-selected { background: #d9d9d9; }
  .CodeMirror-focused span.CodeMirror-selected { background: #d2dcf8; }
 
  .CodeMirror-searching {background: #ffa;}
 
  /* Default theme */
 
  .cm-s-default span.cm-keyword {color: #708;}
  .cm-s-default span.cm-atom {color: #219;}
  .cm-s-default span.cm-number {color: #164;}
  .cm-s-default span.cm-def {color: #00f;}
  .cm-s-default span.cm-variable {color: black;}
  .cm-s-default span.cm-variable-2 {color: #05a;}
  .cm-s-default span.cm-variable-3 {color: #085;}
  .cm-s-default span.cm-property {color: black;}
  .cm-s-default span.cm-operator {color: black;}
  .cm-s-default span.cm-comment {color: #a50;}
  .cm-s-default span.cm-string {color: #a11;}
  .cm-s-default span.cm-string-2 {color: #f50;}
  .cm-s-default span.cm-meta {color: #555;}
  .cm-s-default span.cm-error {color: #f00;}
  .cm-s-default span.cm-qualifier {color: #555;}
  .cm-s-default span.cm-builtin {color: #30a;}
  .cm-s-default span.cm-bracket {color: #cc7;}
  .cm-s-default span.cm-tag {color: #170;}
  .cm-s-default span.cm-attribute {color: #00c;}
  .cm-s-default span.cm-header {color: #a0a;}
  .cm-s-default span.cm-quote {color: #090;}
  .cm-s-default span.cm-hr {color: #999;}
  .cm-s-default span.cm-link {color: #00c;}
 
  span.cm-header, span.cm-strong {font-weight: bold;}
  span.cm-em {font-style: italic;}
  span.cm-emstrong {font-style: italic; font-weight: bold;}
  span.cm-link {text-decoration: underline;}
 
  div.CodeMirror span.CodeMirror-matchingbracket {color: #0f0;}
  div.CodeMirror span.CodeMirror-nonmatchingbracket {color: #f22;}
 
  // CodeMirror version 2.2
  //
  // All functions that need access to the editor's state live inside
  // the CodeMirror function. Below that, at the bottom of the file,
  // some utilities are defined.
 
  // CodeMirror is the only global var we claim
  var CodeMirror = (function() {
  // This is the function that produces an editor instance. It's
  // closure is used to store the editor state.
  function CodeMirror(place, givenOptions) {
  // Determine effective options based on given values and defaults.
  var options = {}, defaults = CodeMirror.defaults;
  for (var opt in defaults)
  if (defaults.hasOwnProperty(opt))
  options[opt] = (givenOptions && givenOptions.hasOwnProperty(opt) ? givenOptions : defaults)[opt];
 
  var targetDocument = options["document"];
  // The element in which the editor lives.
  var wrapper = targetDocument.createElement("div");
  wrapper.className = "CodeMirror" + (options.lineWrapping ? " CodeMirror-wrap" : "");
  // This mess creates the base DOM structure for the editor.
  wrapper.innerHTML =
  '<div style="overflow: hidden; position: relative; width: 3px; height: 0px;">' + // Wraps and hides input textarea
  '<textarea style="position: absolute; padding: 0; width: 1px;" wrap="off" ' +
  'autocorrect="off" autocapitalize="off"></textarea></div>' +
  '<div class="CodeMirror-scroll" tabindex="-1">' +
  '<div style="position: relative">' + // Set to the height of the text, causes scrolling
  '<div style="position: relative">' + // Moved around its parent to cover visible view
  '<div class="CodeMirror-gutter"><div class="CodeMirror-gutter-text"></div></div>' +
  // Provides positioning relative to (visible) text origin
  '<div class="CodeMirror-lines"><div style="position: relative">' +
  '<div style="position: absolute; width: 100%; height: 0; overflow: hidden; visibility: hidden"></div>' +
  '<pre class="CodeMirror-cursor">&#160;</pre>' + // Absolutely positioned blinky cursor
  '<div></div>' + // This DIV contains the actual code
  '</div></div></div></div></div>';
  if (place.appendChild) place.appendChild(wrapper); else place(wrapper);
  // I've never seen more elegant code in my life.
  var inputDiv = wrapper.firstChild, input = inputDiv.firstChild,
  scroller = wrapper.lastChild, code = scroller.firstChild,
  mover = code.firstChild, gutter = mover.firstChild, gutterText = gutter.firstChild,
  lineSpace = gutter.nextSibling.firstChild, measure = lineSpace.firstChild,
  cursor = measure.nextSibling, lineDiv = cursor.nextSibling;
  themeChanged();
  // Needed to hide big blue blinking cursor on Mobile Safari
  if (/AppleWebKit/.test(navigator.userAgent) && /Mobile\/\w+/.test(navigator.userAgent)) input.style.width = "0px";
  if (!webkit) lineSpace.draggable = true;
  if (options.tabindex != null) input.tabIndex = options.tabindex;
  if (!options.gutter && !options.lineNumbers) gutter.style.display = "none";
 
  // Check for problem with IE innerHTML not working when we have a
  // P (or similar) parent node.
  try { stringWidth("x"); }
  catch (e) {
  if (e.message.match(/runtime/i))
  e = new Error("A CodeMirror inside a P-style element does not work in Internet Explorer. (innerHTML bug)");
  throw e;
  }
 
  // Delayed object wrap timeouts, making sure only one is active. blinker holds an interval.
  var poll = new Delayed(), highlight = new Delayed(), blinker;
 
  // mode holds a mode API object. doc is the tree of Line objects,
  // work an array of lines that should be parsed, and history the
  // undo history (instance of History constructor).
  var mode, doc = new BranchChunk([new LeafChunk([new Line("")])]), work, focused;
  loadMode();
  // The selection. These are always maintained to point at valid
  // positions. Inverted is used to remember that the user is
  // selecting bottom-to-top.
  var sel = {from: {line: 0, ch: 0}, to: {line: 0, ch: 0}, inverted: false};
  // Selection-related flags. shiftSelecting obviously tracks
  // whether the user is holding shift.
  var shiftSelecting, lastClick, lastDoubleClick, draggingText, overwrite = false;
  // Variables used by startOperation/endOperation to track what
  // happened during the operation.
  var updateInput, userSelChange, changes, textChanged, selectionChanged, leaveInputAlone,
  gutterDirty, callbacks;
  // Current visible range (may be bigger than the view window).
  var displayOffset = 0, showingFrom = 0, showingTo = 0, lastSizeC = 0;
  // bracketHighlighted is used to remember that a backet has been
  // marked.
  var bracketHighlighted;
  // Tracks the maximum line length so that the horizontal scrollbar
  // can be kept static when scrolling.
  var maxLine = "", maxWidth, tabText = computeTabText();
 
  // Initialize the content.
  operation(function(){setValue(options.value || ""); updateInput = false;})();
  var history = new History();
 
  // Register our event handlers.
  connect(scroller, "mousedown", operation(onMouseDown));
  connect(scroller, "dblclick", operation(onDoubleClick));
  connect(lineSpace, "dragstart", onDragStart);
  connect(lineSpace, "selectstart", e_preventDefault);
  // Gecko browsers fire contextmenu *after* opening the menu, at
  // which point we can't mess with it anymore. Context menu is
  // handled in onMouseDown for Gecko.
  if (!gecko) connect(scroller, "contextmenu", onContextMenu);
  connect(scroller, "scroll", function() {
  updateDisplay([]);
  if (options.fixedGutter) gutter.style.left = scroller.scrollLeft + "px";
  if (options.onScroll) options.onScroll(instance);
  });
  connect(window, "resize", function() {updateDisplay(true);});
  connect(input, "keyup", operation(onKeyUp));
  connect(input, "input", fastPoll);
  connect(input, "keydown", operation(onKeyDown));
  connect(input, "keypress", operation(onKeyPress));
  connect(input, "focus", onFocus);
  connect(input, "blur", onBlur);
 
  connect(scroller, "dragenter", e_stop);
  connect(scroller, "dragover", e_stop);
  connect(scroller, "drop", operation(onDrop));
  connect(scroller, "paste", function(){focusInput(); fastPoll();});
  connect(input, "paste", fastPoll);
  connect(input, "cut", operation(function(){replaceSelection("");}));
 
  // IE throws unspecified error in certain cases, when
  // trying to access activeElement before onload
  var hasFocus; try { hasFocus = (targetDocument.activeElement == input); } catch(e) { }
  if (hasFocus) setTimeout(onFocus, 20);
  else onBlur();
 
  function isLine(l) {return l >= 0 && l < doc.size;}
  // The instance object that we'll return. Mostly calls out to
  // local functions in the CodeMirror function. Some do some extra
  // range checking and/or clipping. operation is used to wrap the
  // call so that changes it makes are tracked, and the display is
  // updated afterwards.
  var instance = wrapper.CodeMirror = {
  getValue: getValue,
  setValue: operation(setValue),
  getSelection: getSelection,
  replaceSelection: operation(replaceSelection),
  focus: function(){focusInput(); onFocus(); fastPoll();},
  setOption: function(option, value) {
  var oldVal = options[option];
  options[option] = value;
  if (option == "mode" || option == "indentUnit") loadMode();
  else if (option == "readOnly" && value) {onBlur(); input.blur();}
  else if (option == "theme") themeChanged();
  else if (option == "lineWrapping" && oldVal != value) operation(wrappingChanged)();
  else if (option == "tabSize") operation(tabsChanged)();
  if (option == "lineNumbers" || option == "gutter" || option == "firstLineNumber" || option == "theme")
  operation(gutterChanged)();
  },
  getOption: function(option) {return options[option];},
  undo: operation(undo),
  redo: operation(redo),
  indentLine: operation(function(n, dir) {
  if (isLine(n)) indentLine(n, dir == null ? "smart" : dir ? "add" : "subtract");
  }),
  indentSelection: operation(indentSelected),
  historySize: function() {return {undo: history.done.length, redo: history.undone.length};},
  clearHistory: function() {history = new History();},
  matchBrackets: operation(function(){matchBrackets(true);}),
  getTokenAt: operation(function(pos) {
  pos = clipPos(pos);
  return getLine(pos.line).getTokenAt(mode, getStateBefore(pos.line), pos.ch);
  }),
  getStateAfter: function(line) {
  line = clipLine(line == null ? doc.size - 1: line);
  return getStateBefore(line + 1);
  },
  cursorCoords: function(start){
  if (start == null) start = sel.inverted;
  return pageCoords(start ? sel.from : sel.to);
  },
  charCoords: function(pos){return pageCoords(clipPos(pos));},
  coordsChar: function(coords) {
  var off = eltOffset(lineSpace);
  return coordsChar(coords.x - off.left, coords.y - off.top);
  },
  markText: operation(markText),
  setBookmark: setBookmark,
  setMarker: operation(addGutterMarker),
  clearMarker: operation(removeGutterMarker),
  setLineClass: operation(setLineClass),
  hideLine: operation(function(h) {return setLineHidden(h, true);}),
  showLine: operation(function(h) {return setLineHidden(h, false);}),
  onDeleteLine: function(line, f) {
  if (typeof line == "number") {
  if (!isLine(line)) return null;
  line = getLine(line);
  }
  (line.handlers || (line.handlers = [])).push(f);
  return line;
  },
  lineInfo: lineInfo,
  addWidget: function(pos, node, scroll, vert, horiz) {
  pos = localCoords(clipPos(pos));
  var top = pos.yBot, left = pos.x;
  node.style.position = "absolute";
  code.appendChild(node);
  if (vert == "over") top = pos.y;
  else if (vert == "near") {
  var vspace = Math.max(scroller.offsetHeight, doc.height * textHeight()),
  hspace = Math.max(code.clientWidth, lineSpace.clientWidth) - paddingLeft();
  if (pos.yBot + node.offsetHeight > vspace && pos.y > node.offsetHeight)
  top = pos.y - node.offsetHeight;
  if (left + node.offsetWidth > hspace)
  left = hspace - node.offsetWidth;
  }
  node.style.top = (top + paddingTop()) + "px";
  node.style.left = node.style.right = "";
  if (horiz == "right") {
  left = code.clientWidth - node.offsetWidth;
  node.style.right = "0px";
  } else {
  if (horiz == "left") left = 0;
  else if (horiz == "middle") left = (code.clientWidth - node.offsetWidth) / 2;
  node.style.left = (left + paddingLeft()) + "px";
  }
  if (scroll)
  scrollIntoView(left, top, left + node.offsetWidth, top + node.offsetHeight);
  },
 
  lineCount: function() {return doc.size;},
  clipPos: clipPos,
  getCursor: function(start) {
  if (start == null) start = sel.inverted;
  return copyPos(start ? sel.from : sel.to);
  },
  somethingSelected: function() {return !posEq(sel.from, sel.to);},
  setCursor: operation(function(line, ch, user) {
  if (ch == null && typeof line.line == "number") setCursor(line.line, line.ch, user);
  else setCursor(line, ch, user);
  }),
  setSelection: operation(function(from, to, user) {
  (user ? setSelectionUser : setSelection)(clipPos(from), clipPos(to || from));
  }),
  getLine: function(line) {if (isLine(line)) return getLine(line).text;},
  getLineHandle: function(line) {if (isLine(line)) return getLine(line);},
  setLine: operation(function(line, text) {
  if (isLine(line)) replaceRange(text, {line: line, ch: 0}, {line: line, ch: getLine(line).text.length});
  }),
  removeLine: operation(function(line) {
  if (isLine(line)) replaceRange("", {line: line, ch: 0}, clipPos({line: line+1, ch: 0}));
  }),
  replaceRange: operation(replaceRange),
  getRange: function(from, to) {return getRange(clipPos(from), clipPos(to));},
 
  execCommand: function(cmd) {return commands[cmd](instance);},
  // Stuff used by commands, probably not much use to outside code.
  moveH: operation(moveH),
  deleteH: operation(deleteH),
  moveV: operation(moveV),
  toggleOverwrite: function() {overwrite = !overwrite;},
 
  posFromIndex: function(off) {
  var lineNo = 0, ch;
  doc.iter(0, doc.size, function(line) {
  var sz = line.text.length + 1;
  if (sz > off) { ch = off; return true; }
  off -= sz;
  ++lineNo;
  });
  return clipPos({line: lineNo, ch: ch});
  },
  indexFromPos: function (coords) {
  if (coords.line < 0 || coords.ch < 0) return 0;
  var index = coords.ch;
  doc.iter(0, coords.line, function (line) {
  index += line.text.length + 1;
  });
  return index;
  },
 
  operation: function(f){return operation(f)();},
  refresh: function(){updateDisplay(true);},
  getInputField: function(){return input;},
  getWrapperElement: function(){return wrapper;},
  getScrollerElement: function(){return scroller;},
  getGutterElement: function(){return gutter;}
  };
 
  function getLine(n) { return getLineAt(doc, n); }
  function updateLineHeight(line, height) {
  gutterDirty = true;
  var diff = height - line.height;
  for (var n = line; n; n = n.parent) n.height += diff;
  }
 
  function setValue(code) {
  var top = {line: 0, ch: 0};
  updateLines(top, {line: doc.size - 1, ch: getLine(doc.size-1).text.length},
  splitLines(code), top, top);
  updateInput = true;
  }
  function getValue(code) {
  var text = [];
  doc.iter(0, doc.size, function(line) { text.push(line.text); });
  return text.join("\n");
  }
 
  function onMouseDown(e) {
  setShift(e.shiftKey);
  // Check whether this is a click in a widget
  for (var n = e_target(e); n != wrapper; n = n.parentNode)
  if (n.parentNode == code && n != mover) return;
 
  // See if this is a click in the gutter
  for (var n = e_target(e); n != wrapper; n = n.parentNode)
  if (n.parentNode == gutterText) {
  if (options.onGutterClick)
  options.onGutterClick(instance, indexOf(gutterText.childNodes, n) + showingFrom, e);
  return e_preventDefault(e);
  }
 
  var start = posFromMouse(e);
 
  switch (e_button(e)) {
  case 3:
  if (gecko && !mac) onContextMenu(e);
  return;
  case 2:
  if (start) setCursor(start.line, start.ch, true);
  return;
  }
  // For button 1, if it was clicked inside the editor
  // (posFromMouse returning non-null), we have to adjust the
  // selection.
  if (!start) {if (e_target(e) == scroller) e_preventDefault(e); return;}
 
  if (!focused) onFocus();
 
  var now = +new Date;
  if (lastDoubleClick && lastDoubleClick.time > now - 400 && posEq(lastDoubleClick.pos, start)) {
  e_preventDefault(e);
  setTimeout(focusInput, 20);
  return selectLine(start.line);
  } else if (lastClick && lastClick.time > now - 400 && posEq(lastClick.pos, start)) {
  lastDoubleClick = {time: now, pos: start};
  e_preventDefault(e);
  return selectWordAt(start);
  } else { lastClick = {time: now, pos: start}; }
 
  var last = start, going;
  if (dragAndDrop && !posEq(sel.from, sel.to) &&
  !posLess(start, sel.from) && !posLess(sel.to, start)) {
  // Let the drag handler handle this.
  if (webkit) lineSpace.draggable = true;
  var up = connect(targetDocument, "mouseup", operation(function(e2) {
  if (webkit) lineSpace.draggable = false;
  draggingText = false;
  up();
  if (Math.abs(e.clientX - e2.clientX) + Math.abs(e.clientY - e2.clientY) < 10) {
  e_preventDefault(e2);
  setCursor(start.line, start.ch, true);
  focusInput();
  }
  }), true);
  draggingText = true;
  return;
  }
  e_preventDefault(e);
  setCursor(start.line, start.ch, true);
 
  function extend(e) {
  var cur = posFromMouse(e, true);
  if (cur && !posEq(cur, last)) {
  if (!focused) onFocus();
  last = cur;
  setSelectionUser(start, cur);
  updateInput = false;
  var visible = visibleLines();
  if (cur.line >= visible.to || cur.line < visible.from)
  going = setTimeout(operation(function(){extend(e);}), 150);
  }
  }
 
  var move = connect(targetDocument, "mousemove", operation(function(e) {
  clearTimeout(going);
  e_preventDefault(e);
  extend(e);
  }), true);
  var up = connect(targetDocument, "mouseup", operation(function(e) {
  clearTimeout(going);
  var cur = posFromMouse(e);
  if (cur) setSelectionUser(start, cur);
  e_preventDefault(e);
  focusInput();
  updateInput = true;
  move(); up();
  }), true);
  }
  function onDoubleClick(e) {
  for (var n = e_target(e); n != wrapper; n = n.parentNode)
  if (n.parentNode == gutterText) return e_preventDefault(e);
  var start = posFromMouse(e);
  if (!start) return;
  lastDoubleClick = {time: +new Date, pos: start};
  e_preventDefault(e);
  selectWordAt(start);
  }
  function onDrop(e) {
  e.preventDefault();
  var pos = posFromMouse(e, true), files = e.dataTransfer.files;
  if (!pos || options.readOnly) return;
  if (files && files.length && window.FileReader && window.File) {
  function loadFile(file, i) {
  var reader = new FileReader;
  reader.onload = function() {
  text[i] = reader.result;
  if (++read == n) {
  pos = clipPos(pos);
  operation(function() {
  var end = replaceRange(text.join(""), pos, pos);
  setSelectionUser(pos, end);
  })();
  }
  };
  reader.readAsText(file);
  }
  var n = files.length, text = Array(n), read = 0;
  for (var i = 0; i < n; ++i) loadFile(files[i], i);
  }
  else {
  try {
  var text = e.dataTransfer.getData("Text");
  if (text) {
  var end = replaceRange(text, pos, pos);
  var curFrom = sel.from, curTo = sel.to;
  setSelectionUser(pos, end);
  if (draggingText) replaceRange("", curFrom, curTo);
  focusInput();
  }
  }
  catch(e){}
  }
  }
  function onDragStart(e) {
  var txt = getSelection();
  // This will reset escapeElement
  htmlEscape(txt);
  e.dataTransfer.setDragImage(escapeElement, 0, 0);
  e.dataTransfer.setData("Text", txt);
  }
  function handleKeyBinding(e) {
  var name = keyNames[e.keyCode], next = keyMap[options.keyMap].auto, bound, dropShift;
  if (name == null || e.altGraphKey) {
  if (next) options.keyMap = next;
  return null;
  }
  if (e.altKey) name = "Alt-" + name;
  if (e.ctrlKey) name = "Ctrl-" + name;
  if (e.metaKey) name = "Cmd-" + name;
  if (e.shiftKey && (bound = lookupKey("Shift-" + name, options.extraKeys, options.keyMap))) {
  dropShift = true;
  } else {
  bound = lookupKey(name, options.extraKeys, options.keyMap);
  }
  if (typeof bound == "string") {
  if (commands.propertyIsEnumerable(bound)) bound = commands[bound];
  else bound = null;
  }
  if (next && (bound || !isModifierKey(e))) options.keyMap = next;
  if (!bound) return false;
  if (dropShift) {
  var prevShift = shiftSelecting;
  shiftSelecting = null;
  bound(instance);
  shiftSelecting = prevShift;
  } else bound(instance);
  e_preventDefault(e);
  return true;
  }
  var lastStoppedKey = null;
  function onKeyDown(e) {
  if (!focused) onFocus();
  var code = e.keyCode;
  // IE does strange things with escape.
  if (ie && code == 27) { e.returnValue = false; }
  setShift(code == 16 || e.shiftKey);
  // First give onKeyEvent option a chance to handle this.
  if (options.onKeyEvent && options.onKeyEvent(instance, addStop(e))) return;
  var handled = handleKeyBinding(e);
  if (window.opera) {
  lastStoppedKey = handled ? e.keyCode : null;
  // Opera has no cut event... we try to at least catch the key combo
  if (!handled && (mac ? e.metaKey : e.ctrlKey) && e.keyCode == 88)
  replaceSelection("");
  }
  }
  function onKeyPress(e) {
  if (window.opera && e.keyCode == lastStoppedKey) {lastStoppedKey = null; e_preventDefault(e); return;}
  if (options.onKeyEvent && options.onKeyEvent(instance, addStop(e))) return;
  if (window.opera && !e.which && handleKeyBinding(e)) return;
  if (options.electricChars && mode.electricChars) {
  var ch = String.fromCharCode(e.charCode == null ? e.keyCode : e.charCode);
  if (mode.electricChars.indexOf(ch) > -1)
  setTimeout(operation(function() {indentLine(sel.to.line, "smart");}), 75);
  }
  fastPoll();
  }
  function onKeyUp(e) {
  if (options.onKeyEvent && options.onKeyEvent(instance, addStop(e))) return;
  if (e.keyCode == 16) shiftSelecting = null;
  }
 
  function onFocus() {
  if (options.readOnly) return;
  if (!focused) {
  if (options.onFocus) options.onFocus(instance);
  focused = true;
  if (wrapper.className.search(/\bCodeMirror-focused\b/) == -1)
  wrapper.className += " CodeMirror-focused";
  if (!leaveInputAlone) resetInput(true);
  }
  slowPoll();
  restartBlink();
  }
  function onBlur() {
  if (focused) {
  if (options.onBlur) options.onBlur(instance);
  focused = false;
  wrapper.className = wrapper.className.replace(" CodeMirror-focused", "");
  }
  clearInterval(blinker);
  setTimeout(function() {if (!focused) shiftSelecting = null;}, 150);
  }
 
  // Replace the range from from to to by the strings in newText.
  // Afterwards, set the selection to selFrom, selTo.
  function updateLines(from, to, newText, selFrom, selTo) {
  if (history) {
  var old = [];
  doc.iter(from.line, to.line + 1, function(line) { old.push(line.text); });
  history.addChange(from.line, newText.length, old);
  while (history.done.length > options.undoDepth) history.done.shift();
  }
  updateLinesNoUndo(from, to, newText, selFrom, selTo);
  }
  function unredoHelper(from, to) {
  var change = from.pop();
  if (change) {
  var replaced = [], end = change.start + change.added;
  doc.iter(change.start, end, function(line) { replaced.push(line.text); });
  to.push({start: change.start, added: change.old.length, old: replaced});
  var pos = clipPos({line: change.start + change.old.length - 1,
  ch: editEnd(replaced[replaced.length-1], change.old[change.old.length-1])});
  updateLinesNoUndo({line: change.start, ch: 0}, {line: end - 1, ch: getLine(end-1).text.length}, change.old, pos, pos);
  updateInput = true;
  }
  }
  function undo() {unredoHelper(history.done, history.undone);}
  function redo() {unredoHelper(history.undone, history.done);}
 
  function updateLinesNoUndo(from, to, newText, selFrom, selTo) {
  var recomputeMaxLength = false, maxLineLength = maxLine.length;
  if (!options.lineWrapping)
  doc.iter(from.line, to.line, function(line) {
  if (line.text.length == maxLineLength) {recomputeMaxLength = true; return true;}
  });
  if (from.line != to.line || newText.length > 1) gutterDirty = true;
 
  var nlines = to.line - from.line, firstLine = getLine(from.line), lastLine = getLine(to.line);
  // First adjust the line structure, taking some care to leave highlighting intact.
  if (from.ch == 0 && to.ch == 0 && newText[newText.length - 1] == "") {
  // This is a whole-line replace. Treated specially to make
  // sure line objects move the way they are supposed to.
  var added = [], prevLine = null;
  if (from.line) {
  prevLine = getLine(from.line - 1);
  prevLine.fixMarkEnds(lastLine);
  } else lastLine.fixMarkStarts();
  for (var i = 0, e = newText.length - 1; i < e; ++i)
  added.push(Line.inheritMarks(newText[i], prevLine));
  if (nlines) doc.remove(from.line, nlines, callbacks);
  if (added.length) doc.insert(from.line, added);
  } else if (firstLine == lastLine) {
  if (newText.length == 1)
  firstLine.replace(from.ch, to.ch, newText[0]);
  else {
  lastLine = firstLine.split(to.ch, newText[newText.length-1]);
  firstLine.replace(from.ch, null, newText[0]);
  firstLine.fixMarkEnds(lastLine);
  var added = [];
  for (var i = 1, e = newText.length - 1; i < e; ++i)
  added.push(Line.inheritMarks(newText[i], firstLine));
  added.push(lastLine);
  doc.insert(from.line + 1, added);
  }
  } else if (newText.length == 1) {
  firstLine.replace(from.ch, null, newText[0]);
  lastLine.replace(null, to.ch, "");
  firstLine.append(lastLine);
  doc.remove(from.line + 1, nlines, callbacks);
  } else {
  var added = [];
  firstLine.replace(from.ch, null, newText[0]);
  lastLine.replace(null, to.ch, newText[newText.length-1]);
  firstLine.fixMarkEnds(lastLine);
  for (var i = 1, e = newText.length - 1; i < e; ++i)
  added.push(Line.inheritMarks(newText[i], firstLine));
  if (nlines > 1) doc.remove(from.line + 1, nlines - 1, callbacks);
  doc.insert(from.line + 1, added);
  }
  if (options.lineWrapping) {
  var perLine = scroller.clientWidth / charWidth() - 3;
  doc.iter(from.line, from.line + newText.length, function(line) {
  if (line.hidden) return;
  var guess = Math.ceil(line.text.length / perLine) || 1;
  if (guess != line.height) updateLineHeight(line, guess);
  });
  } else {
  doc.iter(from.line, i + newText.length, function(line) {
  var l = line.text;
  if (l.length > maxLineLength) {
  maxLine = l; maxLineLength = l.length; maxWidth = null;
  recomputeMaxLength = false;
  }
  });
  if (recomputeMaxLength) {
  maxLineLength = 0; maxLine = ""; maxWidth = null;
  doc.iter(0, doc.size, function(line) {
  var l = line.text;
  if (l.length > maxLineLength) {
  maxLineLength = l.length; maxLine = l;
  }
  });
  }
  }
 
  // Add these lines to the work array, so that they will be
  // highlighted. Adjust work lines if lines were added/removed.
  var newWork = [], lendiff = newText.length - nlines - 1;
  for (var i = 0, l = work.length; i < l; ++i) {
  var task = work[i];
  if (task < from.line) newWork.push(task);
  else if (task > to.line) newWork.push(task + lendiff);
  }
  var hlEnd = from.line + Math.min(newText.length, 500);
  highlightLines(from.line, hlEnd);
  newWork.push(hlEnd);
  work = newWork;
  startWorker(100);
  // Remember that these lines changed, for updating the display
  changes.push({from: from.line, to: to.line + 1, diff: lendiff});
  var changeObj = {from: from, to: to, text: newText};
  if (textChanged) {
  for (var cur = textChanged; cur.next; cur = cur.next) {}
  cur.next = changeObj;
  } else textChanged = changeObj;
 
  // Update the selection
  function updateLine(n) {return n <= Math.min(to.line, to.line + lendiff) ? n : n + lendiff;}
  setSelection(selFrom, selTo, updateLine(sel.from.line), updateLine(sel.to.line));
 
  // Make sure the scroll-size div has the correct height.
  code.style.height = (doc.height * textHeight() + 2 * paddingTop()) + "px";
  }
 
  function replaceRange(code, from, to) {
  from = clipPos(from);
  if (!to) to = from; else to = clipPos(to);
  code = splitLines(code);
  function adjustPos(pos) {
  if (posLess(pos, from)) return pos;
  if (!posLess(to, pos)) return end;
  var line = pos.line + code.length - (to.line - from.line) - 1;
  var ch = pos.ch;
  if (pos.line == to.line)
  ch += code[code.length-1].length - (to.ch - (to.line == from.line ? from.ch : 0));
  return {line: line, ch: ch};
  }
  var end;
  replaceRange1(code, from, to, function(end1) {
  end = end1;
  return {from: adjustPos(sel.from), to: adjustPos(sel.to)};
  });
  return end;
  }
  function replaceSelection(code, collapse) {
  replaceRange1(splitLines(code), sel.from, sel.to, function(end) {
  if (collapse == "end") return {from: end, to: end};
  else if (collapse == "start") return {from: sel.from, to: sel.from};
  else return {from: sel.from, to: end};
  });
  }
  function replaceRange1(code, from, to, computeSel) {
  var endch = code.length == 1 ? code[0].length + from.ch : code[code.length-1].length;
  var newSel = computeSel({line: from.line + code.length - 1, ch: endch});
  updateLines(from, to, code, newSel.from, newSel.to);
  }
 
  function getRange(from, to) {
  var l1 = from.line, l2 = to.line;
  if (l1 == l2) return getLine(l1).text.slice(from.ch, to.ch);
  var code = [getLine(l1).text.slice(from.ch)];
  doc.iter(l1 + 1, l2, function(line) { code.push(line.text); });
  code.push(getLine(l2).text.slice(0, to.ch));
  return code.join("\n");
  }
  function getSelection() {
  return getRange(sel.from, sel.to);
  }
 
  var pollingFast = false; // Ensures slowPoll doesn't cancel fastPoll
  function slowPoll() {
  if (pollingFast) return;
  poll.set(options.pollInterval, function() {
  startOperation();
  readInput();
  if (focused) slowPoll();
  endOperation();
  });
  }
  function fastPoll() {
  var missed = false;
  pollingFast = true;
  function p() {
  startOperation();
  var changed = readInput();
  if (!changed && !missed) {missed = true; poll.set(60, p);}
  else {pollingFast = false; slowPoll();}
  endOperation();
  }
  poll.set(20, p);
  }
 
  // Previnput is a hack to work with IME. If we reset the textarea
  // on every change, that breaks IME. So we look for changes
  // compared to the previous content instead. (Modern browsers have
  // events that indicate IME taking place, but these are not widely
  // supported or compatible enough yet to rely on.)
  var prevInput = "";
  function readInput() {
  if (leaveInputAlone || !focused || hasSelection(input)) return false;
  var text = input.value;
  if (text == prevInput) return false;
  shiftSelecting = null;
  var same = 0, l = Math.min(prevInput.length, text.length);
  while (same < l && prevInput[same] == text[same]) ++same;
  if (same < prevInput.length)
  sel.from = {line: sel.from.line, ch: sel.from.ch - (prevInput.length - same)};
  else if (overwrite && posEq(sel.from, sel.to))
  sel.to = {line: sel.to.line, ch: Math.min(getLine(sel.to.line).text.length, sel.to.ch + (text.length - same))};
  replaceSelection(text.slice(same), "end");
  prevInput = text;
  return true;
  }
  function resetInput(user) {
  if (!posEq(sel.from, sel.to)) {
  prevInput = "";
  input.value = getSelection();
  input.select();
  } else if (user) prevInput = input.value = "";
  }
 
  function focusInput() {
  if (!options.readOnly) input.focus();
  }
 
  function scrollEditorIntoView() {
  if (!cursor.getBoundingClientRect) return;
  var rect = cursor.getBoundingClientRect();
  // IE returns bogus coordinates when the instance sits inside of an iframe and the cursor is hidden
  if (ie && rect.top == rect.bottom) return;
  var winH = window.innerHeight || Math.max(document.body.offsetHeight, document.documentElement.offsetHeight);
  if (rect.top < 0 || rect.bottom > winH) cursor.scrollIntoView();
  }
  function scrollCursorIntoView() {
  var cursor = localCoords(sel.inverted ? sel.from : sel.to);
  var x = options.lineWrapping ? Math.min(cursor.x, lineSpace.offsetWidth) : cursor.x;
  return scrollIntoView(x, cursor.y, x, cursor.yBot);
  }
  function scrollIntoView(x1, y1, x2, y2) {
  var pl = paddingLeft(), pt = paddingTop(), lh = textHeight();
  y1 += pt; y2 += pt; x1 += pl; x2 += pl;
  var screen = scroller.clientHeight, screentop = scroller.scrollTop, scrolled = false, result = true;
  if (y1 < screentop) {scroller.scrollTop = Math.max(0, y1 - 2*lh); scrolled = true;}
  else if (y2 > screentop + screen) {scroller.scrollTop = y2 + lh - screen; scrolled = true;}
 
  var screenw = scroller.clientWidth, screenleft = scroller.scrollLeft;
  var gutterw = options.fixedGutter ? gutter.clientWidth : 0;
  if (x1 < screenleft + gutterw) {
  if (x1 < 50) x1 = 0;
  scroller.scrollLeft = Math.max(0, x1 - 10 - gutterw);
  scrolled = true;
  }
  else if (x2 > screenw + screenleft - 3) {
  scroller.scrollLeft = x2 + 10 - screenw;
  scrolled = true;
  if (x2 > code.clientWidth) result = false;
  }
  if (scrolled && options.onScroll) options.onScroll(instance);
  return result;
  }
 
  function visibleLines() {
  var lh = textHeight(), top = scroller.scrollTop - paddingTop();
  var from_height = Math.max(0, Math.floor(top / lh));
  var to_height = Math.ceil((top + scroller.clientHeight) / lh);
  return {from: lineAtHeight(doc, from_height),
  to: lineAtHeight(doc, to_height)};
  }
  // Uses a set of changes plus the current scroll position to
  // determine which DOM updates have to be made, and makes the
  // updates.
  function updateDisplay(changes, suppressCallback) {
  if (!scroller.clientWidth) {
  showingFrom = showingTo = displayOffset = 0;
  return;
  }
  // Compute the new visible window
  var visible = visibleLines();
  // Bail out if the visible area is already rendered and nothing changed.
  if (changes !== true && changes.length == 0 && visible.from >= showingFrom && visible.to <= showingTo) return;
  var from = Math.max(visible.from - 100, 0), to = Math.min(doc.size, visible.to + 100);
  if (showingFrom < from && from - showingFrom < 20) from = showingFrom;
  if (showingTo > to && showingTo - to < 20) to = Math.min(doc.size, showingTo);
 
  // Create a range of theoretically intact lines, and punch holes
  // in that using the change info.
  var intact = changes === true ? [] :
  computeIntact([{from: showingFrom, to: showingTo, domStart: 0}], changes);
  // Clip off the parts that won't be visible
  var intactLines = 0;
  for (var i = 0; i < intact.length; ++i) {
  var range = intact[i];
  if (range.from < from) {range.domStart += (from - range.from); range.from = from;}
  if (range.to > to) range.to = to;
  if (range.from >= range.to) intact.splice(i--, 1);
  else intactLines += range.to - range.from;
  }
  if (intactLines == to - from) return;
  intact.sort(function(a, b) {return a.domStart - b.domStart;});
 
  var th = textHeight(), gutterDisplay = gutter.style.display;
  lineDiv.style.display = gutter.style.display = "none";
  patchDisplay(from, to, intact);
  lineDiv.style.display = "";
 
  // Position the mover div to align with the lines it's supposed
  // to be showing (which will cover the visible display)
  var different = from != showingFrom || to != showingTo || lastSizeC != scroller.clientHeight + th;
  // This is just a bogus formula that detects when the editor is
  // resized or the font size changes.
  if (different) lastSizeC = scroller.clientHeight + th;
  showingFrom = from; showingTo = to;
  displayOffset = heightAtLine(doc, from);
  mover.style.top = (displayOffset * th) + "px";
  code.style.height = (doc.height * th + 2 * paddingTop()) + "px";
 
  // Since this is all rather error prone, it is honoured with the
  // only assertion in the whole file.
  if (lineDiv.childNodes.length != showingTo - showingFrom)
  throw new Error("BAD PATCH! " + JSON.stringify(intact) + " size=" + (showingTo - showingFrom) +
  " nodes=" + lineDiv.childNodes.length);
 
  if (options.lineWrapping) {
  maxWidth = scroller.clientWidth;
  var curNode = lineDiv.firstChild;
  doc.iter(showingFrom, showingTo, function(line) {
  if (!line.hidden) {
  var height = Math.round(curNode.offsetHeight / th) || 1;
  if (line.height != height) {updateLineHeight(line, height); gutterDirty = true;}
  }
  curNode = curNode.nextSibling;
  });
  } else {
  if (maxWidth == null) maxWidth = stringWidth(maxLine);
  if (maxWidth > scroller.clientWidth) {
  lineSpace.style.width = maxWidth + "px";
  // Needed to prevent odd wrapping/hiding of widgets placed in here.
  code.style.width = "";
  code.style.width = scroller.scrollWidth + "px";
  } else {
  lineSpace.style.width = code.style.width = "";
  }
  }
  gutter.style.display = gutterDisplay;
  if (different || gutterDirty) updateGutter();
  updateCursor();
  if (!suppressCallback && options.onUpdate) options.onUpdate(instance);
  return true;
  }
 
  function computeIntact(intact, changes) {
  for (var i = 0, l = changes.length || 0; i < l; ++i) {
  var change = changes[i], intact2 = [], diff = change.diff || 0;
  for (var j = 0, l2 = intact.length; j < l2; ++j) {
  var range = intact[j];
  if (change.to <= range.from && change.diff)
  intact2.push({from: range.from + diff, to: range.to + diff,
  domStart: range.domStart});
  else if (change.to <= range.from || change.from >= range.to)
  intact2.push(range);
  else {
  if (change.from > range.from)
  intact2.push({from: range.from, to: change.from, domStart: range.domStart});
  if (change.to < range.to)
  intact2.push({from: change.to + diff, to: range.to + diff,
  domStart: range.domStart + (change.to - range.from)});
  }
  }
  intact = intact2;
  }
  return intact;
  }
 
  function patchDisplay(from, to, intact) {
  // The first pass removes the DOM nodes that aren't intact.
  if (!intact.length) lineDiv.innerHTML = "";
  else {
  function killNode(node) {
  var tmp = node.nextSibling;
  node.parentNode.removeChild(node);
  return tmp;
  }
  var domPos = 0, curNode = lineDiv.firstChild, n;
  for (var i = 0; i < intact.length; ++i) {
  var cur = intact[i];
  while (cur.domStart > domPos) {curNode = killNode(curNode); domPos++;}
  for (var j = 0, e = cur.to - cur.from; j < e; ++j) {curNode = curNode.nextSibling; domPos++;}
  }
  while (curNode) curNode = killNode(curNode);
  }
  // This pass fills in the lines that actually changed.
  var nextIntact = intact.shift(), curNode = lineDiv.firstChild, j = from;
  var sfrom = sel.from.line, sto = sel.to.line, inSel = sfrom < from && sto >= from;
  var scratch = targetDocument.createElement("div"), newElt;
  doc.iter(from, to, function(line) {
  var ch1 = null, ch2 = null;
  if (inSel) {
  ch1 = 0;
  if (sto == j) {inSel = false; ch2 = sel.to.ch;}
  } else if (sfrom == j) {
  if (sto == j) {ch1 = sel.from.ch; ch2 = sel.to.ch;}
  else {inSel = true; ch1 = sel.from.ch;}
  }
  if (nextIntact && nextIntact.to == j) nextIntact = intact.shift();
  if (!nextIntact || nextIntact.from > j) {
  if (line.hidden) scratch.innerHTML = "<pre></pre>";
  else scratch.innerHTML = line.getHTML(ch1, ch2, true, tabText);
  lineDiv.insertBefore(scratch.firstChild, curNode);
  } else {
  curNode = curNode.nextSibling;
  }
  ++j;
  });
  }
 
  function updateGutter() {
  if (!options.gutter && !options.lineNumbers) return;
  var hText = mover.offsetHeight, hEditor = scroller.clientHeight;
  gutter.style.height = (hText - hEditor < 2 ? hEditor : hText) + "px";
  var html = [], i = showingFrom;
  doc.iter(showingFrom, Math.max(showingTo, showingFrom + 1), function(line) {
  if (line.hidden) {
  html.push("<pre></pre>");
  } else {
  var marker = line.gutterMarker;
  var text = options.lineNumbers ? i + options.firstLineNumber : null;
  if (marker && marker.text)
  text = marker.text.replace("%N%", text != null ? text : "");
  else if (text == null)
  text = "\u00a0";
  html.push((marker && marker.style ? '<pre class="' + marker.style + '">' : "<pre>"), text);
  for (var j = 1; j < line.height; ++j) html.push("<br/>&#160;");
  html.push("</pre>");
  }
  ++i;
  });
  gutter.style.display = "none";
  gutterText.innerHTML = html.join("");
  var minwidth = String(doc.size).length, firstNode = gutterText.firstChild, val = eltText(firstNode), pad = "";
  while (val.length + pad.length < minwidth) pad += "\u00a0";
  if (pad) firstNode.insertBefore(targetDocument.createTextNode(pad), firstNode.firstChild);
  gutter.style.display = "";
  lineSpace.style.marginLeft = gutter.offsetWidth + "px";
  gutterDirty = false;
  }
  function updateCursor() {
  var head = sel.inverted ? sel.from : sel.to, lh = textHeight();
  var pos = localCoords(head, true);
  var wrapOff = eltOffset(wrapper), lineOff = eltOffset(lineDiv);
  inputDiv.style.top = (pos.y + lineOff.top - wrapOff.top) + "px";
  inputDiv.style.left = (pos.x + lineOff.left - wrapOff.left) + "px";
  if (posEq(sel.from, sel.to)) {
  cursor.style.top = pos.y + "px";
  cursor.style.left = (options.lineWrapping ? Math.min(pos.x, lineSpace.offsetWidth) : pos.x) + "px";
  cursor.style.display = "";
  }
  else cursor.style.display = "none";
  }
 
  function setShift(val) {
  if (val) shiftSelecting = shiftSelecting || (sel.inverted ? sel.to : sel.from);
  else shiftSelecting = null;
  }
  function setSelectionUser(from, to) {
  var sh = shiftSelecting && clipPos(shiftSelecting);
  if (sh) {
  if (posLess(sh, from)) from = sh;
  else if (posLess(to, sh)) to = sh;
  }
  setSelection(from, to);
  userSelChange = true;
  }
  // Update the selection. Last two args are only used by
  // updateLines, since they have to be expressed in the line
  // numbers before the update.
  function setSelection(from, to, oldFrom, oldTo) {
  goalColumn = null;
  if (oldFrom == null) {oldFrom = sel.from.line; oldTo = sel.to.line;}
  if (posEq(sel.from, from) && posEq(sel.to, to)) return;
  if (posLess(to, from)) {var tmp = to; to = from; from = tmp;}
 
  // Skip over hidden lines.
  if (from.line != oldFrom) from = skipHidden(from, oldFrom, sel.from.ch);
  if (to.line != oldTo) to = skipHidden(to, oldTo, sel.to.ch);
 
  if (posEq(from, to)) sel.inverted = false;
  else if (posEq(from, sel.to)) sel.inverted = false;
  else if (posEq(to, sel.from)) sel.inverted = true;
 
  // Some ugly logic used to only mark the lines that actually did
  // see a change in selection as changed, rather than the whole
  // selected range.
  if (posEq(from, to)) {
  if (!posEq(sel.from, sel.to))
  changes.push({from: oldFrom, to: oldTo + 1});
  }
  else if (posEq(sel.from, sel.to)) {
  changes.push({from: from.line, to: to.line + 1});
  }
  else {
  if (!posEq(from, sel.from)) {
  if (from.line < oldFrom)
  changes.push({from: from.line, to: Math.min(to.line, oldFrom) + 1});
  else
  changes.push({from: oldFrom, to: Math.min(oldTo, from.line) + 1});
  }
  if (!posEq(to, sel.to)) {
  if (to.line < oldTo)
  changes.push({from: Math.max(oldFrom, from.line), to: oldTo + 1});
  else
  changes.push({from: Math.max(from.line, oldTo), to: to.line + 1});
  }
  }
  sel.from = from; sel.to = to;
  selectionChanged = true;
  }
  function skipHidden(pos, oldLine, oldCh) {
  function getNonHidden(dir) {
  var lNo = pos.line + dir, end = dir == 1 ? doc.size : -1;
  while (lNo != end) {
  var line = getLine(lNo);
  if (!line.hidden) {
  var ch = pos.ch;
  if (ch > oldCh || ch > line.text.length) ch = line.text.length;
  return {line: lNo, ch: ch};
  }
  lNo += dir;
  }
  }
  var line = getLine(pos.line);
  if (!line.hidden) return pos;
  if (pos.line >= oldLine) return getNonHidden(1) || getNonHidden(-1);
  else return getNonHidden(-1) || getNonHidden(1);
  }
  function setCursor(line, ch, user) {
  var pos = clipPos({line: line, ch: ch || 0});
  (user ? setSelectionUser : setSelection)(pos, pos);
  }
 
  function clipLine(n) {return Math.max(0, Math.min(n, doc.size-1));}
  function clipPos(pos) {
  if (pos.line < 0) return {line: 0, ch: 0};
  if (pos.line >= doc.size) return {line: doc.size-1, ch: getLine(doc.size-1).text.length};
  var ch = pos.ch, linelen = getLine(pos.line).text.length;
  if (ch == null || ch > linelen) return {line: pos.line, ch: linelen};
  else if (ch < 0) return {line: pos.line, ch: 0};
  else return pos;
  }
 
  function findPosH(dir, unit) {
  var end = sel.inverted ? sel.from : sel.to, line = end.line, ch = end.ch;
  var lineObj = getLine(line);
  function findNextLine() {
  for (var l = line + dir, e = dir < 0 ? -1 : doc.size; l != e; l += dir) {
  var lo = getLine(l);
  if (!lo.hidden) { line = l; lineObj = lo; return true; }
  }
  }
  function moveOnce(boundToLine) {
  if (ch == (dir < 0 ? 0 : lineObj.text.length)) {
  if (!boundToLine && findNextLine()) ch = dir < 0 ? lineObj.text.length : 0;
  else return false;
  } else ch += dir;
  return true;
  }
  if (unit == "char") moveOnce();
  else if (unit == "column") moveOnce(true);
  else if (unit == "word") {
  var sawWord = false;
  for (;;) {
  if (dir < 0) if (!moveOnce()) break;
  if (isWordChar(lineObj.text.charAt(ch))) sawWord = true;
  else if (sawWord) {if (dir < 0) {dir = 1; moveOnce();} break;}
  if (dir > 0) if (!moveOnce()) break;
  }
  }
  return {line: line, ch: ch};
  }
  function moveH(dir, unit) {
  var pos = dir < 0 ? sel.from : sel.to;
  if (shiftSelecting || posEq(sel.from, sel.to)) pos = findPosH(dir, unit);
  setCursor(pos.line, pos.ch, true);
  }
  function deleteH(dir, unit) {
  if (!posEq(sel.from, sel.to)) replaceRange("", sel.from, sel.to);
  else if (dir < 0) replaceRange("", findPosH(dir, unit), sel.to);
  else replaceRange("", sel.from, findPosH(dir, unit));
  userSelChange = true;
  }
  var goalColumn = null;
  function moveV(dir, unit) {
  var dist = 0, pos = localCoords(sel.inverted ? sel.from : sel.to, true);
  if (goalColumn != null) pos.x = goalColumn;
  if (unit == "page") dist = scroller.clientHeight;
  else if (unit == "line") dist = textHeight();
  var target = coordsChar(pos.x, pos.y + dist * dir + 2);
  setCursor(target.line, target.ch, true);
  goalColumn = pos.x;
  }
 
  function selectWordAt(pos) {
  var line = getLine(pos.line).text;
  var start = pos.ch, end = pos.ch;
  while (start > 0 && isWordChar(line.charAt(start - 1))) --start;
  while (end < line.length && isWordChar(line.charAt(end))) ++end;
  setSelectionUser({line: pos.line, ch: start}, {line: pos.line, ch: end});
  }
  function selectLine(line) {
  setSelectionUser({line: line, ch: 0}, {line: line, ch: getLine(line).text.length});
  }
  function indentSelected(mode) {
  if (posEq(sel.from, sel.to)) return indentLine(sel.from.line, mode);
  var e = sel.to.line - (sel.to.ch ? 0 : 1);
  for (var i = sel.from.line; i <= e; ++i) indentLine(i, mode);
  }
 
  function indentLine(n, how) {
  if (!how) how = "add";
  if (how == "smart") {
  if (!mode.indent) how = "prev";
  else var state = getStateBefore(n);
  }
 
  var line = getLine(n), curSpace = line.indentation(options.tabSize),
  curSpaceString = line.text.match(/^\s*/)[0], indentation;
  if (how == "prev") {
  if (n) indentation = getLine(n-1).indentation(options.tabSize);
  else indentation = 0;
  }
  else if (how == "smart") indentation = mode.indent(state, line.text.slice(curSpaceString.length), line.text);
  else if (how == "add") indentation = curSpace + options.indentUnit;
  else if (how == "subtract") indentation = curSpace - options.indentUnit;
  indentation = Math.max(0, indentation);
  var diff = indentation - curSpace;
 
  if (!diff) {
  if (sel.from.line != n && sel.to.line != n) return;
  var indentString = curSpaceString;
  }
  else {
  var indentString = "", pos = 0;
  if (options.indentWithTabs)
  for (var i = Math.floor(indentation / options.tabSize); i; --i) {pos += options.tabSize; indentString += "\t";}
  while (pos < indentation) {++pos; indentString += " ";}
  }
 
  replaceRange(indentString, {line: n, ch: 0}, {line: n, ch: curSpaceString.length});
  }
 
  function loadMode() {
  mode = CodeMirror.getMode(options, options.mode);
  doc.iter(0, doc.size, function(line) { line.stateAfter = null; });
  work = [0];
  startWorker();
  }
  function gutterChanged() {
  var visible = options.gutter || options.lineNumbers;
  gutter.style.display = visible ? "" : "none";
  if (visible) gutterDirty = true;
  else lineDiv.parentNode.style.marginLeft = 0;
  }
  function wrappingChanged(from, to) {
  if (options.lineWrapping) {
  wrapper.className += " CodeMirror-wrap";
  var perLine = scroller.clientWidth / charWidth() - 3;
  doc.iter(0, doc.size, function(line) {
  if (line.hidden) return;
  var guess = Math.ceil(line.text.length / perLine) || 1;
  if (guess != 1) updateLineHeight(line, guess);
  });
  lineSpace.style.width = code.style.width = "";
  } else {
  wrapper.className = wrapper.className.replace(" CodeMirror-wrap", "");
  maxWidth = null; maxLine = "";
  doc.iter(0, doc.size, function(line) {
  if (line.height != 1 && !line.hidden) updateLineHeight(line, 1);
  if (line.text.length > maxLine.length) maxLine = line.text;
  });
  }
  changes.push({from: 0, to: doc.size});
  }
  function computeTabText() {
  for (var str = '<span class="cm-tab">', i = 0; i < options.tabSize; ++i) str += " ";
  return str + "</span>";
  }
  function tabsChanged() {
  tabText = computeTabText();
  updateDisplay(true);
  }
  function themeChanged() {
  scroller.className = scroller.className.replace(/\s*cm-s-\w+/g, "") +
  options.theme.replace(/(^|\s)\s*/g, " cm-s-");
  }
 
  function TextMarker() { this.set = []; }
  TextMarker.prototype.clear = operation(function() {
  var min = Infinity, max = -Infinity;
  for (var i = 0, e = this.set.length; i < e; ++i) {
  var line = this.set[i], mk = line.marked;
  if (!mk || !line.parent) continue;
  var lineN = lineNo(line);
  min = Math.min(min, lineN); max = Math.max(max, lineN);
  for (var j = 0; j < mk.length; ++j)
  if (mk[j].set == this.set) mk.splice(j--, 1);
  }
  if (min != Infinity)
  changes.push({from: min, to: max + 1});
  });
  TextMarker.prototype.find = function() {
  var from, to;
  for (var i = 0, e = this.set.length; i < e; ++i) {
  var line = this.set[i], mk = line.marked;
  for (var j = 0; j < mk.length; ++j) {
  var mark = mk[j];
  if (mark.set == this.set) {
  if (mark.from != null || mark.to != null) {
  var found = lineNo(line);
  if (found != null) {
  if (mark.from != null) from = {line: found, ch: mark.from};
  if (mark.to != null) to = {line: found, ch: mark.to};
  }
  }
  }
  }
  }
  return {from: from, to: to};
  };
 
  function markText(from, to, className) {
  from = clipPos(from); to = clipPos(to);
  var tm = new TextMarker();
  function add(line, from, to, className) {
  getLine(line).addMark(new MarkedText(from, to, className, tm.set));
  }
  if (from.line == to.line) add(from.line, from.ch, to.ch, className);
  else {
  add(from.line, from.ch, null, className);
  for (var i = from.line + 1, e = to.line; i < e; ++i)
  add(i, null, null, className);
  add(to.line, null, to.ch, className);
  }
  changes.push({from: from.line, to: to.line + 1});
  return tm;
  }
 
  function setBookmark(pos) {
  pos = clipPos(pos);
  var bm = new Bookmark(pos.ch);
  getLine(pos.line).addMark(bm);
  return bm;
  }
 
  function addGutterMarker(line, text, className) {
  if (typeof line == "number") line = getLine(clipLine(line));
  line.gutterMarker = {text: text, style: className};
  gutterDirty = true;
  return line;
  }
  function removeGutterMarker(line) {
  if (typeof line == "number") line = getLine(clipLine(line));
  line.gutterMarker = null;
  gutterDirty = true;
  }
 
  function changeLine(handle, op) {
  var no = handle, line = handle;
  if (typeof handle == "number") line = getLine(clipLine(handle));
  else no = lineNo(handle);
  if (no == null) return null;
  if (op(line, no)) changes.push({from: no, to: no + 1});
  else return null;
  return line;
  }
  function setLineClass(handle, className) {
  return changeLine(handle, function(line) {
  if (line.className != className) {
  line.className = className;
  return true;
  }
  });
  }
  function setLineHidden(handle, hidden) {
  return changeLine(handle, function(line, no) {
  if (line.hidden != hidden) {
  line.hidden = hidden;
  updateLineHeight(line, hidden ? 0 : 1);
  if (hidden && (sel.from.line == no || sel.to.line == no))
  setSelection(skipHidden(sel.from, sel.from.line, sel.from.ch),
  skipHidden(sel.to, sel.to.line, sel.to.ch));
  return (gutterDirty = true);
  }
  });
  }
 
  function lineInfo(line) {
  if (typeof line == "number") {
  if (!isLine(line)) return null;
  var n = line;
  line = getLine(line);
  if (!line) return null;
  }
  else {
  var n = lineNo(line);
  if (n == null) return null;
  }
  var marker = line.gutterMarker;
  return {line: n, handle: line, text: line.text, markerText: marker && marker.text,
  markerClass: marker && marker.style, lineClass: line.className};
  }
 
  function stringWidth(str) {
  measure.innerHTML = "<pre><span>x</span></pre>";
  measure.firstChild.firstChild.firstChild.nodeValue = str;
  return measure.firstChild.firstChild.offsetWidth || 10;
  }
  // These are used to go from pixel positions to character
  // positions, taking varying character widths into account.
  function charFromX(line, x) {
  if (x <= 0) return 0;
  var lineObj = getLine(line), text = lineObj.text;
  function getX(len) {
  measure.innerHTML = "<pre><span>" + lineObj.getHTML(null, null, false, tabText, len) + "</span></pre>";
  return measure.firstChild.firstChild.offsetWidth;
  }
  var from = 0, fromX = 0, to = text.length, toX;
  // Guess a suitable upper bound for our search.
  var estimated = Math.min(to, Math.ceil(x / charWidth()));
  for (;;) {
  var estX = getX(estimated);
  if (estX <= x && estimated < to) estimated = Math.min(to, Math.ceil(estimated * 1.2));
  else {toX = estX; to = estimated; break;}
  }
  if (x > toX) return to;
  // Try to guess a suitable lower bound as well.
  estimated = Math.floor(to * 0.8); estX = getX(estimated);
  if (estX < x) {from = estimated; fromX = estX;}
  // Do a binary search between these bounds.
  for (;;) {
  if (to - from <= 1) return (toX - x > x - fromX) ? from : to;
  var middle = Math.ceil((from + to) / 2), middleX = getX(middle);
  if (middleX > x) {to = middle; toX = middleX;}
  else {from = middle; fromX = middleX;}
  }
  }
 
  var tempId = Math.floor(Math.random() * 0xffffff).toString(16);
  function measureLine(line, ch) {
  var extra = "";
  // Include extra text at the end to make sure the measured line is wrapped in the right way.
  if (options.lineWrapping) {
  var end = line.text.indexOf(" ", ch + 2);
  extra = htmlEscape(line.text.slice(ch + 1, end < 0 ? line.text.length : end + (ie ? 5 : 0)));
  }
  measure.innerHTML = "<pre>" + line.getHTML(null, null, false, tabText, ch) +
  '<span id="CodeMirror-temp-' + tempId + '">' + htmlEscape(line.text.charAt(ch) || " ") + "</span>" +
  extra + "</pre>";
  var elt = document.getElementById("CodeMirror-temp-" + tempId);
  var top = elt.offsetTop, left = elt.offsetLeft;
  // Older IEs report zero offsets for spans directly after a wrap
  if (ie && ch && top == 0 && left == 0) {
  var backup = document.createElement("span");
  backup.innerHTML = "x";
  elt.parentNode.insertBefore(backup, elt.nextSibling);
  top = backup.offsetTop;
  }
  return {top: top, left: left};
  }
  function localCoords(pos, inLineWrap) {
  var x, lh = textHeight(), y = lh * (heightAtLine(doc, pos.line) - (inLineWrap ? displayOffset : 0));
  if (pos.ch == 0) x = 0;
  else {
  var sp = measureLine(getLine(pos.line), pos.ch);
  x = sp.left;
  if (options.lineWrapping) y += Math.max(0, sp.top);
  }
  return {x: x, y: y, yBot: y + lh};
  }
  // Coords must be lineSpace-local
  function coordsChar(x, y) {
  if (y < 0) y = 0;
  var th = textHeight(), cw = charWidth(), heightPos = displayOffset + Math.floor(y / th);
  var lineNo = lineAtHeight(doc, heightPos);
  if (lineNo >= doc.size) return {line: doc.size - 1, ch: getLine(doc.size - 1).text.length};
  var lineObj = getLine(lineNo), text = lineObj.text;
  var tw = options.lineWrapping, innerOff = tw ? heightPos - heightAtLine(doc, lineNo) : 0;
  if (x <= 0 && innerOff == 0) return {line: lineNo, ch: 0};
  function getX(len) {
  var sp = measureLine(lineObj, len);
  if (tw) {
  var off = Math.round(sp.top / th);
  return Math.max(0, sp.left + (off - innerOff) * scroller.clientWidth);
  }
  return sp.left;
  }
  var from = 0, fromX = 0, to = text.length, toX;
  // Guess a suitable upper bound for our search.
  var estimated = Math.min(to, Math.ceil((x + innerOff * scroller.clientWidth * .9) / cw));
  for (;;) {
  var estX = getX(estimated);
  if (estX <= x && estimated < to) estimated = Math.min(to, Math.ceil(estimated * 1.2));
  else {toX = estX; to = estimated; break;}
  }
  if (x > toX) return {line: lineNo, ch: to};
  // Try to guess a suitable lower bound as well.
  estimated = Math.floor(to * 0.8); estX = getX(estimated);
  if (estX < x) {from = estimated; fromX = estX;}
  // Do a binary search between these bounds.
  for (;;) {
  if (to - from <= 1) return {line: lineNo, ch: (toX - x > x - fromX) ? from : to};
  var middle = Math.ceil((from + to) / 2), middleX = getX(middle);
  if (middleX > x) {to = middle; toX = middleX;}
  else {from = middle; fromX = middleX;}
  }
  }
  function pageCoords(pos) {
  var local = localCoords(pos, true), off = eltOffset(lineSpace);
  return {x: off.left + local.x, y: off.top + local.y, yBot: off.top + local.yBot};
  }
 
  var cachedHeight, cachedHeightFor, measureText;
  function textHeight() {
  if (measureText == null) {
  measureText = "<pre>";
  for (var i = 0; i < 49; ++i) measureText += "x<br/>";
  measureText += "x</pre>";
  }
  var offsetHeight = lineDiv.clientHeight;
  if (offsetHeight == cachedHeightFor) return cachedHeight;
  cachedHeightFor = offsetHeight;
  measure.innerHTML = measureText;
  cachedHeight = measure.firstChild.offsetHeight / 50 || 1;
  measure.innerHTML = "";
  return cachedHeight;
  }
  var cachedWidth, cachedWidthFor = 0;
  function charWidth() {
  if (scroller.clientWidth == cachedWidthFor) return cachedWidth;
  cachedWidthFor = scroller.clientWidth;
  return (cachedWidth = stringWidth("x"));
  }
  function paddingTop() {return lineSpace.offsetTop;}
  function paddingLeft() {return lineSpace.offsetLeft;}
 
  function posFromMouse(e, liberal) {
  var offW = eltOffset(scroller, true), x, y;
  // Fails unpredictably on IE[67] when mouse is dragged around quickly.
  try { x = e.clientX; y = e.clientY; } catch (e) { return null; }
  // This is a mess of a heuristic to try and determine whether a
  // scroll-bar was clicked or not, and to return null if one was
  // (and !liberal).
  if (!liberal && (x - offW.left > scroller.clientWidth || y - offW.top > scroller.clientHeight))
  return null;
  var offL = eltOffset(lineSpace, true);
  return coordsChar(x - offL.left, y - offL.top);
  }
  function onContextMenu(e) {
  var pos = posFromMouse(e);
  if (!pos || window.opera) return; // Opera is difficult.
  if (posEq(sel.from, sel.to) || posLess(pos, sel.from) || !posLess(pos, sel.to))
  operation(setCursor)(pos.line, pos.ch);
 
  var oldCSS = input.style.cssText;
  inputDiv.style.position = "absolute";
  input.style.cssText = "position: fixed; width: 30px; height: 30px; top: " + (e.clientY - 5) +
  "px; left: " + (e.clientX - 5) + "px; z-index: 1000; background: white; " +
  "border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);";
  leaveInputAlone = true;
  var val = input.value = getSelection();
  focusInput();
  input.select();
  function rehide() {
  var newVal = splitLines(input.value).join("\n");
  if (newVal != val) operation(replaceSelection)(newVal, "end");
  inputDiv.style.position = "relative";
  input.style.cssText = oldCSS;
  leaveInputAlone = false;
  resetInput(true);
  slowPoll();
  }
 
  if (gecko) {
  e_stop(e);
  var mouseup = connect(window, "mouseup", function() {
  mouseup();
  setTimeout(rehide, 20);
  }, true);
  }
  else {
  setTimeout(rehide, 50);
  }
  }
 
  // Cursor-blinking
  function restartBlink() {
  clearInterval(blinker);
  var on = true;
  cursor.style.visibility = "";
  blinker = setInterval(function() {
  cursor.style.visibility = (on = !on) ? "" : "hidden";
  }, 650);
  }
 
  var matching = {"(": ")>", ")": "(<", "[": "]>", "]": "[<", "{": "}>", "}": "{<"};
  function matchBrackets(autoclear) {
  var head = sel.inverted ? sel.from : sel.to, line = getLine(head.line), pos = head.ch - 1;
  var match = (pos >= 0 && matching[line.text.charAt(pos)]) || matching[line.text.charAt(++pos)];
  if (!match) return;
  var ch = match.charAt(0), forward = match.charAt(1) == ">", d = forward ? 1 : -1, st = line.styles;
  for (var off = pos + 1, i = 0, e = st.length; i < e; i+=2)
  if ((off -= st[i].length) <= 0) {var style = st[i+1]; break;}
 
  var stack = [line.text.charAt(pos)], re = /[(){}[\]]/;
  function scan(line, from, to) {
  if (!line.text) return;
  var st = line.styles, pos = forward ? 0 : line.text.length - 1, cur;
  for (var i = forward ? 0 : st.length - 2, e = forward ? st.length : -2; i != e; i += 2*d) {
  var text = st[i];
  if (st[i+1] != null && st[i+1] != style) {pos += d * text.length; continue;}
  for (var j = forward ? 0 : text.length - 1, te = forward ? text.length : -1; j != te; j += d, pos+=d) {
  if (pos >= from && pos < to && re.test(cur = text.charAt(j))) {
  var match = matching[cur];
  if (match.charAt(1) == ">" == forward) stack.push(cur);
  else if (stack.pop() != match.charAt(0)) return {pos: pos, match: false};
  else if (!stack.length) return {pos: pos, match: true};
  }
  }
  }
  }
  for (var i = head.line, e = forward ? Math.min(i + 100, doc.size) : Math.max(-1, i - 100); i != e; i+=d) {
  var line = getLine(i), first = i == head.line;
  var found = scan(line, first && forward ? pos + 1 : 0, first && !forward ? pos : line.text.length);
  if (found) break;
  }
  if (!found) found = {pos: null, match: false};
  var style = found.match ? "CodeMirror-matchingbracket" : "CodeMirror-nonmatchingbracket";
  var one = markText({line: head.line, ch: pos}, {line: head.line, ch: pos+1}, style),
  two = found.pos != null && markText({line: i, ch: found.pos}, {line: i, ch: found.pos + 1}, style);
  var clear = operation(function(){one.clear(); two && two.clear();});
  if (autoclear) setTimeout(clear, 800);
  else bracketHighlighted = clear;
  }
 
  // Finds the line to start with when starting a parse. Tries to
  // find a line with a stateAfter, so that it can start with a
  // valid state. If that fails, it returns the line with the
  // smallest indentation, which tends to need the least context to
  // parse correctly.
  function findStartLine(n) {
  var minindent, minline;
  for (var search = n, lim = n - 40; search > lim; --search) {
  if (search == 0) return 0;
  var line = getLine(search-1);
  if (line.stateAfter) return search;
  var indented = line.indentation(options.tabSize);
  if (minline == null || minindent > indented) {
  minline = search - 1;
  minindent = indented;
  }
  }
  return minline;
  }
  function getStateBefore(n) {
  var start = findStartLine(n), state = start && getLine(start-1).stateAfter;
  if (!state) state = startState(mode);
  else state = copyState(mode, state);
  doc.iter(start, n, function(line) {
  line.highlight(mode, state, options.tabSize);
  line.stateAfter = copyState(mode, state);
  });
  if (start < n) changes.push({from: start, to: n});
  if (n < doc.size && !getLine(n).stateAfter) work.push(n);
  return state;
  }
  function highlightLines(start, end) {
  var state = getStateBefore(start);
  doc.iter(start, end, function(line) {
  line.highlight(mode, state, options.tabSize);
  line.stateAfter = copyState(mode, state);
  });
  }
  function highlightWorker() {
  var end = +new Date + options.workTime;
  var foundWork = work.length;
  while (work.length) {
  if (!getLine(showingFrom).stateAfter) var task = showingFrom;
  else var task = work.pop();
  if (task >= doc.size) continue;
  var start = findStartLine(task), state = start && getLine(start-1).stateAfter;
  if (state) state = copyState(mode, state);
  else state = startState(mode);
 
  var unchanged = 0, compare = mode.compareStates, realChange = false,
  i = start, bail = false;
  doc.iter(i, doc.size, function(line) {
  var hadState = line.stateAfter;
  if (+new Date > end) {
  work.push(i);
  startWorker(options.workDelay);
  if (realChange) changes.push({from: task, to: i + 1});
  return (bail = true);
  }
  var changed = line.highlight(mode, state, options.tabSize);
  if (changed) realChange = true;
  line.stateAfter = copyState(mode, state);
  if (compare) {
  if (hadState && compare(hadState, state)) return true;
  } else {
  if (changed !== false || !hadState) unchanged = 0;
  else if (++unchanged > 3 && (!mode.indent || mode.indent(hadState, "") == mode.indent(state, "")))
  return true;
  }
  ++i;
  });
  if (bail) return;
  if (realChange) changes.push({from: task, to: i + 1});
  }
  if (foundWork && options.onHighlightComplete)
  options.onHighlightComplete(instance);
  }
  function startWorker(time) {
  if (!work.length) return;
  highlight.set(time, operation(highlightWorker));
  }
 
  // Operations are used to wrap changes in such a way that each
  // change won't have to update the cursor and display (which would
  // be awkward, slow, and error-prone), but instead updates are
  // batched and then all combined and executed at once.
  function startOperation() {
  updateInput = userSelChange = textChanged = null;
  changes = []; selectionChanged = false; callbacks = [];
  }
  function endOperation() {
  var reScroll = false, updated;
  if (selectionChanged) reScroll = !scrollCursorIntoView();
  if (changes.length) updated = updateDisplay(changes, true);
  else {
  if (selectionChanged) updateCursor();
  if (gutterDirty) updateGutter();
  }
  if (reScroll) scrollCursorIntoView();
  if (selectionChanged) {scrollEditorIntoView(); restartBlink();}
 
  if (focused && !leaveInputAlone &&
  (updateInput === true || (updateInput !== false && selectionChanged)))
  resetInput(userSelChange);
 
  if (selectionChanged && options.matchBrackets)
  setTimeout(operation(function() {
  if (bracketHighlighted) {bracketHighlighted(); bracketHighlighted = null;}
  if (posEq(sel.from, sel.to)) matchBrackets(false);
  }), 20);
  var tc = textChanged, cbs = callbacks; // these can be reset by callbacks
  if (selectionChanged && options.onCursorActivity)
  options.onCursorActivity(instance);
  if (tc && options.onChange && instance)
  options.onChange(instance, tc);
  for (var i = 0; i < cbs.length; ++i) cbs[i](instance);
  if (updated && options.onUpdate) options.onUpdate(instance);
  }
  var nestedOperation = 0;
  function operation(f) {
  return function() {
  if (!nestedOperation++) startOperation();
  try {var result = f.apply(this, arguments);}
  finally {if (!--nestedOperation) endOperation();}
  return result;
  };
  }
 
  for (var ext in extensions)
  if (extensions.propertyIsEnumerable(ext) &&
  !instance.propertyIsEnumerable(ext))
  instance[ext] = extensions[ext];
  return instance;
  } // (end of function CodeMirror)
 
  // The default configuration options.
  CodeMirror.defaults = {
  value: "",
  mode: null,
  theme: "default",
  indentUnit: 2,
  indentWithTabs: false,
  tabSize: 4,
  keyMap: "default",
  extraKeys: null,
  electricChars: true,
  onKeyEvent: null,
  lineWrapping: false,
  lineNumbers: false,
  gutter: false,
  fixedGutter: false,
  firstLineNumber: 1,
  readOnly: false,
  onChange: null,
  onCursorActivity: null,
  onGutterClick: null,
  onHighlightComplete: null,
  onUpdate: null,
  onFocus: null, onBlur: null, onScroll: null,
  matchBrackets: false,
  workTime: 100,
  workDelay: 200,
  pollInterval: 100,
  undoDepth: 40,
  tabindex: null,
  document: window.document
  };
 
  var mac = /Mac/.test(navigator.platform);
  var win = /Win/.test(navigator.platform);
 
  // Known modes, by name and by MIME
  var modes = {}, mimeModes = {};
  CodeMirror.defineMode = function(name, mode) {
  if (!CodeMirror.defaults.mode && name != "null") CodeMirror.defaults.mode = name;
  modes[name] = mode;
  };
  CodeMirror.defineMIME = function(mime, spec) {
  mimeModes[mime] = spec;
  };
  CodeMirror.getMode = function(options, spec) {
  if (typeof spec == "string" && mimeModes.hasOwnProperty(spec))
  spec = mimeModes[spec];
  if (typeof spec == "string")
  var mname = spec, config = {};
  else if (spec != null)
  var mname = spec.name, config = spec;
  var mfactory = modes[mname];
  if (!mfactory) {
  if (window.console) console.warn("No mode " + mname + " found, falling back to plain text.");
  return CodeMirror.getMode(options, "text/plain");
  }
  return mfactory(options, config || {});
  };
  CodeMirror.listModes = function() {
  var list = [];
  for (var m in modes)
  if (modes.propertyIsEnumerable(m)) list.push(m);
  return list;
  };
  CodeMirror.listMIMEs = function() {
  var list = [];
  for (var m in mimeModes)
  if (mimeModes.propertyIsEnumerable(m)) list.push({mime: m, mode: mimeModes[m]});
  return list;
  };
 
  var extensions = CodeMirror.extensions = {};
  CodeMirror.defineExtension = function(name, func) {
  extensions[name] = func;
  };
 
  var commands = CodeMirror.commands = {
  selectAll: function(cm) {cm.setSelection({line: 0, ch: 0}, {line: cm.lineCount() - 1});},
  killLine: function(cm) {
  var from = cm.getCursor(true), to = cm.getCursor(false), sel = !posEq(from, to);
  if (!sel && cm.getLine(from.line).length == from.ch) cm.replaceRange("", from, {line: from.line + 1, ch: 0});
  else cm.replaceRange("", from, sel ? to : {line: from.line});
  },
  deleteLine: function(cm) {var l = cm.getCursor().line; cm.replaceRange("", {line: l, ch: 0}, {line: l});},
  undo: function(cm) {cm.undo();},
  redo: function(cm) {cm.redo();},
  goDocStart: function(cm) {cm.setCursor(0, 0, true);},
  goDocEnd: function(cm) {cm.setSelection({line: cm.lineCount() - 1}, null, true);},
  goLineStart: function(cm) {cm.setCursor(cm.getCursor().line, 0, true);},
  goLineStartSmart: function(cm) {
  var cur = cm.getCursor();
  var text = cm.getLine(cur.line), firstNonWS = Math.max(0, text.search(/\S/));
  cm.setCursor(cur.line, cur.ch <= firstNonWS && cur.ch ? 0 : firstNonWS, true);
  },
  goLineEnd: function(cm) {cm.setSelection({line: cm.getCursor().line}, null, true);},
  goLineUp: function(cm) {cm.moveV(-1, "line");},
  goLineDown: function(cm) {cm.moveV(1, "line");},
  goPageUp: function(cm) {cm.moveV(-1, "page");},
  goPageDown: function(cm) {cm.moveV(1, "page");},
  goCharLeft: function(cm) {cm.moveH(-1, "char");},
  goCharRight: function(cm) {cm.moveH(1, "char");},
  goColumnLeft: function(cm) {cm.moveH(-1, "column");},
  goColumnRight: function(cm) {cm.moveH(1, "column");},
  goWordLeft: function(cm) {cm.moveH(-1, "word");},
  goWordRight: function(cm) {cm.moveH(1, "word");},
  delCharLeft: function(cm) {cm.deleteH(-1, "char");},
  delCharRight: function(cm) {cm.deleteH(1, "char");},
  delWordLeft: function(cm) {cm.deleteH(-1, "word");},
  delWordRight: function(cm) {cm.deleteH(1, "word");},
  indentAuto: function(cm) {cm.indentSelection("smart");},
  indentMore: function(cm) {cm.indentSelection("add");},
  indentLess: function(cm) {cm.indentSelection("subtract");},
  insertTab: function(cm) {cm.replaceSelection("\t", "end");},
  transposeChars: function(cm) {
  var cur = cm.getCursor(), line = cm.getLine(cur.line);
  if (cur.ch > 0 && cur.ch < line.length - 1)
  cm.replaceRange(line.charAt(cur.ch) + line.charAt(cur.ch - 1),
  {line: cur.line, ch: cur.ch - 1}, {line: cur.line, ch: cur.ch + 1});
  },
  newlineAndIndent: function(cm) {
  cm.replaceSelection("\n", "end");
  cm.indentLine(cm.getCursor().line);
  },
  toggleOverwrite: function(cm) {cm.toggleOverwrite();}
  };
 
  var keyMap = CodeMirror.keyMap = {};
  keyMap.basic = {
  "Left": "goCharLeft", "Right": "goCharRight", "Up": "goLineUp", "Down": "goLineDown",
  "End": "goLineEnd", "Home": "goLineStartSmart", "PageUp": "goPageUp", "PageDown": "goPageDown",
  "Delete": "delCharRight", "Backspace": "delCharLeft", "Tab": "indentMore", "Shift-Tab": "indentLess",
  "Enter": "newlineAndIndent", "Insert": "toggleOverwrite"
  };
  // Note that the save and find-related commands aren't defined by
  // default. Unknown commands are simply ignored.
  keyMap.pcDefault = {
  "Ctrl-A": "selectAll", "Ctrl-D": "deleteLine", "Ctrl-Z": "undo", "Shift-Ctrl-Z": "redo", "Ctrl-Y": "redo",
  "Ctrl-Home": "goDocStart", "Alt-Up": "goDocStart", "Ctrl-End": "goDocEnd", "Ctrl-Down": "goDocEnd",
  "Ctrl-Left": "goWordLeft", "Ctrl-Right": "goWordRight", "Alt-Left": "goLineStart", "Alt-Right": "goLineEnd",
  "Ctrl-Backspace": "delWordLeft", "Ctrl-Delete": "delWordRight", "Ctrl-S": "save", "Ctrl-F": "find",
  "Ctrl-G": "findNext", "Shift-Ctrl-G": "findPrev", "Shift-Ctrl-F": "replace", "Shift-Ctrl-R": "replaceAll",
  fallthrough: "basic"
  };
  keyMap.macDefault = {
  "Cmd-A": "selectAll", "Cmd-D": "deleteLine", "Cmd-Z": "undo", "Shift-Cmd-Z": "redo", "Cmd-Y": "redo",
  "Cmd-Up": "goDocStart", "Cmd-End": "goDocEnd", "Cmd-Down": "goDocEnd", "Alt-Left": "goWordLeft",
  "Alt-Right": "goWordRight", "Cmd-Left": "goLineStart", "Cmd-Right": "goLineEnd", "Alt-Backspace": "delWordLeft",
  "Ctrl-Alt-Backspace": "delWordRight", "Alt-Delete": "delWordRight", "Cmd-S": "save", "Cmd-F": "find",
  "Cmd-G": "findNext", "Shift-Cmd-G": "findPrev", "Cmd-Alt-F": "replace", "Shift-Cmd-Alt-F": "replaceAll",
  fallthrough: ["basic", "emacsy"]
  };
  keyMap["default"] = mac ? keyMap.macDefault : keyMap.pcDefault;
  keyMap.emacsy = {
  "Ctrl-F": "goCharRight", "Ctrl-B": "goCharLeft", "Ctrl-P": "goLineUp", "Ctrl-N": "goLineDown",
  "Alt-F": "goWordRight", "Alt-B": "goWordLeft", "Ctrl-A": "goLineStart", "Ctrl-E": "goLineEnd",
  "Ctrl-V": "goPageUp", "Shift-Ctrl-V": "goPageDown", "Ctrl-D": "delCharRight", "Ctrl-H": "delCharLeft",
  "Alt-D": "delWordRight", "Alt-Backspace": "delWordLeft", "Ctrl-K": "killLine", "Ctrl-T": "transposeChars"
  };
 
  function lookupKey(name, extraMap, map) {
  function lookup(name, map, ft) {
  var found = map[name];
  if (found != null) return found;
  if (ft == null) ft = map.fallthrough;
  if (ft == null) return map.catchall;
  if (typeof ft == "string") return lookup(name, keyMap[ft]);
  for (var i = 0, e = ft.length; i < e; ++i) {
  found = lookup(name, keyMap[ft[i]]);
  if (found != null) return found;
  }
  return null;
  }
  return extraMap ? lookup(name, extraMap, map) : lookup(name, keyMap[map]);
  }
  function isModifierKey(event) {
  var name = keyNames[event.keyCode];
  return name == "Ctrl" || name == "Alt" || name == "Shift" || name == "Mod";
  }
 
  CodeMirror.fromTextArea = function(textarea, options) {
  if (!options) options = {};
  options.value = textarea.value;
  if (!options.tabindex && textarea.tabindex)
  options.tabindex = textarea.tabindex;
 
  function save() {textarea.value = instance.getValue();}
  if (textarea.form) {
  // Deplorable hack to make the submit method do the right thing.
  var rmSubmit = connect(textarea.form, "submit", save, true);
  if (typeof textarea.form.submit == "function") {
  var realSubmit = textarea.form.submit;
  function wrappedSubmit() {
  save();
  textarea.form.submit = realSubmit;
  textarea.form.submit();
  textarea.form.submit = wrappedSubmit;
  }
  textarea.form.submit = wrappedSubmit;
  }
  }
 
  textarea.style.display = "none";
  var instance = CodeMirror(function(node) {
  textarea.parentNode.insertBefore(node, textarea.nextSibling);
  }, options);
  instance.save = save;
  instance.getTextArea = function() { return textarea; };
  instance.toTextArea = function() {
  save();
  textarea.parentNode.removeChild(instance.getWrapperElement());
  textarea.style.display = "";
  if (textarea.form) {
  rmSubmit();
  if (typeof textarea.form.submit == "function")
  textarea.form.submit = realSubmit;
  }
  };
  return instance;
  };
 
  // Utility functions for working with state. Exported because modes
  // sometimes need to do this.
  function copyState(mode, state) {
  if (state === true) return state;
  if (mode.copyState) return mode.copyState(state);
  var nstate = {};
  for (var n in state) {
  var val = state[n];
  if (val instanceof Array) val = val.concat([]);
  nstate[n] = val;
  }
  return nstate;
  }
  CodeMirror.copyState = copyState;
  function startState(mode, a1, a2) {
  return mode.startState ? mode.startState(a1, a2) : true;
  }
  CodeMirror.startState = startState;
 
  // The character stream used by a mode's parser.
  function StringStream(string, tabSize) {
  this.pos = this.start = 0;
  this.string = string;
  this.tabSize = tabSize || 8;
  }
  StringStream.prototype = {
  eol: function() {return this.pos >= this.string.length;},
  sol: function() {return this.pos == 0;},
  peek: function() {return this.string.charAt(this.pos);},
  next: function() {
  if (this.pos < this.string.length)
  return this.string.charAt(this.pos++);
  },
  eat: function(match) {
  var ch = this.string.charAt(this.pos);
  if (typeof match == "string") var ok = ch == match;
  else var ok = ch && (match.test ? match.test(ch) : match(ch));
  if (ok) {++this.pos; return ch;}
  },
  eatWhile: function(match) {
  var start = this.pos;
  while (this.eat(match)){}
  return this.pos > start;
  },
  eatSpace: function() {
  var start = this.pos;
  while (/[\s\u00a0]/.test(this.string.charAt(this.pos))) ++this.pos;
  return this.pos > start;
  },
  skipToEnd: function() {this.pos = this.string.length;},
  skipTo: function(ch) {
  var found = this.string.indexOf(ch, this.pos);
  if (found > -1) {this.pos = found; return true;}
  },
  backUp: function(n) {this.pos -= n;},
  column: function() {return countColumn(this.string, this.start, this.tabSize);},
  indentation: function() {return countColumn(this.string, null, this.tabSize);},
  match: function(pattern, consume, caseInsensitive) {
  if (typeof pattern == "string") {
  function cased(str) {return caseInsensitive ? str.toLowerCase() : str;}
  if (cased(this.string).indexOf(cased(pattern), this.pos) == this.pos) {
  if (consume !== false) this.pos += pattern.length;
  return true;
  }
  }
  else {
  var match = this.string.slice(this.pos).match(pattern);
  if (match && consume !== false) this.pos += match[0].length;
  return match;
  }
  },
  current: function(){return this.string.slice(this.start, this.pos);}
  };
  CodeMirror.StringStream = StringStream;
 
  function MarkedText(from, to, className, set) {
  this.from = from; this.to = to; this.style = className; this.set = set;
  }
  MarkedText.prototype = {
  attach: function(line) { this.set.push(line); },
  detach: function(line) {
  var ix = indexOf(this.set, line);
  if (ix > -1) this.set.splice(ix, 1);
  },
  split: function(pos, lenBefore) {
  if (this.to <= pos && this.to != null) return null;
  var from = this.from < pos || this.from == null ? null : this.from - pos + lenBefore;
  var to = this.to == null ? null : this.to - pos + lenBefore;
  return new MarkedText(from, to, this.style, this.set);
  },
  dup: function() { return new MarkedText(null, null, this.style, this.set); },
  clipTo: function(fromOpen, from, toOpen, to, diff) {
  if (this.from != null && this.from >= from)
  this.from = Math.max(to, this.from) + diff;
  if (this.to != null && this.to > from)
  this.to = to < this.to ? this.to + diff : from;
  if (fromOpen && to > this.from && (to < this.to || this.to == null))
  this.from = null;
  if (toOpen && (from < this.to || this.to == null) && (from > this.from || this.from == null))
  this.to = null;
  },
  isDead: function() { return this.from != null && this.to != null && this.from >= this.to; },
  sameSet: function(x) { return this.set == x.set; }
  };
 
  function Bookmark(pos) {
  this.from = pos; this.to = pos; this.line = null;
  }
  Bookmark.prototype = {
  attach: function(line) { this.line = line; },
  detach: function(line) { if (this.line == line) this.line = null; },
  split: function(pos, lenBefore) {
  if (pos < this.from) {
  this.from = this.to = (this.from - pos) + lenBefore;
  return this;
  }
  },
  isDead: function() { return this.from > this.to; },
  clipTo: function(fromOpen, from, toOpen, to, diff) {
  if ((fromOpen || from < this.from) && (toOpen || to > this.to)) {
  this.from = 0; this.to = -1;
  } else if (this.from > from) {
  this.from = this.to = Math.max(to, this.from) + diff;
  }
  },
  sameSet: function(x) { return false; },
  find: function() {
  if (!this.line || !this.line.parent) return null;
  return {line: lineNo(this.line), ch: this.from};
  },
  clear: function() {
  if (this.line) {
  var found = indexOf(this.line.marked, this);
  if (found != -1) this.line.marked.splice(found, 1);
  this.line = null;
  }
  }
  };
 
  // Line objects. These hold state related to a line, including
  // highlighting info (the styles array).
  function Line(text, styles) {
  this.styles = styles || [text, null];
  this.text = text;
  this.height = 1;
  this.marked = this.gutterMarker = this.className = this.handlers = null;
  this.stateAfter = this.parent = this.hidden = null;
  }
  Line.inheritMarks = function(text, orig) {
  var ln = new Line(text), mk = orig && orig.marked;
  if (mk) {
  for (var i = 0; i < mk.length; ++i) {
  if (mk[i].to == null && mk[i].style) {
  var newmk = ln.marked || (ln.marked = []), mark = mk[i];
  var nmark = mark.dup(); newmk.push(nmark); nmark.attach(ln);
  }
  }
  }
  return ln;
  }
  Line.prototype = {
  // Replace a piece of a line, keeping the styles around it intact.
  replace: function(from, to_, text) {
  var st = [], mk = this.marked, to = to_ == null ? this.text.length : to_;
  copyStyles(0, from, this.styles, st);
  if (text) st.push(text, null);
  copyStyles(to, this.text.length, this.styles, st);
  this.styles = st;
  this.text = this.text.slice(0, from) + text + this.text.slice(to);
  this.stateAfter = null;
  if (mk) {
  var diff = text.length - (to - from);
  for (var i = 0, mark = mk[i]; i < mk.length; ++i) {
  mark.clipTo(from == null, from || 0, to_ == null, to, diff);
  if (mark.isDead()) {mark.detach(this); mk.splice(i--, 1);}
  }
  }
  },
  // Split a part off a line, keeping styles and markers intact.
  split: function(pos, textBefore) {
  var st = [textBefore, null], mk = this.marked;
  copyStyles(pos, this.text.length, this.styles, st);
  var taken = new Line(textBefore + this.text.slice(pos), st);
  if (mk) {
  for (var i = 0; i < mk.length; ++i) {
  var mark = mk[i];
  var newmark = mark.split(pos, textBefore.length);
  if (newmark) {
  if (!taken.marked) taken.marked = [];
  taken.marked.push(newmark); newmark.attach(taken);
  }
  }
  }
  return taken;
  },
  append: function(line) {
  var mylen = this.text.length, mk = line.marked, mymk = this.marked;
  this.text += line.text;
  copyStyles(0, line.text.length, line.styles, this.styles);
  if (mymk) {
  for (var i = 0; i < mymk.length; ++i)
  if (mymk[i].to == null) mymk[i].to = mylen;
  }
  if (mk && mk.length) {
  if (!mymk) this.marked = mymk = [];
  outer: for (var i = 0; i < mk.length; ++i) {
  var mark = mk[i];
  if (!mark.from) {
  for (var j = 0; j < mymk.length; ++j) {
  var mymark = mymk[j];
  if (mymark.to == mylen && mymark.sameSet(mark)) {
  mymark.to = mark.to == null ? null : mark.to + mylen;
  if (mymark.isDead()) {
  mymark.detach(this);
  mk.splice(i--, 1);
  }
  continue outer;
  }
  }
  }
  mymk.push(mark);
  mark.attach(this);
  mark.from += mylen;
  if (mark.to != null) mark.to += mylen;
  }
  }
  },
  fixMarkEnds: function(other) {
  var mk = this.marked, omk = other.marked;
  if (!mk) return;
  for (var i = 0; i < mk.length; ++i) {
  var mark = mk[i], close = mark.to == null;
  if (close && omk) {
  for (var j = 0; j < omk.length; ++j)
  if (omk[j].sameSet(mark)) {close = false; break;}
  }
  if (close) mark.to = this.text.length;
  }
  },
  fixMarkStarts: function() {
  var mk = this.marked;
  if (!mk) return;
  for (var i = 0; i < mk.length; ++i)
  if (mk[i].from == null) mk[i].from = 0;
  },
  addMark: function(mark) {
  mark.attach(this);
  if (this.marked == null) this.marked = [];
  this.marked.push(mark);
  this.marked.sort(function(a, b){return (a.from || 0) - (b.from || 0);});
  },
  // Run the given mode's parser over a line, update the styles
  // array, which contains alternating fragments of text and CSS
  // classes.
  highlight: function(mode, state, tabSize) {
  var stream = new StringStream(this.text, tabSize), st = this.styles, pos = 0;
  var changed = false, curWord = st[0], prevWord;
  if (this.text == "" && mode.blankLine) mode.blankLine(state);
  while (!stream.eol()) {
  var style = mode.token(stream, state);
  var substr = this.text.slice(stream.start, stream.pos);
  stream.start = stream.pos;
  if (pos && st[pos-1] == style)
  st[pos-2] += substr;
  else if (substr) {
  if (!changed && (st[pos+1] != style || (pos && st[pos-2] != prevWord))) changed = true;
  st[pos++] = substr; st[pos++] = style;
  prevWord = curWord; curWord = st[pos];
  }
  // Give up when line is ridiculously long
  if (stream.pos > 5000) {
  st[pos++] = this.text.slice(stream.pos); st[pos++] = null;
  break;
  }
  }
  if (st.length != pos) {st.length = pos; changed = true;}
  if (pos && st[pos-2] != prevWord) changed = true;
  // Short lines with simple highlights return null, and are
  // counted as changed by the driver because they are likely to
  // highlight the same way in various contexts.
  return changed || (st.length < 5 && this.text.length < 10 ? null : false);
  },
  // Fetch the parser token for a given character. Useful for hacks
  // that want to inspect the mode state (say, for completion).
  getTokenAt: function(mode, state, ch) {
  var txt = this.text, stream = new StringStream(txt);
  while (stream.pos < ch && !stream.eol()) {
  stream.start = stream.pos;
  var style = mode.token(stream, state);
  }
  return {start: stream.start,
  end: stream.pos,
  string: stream.current(),
  className: style || null,
  state: state};
  },
  indentation: function(tabSize) {return countColumn(this.text, null, tabSize);},
  // Produces an HTML fragment for the line, taking selection,
  // marking, and highlighting into account.
  getHTML: function(sfrom, sto, includePre, tabText, endAt) {
  var html = [], first = true;
  if (includePre)
  html.push(this.className ? '<pre class="' + this.className + '">': "<pre>");
  function span(text, style) {
  if (!text) return;
  // Work around a bug where, in some compat modes, IE ignores leading spaces
  if (first && ie && text.charAt(0) == " ") text = "\u00a0" + text.slice(1);
  first = false;
  if (style) html.push('<span class="', style, '">', htmlEscape(text).replace(/\t/g, tabText), "</span>");
  else html.push(htmlEscape(text).replace(/\t/g, tabText));
  }
  var st = this.styles, allText = this.text, marked = this.marked;
  if (sfrom == sto) sfrom = null;
  var len = allText.length;
  if (endAt != null) len = Math.min(endAt, len);
 
  if (!allText && endAt == null)
  span(" ", sfrom != null && sto == null ? "CodeMirror-selected" : null);
  else if (!marked && sfrom == null)
  for (var i = 0, ch = 0; ch < len; i+=2) {
  var str = st[i], style = st[i+1], l = str.length;
  if (ch + l > len) str = str.slice(0, len - ch);
  ch += l;
  span(str, style && "cm-" + style);
  }
  else {
  var pos = 0, i = 0, text = "", style, sg = 0;
  var markpos = -1, mark = null;
  function nextMark() {
  if (marked) {
  markpos += 1;
  mark = (markpos < marked.length) ? marked[markpos] : null;
  }
  }
  nextMark();
  while (pos < len) {
  var upto = len;
  var extraStyle = "";
  if (sfrom != null) {
  if (sfrom > pos) upto = sfrom;
  else if (sto == null || sto > pos) {
  extraStyle = " CodeMirror-selected";
  if (sto != null) upto = Math.min(upto, sto);
  }
  }
  while (mark && mark.to != null && mark.to <= pos) nextMark();
  if (mark) {
  if (mark.from > pos) upto = Math.min(upto, mark.from);
  else {
  extraStyle += " " + mark.style;
  if (mark.to != null) upto = Math.min(upto, mark.to);
  }
  }
  for (;;) {
  var end = pos + text.length;
  var appliedStyle = style;
  if (extraStyle) appliedStyle = style ? style + extraStyle : extraStyle;
  span(end > upto ? text.slice(0, upto - pos) : text, appliedStyle);
  if (end >= upto) {text = text.slice(upto - pos); pos = upto; break;}
  pos = end;
  text = st[i++]; style = "cm-" + st[i++];
  }
  }
  if (sfrom != null && sto == null) span(" ", "CodeMirror-selected");
  }
  if (includePre) html.push("</pre>");
  return html.join("");
  },
  cleanUp: function() {
  this.parent = null;
  if (this.marked)
  for (var i = 0, e = this.marked.length; i < e; ++i) this.marked[i].detach(this);
  }
  };
  // Utility used by replace and split above
  function copyStyles(from, to, source, dest) {
  for (var i = 0, pos = 0, state = 0; pos < to; i+=2) {
  var part = source[i], end = pos + part.length;
  if (state == 0) {
  if (end > from) dest.push(part.slice(from - pos, Math.min(part.length, to - pos)), source[i+1]);
  if (end >= from) state = 1;
  }
  else if (state == 1) {
  if (end > to) dest.push(part.slice(0, to - pos), source[i+1]);
  else dest.push(part, source[i+1]);
  }
  pos = end;
  }
  }
 
  // Data structure that holds the sequence of lines.
  function LeafChunk(lines) {
  this.lines = lines;
  this.parent = null;
  for (var i = 0, e = lines.length, height = 0; i < e; ++i) {
  lines[i].parent = this;
  height += lines[i].height;
  }
  this.height = height;
  }
  LeafChunk.prototype = {
  chunkSize: function() { return this.lines.length; },
  remove: function(at, n, callbacks) {
  for (var i = at, e = at + n; i < e; ++i) {
  var line = this.lines[i];
  this.height -= line.height;
  line.cleanUp();
  if (line.handlers)
  for (var j = 0; j < line.handlers.length; ++j) callbacks.push(line.handlers[j]);
  }
  this.lines.splice(at, n);
  },
  collapse: function(lines) {
  lines.splice.apply(lines, [lines.length, 0].concat(this.lines));
  },
  insertHeight: function(at, lines, height) {
  this.height += height;
  this.lines.splice.apply(this.lines, [at, 0].concat(lines));
  for (var i = 0, e = lines.length; i < e; ++i) lines[i].parent = this;
  },
  iterN: function(at, n, op) {
  for (var e = at + n; at < e; ++at)
  if (op(this.lines[at])) return true;
  }
  };
  function BranchChunk(children) {
  this.children = children;
  var size = 0, height = 0;
  for (var i = 0, e = children.length; i < e; ++i) {
  var ch = children[i];
  size += ch.chunkSize(); height += ch.height;
  ch.parent = this;
  }
  this.size = size;
  this.height = height;
  this.parent = null;
  }
  BranchChunk.prototype = {
  chunkSize: function() { return this.size; },
  remove: function(at, n, callbacks) {
  this.size -= n;
  for (var i = 0; i < this.children.length; ++i) {
  var child = this.children[i], sz = child.chunkSize();
  if (at < sz) {
  var rm = Math.min(n, sz - at), oldHeight = child.height;
  child.remove(at, rm, callbacks);
  this.height -= oldHeight - child.height;
  if (sz == rm) { this.children.splice(i--, 1); child.parent = null; }
  if ((n -= rm) == 0) break;
  at = 0;
  } else at -= sz;
  }
  if (this.size - n < 25) {
  var lines = [];
  this.collapse(lines);
  this.children = [new LeafChunk(lines)];
  }
  },
  collapse: function(lines) {
  for (var i = 0, e = this.children.length; i < e; ++i) this.children[i].collapse(lines);
  },
  insert: function(at, lines) {
  var height = 0;
  for (var i = 0, e = lines.length; i < e; ++i) height += lines[i].height;
  this.insertHeight(at, lines, height);
  },
  insertHeight: function(at, lines, height) {
  this.size += lines.length;
  this.height += height;
  for (var i = 0, e = this.children.length; i < e; ++i) {
  var child = this.children[i], sz = child.chunkSize();
  if (at <= sz) {
  child.insertHeight(at, lines, height);
  if (child.lines && child.lines.length > 50) {
  while (child.lines.length > 50) {
  var spilled = child.lines.splice(child.lines.length - 25, 25);
  var newleaf = new LeafChunk(spilled);
  child.height -= newleaf.height;
  this.children.splice(i + 1, 0, newleaf);
  newleaf.parent = this;
  }
  this.maybeSpill();
  }
  break;
  }
  at -= sz;
  }
  },
  maybeSpill: function() {
  if (this.children.length <= 10) return;
  var me = this;
  do {
  var spilled = me.children.splice(me.children.length - 5, 5);
  var sibling = new BranchChunk(spilled);
  if (!me.parent) { // Become the parent node
  var copy = new BranchChunk(me.children);
  copy.parent = me;
  me.children = [copy, sibling];
  me = copy;
  } else {
  me.size -= sibling.size;
  me.height -= sibling.height;
  var myIndex = indexOf(me.parent.children, me);
  me.parent.children.splice(myIndex + 1, 0, sibling);
  }
  sibling.parent = me.parent;
  } while (me.children.length > 10);
  me.parent.maybeSpill();
  },
  iter: function(from, to, op) { this.iterN(from, to - from, op); },
  iterN: function(at, n, op) {
  for (var i = 0, e = this.children.length; i < e; ++i) {
  var child = this.children[i], sz = child.chunkSize();
  if (at < sz) {
  var used = Math.min(n, sz - at);
  if (child.iterN(at, used, op)) return true;
  if ((n -= used) == 0) break;
  at = 0;
  } else at -= sz;
  }
  }
  };
 
  function getLineAt(chunk, n) {
  while (!chunk.lines) {
  for (var i = 0;; ++i) {
  var child = chunk.children[i], sz = child.chunkSize();
  if (n < sz) { chunk = child; break; }
  n -= sz;
  }
  }
  return chunk.lines[n];
  }
  function lineNo(line) {
  if (line.parent == null) return null;
  var cur = line.parent, no = indexOf(cur.lines, line);
  for (var chunk = cur.parent; chunk; cur = chunk, chunk = chunk.parent) {
  for (var i = 0, e = chunk.children.length; ; ++i) {
  if (chunk.children[i] == cur) break;
  no += chunk.children[i].chunkSize();
  }
  }
  return no;
  }
  function lineAtHeight(chunk, h) {
  var n = 0;
  outer: do {
  for (var i = 0, e = chunk.children.length; i < e; ++i) {
  var child = chunk.children[i], ch = child.height;
  if (h < ch) { chunk = child; continue outer; }
  h -= ch;
  n += child.chunkSize();
  }
  return n;
  } while (!chunk.lines);
  for (var i = 0, e = chunk.lines.length; i < e; ++i) {
  var line = chunk.lines[i], lh = line.height;
  if (h < lh) break;
  h -= lh;
  }
  return n + i;
  }
  function heightAtLine(chunk, n) {
  var h = 0;
  outer: do {
  for (var i = 0, e = chunk.children.length; i < e; ++i) {
  var child = chunk.children[i], sz = child.chunkSize();
  if (n < sz) { chunk = child; continue outer; }
  n -= sz;
  h += child.height;
  }
  return h;
  } while (!chunk.lines);
  for (var i = 0; i < n; ++i) h += chunk.lines[i].height;
  return h;
  }
 
  // The history object 'chunks' changes that are made close together
  // and at almost the same time into bigger undoable units.
  function History() {
  this.time = 0;
  this.done = []; this.undone = [];
  }
  History.prototype = {
  addChange: function(start, added, old) {
  this.undone.length = 0;
  var time = +new Date, last = this.done[this.done.length - 1];
  if (time - this.time > 400 || !last ||
  last.start > start + added || last.start + last.added < start - last.added + last.old.length)
  this.done.push({start: start, added: added, old: old});
  else {
  var oldoff = 0;
  if (start < last.start) {
  for (var i = last.start - start - 1; i >= 0; --i)
  last.old.unshift(old[i]);
  last.added += last.start - start;
  last.start = start;
  }
  else if (last.start < start) {
  oldoff = start - last.start;
  added += oldoff;
  }
  for (var i = last.added - oldoff, e = old.length; i < e; ++i)
  last.old.push(old[i]);
  if (last.added < added) last.added = added;
  }
  this.time = time;
  }
  };
 
  function stopMethod() {e_stop(this);}
  // Ensure an event has a stop method.
  function addStop(event) {
  if (!event.stop) event.stop = stopMethod;
  return event;
  }
 
  function e_preventDefault(e) {
  if (e.preventDefault) e.preventDefault();
  else e.returnValue = false;
  }
  function e_stopPropagation(e) {
  if (e.stopPropagation) e.stopPropagation();
  else e.cancelBubble = true;
  }
  function e_stop(e) {e_preventDefault(e); e_stopPropagation(e);}
  CodeMirror.e_stop = e_stop;
  CodeMirror.e_preventDefault = e_preventDefault;
  CodeMirror.e_stopPropagation = e_stopPropagation;
 
  function e_target(e) {return e.target || e.srcElement;}
  function e_button(e) {
  if (e.which) return e.which;
  else if (e.button & 1) return 1;
  else if (e.button & 2) return 3;
  else if (e.button & 4) return 2;
  }
 
  // Event handler registration. If disconnect is true, it'll return a
  // function that unregisters the handler.
  function connect(node, type, handler, disconnect) {
  if (typeof node.addEventListener == "function") {
  node.addEventListener(type, handler, false);
  if (disconnect) return function() {node.removeEventListener(type, handler, false);};
  }
  else {
  var wrapHandler = function(event) {handler(event || window.event);};
  node.attachEvent("on" + type, wrapHandler);
  if (disconnect) return function() {node.detachEvent("on" + type, wrapHandler);};
  }
  }
  CodeMirror.connect = connect;
 
  function Delayed() {this.id = null;}
  Delayed.prototype = {set: function(ms, f) {clearTimeout(this.id); this.id = setTimeout(f, ms);}};
 
  // Detect drag-and-drop
  var dragAndDrop = function() {
  // IE8 has ondragstart and ondrop properties, but doesn't seem to
  // actually support ondragstart the way it's supposed to work.
  if (/MSIE [1-8]\b/.test(navigator.userAgent)) return false;
  var div = document.createElement('div');
  return "draggable" in div;
  }();
 
  var gecko = /gecko\/\d{7}/i.test(navigator.userAgent);
  var ie = /MSIE \d/.test(navigator.userAgent);
  var webkit = /WebKit\//.test(navigator.userAgent);
 
  var lineSep = "\n";
  // Feature-detect whether newlines in textareas are converted to \r\n
  (function () {
  var te = document.createElement("textarea");
  te.value = "foo\nbar";
  if (te.value.indexOf("\r") > -1) lineSep = "\r\n";
  }());
 
  // Counts the column offset in a string, taking tabs into account.
  // Used mostly to find indentation.
  function countColumn(string, end, tabSize) {
  if (end == null) {
  end = string.search(/[^\s\u00a0]/);
  if (end == -1) end = string.length;
  }
  for (var i = 0, n = 0; i < end; ++i) {
  if (string.charAt(i) == "\t") n += tabSize - (n % tabSize);
  else ++n;
  }
  return n;
  }
 
  function computedStyle(elt) {
  if (elt.currentStyle) return elt.currentStyle;
  return window.getComputedStyle(elt, null);
  }
 
  // Find the position of an element by following the offsetParent chain.
  // If screen==true, it returns screen (rather than page) coordinates.
  function eltOffset(node, screen) {
  var bod = node.ownerDocument.body;
  var x = 0, y = 0, skipBody = false;
  for (var n = node; n; n = n.offsetParent) {
  var ol = n.offsetLeft, ot = n.offsetTop;
  // Firefox reports weird inverted offsets when the body has a border.
  if (n == bod) { x += Math.abs(ol); y += Math.abs(ot); }
  else { x += ol, y += ot; }
  if (screen && computedStyle(n).position == "fixed")
  skipBody = true;
  }
  var e = screen && !skipBody ? null : bod;
  for (var n = node.parentNode; n != e; n = n.parentNode)
  if (n.scrollLeft != null) { x -= n.scrollLeft; y -= n.scrollTop;}
  return {left: x, top: y};
  }
  // Use the faster and saner getBoundingClientRect method when possible.
  if (document.documentElement.getBoundingClientRect != null) eltOffset = function(node, screen) {
  // Take the parts of bounding client rect that we are interested in so we are able to edit if need be,
  // since the returned value cannot be changed externally (they are kept in sync as the element moves within the page)
  try { var box = node.getBoundingClientRect(); box = { top: box.top, left: box.left }; }
  catch(e) { box = {top: 0, left: 0}; }
  if (!screen) {
  // Get the toplevel scroll, working around browser differences.
  if (window.pageYOffset == null) {
  var t = document.documentElement || document.body.parentNode;
  if (t.scrollTop == null) t = document.body;
  box.top += t.scrollTop; box.left += t.scrollLeft;
  } else {
  box.top += window.pageYOffset; box.left += window.pageXOffset;
  }
  }
  return box;
  };
 
  // Get a node's text content.
  function eltText(node) {
  return node.textContent || node.innerText || node.nodeValue || "";
  }
 
  // Operations on {line, ch} objects.
  function posEq(a, b) {return a.line == b.line && a.ch == b.ch;}
  function posLess(a, b) {return a.line < b.line || (a.line == b.line && a.ch < b.ch);}
  function copyPos(x) {return {line: x.line, ch: x.ch};}
 
  var escapeElement = document.createElement("pre");
  function htmlEscape(str) {
  escapeElement.textContent = str;
  return escapeElement.innerHTML;
  }
  // Recent (late 2011) Opera betas insert bogus newlines at the start
  // of the textContent, so we strip those.
  if (htmlEscape("a") == "\na")
  htmlEscape = function(str) {
  escapeElement.textContent = str;
  return escapeElement.innerHTML.slice(1);
  };
  // Some IEs don't preserve tabs through innerHTML
  else if (htmlEscape("\t") != "\t")
  htmlEscape = function(str) {
  escapeElement.innerHTML = "";
  escapeElement.appendChild(document.createTextNode(str));
  return escapeElement.innerHTML;
  };
  CodeMirror.htmlEscape = htmlEscape;
 
  // Used to position the cursor after an undo/redo by finding the
  // last edited character.
  function editEnd(from, to) {
  if (!to) return from ? from.length : 0;
  if (!from) return to.length;
  for (var i = from.length, j = to.length; i >= 0 && j >= 0; --i, --j)
  if (from.charAt(i) != to.charAt(j)) break;
  return j + 1;
  }
 
  function indexOf(collection, elt) {
  if (collection.indexOf) return collection.indexOf(elt);
  for (var i = 0, e = collection.length; i < e; ++i)
  if (collection[i] == elt) return i;
  return -1;
  }
  function isWordChar(ch) {
  return /\w/.test(ch) || ch.toUpperCase() != ch.toLowerCase();
  }
 
  // See if "".split is the broken IE version, if so, provide an
  // alternative way to split lines.
  var splitLines = "\n\nb".split(/\n/).length != 3 ? function(string) {
  var pos = 0, nl, result = [];
  while ((nl = string.indexOf("\n", pos)) > -1) {
  result.push(string.slice(pos, string.charAt(nl-1) == "\r" ? nl - 1 : nl));
  pos = nl + 1;
  }
  result.push(string.slice(pos));
  return result;
  } : function(string){return string.split(/\r?\n/);};
  CodeMirror.splitLines = splitLines;
 
  var hasSelection = window.getSelection ? function(te) {
  try { return te.selectionStart != te.selectionEnd; }
  catch(e) { return false; }
  } : function(te) {
  try {var range = te.ownerDocument.selection.createRange();}
  catch(e) {}
  if (!range || range.parentElement() != te) return false;
  return range.compareEndPoints("StartToEnd", range) != 0;
  };
 
  CodeMirror.defineMode("null", function() {
  return {token: function(stream) {stream.skipToEnd();}};
  });
  CodeMirror.defineMIME("text/plain", "null");
 
  var keyNames = {3: "Enter", 8: "Backspace", 9: "Tab", 13: "Enter", 16: "Shift", 17: "Ctrl", 18: "Alt",
  19: "Pause", 20: "CapsLock", 27: "Esc", 32: "Space", 33: "PageUp", 34: "PageDown", 35: "End",
  36: "Home", 37: "Left", 38: "Up", 39: "Right", 40: "Down", 44: "PrintScrn", 45: "Insert",
  46: "Delete", 59: ";", 91: "Mod", 92: "Mod", 93: "Mod", 186: ";", 187: "=", 188: ",",
  189: "-", 190: ".", 191: "/", 192: "`", 219: "[", 220: "\\", 221: "]", 222: "'", 63276: "PageUp",
  63277: "PageDown", 63275: "End", 63273: "Home", 63234: "Left", 63232: "Up", 63235: "Right",
  63233: "Down", 63302: "Insert", 63272: "Delete"};
  CodeMirror.keyNames = keyNames;
  (function() {
  // Number keys
  for (var i = 0; i < 10; i++) keyNames[i + 48] = String(i);
  // Alphabetic keys
  for (var i = 65; i <= 90; i++) keyNames[i] = String.fromCharCode(i);
  // Function keys
  for (var i = 1; i <= 12; i++) keyNames[i + 111] = keyNames[i + 63235] = "F" + i;
  })();
 
  return CodeMirror;
  })();
 
  .CodeMirror-dialog {
  position: relative;
  }
 
  .CodeMirror-dialog > div {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: white;
  border-bottom: 1px solid #eee;
  z-index: 15;
  padding: .1em .8em;
  overflow: hidden;
  color: #333;
  }
 
  .CodeMirror-dialog input {
  border: none;
  outline: none;
  background: transparent;
  width: 20em;
  color: inherit;
  font-family: monospace;
  }
 
  // Open simple dialogs on top of an editor. Relies on dialog.css.
 
  (function() {
  function dialogDiv(cm, template) {
  var wrap = cm.getWrapperElement();
  var dialog = wrap.insertBefore(document.createElement("div"), wrap.firstChild);
  dialog.className = "CodeMirror-dialog";
  dialog.innerHTML = '<div>' + template + '</div>';
  return dialog;
  }
 
  CodeMirror.defineExtension("openDialog", function(template, callback) {
  var dialog = dialogDiv(this, template);
  var closed = false, me = this;
  function close() {
  if (closed) return;
  closed = true;
  dialog.parentNode.removeChild(dialog);
  }
  var inp = dialog.getElementsByTagName("input")[0];
  if (inp) {
  CodeMirror.connect(inp, "keydown", function(e) {
  if (e.keyCode == 13 || e.keyCode == 27) {
  CodeMirror.e_stop(e);
  close();
  me.focus();
  if (e.keyCode == 13) callback(inp.value);
  }
  });
  inp.focus();
  CodeMirror.connect(inp, "blur", close);
  }
  return close;
  });
 
  CodeMirror.defineExtension("openConfirm", function(template, callbacks) {
  var dialog = dialogDiv(this, template);
  var buttons = dialog.getElementsByTagName("button");
  var closed = false, me = this, blurring = 1;
  function close() {
  if (closed) return;
  closed = true;
  dialog.parentNode.removeChild(dialog);
  me.focus();
  }
  buttons[0].focus();
  for (var i = 0; i < buttons.length; ++i) {
  var b = buttons[i];
  (function(callback) {
  CodeMirror.connect(b, "click", function(e) {
  CodeMirror.e_preventDefault(e);
  close();
  if (callback) callback(me);
  });
  })(callbacks[i]);
  CodeMirror.connect(b, "blur", function() {
  --blurring;
  setTimeout(function() { if (blurring <= 0) close(); }, 200);
  });
  CodeMirror.connect(b, "focus", function() { ++blurring; });
  }
  });
  })();
  CodeMirror.braceRangeFinder = function(cm, line) {
  var lineText = cm.getLine(line);
  var startChar = lineText.lastIndexOf("{");
  if (startChar < 0 || lineText.lastIndexOf("}") > startChar) return;
  var tokenType = cm.getTokenAt({line: line, ch: startChar}).className;
  var count = 1, lastLine = cm.lineCount(), end;
  outer: for (var i = line + 1; i < lastLine; ++i) {
  var text = cm.getLine(i), pos = 0;
  for (;;) {
  var nextOpen = text.indexOf("{", pos), nextClose = text.indexOf("}", pos);
  if (nextOpen < 0) nextOpen = text.length;
  if (nextClose < 0) nextClose = text.length;
  pos = Math.min(nextOpen, nextClose);
  if (pos == text.length) break;
  if (cm.getTokenAt({line: i, ch: pos + 1}).className == tokenType) {
  if (pos == nextOpen) ++count;
  else if (!--count) { end = i; break outer; }
  }
  ++pos;
  }
  }
  if (end == null || end == line + 1) return;
  return end;
  };
 
 
  CodeMirror.newFoldFunction = function(rangeFinder, markText) {
  var folded = [];
  if (markText == null) markText = '<div style="position: absolute; left: 2px; color:#600">&#x25bc;</div>%N%';
 
  function isFolded(cm, n) {
  for (var i = 0; i < folded.length; ++i) {
  var start = cm.lineInfo(folded[i].start);
  if (!start) folded.splice(i--, 1);
  else if (start.line == n) return {pos: i, region: folded[i]};
  }
  }
 
  function expand(cm, region) {
  cm.clearMarker(region.start);
  for (var i = 0; i < region.hidden.length; ++i)
  cm.showLine(region.hidden[i]);
  }
 
  return function(cm, line) {
  cm.operation(function() {
  var known = isFolded(cm, line);
  if (known) {
  folded.splice(known.pos, 1);
  expand(cm, known.region);
  } else {
  var end = rangeFinder(cm, line);
  if (end == null) return;
  var hidden = [];
  for (var i = line + 1; i < end; ++i) {
  var handle = cm.hideLine(i);
  if (handle) hidden.push(handle);
  }
  var first = cm.setMarker(line, markText);
  var region = {start: first, hidden: hidden};
  cm.onDeleteLine(first, function() { expand(cm, region); });
  folded.push(region);
  }
  });
  };
  };
 
  // ============== Formatting extensions ============================
  // A common storage for all mode-specific formatting features
  if (!CodeMirror.modeExtensions) CodeMirror.modeExtensions = {};
 
  // Returns the extension of the editor's current mode
  CodeMirror.defineExtension("getModeExt", function () {
  return CodeMirror.modeExtensions[this.getOption("mode")];
  });
 
  // If the current mode is 'htmlmixed', returns the extension of a mode located at
  // the specified position (can be htmlmixed, css or javascript). Otherwise, simply
  // returns the extension of the editor's current mode.
  CodeMirror.defineExtension("getModeExtAtPos", function (pos) {
  var token = this.getTokenAt(pos);
  if (token && token.state && token.state.mode)
  return CodeMirror.modeExtensions[token.state.mode == "html" ? "htmlmixed" : token.state.mode];
  else
  return this.getModeExt();
  });
 
  // Comment/uncomment the specified range
  CodeMirror.defineExtension("commentRange", function (isComment, from, to) {
  var curMode = this.getModeExtAtPos(this.getCursor());
  if (isComment) { // Comment range
  var commentedText = this.getRange(from, to);
  this.replaceRange(curMode.commentStart + this.getRange(from, to) + curMode.commentEnd
  , from, to);
  if (from.line == to.line && from.ch == to.ch) { // An empty comment inserted - put cursor inside
  this.setCursor(from.line, from.ch + curMode.commentStart.length);
  }
  }
  else { // Uncomment range
  var selText = this.getRange(from, to);
  var startIndex = selText.indexOf(curMode.commentStart);
  var endIndex = selText.lastIndexOf(curMode.commentEnd);
  if (startIndex > -1 && endIndex > -1 && endIndex > startIndex) {
  // Take string till comment start
  selText = selText.substr(0, startIndex)
  // From comment start till comment end
  + selText.substring(startIndex + curMode.commentStart.length, endIndex)
  // From comment end till string end
  + selText.substr(endIndex + curMode.commentEnd.length);
  }
  this.replaceRange(selText, from, to);
  }
  });
 
  // Applies automatic mode-aware indentation to the specified range
  CodeMirror.defineExtension("autoIndentRange", function (from, to) {
  var cmInstance = this;
  this.operation(function () {
  for (var i = from.line; i <= to.line; i++) {
  cmInstance.indentLine(i);
  }
  });
  });
 
  // Applies automatic formatting to the specified range
  CodeMirror.defineExtension("autoFormatRange", function (from, to) {
  var absStart = this.indexFromPos(from);
  var absEnd = this.indexFromPos(to);
  // Insert additional line breaks where necessary according to the
  // mode's syntax
  var res = this.getModeExt().autoFormatLineBreaks(this.getValue(), absStart, absEnd);
  var cmInstance = this;
 
  // Replace and auto-indent the range
  this.operation(function () {
  cmInstance.replaceRange(res, from, to);
  var startLine = cmInstance.posFromIndex(absStart).line;
  var endLine = cmInstance.posFromIndex(absStart + res.length).line;
  for (var i = startLine; i <= endLine; i++) {
  cmInstance.indentLine(i);
  }
  });
  });
 
  // Define extensions for a few modes
 
  CodeMirror.modeExtensions["css"] = {
  commentStart: "/*",
  commentEnd: "*/",
  wordWrapChars: [";", "\\{", "\\}"],
  autoFormatLineBreaks: function (text) {
  return text.replace(new RegExp("(;|\\{|\\})([^\r\n])", "g"), "$1\n$2");
  }
  };
 
  CodeMirror.modeExtensions["javascript"] = {
  commentStart: "/*",
  commentEnd: "*/",
  wordWrapChars: [";", "\\{", "\\}"],
 
  getNonBreakableBlocks: function (text) {
  var nonBreakableRegexes = [
  new RegExp("for\\s*?\\(([\\s\\S]*?)\\)"),
  new RegExp("'([\\s\\S]*?)('|$)"),
  new RegExp("\"([\\s\\S]*?)(\"|$)"),
  new RegExp("//.*([\r\n]|$)")
  ];
  var nonBreakableBlocks = new Array();
  for (var i = 0; i < nonBreakableRegexes.length; i++) {
  var curPos = 0;
  while (curPos < text.length) {
  var m = text.substr(curPos).match(nonBreakableRegexes[i]);
  if (m != null) {
  nonBreakableBlocks.push({
  start: curPos + m.index,
  end: curPos + m.index + m[0].length
  });
  curPos += m.index + Math.max(1, m[0].length);
  }
  else { // No more matches
  break;
  }
  }
  }
  nonBreakableBlocks.sort(function (a, b) {
  return a.start - b.start;
  });
 
  return nonBreakableBlocks;
  },
 
  autoFormatLineBreaks: function (text) {
  var curPos = 0;
  var reLinesSplitter = new RegExp("(;|\\{|\\})([^\r\n])", "g");
  var nonBreakableBlocks = this.getNonBreakableBlocks(text);
  if (nonBreakableBlocks != null) {
  var res = "";
  for (var i = 0; i < nonBreakableBlocks.length; i++) {
  if (nonBreakableBlocks[i].start > curPos) { // Break lines till the block
  res += text.substring(curPos, nonBreakableBlocks[i].start).replace(reLinesSplitter, "$1\n$2");
  curPos = nonBreakableBlocks[i].start;
  }
  if (nonBreakableBlocks[i].start <= curPos
  && nonBreakableBlocks[i].end >= curPos) { // Skip non-breakable block
  res += text.substring(curPos, nonBreakableBlocks[i].end);
  curPos = nonBreakableBlocks[i].end;
  }
  }
  if (curPos < text.length - 1) {
  res += text.substr(curPos).replace(reLinesSplitter, "$1\n$2");
  }
  return res;
  }
  else {
  return text.replace(reLinesSplitter, "$1\n$2");
  }
  }
  };
 
  CodeMirror.modeExtensions["xml"] = {
  commentStart: "<!--",
  commentEnd: "-->",
  wordWrapChars: [">"],
 
  autoFormatLineBreaks: function (text) {
  var lines = text.split("\n");
  var reProcessedPortion = new RegExp("(^\\s*?<|^[^<]*?)(.+)(>\\s*?$|[^>]*?$)");
  var reOpenBrackets = new RegExp("<", "g");
  var reCloseBrackets = new RegExp("(>)([^\r\n])", "g");
  for (var i = 0; i < lines.length; i++) {
  var mToProcess = lines[i].match(reProcessedPortion);
  if (mToProcess != null && mToProcess.length > 3) { // The line starts with whitespaces and ends with whitespaces
  lines[i] = mToProcess[1]
  + mToProcess[2].replace(reOpenBrackets, "\n$&").replace(reCloseBrackets, "$1\n$2")
  + mToProcess[3];
  continue;
  }
  }
 
  return lines.join("\n");
  }
  };
 
  CodeMirror.modeExtensions["htmlmixed"] = {
  commentStart: "<!--",
  commentEnd: "-->",
  wordWrapChars: [">", ";", "\\{", "\\}"],
 
  getModeInfos: function (text, absPos) {
  var modeInfos = new Array();
  modeInfos[0] =
  {
  pos: 0,
  modeExt: CodeMirror.modeExtensions["xml"],
  modeName: "xml"
  };
 
  var modeMatchers = new Array();
  modeMatchers[0] =
  {
  regex: new RegExp("<style[^>]*>([\\s\\S]*?)(</style[^>]*>|$)", "i"),
  modeExt: CodeMirror.modeExtensions["css"],
  modeName: "css"
  };
  modeMatchers[1] =
  {
  regex: new RegExp("<script[^>]*>([\\s\\S]*?)(</script[^>]*>|$)", "i"),
  modeExt: CodeMirror.modeExtensions["javascript"],
  modeName: "javascript"
  };
 
  var lastCharPos = (typeof (absPos) !== "undefined" ? absPos : text.length - 1);
  // Detect modes for the entire text
  for (var i = 0; i < modeMatchers.length; i++) {
  var curPos = 0;
  while (curPos <= lastCharPos) {
  var m = text.substr(curPos).match(modeMatchers[i].regex);
  if (m != null) {
  if (m.length > 1 && m[1].length > 0) {
  // Push block begin pos
  var blockBegin = curPos + m.index + m[0].indexOf(m[1]);
  modeInfos.push(
  {
  pos: blockBegin,
  modeExt: modeMatchers[i].modeExt,
  modeName: modeMatchers[i].modeName
  });
  // Push block end pos
  modeInfos.push(
  {
  pos: blockBegin + m[1].length,
  modeExt: modeInfos[0].modeExt,
  modeName: modeInfos[0].modeName
  });
  curPos += m.index + m[0].length;
  continue;
  }
  else {
  curPos += m.index + Math.max(m[0].length, 1);
  }
  }
  else { // No more matches
  break;
  }
  }
  }
  // Sort mode infos
  modeInfos.sort(function sortModeInfo(a, b) {
  return a.pos - b.pos;
  });
 
  return modeInfos;
  },
 
  autoFormatLineBreaks: function (text, startPos, endPos) {
  var modeInfos = this.getModeInfos(text);
  var reBlockStartsWithNewline = new RegExp("^\\s*?\n");
  var reBlockEndsWithNewline = new RegExp("\n\\s*?$");
  var res = "";
  // Use modes info to break lines correspondingly
  if (modeInfos.length > 1) { // Deal with multi-mode text
  for (var i = 1; i <= modeInfos.length; i++) {
  var selStart = modeInfos[i - 1].pos;
  var selEnd = (i < modeInfos.length ? modeInfos[i].pos : endPos);
 
  if (selStart >= endPos) { // The block starts later than the needed fragment
  break;
  }
  if (selStart < startPos) {
  if (selEnd <= startPos) { // The block starts earlier than the needed fragment
  continue;
  }
  selStart = startPos;
  }
  if (selEnd > endPos) {
  selEnd = endPos;
  }
  var textPortion = text.substring(selStart, selEnd);
  if (modeInfos[i - 1].modeName != "xml") { // Starting a CSS or JavaScript block
  if (!reBlockStartsWithNewline.test(textPortion)
  && selStart > 0) { // The block does not start with a line break
  textPortion = "\n" + textPortion;
  }
  if (!reBlockEndsWithNewline.test(textPortion)
  && selEnd < text.length - 1) { // The block does not end with a line break
  textPortion += "\n";
  }
  }
  res += modeInfos[i - 1].modeExt.autoFormatLineBreaks(textPortion);
  }
  }
  else { // Single-mode text
  res = modeInfos[0].modeExt.autoFormatLineBreaks(text.substring(startPos, endPos));
  }
 
  return res;
  }
  };
 
  (function () {
  function forEach(arr, f) {
  for (var i = 0, e = arr.length; i < e; ++i) f(arr[i]);
  }
 
  function arrayContains(arr, item) {
  if (!Array.prototype.indexOf) {
  var i = arr.length;
  while (i--) {
  if (arr[i] === item) {
  return true;
  }
  }
  return false;
  }
  return arr.indexOf(item) != -1;
  }
 
  CodeMirror.javascriptHint = function(editor) {
  // Find the token at the cursor
  var cur = editor.getCursor(), token = editor.getTokenAt(cur), tprop = token;
  // If it's not a 'word-style' token, ignore the token.
  if (!/^[\w$_]*$/.test(token.string)) {
  token = tprop = {start: cur.ch, end: cur.ch, string: "", state: token.state,
  className: token.string == "." ? "property" : null};
  }
  // If it is a property, find out what it is a property of.
  while (tprop.className == "property") {
  tprop = editor.getTokenAt({line: cur.line, ch: tprop.start});
  if (tprop.string != ".") return;
  tprop = editor.getTokenAt({line: cur.line, ch: tprop.start});
  if (!context) var context = [];
  context.push(tprop);
  }
  return {list: getCompletions(token, context),
  from: {line: cur.line, ch: token.start},
  to: {line: cur.line, ch: token.end}};
  }
 
  var stringProps = ("charAt charCodeAt indexOf lastIndexOf substring substr slice trim trimLeft trimRight " +
  "toUpperCase toLowerCase split concat match replace search").split(" ");
  var arrayProps = ("length concat join splice push pop shift unshift slice reverse sort indexOf " +
  "lastIndexOf every some filter forEach map reduce reduceRight ").split(" ");
  var funcProps = "prototype apply call bind".split(" ");
  var keywords = ("break case catch continue debugger default delete do else false finally for function " +
  "if in instanceof new null return switch throw true try typeof var void while with").split(" ");
 
  function getCompletions(token, context) {
  var found = [], start = token.string;
  function maybeAdd(str) {
  if (str.indexOf(start) == 0 && !arrayContains(found, str)) found.push(str);
  }
  function gatherCompletions(obj) {
  if (typeof obj == "string") forEach(stringProps, maybeAdd);
  else if (obj instanceof Array) forEach(arrayProps, maybeAdd);
  else if (obj instanceof Function) forEach(funcProps, maybeAdd);
  for (var name in obj) maybeAdd(name);
  }
 
  if (context) {
  // If this is a property, see if it belongs to some object we can
  // find in the current environment.
  var obj = context.pop(), base;
  if (obj.className == "variable")
  base = window[obj.string];
  else if (obj.className == "string")
  base = "";
  else if (obj.className == "atom")
  base = 1;
  while (base != null && context.length)
  base = base[context.pop().string];
  if (base != null) gatherCompletions(base);
  }
  else {
  // If not, just look in the window object and any local scope
  // (reading into JS mode internals to get at the local variables)
  for (var v = token.state.localVars; v; v = v.next) maybeAdd(v.name);
  gatherCompletions(window);
  forEach(keywords, maybeAdd);
  }
  return found;
  }
  })();
 
  // Utility function that allows modes to be combined. The mode given
  // as the base argument takes care of most of the normal mode
  // functionality, but a second (typically simple) mode is used, which
  // can override the style of text. Both modes get to parse all of the
  // text, but when both assign a non-null style to a piece of code, the
  // overlay wins, unless the combine argument was true, in which case
  // the styles are combined.
 
  CodeMirror.overlayParser = function(base, overlay, combine) {
  return {
  startState: function() {
  return {
  base: CodeMirror.startState(base),
  overlay: CodeMirror.startState(overlay),
  basePos: 0, baseCur: null,
  overlayPos: 0, overlayCur: null
  };
  },
  copyState: function(state) {
  return {
  base: CodeMirror.copyState(base, state.base),
  overlay: CodeMirror.copyState(overlay, state.overlay),
  basePos: state.basePos, baseCur: null,
  overlayPos: state.overlayPos, overlayCur: null
  };
  },
 
  token: function(stream, state) {
  if (stream.start == state.basePos) {
  state.baseCur = base.token(stream, state.base);
  state.basePos = stream.pos;
  }
  if (stream.start == state.overlayPos) {
  stream.pos = stream.start;
  state.overlayCur = overlay.token(stream, state.overlay);
  state.overlayPos = stream.pos;
  }
  stream.pos = Math.min(state.basePos, state.overlayPos);
  if (stream.eol()) state.basePos = state.overlayPos = 0;
 
  if (state.overlayCur == null) return state.baseCur;
  if (state.baseCur != null && combine) return state.baseCur + " " + state.overlayCur;
  else return state.overlayCur;
  },
 
  indent: function(state, textAfter) {
  return base.indent(state.base, textAfter);
  },
  electricChars: base.electricChars
  };
  };
 
  CodeMirror.runMode = function(string, modespec, callback) {
  var mode = CodeMirror.getMode({indentUnit: 2}, modespec);
  var isNode = callback.nodeType == 1;
  if (isNode) {
  var node = callback, accum = [];
  callback = function(string, style) {
  if (string == "\n")
  accum.push("<br>");
  else if (style)
  accum.push("<span class=\"cm-" + CodeMirror.htmlEscape(style) + "\">" + CodeMirror.htmlEscape(string) + "</span>");
  else
  accum.push(CodeMirror.htmlEscape(string));
  }
  }
  var lines = CodeMirror.splitLines(string), state = CodeMirror.startState(mode);
  for (var i = 0, e = lines.length; i < e; ++i) {
  if (i) callback("\n");
  var stream = new CodeMirror.StringStream(lines[i]);
  while (!stream.eol()) {
  var style = mode.token(stream, state);
  callback(stream.current(), style, i, stream.start);
  stream.start = stream.pos;
  }
  }
  if (isNode)
  node.innerHTML = accum.join("");
  };
 
  // Define search commands. Depends on dialog.js or another
  // implementation of the openDialog method.
 
  // Replace works a little oddly -- it will do the replace on the next
  // Ctrl-G (or whatever is bound to findNext) press. You prevent a
  // replace by making sure the match is no longer selected when hitting
  // Ctrl-G.
 
  (function() {
  function SearchState() {
  this.posFrom = this.posTo = this.query = null;
  this.marked = [];
  }
  function getSearchState(cm) {
  return cm._searchState || (cm._searchState = new SearchState());
  }
  function dialog(cm, text, shortText, f) {
  if (cm.openDialog) cm.openDialog(text, f);
  else f(prompt(shortText, ""));
  }
  function confirmDialog(cm, text, shortText, fs) {
  if (cm.openConfirm) cm.openConfirm(text, fs);
  else if (confirm(shortText)) fs[0]();
  }
  function parseQuery(query) {
  var isRE = query.match(/^\/(.*)\/$/);
  return isRE ? new RegExp(isRE[1]) : query;
  }
  var queryDialog =
  'Search: <input type="text" style="width: 10em"> <span style="color: #888">(Use /re/ syntax for regexp search)</span>';
  function doSearch(cm, rev) {
  var state = getSearchState(cm);
  if (state.query) return findNext(cm, rev);
  dialog(cm, queryDialog, "Search for:", function(query) {
  cm.operation(function() {
  if (!query || state.query) return;
  state.query = parseQuery(query);
  if (cm.lineCount() < 2000) { // This is too expensive on big documents.
  for (var cursor = cm.getSearchCursor(query); cursor.findNext();)
  state.marked.push(cm.markText(cursor.from(), cursor.to(), "CodeMirror-searching"));
  }
  state.posFrom = state.posTo = cm.getCursor();
  findNext(cm, rev);
  });
  });
  }
  function findNext(cm, rev) {cm.operation(function() {
  var state = getSearchState(cm);
  var cursor = cm.getSearchCursor(state.query, rev ? state.posFrom : state.posTo);
  if (!cursor.find(rev)) {
  cursor = cm.getSearchCursor(state.query, rev ? {line: cm.lineCount() - 1} : {line: 0, ch: 0});
  if (!cursor.find(rev)) return;
  }
  cm.setSelection(cursor.from(), cursor.to());
  state.posFrom = cursor.from(); state.posTo = cursor.to();
  })}
  function clearSearch(cm) {cm.operation(function() {
  var state = getSearchState(cm);
  if (!state.query) return;
  state.query = null;
  for (var i = 0; i < state.marked.length; ++i) state.marked[i].clear();
  state.marked.length = 0;
  })}
 
  var replaceQueryDialog =
  'Replace: <input type="text" style="width: 10em"> <span style="color: #888">(Use /re/ syntax for regexp search)</span>';
  var replacementQueryDialog = 'With: <input type="text" style="width: 10em">';
  var doReplaceConfirm = "Replace? <button>Yes</button> <button>No</button> <button>Stop</button>";
  function replace(cm, all) {
  dialog(cm, replaceQueryDialog, "Replace:", function(query) {
  if (!query) return;
  query = parseQuery(query);
  dialog(cm, replacementQueryDialog, "Replace with:", function(text) {
  if (all) {
  cm.operation(function() {
  for (var cursor = cm.getSearchCursor(query); cursor.findNext();) {
  if (typeof query != "string") {
  var match = cm.getRange(cursor.from(), cursor.to()).match(query);
  cursor.replace(text.replace(/\$(\d)/, function(w, i) {return match[i];}));
  } else cursor.replace(text);
  }
  });
  } else {
  clearSearch(cm);
  var cursor = cm.getSearchCursor(query, cm.getCursor());
  function advance() {
  var start = cursor.from(), match;
  if (!(match = cursor.findNext())) {
  cursor = cm.getSearchCursor(query);
  if (!(match = cursor.findNext()) ||
  (cursor.from().line == start.line && cursor.from().ch == start.ch)) return;
  }
  cm.setSelection(cursor.from(), cursor.to());
  confirmDialog(cm, doReplaceConfirm, "Replace?",
  [function() {doReplace(match);}, advance]);
  }
  function doReplace(match) {
  cursor.replace(typeof query == "string" ? text :
  text.replace(/\$(\d)/, function(w, i) {return match[i];}));
  advance();
  }
  advance();
  }
  });
  });
  }
 
  CodeMirror.commands.find = function(cm) {clearSearch(cm); doSearch(cm);};
  CodeMirror.commands.findNext = doSearch;
  CodeMirror.commands.findPrev = function(cm) {doSearch(cm, true);};
  CodeMirror.commands.clearSearch = clearSearch;
  CodeMirror.commands.replace = replace;
  CodeMirror.commands.replaceAll = function(cm) {replace(cm, true);};
  })();
 
  (function(){
  function SearchCursor(cm, query, pos, caseFold) {
  this.atOccurrence = false; this.cm = cm;
  if (caseFold == null) caseFold = typeof query == "string" && query == query.toLowerCase();
 
  pos = pos ? cm.clipPos(pos) : {line: 0, ch: 0};
  this.pos = {from: pos, to: pos};
 
  // The matches method is filled in based on the type of query.
  // It takes a position and a direction, and returns an object
  // describing the next occurrence of the query, or null if no
  // more matches were found.
  if (typeof query != "string") // Regexp match
  this.matches = function(reverse, pos) {
  if (reverse) {
  var line = cm.getLine(pos.line).slice(0, pos.ch), match = line.match(query), start = 0;
  while (match) {
  var ind = line.indexOf(match[0]);
  start += ind;
  line = line.slice(ind + 1);
  var newmatch = line.match(query);
  if (newmatch) match = newmatch;
  else break;
  start++;
  }
  }
  else {
  var line = cm.getLine(pos.line).slice(pos.ch), match = line.match(query),
  start = match && pos.ch + line.indexOf(match[0]);
  }
  if (match)
  return {from: {line: pos.line, ch: start},
  to: {line: pos.line, ch: start + match[0].length},
  match: match};
  };
  else { // String query
  if (caseFold) query = query.toLowerCase();
  var fold = caseFold ? function(str){return str.toLowerCase();} : function(str){return str;};
  var target = query.split("\n");
  // Different methods for single-line and multi-line queries
  if (target.length == 1)
  this.matches = function(reverse, pos) {
  var line = fold(cm.getLine(pos.line)), len = query.length, match;
  if (reverse ? (pos.ch >= len && (match = line.lastIndexOf(query, pos.ch - len)) != -1)
  : (match = line.indexOf(query, pos.ch)) != -1)
  return {from: {line: pos.line, ch: match},
  to: {line: pos.line, ch: match + len}};
  };
  else
  this.matches = function(reverse, pos) {
  var ln = pos.line, idx = (reverse ? target.length - 1 : 0), match = target[idx], line = fold(cm.getLine(ln));
  var offsetA = (reverse ? line.indexOf(match) + match.length : line.lastIndexOf(match));
  if (reverse ? offsetA >= pos.ch || offsetA != match.length
  : offsetA <= pos.ch || offsetA != line.length - match.length)
  return;
  for (;;) {
  if (reverse ? !ln : ln == cm.lineCount() - 1) return;
  line = fold(cm.getLine(ln += reverse ? -1 : 1));
  match = target[reverse ? --idx : ++idx];
  if (idx > 0 && idx < target.length - 1) {
  if (line != match) return;
  else continue;
  }
  var offsetB = (reverse ? line.lastIndexOf(match) : line.indexOf(match) + match.length);
  if (reverse ? offsetB != line.length - match.length : offsetB != match.length)
  return;
  var start = {line: pos.line, ch: offsetA}, end = {line: ln, ch: offsetB};
  return {from: reverse ? end : start, to: reverse ? start : end};
  }
  };
  }
  }
 
  SearchCursor.prototype = {
  findNext: function() {return this.find(false);},
  findPrevious: function() {return this.find(true);},
 
  find: function(reverse) {
  var self = this, pos = this.cm.clipPos(reverse ? this.pos.from : this.pos.to);
  function savePosAndFail(line) {
  var pos = {line: line, ch: 0};
  self.pos = {from: pos, to: pos};
  self.atOccurrence = false;
  return false;
  }
 
  for (;;) {
  if (this.pos = this.matches(reverse, pos)) {
  this.atOccurrence = true;
  return this.pos.match || true;
  }
  if (reverse) {
  if (!pos.line) return savePosAndFail(0);
  pos = {line: pos.line-1, ch: this.cm.getLine(pos.line-1).length};
  }
  else {
  var maxLine = this.cm.lineCount();
  if (pos.line == maxLine - 1) return savePosAndFail(maxLine);
  pos = {line: pos.line+1, ch: 0};
  }
  }
  },
 
  from: function() {if (this.atOccurrence) return this.pos.from;},
  to: function() {if (this.atOccurrence) return this.pos.to;},
 
  replace: function(newText) {
  var self = this;
  if (this.atOccurrence)
  self.pos.to = this.cm.replaceRange(newText, self.pos.from, self.pos.to);
  }
  };
 
  CodeMirror.defineExtension("getSearchCursor", function(query, pos, caseFold) {
  return new SearchCursor(this, query, pos, caseFold);
  });
  })();
 
  .CodeMirror-completions {
  position: absolute;
  z-index: 10;
  overflow: hidden;
  -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  box-shadow: 2px 3px 5px rgba(0,0,0,.2);
  }
  .CodeMirror-completions select {
  background: #fafafa;
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  font-family: monospace;
  }
 
  (function() {
  CodeMirror.simpleHint = function(editor, getHints) {
  // We want a single cursor position.
  if (editor.somethingSelected()) return;
  var result = getHints(editor);
  if (!result || !result.list.length) return;
  var completions = result.list;
  function insert(str) {
  editor.replaceRange(str, result.from, result.to);
  }
  // When there is only one completion, use it directly.
  if (completions.length == 1) {insert(completions[0]); return true;}
 
  // Build the select widget
  var complete = document.createElement("div");
  complete.className = "CodeMirror-completions";
  var sel = complete.appendChild(document.createElement("select"));
  // Opera doesn't move the selection when pressing up/down in a
  // multi-select, but it does properly support the size property on
  // single-selects, so no multi-select is necessary.
  if (!window.opera) sel.multiple = true;
  for (var i = 0; i < completions.length; ++i) {
  var opt = sel.appendChild(document.createElement("option"));
  opt.appendChild(document.createTextNode(completions[i]));
  }
  sel.firstChild.selected = true;
  sel.size = Math.min(10, completions.length);
  var pos = editor.cursorCoords();
  complete.style.left = pos.x + "px";
  complete.style.top = pos.yBot + "px";
  document.body.appendChild(complete);
  // Hack to hide the scrollbar.
  if (completions.length <= 10)
  complete.style.width = (sel.clientWidth - 1) + "px";
 
  var done = false;
  function close() {
  if (done) return;
  done = true;
  complete.parentNode.removeChild(complete);
  }
  function pick() {
  insert(completions[sel.selectedIndex]);
  close();
  setTimeout(function(){editor.focus();}, 50);
  }
  CodeMirror.connect(sel, "blur", close);
  CodeMirror.connect(sel, "keydown", function(event) {
  var code = event.keyCode;
  // Enter
  if (code == 13) {CodeMirror.e_stop(event); pick();}
  // Escape
  else if (code == 27) {CodeMirror.e_stop(event); close(); editor.focus();}
  else if (code != 38 && code != 40) {
  close(); editor.focus();
  setTimeout(function(){CodeMirror.simpleHint(editor, getHints);}, 50);
  }
  });
  CodeMirror.connect(sel, "dblclick", pick);
 
  sel.focus();
  // Opera sometimes ignores focusing a freshly created node
  if (window.opera) setTimeout(function(){if (!done) sel.focus();}, 100);
  return true;
  };
  })();
 
  CodeMirror.defineMode("clike", function(config, parserConfig) {
  var indentUnit = config.indentUnit,
  keywords = parserConfig.keywords || {},
  blockKeywords = parserConfig.blockKeywords || {},
  atoms = parserConfig.atoms || {},
  hooks = parserConfig.hooks || {},
  multiLineStrings = parserConfig.multiLineStrings;
  var isOperatorChar = /[+\-*&%=<>!?|\/]/;
 
  var curPunc;
 
  function tokenBase(stream, state) {
  var ch = stream.next();
  if (hooks[ch]) {
  var result = hooks[ch](stream, state);
  if (result !== false) return result;
  }
  if (ch == '"' || ch == "'") {
  state.tokenize = tokenString(ch);
  return state.tokenize(stream, state);
  }
  if (/[\[\]{}\(\),;\:\.]/.test(ch)) {
  curPunc = ch;
  return null
  }
  if (/\d/.test(ch)) {
  stream.eatWhile(/[\w\.]/);
  return "number";
  }
  if (ch == "/") {
  if (stream.eat("*")) {
  state.tokenize = tokenComment;
  return tokenComment(stream, state);
  }
  if (stream.eat("/")) {
  stream.skipToEnd();
  return "comment";
  }
  }
  if (isOperatorChar.test(ch)) {
  stream.eatWhile(isOperatorChar);
  return "operator";
  }
  stream.eatWhile(/[\w\$_]/);
  var cur = stream.current();
  if (keywords.propertyIsEnumerable(cur)) {
  if (blockKeywords.propertyIsEnumerable(cur)) curPunc = "newstatement";
  return "keyword";
  }
  if (atoms.propertyIsEnumerable(cur)) return "atom";
  return "word";
  }
 
  function tokenString(quote) {
  return function(stream, state) {
  var escaped = false, next, end = false;
  while ((next = stream.next()) != null) {
  if (next == quote && !escaped) {end = true; break;}
  escaped = !escaped && next == "\\";
  }
  if (end || !(escaped || multiLineStrings))
  state.tokenize = tokenBase;
  return "string";
  };
  }
 
  function tokenComment(stream, state) {
  var maybeEnd = false, ch;
  while (ch = stream.next()) {
  if (ch == "/" && maybeEnd) {
  state.tokenize = tokenBase;
  break;
  }
  maybeEnd = (ch == "*");
  }
  return "comment";
  }
 
  function Context(indented, column, type, align, prev) {
  this.indented = indented;
  this.column = column;
  this.type = type;
  this.align = align;
  this.prev = prev;
  }
  function pushContext(state, col, type) {
  return state.context = new Context(state.indented, col, type, null, state.context);
  }
  function popContext(state) {
  var t = state.context.type;
  if (t == ")" || t == "]" || t == "}")
  state.indented = state.context.indented;
  return state.context = state.context.prev;
  }
 
  // Interface
 
  return {
  startState: function(basecolumn) {
  return {
  tokenize: null,
  context: new Context((basecolumn || 0) - indentUnit, 0, "top", false),
  indented: 0,
  startOfLine: true
  };
  },
 
  token: function(stream, state) {
  var ctx = state.context;
  if (stream.sol()) {
  if (ctx.align == null) ctx.align = false;
  state.indented = stream.indentation();
  state.startOfLine = true;
  }
  if (stream.eatSpace()) return null;
  curPunc = null;
  var style = (state.tokenize || tokenBase)(stream, state);
  if (style == "comment" || style == "meta") return style;
  if (ctx.align == null) ctx.align = true;
 
  if ((curPunc == ";" || curPunc == ":") && ctx.type == "statement") popContext(state);
  else if (curPunc == "{") pushContext(state, stream.column(), "}");
  else if (curPunc == "[") pushContext(state, stream.column(), "]");
  else if (curPunc == "(") pushContext(state, stream.column(), ")");
  else if (curPunc == "}") {
  while (ctx.type == "statement") ctx = popContext(state);
  if (ctx.type == "}") ctx = popContext(state);
  while (ctx.type == "statement") ctx = popContext(state);
  }
  else if (curPunc == ctx.type) popContext(state);
  else if (ctx.type == "}" || ctx.type == "top" || (ctx.type == "statement" && curPunc == "newstatement"))
  pushContext(state, stream.column(), "statement");
  state.startOfLine = false;
  return style;
  },
 
  indent: function(state, textAfter) {
  if (state.tokenize != tokenBase && state.tokenize != null) return 0;
  var ctx = state.context, firstChar = textAfter && textAfter.charAt(0);
  if (ctx.type == "statement" && firstChar == "}") ctx = ctx.prev;
  var closing = firstChar == ctx.type;
  if (ctx.type == "statement") return ctx.indented + (firstChar == "{" ? 0 : indentUnit);
  else if (ctx.align) return ctx.column + (closing ? 0 : 1);
  else return ctx.indented + (closing ? 0 : indentUnit);
  },
 
  electricChars: "{}"
  };
  });
 
  (function() {
  function words(str) {
  var obj = {}, words = str.split(" ");
  for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
  return obj;
  }
  var cKeywords = "auto if break int case long char register continue return default short do sizeof " +
  "double static else struct entry switch extern typedef float union for unsigned " +
  "goto while enum void const signed volatile";
 
  function cppHook(stream, state) {
  if (!state.startOfLine) return false;
  stream.skipToEnd();
  return "meta";
  }
 
  // C#-style strings where "" escapes a quote.
  function tokenAtString(stream, state) {
  var next;
  while ((next = stream.next()) != null) {
  if (next == '"' && !stream.eat('"')) {
  state.tokenize = null;
  break;
  }
  }
  return "string";
  }
 
  CodeMirror.defineMIME("text/x-csrc", {
  name: "clike",
  keywords: words(cKeywords),
  blockKeywords: words("case do else for if switch while struct"),
  atoms: words("null"),
  hooks: {"#": cppHook}
  });
  CodeMirror.defineMIME("text/x-c++src", {
  name: "clike",
  keywords: words(cKeywords + " asm dynamic_cast namespace reinterpret_cast try bool explicit new " +
  "static_cast typeid catch operator template typename class friend private " +
  "this using const_cast inline public throw virtual delete mutable protected " +
  "wchar_t"),
  blockKeywords: words("catch class do else finally for if struct switch try while"),
  atoms: words("true false null"),
  hooks: {"#": cppHook}
  });
  CodeMirror.defineMIME("text/x-java", {
  name: "clike",
  keywords: words("abstract assert boolean break byte case catch char class const continue default " +
  "do double else enum extends final finally float for goto if implements import " +
  "instanceof int interface long native new package private protected public " +
  "return short static strictfp super switch synchronized this throw throws transient " +
  "try void volatile while"),
  blockKeywords: words("catch class do else finally for if switch try while"),
  atoms: words("true false null"),
  hooks: {
  "@": function(stream, state) {
  stream.eatWhile(/[\w\$_]/);
  return "meta";
  }
  }
  });
  CodeMirror.defineMIME("text/x-csharp", {
  name: "clike",
  keywords: words("abstract as base bool break byte case catch char checked class const continue decimal" +
  " default delegate do double else enum event explicit extern finally fixed float for" +
  " foreach goto if implicit in int interface internal is lock long namespace new object" +
  " operator out override params private protected public readonly ref return sbyte sealed short" +
  " sizeof stackalloc static string struct switch this throw try typeof uint ulong unchecked" +
  " unsafe ushort using virtual void volatile while add alias ascending descending dynamic from get" +
  " global group into join let orderby partial remove select set value var yield"),
  blockKeywords: words("catch class do else finally for foreach if struct switch try while"),
  atoms: words("true false null"),
  hooks: {
  "@": function(stream, state) {
  if (stream.eat('"')) {
  state.tokenize = tokenAtString;
  return tokenAtString(stream, state);
  }
  stream.eatWhile(/[\w\$_]/);
  return "meta";
  }
  }
  });
  CodeMirror.defineMIME("text/x-groovy", {
  name: "clike",
  keywords: words("abstract as assert boolean break byte case catch char class const continue def default " +
  "do double else enum extends final finally float for goto if implements import " +
  "in instanceof int interface long native new package property private protected public " +
  "return short static strictfp super switch synchronized this throw throws transient " +
  "try void volatile while"),
  atoms: words("true false null"),
  hooks: {
  "@": function(stream, state) {
  stream.eatWhile(/[\w\$_]/);
  return "meta";
  }
  }
  });
  }());
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: C-like mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="clike.js"></script>
  <link rel="stylesheet" href="../../doc/docs.css">
  <style>.CodeMirror {border: 2px inset #dee;}</style>
  </head>
  <body>
  <h1>CodeMirror: C-like mode</h1>
 
  <form><textarea id="code" name="code">
  /* C demo code */
 
  #include <zmq.h>
  #include <pthread.h>
  #include <semaphore.h>
  #include <time.h>
  #include <stdio.h>
  #include <fcntl.h>
  #include <malloc.h>
 
  typedef struct {
  void* arg_socket;
  zmq_msg_t* arg_msg;
  char* arg_string;
  unsigned long arg_len;
  int arg_int, arg_command;
 
  int signal_fd;
  int pad;
  void* context;
  sem_t sem;
  } acl_zmq_context;
 
  #define p(X) (context->arg_##X)
 
  void* zmq_thread(void* context_pointer) {
  acl_zmq_context* context = (acl_zmq_context*)context_pointer;
  char ok = 'K', err = 'X';
  int res;
 
  while (1) {
  while ((res = sem_wait(&amp;context->sem)) == EINTR);
  if (res) {write(context->signal_fd, &amp;err, 1); goto cleanup;}
  switch(p(command)) {
  case 0: goto cleanup;
  case 1: p(socket) = zmq_socket(context->context, p(int)); break;
  case 2: p(int) = zmq_close(p(socket)); break;
  case 3: p(int) = zmq_bind(p(socket), p(string)); break;
  case 4: p(int) = zmq_connect(p(socket), p(string)); break;
  case 5: p(int) = zmq_getsockopt(p(socket), p(int), (void*)p(string), &amp;p(len)); break;
  case 6: p(int) = zmq_setsockopt(p(socket), p(int), (void*)p(string), p(len)); break;
  case 7: p(int) = zmq_send(p(socket), p(msg), p(int)); break;
  case 8: p(int) = zmq_recv(p(socket), p(msg), p(int)); break;
  case 9: p(int) = zmq_poll(p(socket), p(int), p(len)); break;
  }
  p(command) = errno;
  write(context->signal_fd, &amp;ok, 1);
  }
  cleanup:
  close(context->signal_fd);
  free(context_pointer);
  return 0;
  }
 
  void* zmq_thread_init(void* zmq_context, int signal_fd) {
  acl_zmq_context* context = malloc(sizeof(acl_zmq_context));
  pthread_t thread;
 
  context->context = zmq_context;
  context->signal_fd = signal_fd;
  sem_init(&amp;context->sem, 1, 0);
  pthread_create(&amp;thread, 0, &amp;zmq_thread, context);
  pthread_detach(thread);
  return context;
  }
  </textarea></form>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  matchBrackets: true,
  mode: "text/x-csrc"
  });
  </script>
 
  <p>Simple mode that tries to handle C-like languages as well as it
  can. Takes two configuration parameters: <code>keywords</code>, an
  object whose property names are the keywords in the language,
  and <code>useCPP</code>, which determines whether C preprocessor
  directives are recognized.</p>
 
  <p><strong>MIME types defined:</strong> <code>text/x-csrc</code>
  (C code), <code>text/x-c++src</code> (C++
  code), <code>text/x-java</code> (Java
  code), <code>text/x-groovy</code> (Groovy code).</p>
  </body>
  </html>
 
  /**
  * Author: Hans Engel
  * Branched from CodeMirror's Scheme mode (by Koh Zi Han, based on implementation by Koh Zi Chun)
  */
  CodeMirror.defineMode("clojure", function (config, mode) {
  var BUILTIN = "builtin", COMMENT = "comment", STRING = "string", TAG = "tag",
  ATOM = "atom", NUMBER = "number", BRACKET = "bracket", KEYWORD="keyword";
  var INDENT_WORD_SKIP = 2, KEYWORDS_SKIP = 1;
 
  function makeKeywords(str) {
  var obj = {}, words = str.split(" ");
  for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
  return obj;
  }
 
  var atoms = makeKeywords("true false nil");
 
  var keywords = makeKeywords(
  // Control structures
  "defn defn- def def- defonce defmulti defmethod defmacro defstruct deftype defprotocol defrecord deftest slice defalias defhinted defmacro- defn-memo defnk defnk defonce- defunbound defunbound- defvar defvar- let letfn do case cond condp for loop recur when when-not when-let when-first if if-let if-not . .. -> ->> doto and or dosync doseq dotimes dorun doall load import unimport ns in-ns refer try catch finally throw with-open with-local-vars binding gen-class gen-and-load-class gen-and-save-class handler-case handle" +
 
  // Built-ins
  "* *1 *2 *3 *agent* *allow-unresolved-vars* *assert *clojure-version* *command-line-args* *compile-files* *compile-path* *e *err* *file* *flush-on-newline* *in* *macro-meta* *math-context* *ns* *out* *print-dup* *print-length* *print-level* *print-meta* *print-readably* *read-eval* *source-path* *use-context-classloader* *warn-on-reflection* + - / < <= = == > >= accessor aclone agent agent-errors aget alength alias all-ns alter alter-meta! alter-var-root amap ancestors and apply areduce array-map aset aset-boolean aset-byte aset-char aset-double aset-float aset-int aset-long aset-short assert assoc assoc! assoc-in associative? atom await await-for await1 bases bean bigdec bigint binding bit-and bit-and-not bit-clear bit-flip bit-not bit-or bit-set bit-shift-left bit-shift-right bit-test bit-xor boolean boolean-array booleans bound-fn bound-fn* butlast byte byte-array bytes case cast char char-array char-escape-string char-name-string char? chars chunk chunk-append chunk-buffer chunk-cons chunk-first chunk-next chunk-rest chunked-seq? class class? clear-agent-errors clojure-version coll? comment commute comp comparator compare compare-and-set! compile complement concat cond condp conj conj! cons constantly construct-proxy contains? count counted? create-ns create-struct cycle dec decimal? declare definline defmacro defmethod defmulti defn defn- defonce defstruct delay delay? deliver deref derive descendants destructure disj disj! dissoc dissoc! distinct distinct? doall doc dorun doseq dosync dotimes doto double double-array doubles drop drop-last drop-while empty empty? ensure enumeration-seq eval even? every? extend extend-protocol extend-type extends? extenders false? ffirst file-seq filter find find-doc find-ns find-var first float float-array float? floats flush fn fn? fnext for force format future future-call future-cancel future-cancelled? future-done? future? gen-class gen-interface gensym get get-in get-method get-proxy-class get-thread-bindings get-validator hash hash-map hash-set identical? identity if-let if-not ifn? import in-ns inc init-proxy instance? int int-array integer? interleave intern interpose into into-array ints io! isa? iterate iterator-seq juxt key keys keyword keyword? last lazy-cat lazy-seq let letfn line-seq list list* list? load load-file load-reader load-string loaded-libs locking long long-array longs loop macroexpand macroexpand-1 make-array make-hierarchy map map? mapcat max max-key memfn memoize merge merge-with meta method-sig methods min min-key mod name namespace neg? newline next nfirst nil? nnext not not-any? not-empty not-every? not= ns ns-aliases ns-imports ns-interns ns-map ns-name ns-publics ns-refers ns-resolve ns-unalias ns-unmap nth nthnext num number? odd? or parents partial partition pcalls peek persistent! pmap pop pop! pop-thread-bindings pos? pr pr-str prefer-method prefers primitives-classnames print print-ctor print-doc print-dup print-method print-namespace-doc print-simple print-special-doc print-str printf println println-str prn prn-str promise proxy proxy-call-with-super proxy-mappings proxy-name proxy-super push-thread-bindings pvalues quot rand rand-int range ratio? rational? rationalize re-find re-groups re-matcher re-matches re-pattern re-seq read read-line read-string reify reduce ref ref-history-count ref-max-history ref-min-history ref-set refer refer-clojure release-pending-sends rem remove remove-method remove-ns repeat repeatedly replace replicate require reset! reset-meta! resolve rest resultset-seq reverse reversible? rseq rsubseq satisfies? second select-keys send send-off seq seq? seque sequence sequential? set set-validator! set? short short-array shorts shutdown-agents slurp some sort sort-by sorted-map sorted-map-by sorted-set sorted-set-by sorted? special-form-anchor special-symbol? split-at split-with str stream? string? struct struct-map subs subseq subvec supers swap! symbol symbol? sync syntax-symbol-anchor take take-last take-nth take-while test the-ns time to-array to-array-2d trampoline transient tree-seq true? type unchecked-add unchecked-dec unchecked-divide unchecked-inc unchecked-multiply unchecked-negate unchecked-remainder unchecked-subtract underive unquote unquote-splicing update-in update-proxy use val vals var-get var-set var? vary-meta vec vector vector? when when-first when-let when-not while with-bindings with-bindings* with-in-str with-loading-context with-local-vars with-meta with-open with-out-str with-precision xml-seq");
 
  var indentKeys = makeKeywords(
  // Built-ins
  "ns fn def defn defmethod bound-fn if if-not case condp when while when-not when-first do future comment doto locking proxy with-open with-precision reify deftype defrecord defprotocol extend extend-protocol extend-type try catch" +
 
  // Binding forms
  "let letfn binding loop for doseq dotimes when-let if-let" +
 
  // Data structures
  "defstruct struct-map assoc" +
 
  // clojure.test
  "testing deftest" +
 
  // contrib
  "handler-case handle dotrace deftrace");
 
  var tests = {
  digit: /\d/,
  digit_or_colon: /[\d:]/,
  hex: /[0-9a-fA-F]/,
  sign: /[+-]/,
  exponent: /[eE]/,
  keyword_char: /[^\s\(\[\;\)\]]/,
  basic: /[\w\$_\-]/,
  lang_keyword: /[\w*+!\-_?:\/]/
  };
 
  function stateStack(indent, type, prev) { // represents a state stack object
  this.indent = indent;
  this.type = type;
  this.prev = prev;
  }
 
  function pushStack(state, indent, type) {
  state.indentStack = new stateStack(indent, type, state.indentStack);
  }
 
  function popStack(state) {
  state.indentStack = state.indentStack.prev;
  }
 
  function isNumber(ch, stream){
  // hex
  if ( ch === '0' && 'x' == stream.peek().toLowerCase() ) {
  stream.eat('x');
  stream.eatWhile(tests.hex);
  return true;
  }
 
  // leading sign
  if ( ch == '+' || ch == '-' ) {
  stream.eat(tests.sign);
  ch = stream.next();
  }
 
  if ( tests.digit.test(ch) ) {
  stream.eat(ch);
  stream.eatWhile(tests.digit);
 
  if ( '.' == stream.peek() ) {
  stream.eat('.');
  stream.eatWhile(tests.digit);
  }
 
  if ( 'e' == stream.peek().toLowerCase() ) {
  stream.eat(tests.exponent);
  stream.eat(tests.sign);
  stream.eatWhile(tests.digit);
  }
 
  return true;
  }
 
  return false;
  }
 
  return {
  startState: function () {
  return {
  indentStack: null,
  indentation: 0,
  mode: false,
  };
  },
 
  token: function (stream, state) {
  if (state.indentStack == null && stream.sol()) {
  // update indentation, but only if indentStack is empty
  state.indentation = stream.indentation();
  }
 
  // skip spaces
  if (stream.eatSpace()) {
  return null;
  }
  var returnType = null;
 
  switch(state.mode){
  case "string": // multi-line string parsing mode
  var next, escaped = false;
  while ((next = stream.next()) != null) {
  if (next == "\"" && !escaped) {
 
  state.mode = false;
  break;
  }
  escaped = !escaped && next == "\\";
  }
  returnType = STRING; // continue on in string mode
  break;
  default: // default parsing mode
  var ch = stream.next();
 
  if (ch == "\"") {
  state.mode = "string";
  returnType = STRING;
  } else if (ch == "'" && !( tests.digit_or_colon.test(stream.peek()) )) {
  returnType = ATOM;
  } else if (ch == ";") { // comment
  stream.skipToEnd(); // rest of the line is a comment
  returnType = COMMENT;
  } else if (isNumber(ch,stream)){
  returnType = NUMBER;
  } else if (ch == "(" || ch == "[") {
  var keyWord = ''; var indentTemp = stream.column();
  /**
  Either
  (indent-word ..
  (non-indent-word ..
  (;something else, bracket, etc.
  */
 
  while ((letter = stream.eat(tests.keyword_char)) != null) {
  keyWord += letter;
  }
 
  if (keyWord.length > 0 && indentKeys.propertyIsEnumerable(keyWord)) { // indent-word
 
  pushStack(state, indentTemp + INDENT_WORD_SKIP, ch);
  } else { // non-indent word
  // we continue eating the spaces
  stream.eatSpace();
  if (stream.eol() || stream.peek() == ";") {
  // nothing significant after
  // we restart indentation 1 space after
  pushStack(state, indentTemp + 1, ch);
  } else {
  pushStack(state, indentTemp + stream.current().length, ch); // else we match
  }
  }
  stream.backUp(stream.current().length - 1); // undo all the eating
 
  returnType = BRACKET;
  } else if (ch == ")" || ch == "]") {
  returnType = BRACKET;
  if (state.indentStack != null && state.indentStack.type == (ch == ")" ? "(" : "[")) {
  popStack(state);
  }
  } else if ( ch == ":" ) {
  stream.eatWhile(tests.lang_keyword);
  return TAG;
  } else {
  stream.eatWhile(tests.basic);
 
  if (keywords && keywords.propertyIsEnumerable(stream.current())) {
  returnType = BUILTIN;
  } else if ( atoms && atoms.propertyIsEnumerable(stream.current()) ) {
  returnType = ATOM;
  } else returnType = null;
  }
  }
 
  return returnType;
  },
 
  indent: function (state, textAfter) {
  if (state.indentStack == null) return state.indentation;
  return state.indentStack.indent;
  }
  };
  });
 
  CodeMirror.defineMIME("text/x-clojure", "clojure");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Clojure mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="clojure.js"></script>
  <style>.CodeMirror {background: #f8f8f8;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: Clojure mode</h1>
  <form><textarea id="code" name="code">
  ; Conway's Game of Life, based on the work of:
  ;; Laurent Petit https://gist.github.com/1200343
  ;; Christophe Grand http://clj-me.cgrand.net/2011/08/19/conways-game-of-life
 
  (ns ^{:doc "Conway's Game of Life."}
  game-of-life)
 
  ;; Core game of life's algorithm functions
 
  (defn neighbours
  "Given a cell's coordinates, returns the coordinates of its neighbours."
  [[x y]]
  (for [dx [-1 0 1] dy (if (zero? dx) [-1 1] [-1 0 1])]
  [(+ dx x) (+ dy y)]))
 
  (defn step
  "Given a set of living cells, computes the new set of living cells."
  [cells]
  (set (for [[cell n] (frequencies (mapcat neighbours cells))
  :when (or (= n 3) (and (= n 2) (cells cell)))]
  cell)))
 
  ;; Utility methods for displaying game on a text terminal
 
  (defn print-board
  "Prints a board on *out*, representing a step in the game."
  [board w h]
  (doseq [x (range (inc w)) y (range (inc h))]
  (if (= y 0) (print "\n"))
  (print (if (board [x y]) "[X]" " . "))))
 
  (defn display-grids
  "Prints a squence of boards on *out*, representing several steps."
  [grids w h]
  (doseq [board grids]
  (print-board board w h)
  (print "\n")))
 
  ;; Launches an example board
 
  (def
  ^{:doc "board represents the initial set of living cells"}
  board #{[2 1] [2 2] [2 3]})
 
  (display-grids (take 3 (iterate step board)) 5 5) </textarea></form>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/x-clojure</code>.</p>
 
  </body>
  </html>
 
  The MIT License
 
  Copyright (c) 2011 Jeff Pickhardt
  Modified from the Python CodeMirror mode, Copyright (c) 2010 Timothy Farrell
 
  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:
 
  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.
 
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  THE SOFTWARE.
  /**
  * Link to the project's GitHub page:
  * https://github.com/pickhardt/coffeescript-codemirror-mode
  */
  CodeMirror.defineMode('coffeescript', function(conf) {
  var ERRORCLASS = 'error';
 
  function wordRegexp(words) {
  return new RegExp("^((" + words.join(")|(") + "))\\b");
  }
 
  var singleOperators = new RegExp("^[\\+\\-\\*/%&|\\^~<>!\?]");
  var singleDelimiters = new RegExp('^[\\(\\)\\[\\]\\{\\}@,:`=;\\.]');
  var doubleOperators = new RegExp("^((\->)|(\=>)|(\\+\\+)|(\\+\\=)|(\\-\\-)|(\\-\\=)|(\\*\\*)|(\\*\\=)|(\\/\\/)|(\\/\\=)|(==)|(!=)|(<=)|(>=)|(<>)|(<<)|(>>)|(//))");
  var doubleDelimiters = new RegExp("^((\\.\\.)|(\\+=)|(\\-=)|(\\*=)|(%=)|(/=)|(&=)|(\\|=)|(\\^=))");
  var tripleDelimiters = new RegExp("^((\\.\\.\\.)|(//=)|(>>=)|(<<=)|(\\*\\*=))");
  var identifiers = new RegExp("^[_A-Za-z][_A-Za-z0-9]*");
 
  var wordOperators = wordRegexp(['and', 'or', 'not',
  'is', 'isnt', 'in',
  'instanceof', 'typeof']);
  var indentKeywords = ['for', 'while', 'loop', 'if', 'unless', 'else',
  'switch', 'try', 'catch', 'finally', 'class'];
  var commonKeywords = ['break', 'by', 'continue', 'debugger', 'delete',
  'do', 'in', 'of', 'new', 'return', 'then',
  'this', 'throw', 'when', 'until'];
 
  var keywords = wordRegexp(indentKeywords.concat(commonKeywords));
 
  indentKeywords = wordRegexp(indentKeywords);
 
 
  var stringPrefixes = new RegExp("^('{3}|\"{3}|['\"])");
  var regexPrefixes = new RegExp("^(/{3}|/)");
  var commonConstants = ['Infinity', 'NaN', 'undefined', 'null', 'true', 'false', 'on', 'off', 'yes', 'no'];
  var constants = wordRegexp(commonConstants);
 
  // Tokenizers
  function tokenBase(stream, state) {
  // Handle scope changes
  if (stream.sol()) {
  var scopeOffset = state.scopes[0].offset;
  if (stream.eatSpace()) {
  var lineOffset = stream.indentation();
  if (lineOffset > scopeOffset) {
  return 'indent';
  } else if (lineOffset < scopeOffset) {
  return 'dedent';
  }
  return null;
  } else {
  if (scopeOffset > 0) {
  dedent(stream, state);
  }
  }
  }
  if (stream.eatSpace()) {
  return null;
  }
 
  var ch = stream.peek();
 
  // Handle comments
  if (ch === '#') {
  stream.skipToEnd();
  return 'comment';
  }
 
  // Handle number literals
  if (stream.match(/^-?[0-9\.]/, false)) {
  var floatLiteral = false;
  // Floats
  if (stream.match(/^-?\d*\.\d+(e[\+\-]?\d+)?/i)) {
  floatLiteral = true;
  }
  if (stream.match(/^-?\d+\.\d*/)) {
  floatLiteral = true;
  }
  if (stream.match(/^-?\.\d+/)) {
  floatLiteral = true;
  }
  if (floatLiteral) {
  return 'number';
  }
  // Integers
  var intLiteral = false;
  // Hex
  if (stream.match(/^-?0x[0-9a-f]+/i)) {
  intLiteral = true;
  }
  // Decimal
  if (stream.match(/^-?[1-9]\d*(e[\+\-]?\d+)?/)) {
  intLiteral = true;
  }
  // Zero by itself with no other piece of number.
  if (stream.match(/^-?0(?![\dx])/i)) {
  intLiteral = true;
  }
  if (intLiteral) {
  return 'number';
  }
  }
 
  // Handle strings
  if (stream.match(stringPrefixes)) {
  state.tokenize = tokenFactory(stream.current(), 'string');
  return state.tokenize(stream, state);
  }
  // Handle regex literals
  if (stream.match(regexPrefixes)) {
  if (stream.current() != '/' || stream.match(/^.*\//, false)) { // prevent highlight of division
  state.tokenize = tokenFactory(stream.current(), 'string-2');
  return state.tokenize(stream, state);
  } else {
  stream.backUp(1);
  }
  }
 
  // Handle operators and delimiters
  if (stream.match(tripleDelimiters) || stream.match(doubleDelimiters)) {
  return 'punctuation';
  }
  if (stream.match(doubleOperators)
  || stream.match(singleOperators)
  || stream.match(wordOperators)) {
  return 'operator';
  }
  if (stream.match(singleDelimiters)) {
  return 'punctuation';
  }
 
  if (stream.match(constants)) {
  return 'atom';
  }
 
  if (stream.match(keywords)) {
  return 'keyword';
  }
 
  if (stream.match(identifiers)) {
  return 'variable';
  }
 
  // Handle non-detected items
  stream.next();
  return ERRORCLASS;
  }
 
  function tokenFactory(delimiter, outclass) {
  var delim_re = new RegExp(delimiter);
  var singleline = delimiter.length == 1;
 
  return function tokenString(stream, state) {
  while (!stream.eol()) {
  stream.eatWhile(/[^'"\/\\]/);
  if (stream.eat('\\')) {
  stream.next();
  if (singleline && stream.eol()) {
  return outclass;
  }
  } else if (stream.match(delim_re)) {
  state.tokenize = tokenBase;
  return outclass;
  } else {
  stream.eat(/['"\/]/);
  }
  }
  if (singleline) {
  if (conf.mode.singleLineStringErrors) {
  outclass = ERRORCLASS
  } else {
  state.tokenize = tokenBase;
  }
  }
  return outclass;
  };
  }
 
  function indent(stream, state, type) {
  type = type || 'coffee';
  var indentUnit = 0;
  if (type === 'coffee') {
  for (var i = 0; i < state.scopes.length; i++) {
  if (state.scopes[i].type === 'coffee') {
  indentUnit = state.scopes[i].offset + conf.indentUnit;
  break;
  }
  }
  } else {
  indentUnit = stream.column() + stream.current().length;
  }
  state.scopes.unshift({
  offset: indentUnit,
  type: type
  });
  }
 
  function dedent(stream, state) {
  if (state.scopes.length == 1) return;
  if (state.scopes[0].type === 'coffee') {
  var _indent = stream.indentation();
  var _indent_index = -1;
  for (var i = 0; i < state.scopes.length; ++i) {
  if (_indent === state.scopes[i].offset) {
  _indent_index = i;
  break;
  }
  }
  if (_indent_index === -1) {
  return true;
  }
  while (state.scopes[0].offset !== _indent) {
  state.scopes.shift();
  }
  return false
  } else {
  state.scopes.shift();
  return false;
  }
  }
 
  function tokenLexer(stream, state) {
  var style = state.tokenize(stream, state);
  var current = stream.current();
 
  // Handle '.' connected identifiers
  if (current === '.') {
  style = state.tokenize(stream, state);
  current = stream.current();
  if (style === 'variable') {
  return 'variable';
  } else {
  return ERRORCLASS;
  }
  }
 
  // Handle properties
  if (current === '@') {
  style = state.tokenize(stream, state);
  current = stream.current();
  if (style === 'variable') {
  return 'variable-2';
  } else {
  return ERRORCLASS;
  }
  }
 
  // Handle scope changes.
  if (current === 'return') {
  state.dedent += 1;
  }
  if (((current === '->' || current === '=>') &&
  !state.lambda &&
  state.scopes[0].type == 'coffee' &&
  stream.peek() === '')
  || style === 'indent') {
  indent(stream, state);
  }
  var delimiter_index = '[({'.indexOf(current);
  if (delimiter_index !== -1) {
  indent(stream, state, '])}'.slice(delimiter_index, delimiter_index+1));
  }
  if (indentKeywords.exec(current)){
  indent(stream, state);
  }
  if (current == 'then'){
  dedent(stream, state);
  }
 
 
  if (style === 'dedent') {
  if (dedent(stream, state)) {
  return ERRORCLASS;
  }
  }
  delimiter_index = '])}'.indexOf(current);
  if (delimiter_index !== -1) {
  if (dedent(stream, state)) {
  return ERRORCLASS;
  }
  }
  if (state.dedent > 0 && stream.eol() && state.scopes[0].type == 'coffee') {
  if (state.scopes.length > 1) state.scopes.shift();
  state.dedent -= 1;
  }
 
  return style;
  }
 
  var external = {
  startState: function(basecolumn) {
  return {
  tokenize: tokenBase,
  scopes: [{offset:basecolumn || 0, type:'coffee'}],
  lastToken: null,
  lambda: false,
  dedent: 0
  };
  },
 
  token: function(stream, state) {
  var style = tokenLexer(stream, state);
 
  state.lastToken = {style:style, content: stream.current()};
 
  if (stream.eol() && stream.lambda) {
  state.lambda = false;
  }
 
  return style;
  },
 
  indent: function(state, textAfter) {
  if (state.tokenize != tokenBase) {
  return 0;
  }
 
  return state.scopes[0].offset;
  }
 
  };
  return external;
  });
 
  CodeMirror.defineMIME('text/x-coffeescript', 'coffeescript');
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: CoffeeScript mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="coffeescript.js"></script>
  <style>.CodeMirror {border-top: 1px solid silver; border-bottom: 1px solid silver;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: CoffeeScript mode</h1>
  <form><textarea id="code" name="code">
  # CoffeeScript mode for CodeMirror
  # Copyright (c) 2011 Jeff Pickhardt, released under
  # the MIT License.
  #
  # Modified from the Python CodeMirror mode, which also is
  # under the MIT License Copyright (c) 2010 Timothy Farrell.
  #
  # The following script, Underscore.coffee, is used to
  # demonstrate CoffeeScript mode for CodeMirror.
  #
  # To download CoffeeScript mode for CodeMirror, go to:
  # https://github.com/pickhardt/coffeescript-codemirror-mode
 
  # **Underscore.coffee
  # (c) 2011 Jeremy Ashkenas, DocumentCloud Inc.**
  # Underscore is freely distributable under the terms of the
  # [MIT license](http://en.wikipedia.org/wiki/MIT_License).
  # Portions of Underscore are inspired by or borrowed from
  # [Prototype.js](http://prototypejs.org/api), Oliver Steele's
  # [Functional](http://osteele.com), and John Resig's
  # [Micro-Templating](http://ejohn.org).
  # For all details and documentation:
  # http://documentcloud.github.com/underscore/
 
 
  # Baseline setup
  # --------------
 
  # Establish the root object, `window` in the browser, or `global` on the server.
  root = this
 
 
  # Save the previous value of the `_` variable.
  previousUnderscore = root._
 
 
  # Establish the object that gets thrown to break out of a loop iteration.
  # `StopIteration` is SOP on Mozilla.
  breaker = if typeof(StopIteration) is 'undefined' then '__break__' else StopIteration
 
 
  # Helper function to escape **RegExp** contents, because JS doesn't have one.
  escapeRegExp = (string) -> string.replace(/([.*+?^${}()|[\]\/\\])/g, '\\$1')
 
 
  # Save bytes in the minified (but not gzipped) version:
  ArrayProto = Array.prototype
  ObjProto = Object.prototype
 
 
  # Create quick reference variables for speed access to core prototypes.
  slice = ArrayProto.slice
  unshift = ArrayProto.unshift
  toString = ObjProto.toString
  hasOwnProperty = ObjProto.hasOwnProperty
  propertyIsEnumerable = ObjProto.propertyIsEnumerable
 
 
  # All **ECMA5** native implementations we hope to use are declared here.
  nativeForEach = ArrayProto.forEach
  nativeMap = ArrayProto.map
  nativeReduce = ArrayProto.reduce
  nativeReduceRight = ArrayProto.reduceRight
  nativeFilter = ArrayProto.filter
  nativeEvery = ArrayProto.every
  nativeSome = ArrayProto.some
  nativeIndexOf = ArrayProto.indexOf
  nativeLastIndexOf = ArrayProto.lastIndexOf
  nativeIsArray = Array.isArray
  nativeKeys = Object.keys
 
 
  # Create a safe reference to the Underscore object for use below.
  _ = (obj) -> new wrapper(obj)
 
 
  # Export the Underscore object for **CommonJS**.
  if typeof(exports) != 'undefined' then exports._ = _
 
 
  # Export Underscore to global scope.
  root._ = _
 
 
  # Current version.
  _.VERSION = '1.1.0'
 
 
  # Collection Functions
  # --------------------
 
  # The cornerstone, an **each** implementation.
  # Handles objects implementing **forEach**, arrays, and raw objects.
  _.each = (obj, iterator, context) ->
  try
  if nativeForEach and obj.forEach is nativeForEach
  obj.forEach iterator, context
  else if _.isNumber obj.length
  iterator.call context, obj[i], i, obj for i in [0...obj.length]
  else
  iterator.call context, val, key, obj for own key, val of obj
  catch e
  throw e if e isnt breaker
  obj
 
 
  # Return the results of applying the iterator to each element. Use JavaScript
  # 1.6's version of **map**, if possible.
  _.map = (obj, iterator, context) ->
  return obj.map(iterator, context) if nativeMap and obj.map is nativeMap
  results = []
  _.each obj, (value, index, list) ->
  results.push iterator.call context, value, index, list
  results
 
 
  # **Reduce** builds up a single result from a list of values. Also known as
  # **inject**, or **foldl**. Uses JavaScript 1.8's version of **reduce**, if possible.
  _.reduce = (obj, iterator, memo, context) ->
  if nativeReduce and obj.reduce is nativeReduce
  iterator = _.bind iterator, context if context
  return obj.reduce iterator, memo
  _.each obj, (value, index, list) ->
  memo = iterator.call context, memo, value, index, list
  memo
 
 
  # The right-associative version of **reduce**, also known as **foldr**. Uses
  # JavaScript 1.8's version of **reduceRight**, if available.
  _.reduceRight = (obj, iterator, memo, context) ->
  if nativeReduceRight and obj.reduceRight is nativeReduceRight
  iterator = _.bind iterator, context if context
  return obj.reduceRight iterator, memo
  reversed = _.clone(_.toArray(obj)).reverse()
  _.reduce reversed, iterator, memo, context
 
 
  # Return the first value which passes a truth test.
  _.detect = (obj, iterator, context) ->
  result = null
  _.each obj, (value, index, list) ->
  if iterator.call context, value, index, list
  result = value
  _.breakLoop()
  result
 
 
  # Return all the elements that pass a truth test. Use JavaScript 1.6's
  # **filter**, if it exists.
  _.filter = (obj, iterator, context) ->
  return obj.filter iterator, context if nativeFilter and obj.filter is nativeFilter
  results = []
  _.each obj, (value, index, list) ->
  results.push value if iterator.call context, value, index, list
  results
 
 
  # Return all the elements for which a truth test fails.
  _.reject = (obj, iterator, context) ->
  results = []
  _.each obj, (value, index, list) ->
  results.push value if not iterator.call context, value, index, list
  results
 
 
  # Determine whether all of the elements match a truth test. Delegate to
  # JavaScript 1.6's **every**, if it is present.
  _.every = (obj, iterator, context) ->
  iterator ||= _.identity
  return obj.every iterator, context if nativeEvery and obj.every is nativeEvery
  result = true
  _.each obj, (value, index, list) ->
  _.breakLoop() unless (result = result and iterator.call(context, value, index, list))
  result
 
 
  # Determine if at least one element in the object matches a truth test. Use
  # JavaScript 1.6's **some**, if it exists.
  _.some = (obj, iterator, context) ->
  iterator ||= _.identity
  return obj.some iterator, context if nativeSome and obj.some is nativeSome
  result = false
  _.each obj, (value, index, list) ->
  _.breakLoop() if (result = iterator.call(context, value, index, list))
  result
 
 
  # Determine if a given value is included in the array or object,
  # based on `===`.
  _.include = (obj, target) ->
  return _.indexOf(obj, target) isnt -1 if nativeIndexOf and obj.indexOf is nativeIndexOf
  return true for own key, val of obj when val is target
  false
 
 
  # Invoke a method with arguments on every item in a collection.
  _.invoke = (obj, method) ->
  args = _.rest arguments, 2
  (if method then val[method] else val).apply(val, args) for val in obj
 
 
  # Convenience version of a common use case of **map**: fetching a property.
  _.pluck = (obj, key) ->
  _.map(obj, (val) -> val[key])
 
 
  # Return the maximum item or (item-based computation).
  _.max = (obj, iterator, context) ->
  return Math.max.apply(Math, obj) if not iterator and _.isArray(obj)
  result = computed: -Infinity
  _.each obj, (value, index, list) ->
  computed = if iterator then iterator.call(context, value, index, list) else value
  computed >= result.computed and (result = {value: value, computed: computed})
  result.value
 
 
  # Return the minimum element (or element-based computation).
  _.min = (obj, iterator, context) ->
  return Math.min.apply(Math, obj) if not iterator and _.isArray(obj)
  result = computed: Infinity
  _.each obj, (value, index, list) ->
  computed = if iterator then iterator.call(context, value, index, list) else value
  computed < result.computed and (result = {value: value, computed: computed})
  result.value
 
 
  # Sort the object's values by a criterion produced by an iterator.
  _.sortBy = (obj, iterator, context) ->
  _.pluck(((_.map obj, (value, index, list) ->
  {value: value, criteria: iterator.call(context, value, index, list)}
  ).sort((left, right) ->
  a = left.criteria; b = right.criteria
  if a < b then -1 else if a > b then 1 else 0
  )), 'value')
 
 
  # Use a comparator function to figure out at what index an object should
  # be inserted so as to maintain order. Uses binary search.
  _.sortedIndex = (array, obj, iterator) ->
  iterator ||= _.identity
  low = 0
  high = array.length
  while low < high
  mid = (low + high) >> 1
  if iterator(array[mid]) < iterator(obj) then low = mid + 1 else high = mid
  low
 
 
  # Convert anything iterable into a real, live array.
  _.toArray = (iterable) ->
  return [] if (!iterable)
  return iterable.toArray() if (iterable.toArray)
  return iterable if (_.isArray(iterable))
  return slice.call(iterable) if (_.isArguments(iterable))
  _.values(iterable)
 
 
  # Return the number of elements in an object.
  _.size = (obj) -> _.toArray(obj).length
 
 
  # Array Functions
  # ---------------
 
  # Get the first element of an array. Passing `n` will return the first N
  # values in the array. Aliased as **head**. The `guard` check allows it to work
  # with **map**.
  _.first = (array, n, guard) ->
  if n and not guard then slice.call(array, 0, n) else array[0]
 
 
  # Returns everything but the first entry of the array. Aliased as **tail**.
  # Especially useful on the arguments object. Passing an `index` will return
  # the rest of the values in the array from that index onward. The `guard`
  # check allows it to work with **map**.
  _.rest = (array, index, guard) ->
  slice.call(array, if _.isUndefined(index) or guard then 1 else index)
 
 
  # Get the last element of an array.
  _.last = (array) -> array[array.length - 1]
 
 
  # Trim out all falsy values from an array.
  _.compact = (array) -> item for item in array when item
 
 
  # Return a completely flattened version of an array.
  _.flatten = (array) ->
  _.reduce array, (memo, value) ->
  return memo.concat(_.flatten(value)) if _.isArray value
  memo.push value
  memo
  , []
 
 
  # Return a version of the array that does not contain the specified value(s).
  _.without = (array) ->
  values = _.rest arguments
  val for val in _.toArray(array) when not _.include values, val
 
 
  # Produce a duplicate-free version of the array. If the array has already
  # been sorted, you have the option of using a faster algorithm.
  _.uniq = (array, isSorted) ->
  memo = []
  for el, i in _.toArray array
  memo.push el if i is 0 || (if isSorted is true then _.last(memo) isnt el else not _.include(memo, el))
  memo
 
 
  # Produce an array that contains every item shared between all the
  # passed-in arrays.
  _.intersect = (array) ->
  rest = _.rest arguments
  _.select _.uniq(array), (item) ->
  _.all rest, (other) ->
  _.indexOf(other, item) >= 0
 
 
  # Zip together multiple lists into a single array -- elements that share
  # an index go together.
  _.zip = ->
  length = _.max _.pluck arguments, 'length'
  results = new Array length
  for i in [0...length]
  results[i] = _.pluck arguments, String i
  results
 
 
  # If the browser doesn't supply us with **indexOf** (I'm looking at you, MSIE),
  # we need this function. Return the position of the first occurrence of an
  # item in an array, or -1 if the item is not included in the array.
  _.indexOf = (array, item) ->
  return array.indexOf item if nativeIndexOf and array.indexOf is nativeIndexOf
  i = 0; l = array.length
  while l - i
  if array[i] is item then return i else i++
  -1
 
 
  # Provide JavaScript 1.6's **lastIndexOf**, delegating to the native function,
  # if possible.
  _.lastIndexOf = (array, item) ->
  return array.lastIndexOf(item) if nativeLastIndexOf and array.lastIndexOf is nativeLastIndexOf
  i = array.length
  while i
  if array[i] is item then return i else i--
  -1
 
 
  # Generate an integer Array containing an arithmetic progression. A port of
  # [the native Python **range** function](http://docs.python.org/library/functions.html#range).
  _.range = (start, stop, step) ->
  a = arguments
  solo = a.length <= 1
  i = start = if solo then 0 else a[0]
  stop = if solo then a[0] else a[1]
  step = a[2] or 1
  len = Math.ceil((stop - start) / step)
  return [] if len <= 0
  range = new Array len
  idx = 0
  loop
  return range if (if step > 0 then i - stop else stop - i) >= 0
  range[idx] = i
  idx++
  i+= step
 
 
  # Function Functions
  # ------------------
 
  # Create a function bound to a given object (assigning `this`, and arguments,
  # optionally). Binding with arguments is also known as **curry**.
  _.bind = (func, obj) ->
  args = _.rest arguments, 2
  -> func.apply obj or root, args.concat arguments
 
 
  # Bind all of an object's methods to that object. Useful for ensuring that
  # all callbacks defined on an object belong to it.
  _.bindAll = (obj) ->
  funcs = if arguments.length > 1 then _.rest(arguments) else _.functions(obj)
  _.each funcs, (f) -> obj[f] = _.bind obj[f], obj
  obj
 
 
  # Delays a function for the given number of milliseconds, and then calls
  # it with the arguments supplied.
  _.delay = (func, wait) ->
  args = _.rest arguments, 2
  setTimeout((-> func.apply(func, args)), wait)
 
 
  # Memoize an expensive function by storing its results.
  _.memoize = (func, hasher) ->
  memo = {}
  hasher or= _.identity
  ->
  key = hasher.apply this, arguments
  return memo[key] if key of memo
  memo[key] = func.apply this, arguments
 
 
  # Defers a function, scheduling it to run after the current call stack has
  # cleared.
  _.defer = (func) ->
  _.delay.apply _, [func, 1].concat _.rest arguments
 
 
  # Returns the first function passed as an argument to the second,
  # allowing you to adjust arguments, run code before and after, and
  # conditionally execute the original function.
  _.wrap = (func, wrapper) ->
  -> wrapper.apply wrapper, [func].concat arguments
 
 
  # Returns a function that is the composition of a list of functions, each
  # consuming the return value of the function that follows.
  _.compose = ->
  funcs = arguments
  ->
  args = arguments
  for i in [funcs.length - 1..0] by -1
  args = [funcs[i].apply(this, args)]
  args[0]
 
 
  # Object Functions
  # ----------------
 
  # Retrieve the names of an object's properties.
  _.keys = nativeKeys or (obj) ->
  return _.range 0, obj.length if _.isArray(obj)
  key for key, val of obj
 
 
  # Retrieve the values of an object's properties.
  _.values = (obj) ->
  _.map obj, _.identity
 
 
  # Return a sorted list of the function names available in Underscore.
  _.functions = (obj) ->
  _.filter(_.keys(obj), (key) -> _.isFunction(obj[key])).sort()
 
 
  # Extend a given object with all of the properties in a source object.
  _.extend = (obj) ->
  for source in _.rest(arguments)
  obj[key] = val for key, val of source
  obj
 
 
  # Create a (shallow-cloned) duplicate of an object.
  _.clone = (obj) ->
  return obj.slice 0 if _.isArray obj
  _.extend {}, obj
 
 
  # Invokes interceptor with the obj, and then returns obj.
  # The primary purpose of this method is to "tap into" a method chain,
  # in order to perform operations on intermediate results within
  the chain.
  _.tap = (obj, interceptor) ->
  interceptor obj
  obj
 
 
  # Perform a deep comparison to check if two objects are equal.
  _.isEqual = (a, b) ->
  # Check object identity.
  return true if a is b
  # Different types?
  atype = typeof(a); btype = typeof(b)
  return false if atype isnt btype
  # Basic equality test (watch out for coercions).
  return true if `a == b`
  # One is falsy and the other truthy.
  return false if (!a and b) or (a and !b)
  # One of them implements an `isEqual()`?
  return a.isEqual(b) if a.isEqual
  # Check dates' integer values.
  return a.getTime() is b.getTime() if _.isDate(a) and _.isDate(b)
  # Both are NaN?
  return false if _.isNaN(a) and _.isNaN(b)
  # Compare regular expressions.
  if _.isRegExp(a) and _.isRegExp(b)
  return a.source is b.source and
  a.global is b.global and
  a.ignoreCase is b.ignoreCase and
  a.multiline is b.multiline
  # If a is not an object by this point, we can't handle it.
  return false if atype isnt 'object'
  # Check for different array lengths before comparing contents.
  return false if a.length and (a.length isnt b.length)
  # Nothing else worked, deep compare the contents.
  aKeys = _.keys(a); bKeys = _.keys(b)
  # Different object sizes?
  return false if aKeys.length isnt bKeys.length
  # Recursive comparison of contents.
  return false for key, val of a when !(key of b) or !_.isEqual(val, b[key])
  true
 
 
  # Is a given array or object empty?
  _.isEmpty = (obj) ->
  return obj.length is 0 if _.isArray(obj) or _.isString(obj)
  return false for own key of obj
  true
 
 
  # Is a given value a DOM element?
  _.isElement = (obj) -> obj and obj.nodeType is 1
 
 
  # Is a given value an array?
  _.isArray = nativeIsArray or (obj) -> !!(obj and obj.concat and obj.unshift and not obj.callee)
 
 
  # Is a given variable an arguments object?
  _.isArguments = (obj) -> obj and obj.callee
 
 
  # Is the given value a function?
  _.isFunction = (obj) -> !!(obj and obj.constructor and obj.call and obj.apply)
 
 
  # Is the given value a string?
  _.isString = (obj) -> !!(obj is '' or (obj and obj.charCodeAt and obj.substr))
 
 
  # Is a given value a number?
  _.isNumber = (obj) -> (obj is +obj) or toString.call(obj) is '[object Number]'
 
 
  # Is a given value a boolean?
  _.isBoolean = (obj) -> obj is true or obj is false
 
 
  # Is a given value a Date?
  _.isDate = (obj) -> !!(obj and obj.getTimezoneOffset and obj.setUTCFullYear)
 
 
  # Is the given value a regular expression?
  _.isRegExp = (obj) -> !!(obj and obj.exec and (obj.ignoreCase or obj.ignoreCase is false))
 
 
  # Is the given value NaN -- this one is interesting. `NaN != NaN`, and
  # `isNaN(undefined) == true`, so we make sure it's a number first.
  _.isNaN = (obj) -> _.isNumber(obj) and window.isNaN(obj)
 
 
  # Is a given value equal to null?
  _.isNull = (obj) -> obj is null
 
 
  # Is a given variable undefined?
  _.isUndefined = (obj) -> typeof obj is 'undefined'
 
 
  # Utility Functions
  # -----------------
 
  # Run Underscore.js in noConflict mode, returning the `_` variable to its
  # previous owner. Returns a reference to the Underscore object.
  _.noConflict = ->
  root._ = previousUnderscore
  this
 
 
  # Keep the identity function around for default iterators.
  _.identity = (value) -> value
 
 
  # Run a function `n` times.
  _.times = (n, iterator, context) ->
  iterator.call context, i for i in [0...n]
 
 
  # Break out of the middle of an iteration.
  _.breakLoop = -> throw breaker
 
 
  # Add your own custom functions to the Underscore object, ensuring that
  # they're correctly added to the OOP wrapper as well.
  _.mixin = (obj) ->
  for name in _.functions(obj)
  addToWrapper name, _[name] = obj[name]
 
 
  # Generate a unique integer id (unique within the entire client session).
  # Useful for temporary DOM ids.
  idCounter = 0
  _.uniqueId = (prefix) ->
  (prefix or '') + idCounter++
 
 
  # By default, Underscore uses **ERB**-style template delimiters, change the
  # following template settings to use alternative delimiters.
  _.templateSettings = {
  start: '<%'
  end: '%>'
  interpolate: /<%=(.+?)%>/g
  }
 
 
  # JavaScript templating a-la **ERB**, pilfered from John Resig's
  # *Secrets of the JavaScript Ninja*, page 83.
  # Single-quote fix from Rick Strahl.
  # With alterations for arbitrary delimiters, and to preserve whitespace.
  _.template = (str, data) ->
  c = _.templateSettings
  endMatch = new RegExp("'(?=[^"+c.end.substr(0, 1)+"]*"+escapeRegExp(c.end)+")","g")
  fn = new Function 'obj',
  'var p=[],print=function(){p.push.apply(p,arguments);};' +
  'with(obj||{}){p.push(\'' +
  str.replace(/\r/g, '\\r')
  .replace(/\n/g, '\\n')
  .replace(/\t/g, '\\t')
  .replace(endMatch,"���")
  .split("'").join("\\'")
  .split("���").join("'")
  .replace(c.interpolate, "',$1,'")
  .split(c.start).join("');")
  .split(c.end).join("p.push('") +
  "');}return p.join('');"
  if data then fn(data) else fn
 
 
  # Aliases
  # -------
 
  _.forEach = _.each
  _.foldl = _.inject = _.reduce
  _.foldr = _.reduceRight
  _.select = _.filter
  _.all = _.every
  _.any = _.some
  _.contains = _.include
  _.head = _.first
  _.tail = _.rest
  _.methods = _.functions
 
 
  # Setup the OOP Wrapper
  # ---------------------
 
  # If Underscore is called as a function, it returns a wrapped object that
  # can be used OO-style. This wrapper holds altered versions of all the
  # underscore functions. Wrapped objects may be chained.
  wrapper = (obj) ->
  this._wrapped = obj
  this
 
 
  # Helper function to continue chaining intermediate results.
  result = (obj, chain) ->
  if chain then _(obj).chain() else obj
 
 
  # A method to easily add functions to the OOP wrapper.
  addToWrapper = (name, func) ->
  wrapper.prototype[name] = ->
  args = _.toArray arguments
  unshift.call args, this._wrapped
  result func.apply(_, args), this._chain
 
 
  # Add all ofthe Underscore functions to the wrapper object.
  _.mixin _
 
 
  # Add all mutator Array functions to the wrapper.
  _.each ['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], (name) ->
  method = Array.prototype[name]
  wrapper.prototype[name] = ->
  method.apply(this._wrapped, arguments)
  result(this._wrapped, this._chain)
 
 
  # Add all accessor Array functions to the wrapper.
  _.each ['concat', 'join', 'slice'], (name) ->
  method = Array.prototype[name]
  wrapper.prototype[name] = ->
  result(method.apply(this._wrapped, arguments), this._chain)
 
 
  # Start chaining a wrapped Underscore object.
  wrapper::chain = ->
  this._chain = true
  this
 
 
  # Extracts the result from a wrapped and chained object.
  wrapper::value = -> this._wrapped
  </textarea></form>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/x-coffeescript</code>.</p>
 
  <p>The CoffeeScript mode was written by Jeff Pickhardt (<a href="LICENSE">license</a>).</p>
 
  </body>
  </html>
 
  CodeMirror.defineMode("css", function(config) {
  var indentUnit = config.indentUnit, type;
  function ret(style, tp) {type = tp; return style;}
 
  function tokenBase(stream, state) {
  var ch = stream.next();
  if (ch == "@") {stream.eatWhile(/[\w\\\-]/); return ret("meta", stream.current());}
  else if (ch == "/" && stream.eat("*")) {
  state.tokenize = tokenCComment;
  return tokenCComment(stream, state);
  }
  else if (ch == "<" && stream.eat("!")) {
  state.tokenize = tokenSGMLComment;
  return tokenSGMLComment(stream, state);
  }
  else if (ch == "=") ret(null, "compare");
  else if ((ch == "~" || ch == "|") && stream.eat("=")) return ret(null, "compare");
  else if (ch == "\"" || ch == "'") {
  state.tokenize = tokenString(ch);
  return state.tokenize(stream, state);
  }
  else if (ch == "#") {
  stream.eatWhile(/[\w\\\-]/);
  return ret("atom", "hash");
  }
  else if (ch == "!") {
  stream.match(/^\s*\w*/);
  return ret("keyword", "important");
  }
  else if (/\d/.test(ch)) {
  stream.eatWhile(/[\w.%]/);
  return ret("number", "unit");
  }
  else if (/[,.+>*\/]/.test(ch)) {
  return ret(null, "select-op");
  }
  else if (/[;{}:\[\]]/.test(ch)) {
  return ret(null, ch);
  }
  else {
  stream.eatWhile(/[\w\\\-]/);
  return ret("variable", "variable");
  }
  }
 
  function tokenCComment(stream, state) {
  var maybeEnd = false, ch;
  while ((ch = stream.next()) != null) {
  if (maybeEnd && ch == "/") {
  state.tokenize = tokenBase;
  break;
  }
  maybeEnd = (ch == "*");
  }
  return ret("comment", "comment");
  }
 
  function tokenSGMLComment(stream, state) {
  var dashes = 0, ch;
  while ((ch = stream.next()) != null) {
  if (dashes >= 2 && ch == ">") {
  state.tokenize = tokenBase;
  break;
  }
  dashes = (ch == "-") ? dashes + 1 : 0;
  }
  return ret("comment", "comment");
  }
 
  function tokenString(quote) {
  return function(stream, state) {
  var escaped = false, ch;
  while ((ch = stream.next()) != null) {
  if (ch == quote && !escaped)
  break;
  escaped = !escaped && ch == "\\";
  }
  if (!escaped) state.tokenize = tokenBase;
  return ret("string", "string");
  };
  }
 
  return {
  startState: function(base) {
  return {tokenize: tokenBase,
  baseIndent: base || 0,
  stack: []};
  },
 
  token: function(stream, state) {
  if (stream.eatSpace()) return null;
  var style = state.tokenize(stream, state);
 
  var context = state.stack[state.stack.length-1];
  if (type == "hash" && context == "rule") style = "atom";
  else if (style == "variable") {
  if (context == "rule") style = "number";
  else if (!context || context == "@media{") style = "tag";
  }
 
  if (context == "rule" && /^[\{\};]$/.test(type))
  state.stack.pop();
  if (type == "{") {
  if (context == "@media") state.stack[state.stack.length-1] = "@media{";
  else state.stack.push("{");
  }
  else if (type == "}") state.stack.pop();
  else if (type == "@media") state.stack.push("@media");
  else if (context == "{" && type != "comment") state.stack.push("rule");
  return style;
  },
 
  indent: function(state, textAfter) {
  var n = state.stack.length;
  if (/^\}/.test(textAfter))
  n -= state.stack[state.stack.length-1] == "rule" ? 2 : 1;
  return state.baseIndent + n * indentUnit;
  },
 
  electricChars: "}"
  };
  });
 
  CodeMirror.defineMIME("text/css", "css");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: CSS mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="css.js"></script>
  <style>.CodeMirror {background: #f8f8f8;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: CSS mode</h1>
  <form><textarea id="code" name="code">
  /* Some example CSS */
 
  @import url("something.css");
 
  body {
  margin: 0;
  padding: 3em 6em;
  font-family: tahoma, arial, sans-serif;
  color: #000;
  }
 
  #navigation a {
  font-weight: bold;
  text-decoration: none !important;
  }
 
  h1 {
  font-size: 2.5em;
  }
 
  h2 {
  font-size: 1.7em;
  }
 
  h1:before, h2:before {
  content: "::";
  }
 
  code {
  font-family: courier, monospace;
  font-size: 80%;
  color: #418A8A;
  }
  </textarea></form>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/css</code>.</p>
 
  </body>
  </html>
 
  span.cm-rangeinfo {color: #a0b;}
  span.cm-minus {color: red;}
  span.cm-plus {color: #2b2;}
 
  CodeMirror.defineMode("diff", function() {
  return {
  token: function(stream) {
  var ch = stream.next();
  stream.skipToEnd();
  if (ch == "+") return "plus";
  if (ch == "-") return "minus";
  if (ch == "@") return "rangeinfo";
  }
  };
  });
 
  CodeMirror.defineMIME("text/x-diff", "diff");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Diff mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="diff.js"></script>
  <link rel="stylesheet" href="diff.css">
  <style>.CodeMirror {border-top: 1px solid #ddd; border-bottom: 1px solid #ddd;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: Diff mode</h1>
  <form><textarea id="code" name="code">
  diff --git a/index.html b/index.html
  index c1d9156..7764744 100644
  --- a/index.html
  +++ b/index.html
  @@ -95,7 +95,8 @@ StringStream.prototype = {
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  - autoMatchBrackets: true
  + autoMatchBrackets: true,
  + onGutterClick: function(x){console.log(x);}
  });
  </script>
  </body>
  diff --git a/lib/codemirror.js b/lib/codemirror.js
  index 04646a9..9a39cc7 100644
  --- a/lib/codemirror.js
  +++ b/lib/codemirror.js
  @@ -399,10 +399,16 @@ var CodeMirror = (function() {
  }
 
  function onMouseDown(e) {
  - var start = posFromMouse(e), last = start;
  + var start = posFromMouse(e), last = start, target = e.target();
  if (!start) return;
  setCursor(start.line, start.ch, false);
  if (e.button() != 1) return;
  + if (target.parentNode == gutter) {
  + if (options.onGutterClick)
  + options.onGutterClick(indexOf(gutter.childNodes, target) + showingFrom);
  + return;
  + }
  +
  if (!focused) onFocus();
 
  e.stop();
  @@ -808,7 +814,7 @@ var CodeMirror = (function() {
  for (var i = showingFrom; i < showingTo; ++i) {
  var marker = lines[i].gutterMarker;
  if (marker) html.push('<div class="' + marker.style + '">' + htmlEscape(marker.text) + '</div>');
  - else html.push("<div>" + (options.lineNumbers ? i + 1 : "\u00a0") + "</div>");
  + else html.push("<div>" + (options.lineNumbers ? i + options.firstLineNumber : "\u00a0") + "</div>");
  }
  gutter.style.display = "none"; // TODO test whether this actually helps
  gutter.innerHTML = html.join("");
  @@ -1371,10 +1377,8 @@ var CodeMirror = (function() {
  if (option == "parser") setParser(value);
  else if (option === "lineNumbers") setLineNumbers(value);
  else if (option === "gutter") setGutter(value);
  - else if (option === "readOnly") options.readOnly = value;
  - else if (option === "indentUnit") {options.indentUnit = indentUnit = value; setParser(options.parser);}
  - else if (/^(?:enterMode|tabMode|indentWithTabs|readOnly|autoMatchBrackets|undoDepth)$/.test(option)) options[option] = value;
  - else throw new Error("Can't set option " + option);
  + else if (option === "indentUnit") {options.indentUnit = value; setParser(options.parser);}
  + else options[option] = value;
  },
  cursorCoords: cursorCoords,
  undo: operation(undo),
  @@ -1402,7 +1406,8 @@ var CodeMirror = (function() {
  replaceRange: operation(replaceRange),
 
  operation: function(f){return operation(f)();},
  - refresh: function(){updateDisplay([{from: 0, to: lines.length}]);}
  + refresh: function(){updateDisplay([{from: 0, to: lines.length}]);},
  + getInputField: function(){return input;}
  };
  return instance;
  }
  @@ -1420,6 +1425,7 @@ var CodeMirror = (function() {
  readOnly: false,
  onChange: null,
  onCursorActivity: null,
  + onGutterClick: null,
  autoMatchBrackets: false,
  workTime: 200,
  workDelay: 300,
  </textarea></form>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/x-diff</code>.</p>
 
  </body>
  </html>
 
  CodeMirror.defineMode("gfm", function(config, parserConfig) {
  var mdMode = CodeMirror.getMode(config, "markdown");
  var aliases = {
  html: "htmlmixed",
  js: "javascript",
  json: "application/json",
  c: "text/x-csrc",
  "c++": "text/x-c++src",
  java: "text/x-java",
  csharp: "text/x-csharp",
  "c#": "text/x-csharp",
  };
 
  // make this lazy so that we don't need to load GFM last
  var getMode = (function () {
  var i, modes = {}, mimes = {}, mime;
 
  var list = CodeMirror.listModes();
  for (i = 0; i < list.length; i++) {
  modes[list[i]] = list[i];
  }
  var mimesList = CodeMirror.listMIMEs();
  for (i = 0; i < mimesList.length; i++) {
  mime = mimesList[i].mime;
  mimes[mime] = mimesList[i].mime;
  }
 
  for (var a in aliases) {
  if (aliases[a] in modes || aliases[a] in mimes)
  modes[a] = aliases[a];
  }
 
  return function (lang) {
  return modes[lang] ? CodeMirror.getMode(config, modes[lang]) : null;
  }
  }());
 
  function markdown(stream, state) {
  // intercept fenced code blocks
  if (stream.sol() && stream.match(/^```([\w+#]*)/)) {
  // try switching mode
  state.localMode = getMode(RegExp.$1)
  if (state.localMode)
  state.localState = state.localMode.startState();
 
  state.token = local;
  return 'code';
  }
 
  return mdMode.token(stream, state.mdState);
  }
 
  function local(stream, state) {
  if (stream.sol() && stream.match(/^```/)) {
  state.localMode = state.localState = null;
  state.token = markdown;
  return 'code';
  }
  else if (state.localMode) {
  return state.localMode.token(stream, state.localState);
  } else {
  stream.skipToEnd();
  return 'code';
  }
  }
 
  // custom handleText to prevent emphasis in the middle of a word
  // and add autolinking
  function handleText(stream, mdState) {
  var match;
  if (stream.match(/^\w+:\/\/\S+/)) {
  return 'linkhref';
  }
  if (stream.match(/^[^\[*\\<>` _][^\[*\\<>` ]*[^\[*\\<>` _]/)) {
  return mdMode.getType(mdState);
  }
  if (match = stream.match(/^[^\[*\\<>` ]+/)) {
  var word = match[0];
  if (word[0] === '_' && word[word.length-1] === '_') {
  stream.backUp(word.length);
  return undefined;
  }
  return mdMode.getType(mdState);
  }
  if (stream.eatSpace()) {
  return null;
  }
  }
 
  return {
  startState: function() {
  var mdState = mdMode.startState();
  mdState.text = handleText;
  return {token: markdown, mode: "markdown", mdState: mdState,
  localMode: null, localState: null};
  },
 
  copyState: function(state) {
  return {token: state.token, mode: state.mode, mdState: CodeMirror.copyState(mdMode, state.mdState),
  localMode: state.localMode,
  localState: state.localMode ? CodeMirror.copyState(state.localMode, state.localState) : null};
  },
 
  token: function(stream, state) {
  return state.token(stream, state);
  }
  }
  });
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: GFM mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="../xml/xml.js"></script>
  <script src="../markdown/markdown.js"></script>
  <script src="gfm.js"></script>
  <script src="../javascript/javascript.js"></script>
  <link rel="stylesheet" href="../markdown/markdown.css">
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: GFM mode</h1>
 
  <!-- source: http://daringfireball.net/projects/markdown/basics.text -->
  <form><textarea id="code" name="code">
  Github Flavored Markdown
  ========================
 
  Everything from markdown plus GFM features:
 
  ## Fenced code blocks
 
  ```javascript
  for (var i = 0; i &lt; items.length; i++) {
  console.log(items[i], i); // log them
  }
  ```
 
  See http://github.github.com/github-flavored-markdown/
 
  </textarea></form>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  mode: 'gfm',
  lineNumbers: true,
  matchBrackets: true,
  theme: "default"
  });
  </script>
 
  </body>
  </html>
 
  CodeMirror.defineMode("groovy", function(config, parserConfig) {
  function words(str) {
  var obj = {}, words = str.split(" ");
  for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
  return obj;
  }
  var keywords = words(
  "abstract as assert boolean break byte case catch char class const continue def default " +
  "do double else enum extends final finally float for goto if implements import in " +
  "instanceof int interface long native new package private protected public return " +
  "short static strictfp super switch synchronized threadsafe throw throws transient " +
  "try void volatile while");
  var blockKeywords = words("catch class do else finally for if switch try while enum interface def");
  var atoms = words("null true false this");
 
  var curPunc;
  function tokenBase(stream, state) {
  var ch = stream.next();
  if (ch == '"' || ch == "'") {
  return startString(ch, stream, state);
  }
  if (/[\[\]{}\(\),;\:\.]/.test(ch)) {
  curPunc = ch;
  return null
  }
  if (/\d/.test(ch)) {
  stream.eatWhile(/[\w\.]/);
  if (stream.eat(/eE/)) { stream.eat(/\+\-/); stream.eatWhile(/\d/); }
  return "number";
  }
  if (ch == "/") {
  if (stream.eat("*")) {
  state.tokenize.push(tokenComment);
  return tokenComment(stream, state);
  }
  if (stream.eat("/")) {
  stream.skipToEnd();
  return "comment";
  }
  if (expectExpression(state.lastToken)) {
  return startString(ch, stream, state);
  }
  }
  if (ch == "-" && stream.eat(">")) {
  curPunc = "->";
  return null;
  }
  if (/[+\-*&%=<>!?|\/~]/.test(ch)) {
  stream.eatWhile(/[+\-*&%=<>|~]/);
  return "operator";
  }
  stream.eatWhile(/[\w\$_]/);
  if (ch == "@") { stream.eatWhile(/[\w\$_\.]/); return "meta"; }
  if (state.lastToken == ".") return "property";
  if (stream.eat(":")) { curPunc = "proplabel"; return "property"; }
  var cur = stream.current();
  if (atoms.propertyIsEnumerable(cur)) { return "atom"; }
  if (keywords.propertyIsEnumerable(cur)) {
  if (blockKeywords.propertyIsEnumerable(cur)) curPunc = "newstatement";
  return "keyword";
  }
  return "word";
  }
  tokenBase.isBase = true;
 
  function startString(quote, stream, state) {
  var tripleQuoted = false;
  if (quote != "/" && stream.eat(quote)) {
  if (stream.eat(quote)) tripleQuoted = true;
  else return "string";
  }
  function t(stream, state) {
  var escaped = false, next, end = !tripleQuoted;
  while ((next = stream.next()) != null) {
  if (next == quote && !escaped) {
  if (!tripleQuoted) { break; }
  if (stream.match(quote + quote)) { end = true; break; }
  }
  if (quote == '"' && next == "$" && !escaped && stream.eat("{")) {
  state.tokenize.push(tokenBaseUntilBrace());
  return "string";
  }
  escaped = !escaped && next == "\\";
  }
  if (end) state.tokenize.pop();
  return "string";
  }
  state.tokenize.push(t);
  return t(stream, state);
  }
 
  function tokenBaseUntilBrace() {
  var depth = 1;
  function t(stream, state) {
  if (stream.peek() == "}") {
  depth--;
  if (depth == 0) {
  state.tokenize.pop();
  return state.tokenize[state.tokenize.length-1](stream, state);
  }
  } else if (stream.peek() == "{") {
  depth++;
  }
  return tokenBase(stream, state);
  }
  t.isBase = true;
  return t;
  }
 
  function tokenComment(stream, state) {
  var maybeEnd = false, ch;
  while (ch = stream.next()) {
  if (ch == "/" && maybeEnd) {
  state.tokenize.pop();
  break;
  }
  maybeEnd = (ch == "*");
  }
  return "comment";
  }
 
  function expectExpression(last) {
  return !last || last == "operator" || last == "->" || /[\.\[\{\(,;:]/.test(last) ||
  last == "newstatement" || last == "keyword" || last == "proplabel";
  }
 
  function Context(indented, column, type, align, prev) {
  this.indented = indented;
  this.column = column;
  this.type = type;
  this.align = align;
  this.prev = prev;
  }
  function pushContext(state, col, type) {
  return state.context = new Context(state.indented, col, type, null, state.context);
  }
  function popContext(state) {
  var t = state.context.type;
  if (t == ")" || t == "]" || t == "}")
  state.indented = state.context.indented;
  return state.context = state.context.prev;
  }
 
  // Interface
 
  return {
  startState: function(basecolumn) {
  return {
  tokenize: [tokenBase],
  context: new Context((basecolumn || 0) - config.indentUnit, 0, "top", false),
  indented: 0,
  startOfLine: true,
  lastToken: null
  };
  },
 
  token: function(stream, state) {
  var ctx = state.context;
  if (stream.sol()) {
  if (ctx.align == null) ctx.align = false;
  state.indented = stream.indentation();
  state.startOfLine = true;
  // Automatic semicolon insertion
  if (ctx.type == "statement" && !expectExpression(state.lastToken)) {
  popContext(state); ctx = state.context;
  }
  }
  if (stream.eatSpace()) return null;
  curPunc = null;
  var style = state.tokenize[state.tokenize.length-1](stream, state);
  if (style == "comment") return style;
  if (ctx.align == null) ctx.align = true;
 
  if ((curPunc == ";" || curPunc == ":") && ctx.type == "statement") popContext(state);
  // Handle indentation for {x -> \n ... }
  else if (curPunc == "->" && ctx.type == "statement" && ctx.prev.type == "}") {
  popContext(state);
  state.context.align = false;
  }
  else if (curPunc == "{") pushContext(state, stream.column(), "}");
  else if (curPunc == "[") pushContext(state, stream.column(), "]");
  else if (curPunc == "(") pushContext(state, stream.column(), ")");
  else if (curPunc == "}") {
  while (ctx.type == "statement") ctx = popContext(state);
  if (ctx.type == "}") ctx = popContext(state);
  while (ctx.type == "statement") ctx = popContext(state);
  }
  else if (curPunc == ctx.type) popContext(state);
  else if (ctx.type == "}" || ctx.type == "top" || (ctx.type == "statement" && curPunc == "newstatement"))
  pushContext(state, stream.column(), "statement");
  state.startOfLine = false;
  state.lastToken = curPunc || style;
  return style;
  },
 
  indent: function(state, textAfter) {
  if (!state.tokenize[state.tokenize.length-1].isBase) return 0;
  var firstChar = textAfter && textAfter.charAt(0), ctx = state.context;
  if (ctx.type == "statement" && !expectExpression(state.lastToken)) ctx = ctx.prev;
  var closing = firstChar == ctx.type;
  if (ctx.type == "statement") return ctx.indented + (firstChar == "{" ? 0 : config.indentUnit);
  else if (ctx.align) return ctx.column + (closing ? 0 : 1);
  else return ctx.indented + (closing ? 0 : config.indentUnit);
  },
 
  electricChars: "{}"
  };
  });
 
  CodeMirror.defineMIME("text/x-groovy", "groovy");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Groovy mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="groovy.js"></script>
  <link rel="stylesheet" href="../../doc/docs.css">
  <style>.CodeMirror {border-top: 1px solid #500; border-bottom: 1px solid #500;}</style>
  </head>
  <body>
  <h1>CodeMirror: Groovy mode</h1>
 
  <form><textarea id="code" name="code">
  //Pattern for groovy script
  def p = ~/.*\.groovy/
  new File( 'd:\\scripts' ).eachFileMatch(p) {f ->
  // imports list
  def imports = []
  f.eachLine {
  // condition to detect an import instruction
  ln -> if ( ln =~ '^import .*' ) {
  imports << "${ln - 'import '}"
  }
  }
  // print thmen
  if ( ! imports.empty ) {
  println f
  imports.each{ println " $it" }
  }
  }
 
  /* Coin changer demo code from http://groovy.codehaus.org */
 
  enum UsCoin {
  quarter(25), dime(10), nickel(5), penny(1)
  UsCoin(v) { value = v }
  final value
  }
 
  enum OzzieCoin {
  fifty(50), twenty(20), ten(10), five(5)
  OzzieCoin(v) { value = v }
  final value
  }
 
  def plural(word, count) {
  if (count == 1) return word
  word[-1] == 'y' ? word[0..-2] + "ies" : word + "s"
  }
 
  def change(currency, amount) {
  currency.values().inject([]){ list, coin ->
  int count = amount / coin.value
  amount = amount % coin.value
  list += "$count ${plural(coin.toString(), count)}"
  }
  }
  </textarea></form>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  matchBrackets: true,
  mode: "text/x-groovy"
  });
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/x-groovy</code></p>
  </body>
  </html>
 
  CodeMirror.defineMode("haskell", function(cmCfg, modeCfg) {
 
  function switchState(source, setState, f) {
  setState(f);
  return f(source, setState);
  }
 
  // These should all be Unicode extended, as per the Haskell 2010 report
  var smallRE = /[a-z_]/;
  var largeRE = /[A-Z]/;
  var digitRE = /[0-9]/;
  var hexitRE = /[0-9A-Fa-f]/;
  var octitRE = /[0-7]/;
  var idRE = /[a-z_A-Z0-9']/;
  var symbolRE = /[-!#$%&*+.\/<=>?@\\^|~:]/;
  var specialRE = /[(),;[\]`{}]/;
  var whiteCharRE = /[ \t\v\f]/; // newlines are handled in tokenizer
 
  function normal(source, setState) {
  if (source.eatWhile(whiteCharRE)) {
  return null;
  }
 
  var ch = source.next();
  if (specialRE.test(ch)) {
  if (ch == '{' && source.eat('-')) {
  var t = "comment";
  if (source.eat('#')) {
  t = "meta";
  }
  return switchState(source, setState, ncomment(t, 1));
  }
  return null;
  }
 
  if (ch == '\'') {
  if (source.eat('\\')) {
  source.next(); // should handle other escapes here
  }
  else {
  source.next();
  }
  if (source.eat('\'')) {
  return "string";
  }
  return "error";
  }
 
  if (ch == '"') {
  return switchState(source, setState, stringLiteral);
  }
 
  if (largeRE.test(ch)) {
  source.eatWhile(idRE);
  if (source.eat('.')) {
  return "qualifier";
  }
  return "variable-2";
  }
 
  if (smallRE.test(ch)) {
  source.eatWhile(idRE);
  return "variable";
  }
 
  if (digitRE.test(ch)) {
  if (ch == '0') {
  if (source.eat(/[xX]/)) {
  source.eatWhile(hexitRE); // should require at least 1
  return "integer";
  }
  if (source.eat(/[oO]/)) {
  source.eatWhile(octitRE); // should require at least 1
  return "number";
  }
  }
  source.eatWhile(digitRE);
  var t = "number";
  if (source.eat('.')) {
  t = "number";
  source.eatWhile(digitRE); // should require at least 1
  }
  if (source.eat(/[eE]/)) {
  t = "number";
  source.eat(/[-+]/);
  source.eatWhile(digitRE); // should require at least 1
  }
  return t;
  }
 
  if (symbolRE.test(ch)) {
  if (ch == '-' && source.eat(/-/)) {
  source.eatWhile(/-/);
  if (!source.eat(symbolRE)) {
  source.skipToEnd();
  return "comment";
  }
  }
  var t = "variable";
  if (ch == ':') {
  t = "variable-2";
  }
  source.eatWhile(symbolRE);
  return t;
  }
 
  return "error";
  }
 
  function ncomment(type, nest) {
  if (nest == 0) {
  return normal;
  }
  return function(source, setState) {
  var currNest = nest;
  while (!source.eol()) {
  var ch = source.next();
  if (ch == '{' && source.eat('-')) {
  ++currNest;
  }
  else if (ch == '-' && source.eat('}')) {
  --currNest;
  if (currNest == 0) {
  setState(normal);
  return type;
  }
  }
  }
  setState(ncomment(type, currNest));
  return type;
  }
  }
 
  function stringLiteral(source, setState) {
  while (!source.eol()) {
  var ch = source.next();
  if (ch == '"') {
  setState(normal);
  return "string";
  }
  if (ch == '\\') {
  if (source.eol() || source.eat(whiteCharRE)) {
  setState(stringGap);
  return "string";
  }
  if (source.eat('&')) {
  }
  else {
  source.next(); // should handle other escapes here
  }
  }
  }
  setState(normal);
  return "error";
  }
 
  function stringGap(source, setState) {
  if (source.eat('\\')) {
  return switchState(source, setState, stringLiteral);
  }
  source.next();
  setState(normal);
  return "error";
  }
 
 
  var wellKnownWords = (function() {
  var wkw = {};
  function setType(t) {
  return function () {
  for (var i = 0; i < arguments.length; i++)
  wkw[arguments[i]] = t;
  }
  }
 
  setType("keyword")(
  "case", "class", "data", "default", "deriving", "do", "else", "foreign",
  "if", "import", "in", "infix", "infixl", "infixr", "instance", "let",
  "module", "newtype", "of", "then", "type", "where", "_");
 
  setType("keyword")(
  "\.\.", ":", "::", "=", "\\", "\"", "<-", "->", "@", "~", "=>");
 
  setType("builtin")(
  "!!", "$!", "$", "&&", "+", "++", "-", ".", "/", "/=", "<", "<=", "=<<",
  "==", ">", ">=", ">>", ">>=", "^", "^^", "||", "*", "**");
 
  setType("builtin")(
  "Bool", "Bounded", "Char", "Double", "EQ", "Either", "Enum", "Eq",
  "False", "FilePath", "Float", "Floating", "Fractional", "Functor", "GT",
  "IO", "IOError", "Int", "Integer", "Integral", "Just", "LT", "Left",
  "Maybe", "Monad", "Nothing", "Num", "Ord", "Ordering", "Rational", "Read",
  "ReadS", "Real", "RealFloat", "RealFrac", "Right", "Show", "ShowS",
  "String", "True");
 
  setType("builtin")(
  "abs", "acos", "acosh", "all", "and", "any", "appendFile", "asTypeOf",
  "asin", "asinh", "atan", "atan2", "atanh", "break", "catch", "ceiling",
  "compare", "concat", "concatMap", "const", "cos", "cosh", "curry",
  "cycle", "decodeFloat", "div", "divMod", "drop", "dropWhile", "either",
  "elem", "encodeFloat", "enumFrom", "enumFromThen", "enumFromThenTo",
  "enumFromTo", "error", "even", "exp", "exponent", "fail", "filter",
  "flip", "floatDigits", "floatRadix", "floatRange", "floor", "fmap",
  "foldl", "foldl1", "foldr", "foldr1", "fromEnum", "fromInteger",
  "fromIntegral", "fromRational", "fst", "gcd", "getChar", "getContents",
  "getLine", "head", "id", "init", "interact", "ioError", "isDenormalized",
  "isIEEE", "isInfinite", "isNaN", "isNegativeZero", "iterate", "last",
  "lcm", "length", "lex", "lines", "log", "logBase", "lookup", "map",
  "mapM", "mapM_", "max", "maxBound", "maximum", "maybe", "min", "minBound",
  "minimum", "mod", "negate", "not", "notElem", "null", "odd", "or",
  "otherwise", "pi", "pred", "print", "product", "properFraction",
  "putChar", "putStr", "putStrLn", "quot", "quotRem", "read", "readFile",
  "readIO", "readList", "readLn", "readParen", "reads", "readsPrec",
  "realToFrac", "recip", "rem", "repeat", "replicate", "return", "reverse",
  "round", "scaleFloat", "scanl", "scanl1", "scanr", "scanr1", "seq",
  "sequence", "sequence_", "show", "showChar", "showList", "showParen",
  "showString", "shows", "showsPrec", "significand", "signum", "sin",
  "sinh", "snd", "span", "splitAt", "sqrt", "subtract", "succ", "sum",
  "tail", "take", "takeWhile", "tan", "tanh", "toEnum", "toInteger",
  "toRational", "truncate", "uncurry", "undefined", "unlines", "until",
  "unwords", "unzip", "unzip3", "userError", "words", "writeFile", "zip",
  "zip3", "zipWith", "zipWith3");
 
  return wkw;
  })();
 
 
 
  return {
  startState: function () { return { f: normal }; },
  copyState: function (s) { return { f: s.f }; },
 
  token: function(stream, state) {
  var t = state.f(stream, function(s) { state.f = s; });
  var w = stream.current();
  return (w in wellKnownWords) ? wellKnownWords[w] : t;
  }
  };
 
  });
 
  CodeMirror.defineMIME("text/x-haskell", "haskell");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Haskell mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="haskell.js"></script>
  <link rel="stylesheet" href="../../theme/elegant.css">
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: Haskell mode</h1>
 
  <form><textarea id="code" name="code">
  module UniquePerms (
  uniquePerms
  )
  where
 
  -- | Find all unique permutations of a list where there might be duplicates.
  uniquePerms :: (Eq a) => [a] -> [[a]]
  uniquePerms = permBag . makeBag
 
  -- | An unordered collection where duplicate values are allowed,
  -- but represented with a single value and a count.
  type Bag a = [(a, Int)]
 
  makeBag :: (Eq a) => [a] -> Bag a
  makeBag [] = []
  makeBag (a:as) = mix a $ makeBag as
  where
  mix a [] = [(a,1)]
  mix a (bn@(b,n):bs) | a == b = (b,n+1):bs
  | otherwise = bn : mix a bs
 
  permBag :: Bag a -> [[a]]
  permBag [] = [[]]
  permBag bs = concatMap (\(f,cs) -> map (f:) $ permBag cs) . oneOfEach $ bs
  where
  oneOfEach [] = []
  oneOfEach (an@(a,n):bs) =
  let bs' = if n == 1 then bs else (a,n-1):bs
  in (a,bs') : mapSnd (an:) (oneOfEach bs)
 
  apSnd f (a,b) = (a, f b)
  mapSnd = map . apSnd
  </textarea></form>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  matchBrackets: true,
  theme: "elegant"
  });
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/x-haskell</code>.</p>
  </body>
  </html>
 
  CodeMirror.defineMode("htmlembedded", function(config, parserConfig) {
 
  //config settings
  var scriptStartRegex = parserConfig.scriptStartRegex || /^<%/i,
  scriptEndRegex = parserConfig.scriptEndRegex || /^%>/i;
 
  //inner modes
  var scriptingMode, htmlMixedMode;
 
  //tokenizer when in html mode
  function htmlDispatch(stream, state) {
  if (stream.match(scriptStartRegex, false)) {
  state.token=scriptingDispatch;
  return scriptingMode.token(stream, state.scriptState);
  }
  else
  return htmlMixedMode.token(stream, state.htmlState);
  }
 
  //tokenizer when in scripting mode
  function scriptingDispatch(stream, state) {
  if (stream.match(scriptEndRegex, false)) {
  state.token=htmlDispatch;
  return htmlMixedMode.token(stream, state.htmlState);
  }
  else
  return scriptingMode.token(stream, state.scriptState);
  }
 
 
  return {
  startState: function() {
  scriptingMode = scriptingMode || CodeMirror.getMode(config, parserConfig.scriptingModeSpec);
  htmlMixedMode = htmlMixedMode || CodeMirror.getMode(config, "htmlmixed");
  return {
  token : parserConfig.startOpen ? scriptingDispatch : htmlDispatch,
  htmlState : htmlMixedMode.startState(),
  scriptState : scriptingMode.startState()
  }
  },
 
  token: function(stream, state) {
  return state.token(stream, state);
  },
 
  indent: function(state, textAfter) {
  if (state.token == htmlDispatch)
  return htmlMixedMode.indent(state.htmlState, textAfter);
  else
  return scriptingMode.indent(state.scriptState, textAfter);
  },
 
  copyState: function(state) {
  return {
  token : state.token,
  htmlState : CodeMirror.copyState(htmlMixedMode, state.htmlState),
  scriptState : CodeMirror.copyState(scriptingMode, state.scriptState)
  }
  },
 
 
  electricChars: "/{}:"
  }
  });
 
  CodeMirror.defineMIME("application/x-ejs", { name: "htmlembedded", scriptingModeSpec:"javascript"});
  CodeMirror.defineMIME("application/x-aspx", { name: "htmlembedded", scriptingModeSpec:"text/x-csharp"});
  CodeMirror.defineMIME("application/x-jsp", { name: "htmlembedded", scriptingModeSpec:"text/x-java"});
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Html Embedded Scripts mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="../xml/xml.js"></script>
  <script src="../javascript/javascript.js"></script>
  <script src="../css/css.js"></script>
  <script src="../htmlmixed/htmlmixed.js"></script>
  <script src="htmlembedded.js"></script>
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: Html Embedded Scripts mode</h1>
 
  <form><textarea id="code" name="code">
  <%
  function hello(who) {
  return "Hello " + who;
  }
  %>
  This is an example of EJS (embedded javascript)
  <p>The program says <%= hello("world") %>.</p>
  <script>
  alert("And here is some normal JS code"); // also colored
  </script>
  </textarea></form>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  matchBrackets: true,
  mode: "application/x-ejs",
  indentUnit: 4,
  indentWithTabs: true,
  enterMode: "keep",
  tabMode: "shift"
  });
  </script>
 
  <p>Mode for html embedded scripts like JSP and ASP.NET. Depends on HtmlMixed which in turn depends on
  JavaScript, CSS and XML.<br />Other dependancies include those of the scriping language chosen.</p>
 
  <p><strong>MIME types defined:</strong> <code>application/x-aspx</code> (ASP.NET),
  <code>application/x-ejs</code> (Embedded Javascript), <code>application/x-jsp</code> (JavaServer Pages)</p>
  </body>
  </html>
 
  CodeMirror.defineMode("htmlmixed", function(config, parserConfig) {
  var htmlMode = CodeMirror.getMode(config, {name: "xml", htmlMode: true});
  var jsMode = CodeMirror.getMode(config, "javascript");
  var cssMode = CodeMirror.getMode(config, "css");
 
  function html(stream, state) {
  var style = htmlMode.token(stream, state.htmlState);
  if (style == "tag" && stream.current() == ">" && state.htmlState.context) {
  if (/^script$/i.test(state.htmlState.context.tagName)) {
  state.token = javascript;
  state.localState = jsMode.startState(htmlMode.indent(state.htmlState, ""));
  state.mode = "javascript";
  }
  else if (/^style$/i.test(state.htmlState.context.tagName)) {
  state.token = css;
  state.localState = cssMode.startState(htmlMode.indent(state.htmlState, ""));
  state.mode = "css";
  }
  }
  return style;
  }
  function maybeBackup(stream, pat, style) {
  var cur = stream.current();
  var close = cur.search(pat);
  if (close > -1) stream.backUp(cur.length - close);
  return style;
  }
  function javascript(stream, state) {
  if (stream.match(/^<\/\s*script\s*>/i, false)) {
  state.token = html;
  state.curState = null;
  state.mode = "html";
  return html(stream, state);
  }
  return maybeBackup(stream, /<\/\s*script\s*>/,
  jsMode.token(stream, state.localState));
  }
  function css(stream, state) {
  if (stream.match(/^<\/\s*style\s*>/i, false)) {
  state.token = html;
  state.localState = null;
  state.mode = "html";
  return html(stream, state);
  }
  return maybeBackup(stream, /<\/\s*style\s*>/,
  cssMode.token(stream, state.localState));
  }
 
  return {
  startState: function() {
  var state = htmlMode.startState();
  return {token: html, localState: null, mode: "html", htmlState: state};
  },
 
  copyState: function(state) {
  if (state.localState)
  var local = CodeMirror.copyState(state.token == css ? cssMode : jsMode, state.localState);
  return {token: state.token, localState: local, mode: state.mode,
  htmlState: CodeMirror.copyState(htmlMode, state.htmlState)};
  },
 
  token: function(stream, state) {
  return state.token(stream, state);
  },
 
  indent: function(state, textAfter) {
  if (state.token == html || /^\s*<\//.test(textAfter))
  return htmlMode.indent(state.htmlState, textAfter);
  else if (state.token == javascript)
  return jsMode.indent(state.localState, textAfter);
  else
  return cssMode.indent(state.localState, textAfter);
  },
 
  compareStates: function(a, b) {
  return htmlMode.compareStates(a.htmlState, b.htmlState);
  },
 
  electricChars: "/{}:"
  }
  });
 
  CodeMirror.defineMIME("text/html", "htmlmixed");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: HTML mixed mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="../xml/xml.js"></script>
  <script src="../javascript/javascript.js"></script>
  <script src="../css/css.js"></script>
  <script src="htmlmixed.js"></script>
  <link rel="stylesheet" href="../../doc/docs.css">
  <style>.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  </head>
  <body>
  <h1>CodeMirror: HTML mixed mode</h1>
  <form><textarea id="code" name="code">
  <html style="color: green">
  <!-- this is a comment -->
  <head>
  <title>Mixed HTML Example</title>
  <style type="text/css">
  h1 {font-family: comic sans; color: #f0f;}
  div {background: yellow !important;}
  body {
  max-width: 50em;
  margin: 1em 2em 1em 5em;
  }
  </style>
  </head>
  <body>
  <h1>Mixed HTML Example</h1>
  <script>
  function jsFunc(arg1, arg2) {
  if (arg1 && arg2) document.body.innerHTML = "achoo";
  }
  </script>
  </body>
  </html>
  </textarea></form>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {mode: "text/html", tabMode: "indent"});
  </script>
 
  <p>The HTML mixed mode depends on the XML, JavaScript, and CSS modes.</p>
 
  <p><strong>MIME types defined:</strong> <code>text/html</code>
  (redefined, only takes effect if you load this parser after the
  XML parser).</p>
 
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: JavaScript mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="javascript.js"></script>
  <link rel="stylesheet" href="../../doc/docs.css">
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  </head>
  <body>
  <h1>CodeMirror: JavaScript mode</h1>
 
  <div><textarea id="code" name="code">
  // Demo code (the actual new parser character stream implementation)
 
  function StringStream(string) {
  this.pos = 0;
  this.string = string;
  }
 
  StringStream.prototype = {
  done: function() {return this.pos >= this.string.length;},
  peek: function() {return this.string.charAt(this.pos);},
  next: function() {
  if (this.pos &lt; this.string.length)
  return this.string.charAt(this.pos++);
  },
  eat: function(match) {
  var ch = this.string.charAt(this.pos);
  if (typeof match == "string") var ok = ch == match;
  else var ok = ch &amp;&amp; match.test ? match.test(ch) : match(ch);
  if (ok) {this.pos++; return ch;}
  },
  eatWhile: function(match) {
  var start = this.pos;
  while (this.eat(match));
  if (this.pos > start) return this.string.slice(start, this.pos);
  },
  backUp: function(n) {this.pos -= n;},
  column: function() {return this.pos;},
  eatSpace: function() {
  var start = this.pos;
  while (/\s/.test(this.string.charAt(this.pos))) this.pos++;
  return this.pos - start;
  },
  match: function(pattern, consume, caseInsensitive) {
  if (typeof pattern == "string") {
  function cased(str) {return caseInsensitive ? str.toLowerCase() : str;}
  if (cased(this.string).indexOf(cased(pattern), this.pos) == this.pos) {
  if (consume !== false) this.pos += str.length;
  return true;
  }
  }
  else {
  var match = this.string.slice(this.pos).match(pattern);
  if (match &amp;&amp; consume !== false) this.pos += match[0].length;
  return match;
  }
  }
  };
  </textarea></div>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  matchBrackets: true
  });
  </script>
 
  <p>JavaScript mode supports a single configuration
  option, <code>json</code>, which will set the mode to expect JSON
  data rather than a JavaScript program.</p>
 
  <p><strong>MIME types defined:</strong> <code>text/javascript</code>, <code>application/json</code>.</p>
  </body>
  </html>
 
  CodeMirror.defineMode("javascript", function(config, parserConfig) {
  var indentUnit = config.indentUnit;
  var jsonMode = parserConfig.json;
 
  // Tokenizer
 
  var keywords = function(){
  function kw(type) {return {type: type, style: "keyword"};}
  var A = kw("keyword a"), B = kw("keyword b"), C = kw("keyword c");
  var operator = kw("operator"), atom = {type: "atom", style: "atom"};
  return {
  "if": A, "while": A, "with": A, "else": B, "do": B, "try": B, "finally": B,
  "return": C, "break": C, "continue": C, "new": C, "delete": C, "throw": C,
  "var": kw("var"), "const": kw("var"), "let": kw("var"),
  "function": kw("function"), "catch": kw("catch"),
  "for": kw("for"), "switch": kw("switch"), "case": kw("case"), "default": kw("default"),
  "in": operator, "typeof": operator, "instanceof": operator,
  "true": atom, "false": atom, "null": atom, "undefined": atom, "NaN": atom, "Infinity": atom
  };
  }();
 
  var isOperatorChar = /[+\-*&%=<>!?|]/;
 
  function chain(stream, state, f) {
  state.tokenize = f;
  return f(stream, state);
  }
 
  function nextUntilUnescaped(stream, end) {
  var escaped = false, next;
  while ((next = stream.next()) != null) {
  if (next == end && !escaped)
  return false;
  escaped = !escaped && next == "\\";
  }
  return escaped;
  }
 
  // Used as scratch variables to communicate multiple values without
  // consing up tons of objects.
  var type, content;
  function ret(tp, style, cont) {
  type = tp; content = cont;
  return style;
  }
 
  function jsTokenBase(stream, state) {
  var ch = stream.next();
  if (ch == '"' || ch == "'")
  return chain(stream, state, jsTokenString(ch));
  else if (/[\[\]{}\(\),;\:\.]/.test(ch))
  return ret(ch);
  else if (ch == "0" && stream.eat(/x/i)) {
  stream.eatWhile(/[\da-f]/i);
  return ret("number", "number");
  }
  else if (/\d/.test(ch)) {
  stream.match(/^\d*(?:\.\d*)?(?:[eE][+\-]?\d+)?/);
  return ret("number", "number");
  }
  else if (ch == "/") {
  if (stream.eat("*")) {
  return chain(stream, state, jsTokenComment);
  }
  else if (stream.eat("/")) {
  stream.skipToEnd();
  return ret("comment", "comment");
  }
  else if (state.reAllowed) {
  nextUntilUnescaped(stream, "/");
  stream.eatWhile(/[gimy]/); // 'y' is "sticky" option in Mozilla
  return ret("regexp", "string");
  }
  else {
  stream.eatWhile(isOperatorChar);
  return ret("operator", null, stream.current());
  }
  }
  else if (ch == "#") {
  stream.skipToEnd();
  return ret("error", "error");
  }
  else if (isOperatorChar.test(ch)) {
  stream.eatWhile(isOperatorChar);
  return ret("operator", null, stream.current());
  }
  else {
  stream.eatWhile(/[\w\$_]/);
  var word = stream.current(), known = keywords.propertyIsEnumerable(word) && keywords[word];
  return (known && state.kwAllowed) ? ret(known.type, known.style, word) :
  ret("variable", "variable", word);
  }
  }
 
  function jsTokenString(quote) {
  return function(stream, state) {
  if (!nextUntilUnescaped(stream, quote))
  state.tokenize = jsTokenBase;
  return ret("string", "string");
  };
  }
 
  function jsTokenComment(stream, state) {
  var maybeEnd = false, ch;
  while (ch = stream.next()) {
  if (ch == "/" && maybeEnd) {
  state.tokenize = jsTokenBase;
  break;
  }
  maybeEnd = (ch == "*");
  }
  return ret("comment", "comment");
  }
 
  // Parser
 
  var atomicTypes = {"atom": true, "number": true, "variable": true, "string": true, "regexp": true};
 
  function JSLexical(indented, column, type, align, prev, info) {
  this.indented = indented;
  this.column = column;
  this.type = type;
  this.prev = prev;
  this.info = info;
  if (align != null) this.align = align;
  }
 
  function inScope(state, varname) {
  for (var v = state.localVars; v; v = v.next)
  if (v.name == varname) return true;
  }
 
  function parseJS(state, style, type, content, stream) {
  var cc = state.cc;
  // Communicate our context to the combinators.
  // (Less wasteful than consing up a hundred closures on every call.)
  cx.state = state; cx.stream = stream; cx.marked = null, cx.cc = cc;
 
  if (!state.lexical.hasOwnProperty("align"))
  state.lexical.align = true;
 
  while(true) {
  var combinator = cc.length ? cc.pop() : jsonMode ? expression : statement;
  if (combinator(type, content)) {
  while(cc.length && cc[cc.length - 1].lex)
  cc.pop()();
  if (cx.marked) return cx.marked;
  if (type == "variable" && inScope(state, content)) return "variable-2";
  return style;
  }
  }
  }
 
  // Combinator utils
 
  var cx = {state: null, column: null, marked: null, cc: null};
  function pass() {
  for (var i = arguments.length - 1; i >= 0; i--) cx.cc.push(arguments[i]);
  }
  function cont() {
  pass.apply(null, arguments);
  return true;
  }
  function register(varname) {
  var state = cx.state;
  if (state.context) {
  cx.marked = "def";
  for (var v = state.localVars; v; v = v.next)
  if (v.name == varname) return;
  state.localVars = {name: varname, next: state.localVars};
  }
  }
 
  // Combinators
 
  var defaultVars = {name: "this", next: {name: "arguments"}};
  function pushcontext() {
  if (!cx.state.context) cx.state.localVars = defaultVars;
  cx.state.context = {prev: cx.state.context, vars: cx.state.localVars};
  }
  function popcontext() {
  cx.state.localVars = cx.state.context.vars;
  cx.state.context = cx.state.context.prev;
  }
  function pushlex(type, info) {
  var result = function() {
  var state = cx.state;
  state.lexical = new JSLexical(state.indented, cx.stream.column(), type, null, state.lexical, info)
  };
  result.lex = true;
  return result;
  }
  function poplex() {
  var state = cx.state;
  if (state.lexical.prev) {
  if (state.lexical.type == ")")
  state.indented = state.lexical.indented;
  state.lexical = state.lexical.prev;
  }
  }
  poplex.lex = true;
 
  function expect(wanted) {
  return function expecting(type) {
  if (type == wanted) return cont();
  else if (wanted == ";") return pass();
  else return cont(arguments.callee);
  };
  }
 
  function statement(type) {
  if (type == "var") return cont(pushlex("vardef"), vardef1, expect(";"), poplex);
  if (type == "keyword a") return cont(pushlex("form"), expression, statement, poplex);
  if (type == "keyword b") return cont(pushlex("form"), statement, poplex);
  if (type == "{") return cont(pushlex("}"), block, poplex);
  if (type == ";") return cont();
  if (type == "function") return cont(functiondef);
  if (type == "for") return cont(pushlex("form"), expect("("), pushlex(")"), forspec1, expect(")"),
  poplex, statement, poplex);
  if (type == "variable") return cont(pushlex("stat"), maybelabel);
  if (type == "switch") return cont(pushlex("form"), expression, pushlex("}", "switch"), expect("{"),
  block, poplex, poplex);
  if (type == "case") return cont(expression, expect(":"));
  if (type == "default") return cont(expect(":"));
  if (type == "catch") return cont(pushlex("form"), pushcontext, expect("("), funarg, expect(")"),
  statement, poplex, popcontext);
  return pass(pushlex("stat"), expression, expect(";"), poplex);
  }
  function expression(type) {
  if (atomicTypes.hasOwnProperty(type)) return cont(maybeoperator);
  if (type == "function") return cont(functiondef);
  if (type == "keyword c") return cont(maybeexpression);
  if (type == "(") return cont(pushlex(")"), expression, expect(")"), poplex, maybeoperator);
  if (type == "operator") return cont(expression);
  if (type == "[") return cont(pushlex("]"), commasep(expression, "]"), poplex, maybeoperator);
  if (type == "{") return cont(pushlex("}"), commasep(objprop, "}"), poplex, maybeoperator);
  return cont();
  }
  function maybeexpression(type) {
  if (type.match(/[;\}\)\],]/)) return pass();
  return pass(expression);
  }
 
  function maybeoperator(type, value) {
  if (type == "operator" && /\+\+|--/.test(value)) return cont(maybeoperator);
  if (type == "operator") return cont(expression);
  if (type == ";") return;
  if (type == "(") return cont(pushlex(")"), commasep(expression, ")"), poplex, maybeoperator);
  if (type == ".") return cont(property, maybeoperator);
  if (type == "[") return cont(pushlex("]"), expression, expect("]"), poplex, maybeoperator);
  }
  function maybelabel(type) {
  if (type == ":") return cont(poplex, statement);
  return pass(maybeoperator, expect(";"), poplex);
  }
  function property(type) {
  if (type == "variable") {cx.marked = "property"; return cont();}
  }
  function objprop(type) {
  if (type == "variable") cx.marked = "property";
  if (atomicTypes.hasOwnProperty(type)) return cont(expect(":"), expression);
  }
  function commasep(what, end) {
  function proceed(type) {
  if (type == ",") return cont(what, proceed);
  if (type == end) return cont();
  return cont(expect(end));
  }
  return function commaSeparated(type) {
  if (type == end) return cont();
  else return pass(what, proceed);
  };
  }
  function block(type) {
  if (type == "}") return cont();
  return pass(statement, block);
  }
  function vardef1(type, value) {
  if (type == "variable"){register(value); return cont(vardef2);}
  return cont();
  }
  function vardef2(type, value) {
  if (value == "=") return cont(expression, vardef2);
  if (type == ",") return cont(vardef1);
  }
  function forspec1(type) {
  if (type == "var") return cont(vardef1, forspec2);
  if (type == ";") return pass(forspec2);
  if (type == "variable") return cont(formaybein);
  return pass(forspec2);
  }
  function formaybein(type, value) {
  if (value == "in") return cont(expression);
  return cont(maybeoperator, forspec2);
  }
  function forspec2(type, value) {
  if (type == ";") return cont(forspec3);
  if (value == "in") return cont(expression);
  return cont(expression, expect(";"), forspec3);
  }
  function forspec3(type) {
  if (type != ")") cont(expression);
  }
  function functiondef(type, value) {
  if (type == "variable") {register(value); return cont(functiondef);}
  if (type == "(") return cont(pushlex(")"), pushcontext, commasep(funarg, ")"), poplex, statement, popcontext);
  }
  function funarg(type, value) {
  if (type == "variable") {register(value); return cont();}
  }
 
  // Interface
 
  return {
  startState: function(basecolumn) {
  return {
  tokenize: jsTokenBase,
  reAllowed: true,
  kwAllowed: true,
  cc: [],
  lexical: new JSLexical((basecolumn || 0) - indentUnit, 0, "block", false),
  localVars: null,
  context: null,
  indented: 0
  };
  },
 
  token: function(stream, state) {
  if (stream.sol()) {
  if (!state.lexical.hasOwnProperty("align"))
  state.lexical.align = false;
  state.indented = stream.indentation();
  }
  if (stream.eatSpace()) return null;
  var style = state.tokenize(stream, state);
  if (type == "comment") return style;
  state.reAllowed = type == "operator" || type == "keyword c" || type.match(/^[\[{}\(,;:]$/);
  state.kwAllowed = type != '.';
  return parseJS(state, style, type, content, stream);
  },
 
  indent: function(state, textAfter) {
  if (state.tokenize != jsTokenBase) return 0;
  var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical,
  type = lexical.type, closing = firstChar == type;
  if (type == "vardef") return lexical.indented + 4;
  else if (type == "form" && firstChar == "{") return lexical.indented;
  else if (type == "stat" || type == "form") return lexical.indented + indentUnit;
  else if (lexical.info == "switch" && !closing)
  return lexical.indented + (/^(?:case|default)\b/.test(textAfter) ? indentUnit : 2 * indentUnit);
  else if (lexical.align) return lexical.column + (closing ? 0 : 1);
  else return lexical.indented + (closing ? 0 : indentUnit);
  },
 
  electricChars: ":{}"
  };
  });
 
  CodeMirror.defineMIME("text/javascript", "javascript");
  CodeMirror.defineMIME("application/json", {name: "javascript", json: true});
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Jinja2 mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="jinja2.js"></script>
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: Jinja2 mode</h1>
  <form><textarea id="code" name="code">
  &lt;html style="color: green"&gt;
  &lt;!-- this is a comment --&gt;
  &lt;head&gt;
  &lt;title&gt;Jinja2 Example&lt;/title&gt;
  &lt;/head&gt;
  &lt;body&gt;
  &lt;ul&gt;
  {# this is a comment #}
  {%- for item in li -%}
  &lt;li&gt;
  {{ item.label }}
  &lt;/li&gt;
  {% endfor -%}
  &lt;/ul&gt;
  &lt;/body&gt;
  &lt;/html&gt;
  </textarea></form>
  <script>
  var editor =
  CodeMirror.fromTextArea(document.getElementById("code"), {mode:
  {name: "jinja2", htmlMode: true}});
  </script>
  </body>
  </html>
 
  CodeMirror.defineMode("jinja2", function(config, parserConf) {
  var keywords = ["block", "endblock", "for", "endfor", "in", "true", "false",
  "loop", "none", "self", "super", "if", "as", "not", "and",
  "else", "import", "with", "without", "context"];
  keywords = new RegExp("^((" + keywords.join(")|(") + "))\\b");
 
  function tokenBase (stream, state) {
  var ch = stream.next();
  if (ch == "{") {
  if (ch = stream.eat(/\{|%|#/)) {
  stream.eat("-");
  state.tokenize = inTag(ch);
  return "tag";
  }
  }
  }
  function inTag (close) {
  if (close == "{") {
  close = "}";
  }
  return function (stream, state) {
  var ch = stream.next();
  if ((ch == close || (ch == "-" && stream.eat(close)))
  && stream.eat("}")) {
  state.tokenize = tokenBase;
  return "tag";
  }
  if (stream.match(keywords)) {
  return "keyword";
  }
  return close == "#" ? "comment" : "string";
  };
  }
  return {
  startState: function () {
  return {tokenize: tokenBase};
  },
  token: function (stream, state) {
  return state.tokenize(stream, state);
  }
  };
  });
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Lua mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="lua.js"></script>
  <link rel="stylesheet" href="../../theme/neat.css">
  <style>.CodeMirror {border: 1px solid black;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: Lua mode</h1>
  <form><textarea id="code" name="code">
  --[[
  example useless code to show lua syntax highlighting
  this is multiline comment
  ]]
 
  function blahblahblah(x)
 
  local table = {
  "asd" = 123,
  "x" = 0.34,
  }
  if x ~= 3 then
  print( x )
  elseif x == "string"
  my_custom_function( 0x34 )
  else
  unknown_function( "some string" )
  end
 
  --single line comment
 
  end
 
  function blablabla3()
 
  for k,v in ipairs( table ) do
  --abcde..
  y=[=[
  x=[[
  x is a multi line string
  ]]
  but its definition is iside a highest level string!
  ]=]
  print(" \"\" ")
 
  s = math.sin( x )
  end
 
  end
  </textarea></form>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  tabMode: "indent",
  matchBrackets: true,
  theme: "neat"
  });
  </script>
 
  <p>Loosely based on Franciszek
  Wawrzak's <a href="http://codemirror.net/1/contrib/lua">CodeMirror
  1 mode</a>. One configuration parameter is
  supported, <code>specials</code>, to which you can provide an
  array of strings to have those identifiers highlighted with
  the <code>lua-special</code> style.</p>
  <p><strong>MIME types defined:</strong> <code>text/x-lua</code>.</p>
 
  </body>
  </html>
 
  // LUA mode. Ported to CodeMirror 2 from Franciszek Wawrzak's
  // CodeMirror 1 mode.
  // highlights keywords, strings, comments (no leveling supported! ("[==[")), tokens, basic indenting
 
  CodeMirror.defineMode("lua", function(config, parserConfig) {
  var indentUnit = config.indentUnit;
 
  function prefixRE(words) {
  return new RegExp("^(?:" + words.join("|") + ")", "i");
  }
  function wordRE(words) {
  return new RegExp("^(?:" + words.join("|") + ")$", "i");
  }
  var specials = wordRE(parserConfig.specials || []);
 
  // long list of standard functions from lua manual
  var builtins = wordRE([
  "_G","_VERSION","assert","collectgarbage","dofile","error","getfenv","getmetatable","ipairs","load",
  "loadfile","loadstring","module","next","pairs","pcall","print","rawequal","rawget","rawset","require",
  "select","setfenv","setmetatable","tonumber","tostring","type","unpack","xpcall",
 
  "coroutine.create","coroutine.resume","coroutine.running","coroutine.status","coroutine.wrap","coroutine.yield",
 
  "debug.debug","debug.getfenv","debug.gethook","debug.getinfo","debug.getlocal","debug.getmetatable",
  "debug.getregistry","debug.getupvalue","debug.setfenv","debug.sethook","debug.setlocal","debug.setmetatable",
  "debug.setupvalue","debug.traceback",
 
  "close","flush","lines","read","seek","setvbuf","write",
 
  "io.close","io.flush","io.input","io.lines","io.open","io.output","io.popen","io.read","io.stderr","io.stdin",
  "io.stdout","io.tmpfile","io.type","io.write",
 
  "math.abs","math.acos","math.asin","math.atan","math.atan2","math.ceil","math.cos","math.cosh","math.deg",
  "math.exp","math.floor","math.fmod","math.frexp","math.huge","math.ldexp","math.log","math.log10","math.max",
  "math.min","math.modf","math.pi","math.pow","math.rad","math.random","math.randomseed","math.sin","math.sinh",
  "math.sqrt","math.tan","math.tanh",
 
  "os.clock","os.date","os.difftime","os.execute","os.exit","os.getenv","os.remove","os.rename","os.setlocale",
  "os.time","os.tmpname",
 
  "package.cpath","package.loaded","package.loaders","package.loadlib","package.path","package.preload",
  "package.seeall",
 
  "string.byte","string.char","string.dump","string.find","string.format","string.gmatch","string.gsub",
  "string.len","string.lower","string.match","string.rep","string.reverse","string.sub","string.upper",
 
  "table.concat","table.insert","table.maxn","table.remove","table.sort"
  ]);
  var keywords = wordRE(["and","break","elseif","false","nil","not","or","return",
  "true","function", "end", "if", "then", "else", "do",
  "while", "repeat", "until", "for", "in", "local" ]);
 
  var indentTokens = wordRE(["function", "if","repeat","do", "\\(", "{"]);
  var dedentTokens = wordRE(["end", "until", "\\)", "}"]);
  var dedentPartial = prefixRE(["end", "until", "\\)", "}", "else", "elseif"]);
 
  function readBracket(stream) {
  var level = 0;
  while (stream.eat("=")) ++level;
  stream.eat("[");
  return level;
  }
 
  function normal(stream, state) {
  var ch = stream.next();
  if (ch == "-" && stream.eat("-")) {
  if (stream.eat("["))
  return (state.cur = bracketed(readBracket(stream), "comment"))(stream, state);
  stream.skipToEnd();
  return "comment";
  }
  if (ch == "\"" || ch == "'")
  return (state.cur = string(ch))(stream, state);
  if (ch == "[" && /[\[=]/.test(stream.peek()))
  return (state.cur = bracketed(readBracket(stream), "string"))(stream, state);
  if (/\d/.test(ch)) {
  stream.eatWhile(/[\w.%]/);
  return "number";
  }
  if (/[\w_]/.test(ch)) {
  stream.eatWhile(/[\w\\\-_.]/);
  return "variable";
  }
  return null;
  }
 
  function bracketed(level, style) {
  return function(stream, state) {
  var curlev = null, ch;
  while ((ch = stream.next()) != null) {
  if (curlev == null) {if (ch == "]") curlev = 0;}
  else if (ch == "=") ++curlev;
  else if (ch == "]" && curlev == level) { state.cur = normal; break; }
  else curlev = null;
  }
  return style;
  };
  }
 
  function string(quote) {
  return function(stream, state) {
  var escaped = false, ch;
  while ((ch = stream.next()) != null) {
  if (ch == quote && !escaped) break;
  escaped = !escaped && ch == "\\";
  }
  if (!escaped) state.cur = normal;
  return "string";
  };
  }
 
  return {
  startState: function(basecol) {
  return {basecol: basecol || 0, indentDepth: 0, cur: normal};
  },
 
  token: function(stream, state) {
  if (stream.eatSpace()) return null;
  var style = state.cur(stream, state);
  var word = stream.current();
  if (style == "variable") {
  if (keywords.test(word)) style = "keyword";
  else if (builtins.test(word)) style = "builtin";
  else if (specials.test(word)) style = "variable-2";
  }
  if ((style != "comment") && (style != "string")){
  if (indentTokens.test(word)) ++state.indentDepth;
  else if (dedentTokens.test(word)) --state.indentDepth;
  }
  return style;
  },
 
  indent: function(state, textAfter) {
  var closing = dedentPartial.test(textAfter);
  return state.basecol + indentUnit * (state.indentDepth - (closing ? 1 : 0));
  }
  };
  });
 
  CodeMirror.defineMIME("text/x-lua", "lua");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Markdown mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="../xml/xml.js"></script>
  <script src="markdown.js"></script>
  <link rel="stylesheet" href="markdown.css">
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: Markdown mode</h1>
 
  <!-- source: http://daringfireball.net/projects/markdown/basics.text -->
  <form><textarea id="code" name="code">
  Markdown: Basics
  ================
 
  &lt;ul id="ProjectSubmenu"&gt;
  &lt;li&gt;&lt;a href="/projects/markdown/" title="Markdown Project Page"&gt;Main&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a class="selected" title="Markdown Basics"&gt;Basics&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="/projects/markdown/syntax" title="Markdown Syntax Documentation"&gt;Syntax&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="/projects/markdown/license" title="Pricing and License Information"&gt;License&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="/projects/markdown/dingus" title="Online Markdown Web Form"&gt;Dingus&lt;/a&gt;&lt;/li&gt;
  &lt;/ul&gt;
 
 
  Getting the Gist of Markdown's Formatting Syntax
  ------------------------------------------------
 
  This page offers a brief overview of what it's like to use Markdown.
  The [syntax page] [s] provides complete, detailed documentation for
  every feature, but Markdown should be very easy to pick up simply by
  looking at a few examples of it in action. The examples on this page
  are written in a before/after style, showing example syntax and the
  HTML output produced by Markdown.
 
  It's also helpful to simply try Markdown out; the [Dingus] [d] is a
  web application that allows you type your own Markdown-formatted text
  and translate it to XHTML.
 
  **Note:** This document is itself written using Markdown; you
  can [see the source for it by adding '.text' to the URL] [src].
 
  [s]: /projects/markdown/syntax "Markdown Syntax"
  [d]: /projects/markdown/dingus "Markdown Dingus"
  [src]: /projects/markdown/basics.text
 
 
  ## Paragraphs, Headers, Blockquotes ##
 
  A paragraph is simply one or more consecutive lines of text, separated
  by one or more blank lines. (A blank line is any line that looks like
  a blank line -- a line containing nothing but spaces or tabs is
  considered blank.) Normal paragraphs should not be indented with
  spaces or tabs.
 
  Markdown offers two styles of headers: *Setext* and *atx*.
  Setext-style headers for `&lt;h1&gt;` and `&lt;h2&gt;` are created by
  "underlining" with equal signs (`=`) and hyphens (`-`), respectively.
  To create an atx-style header, you put 1-6 hash marks (`#`) at the
  beginning of the line -- the number of hashes equals the resulting
  HTML header level.
 
  Blockquotes are indicated using email-style '`&gt;`' angle brackets.
 
  Markdown:
 
  A First Level Header
  ====================
 
  A Second Level Header
  ---------------------
 
  Now is the time for all good men to come to
  the aid of their country. This is just a
  regular paragraph.
 
  The quick brown fox jumped over the lazy
  dog's back.
 
  ### Header 3
 
  &gt; This is a blockquote.
  &gt;
  &gt; This is the second paragraph in the blockquote.
  &gt;
  &gt; ## This is an H2 in a blockquote
 
 
  Output:
 
  &lt;h1&gt;A First Level Header&lt;/h1&gt;
 
  &lt;h2&gt;A Second Level Header&lt;/h2&gt;
 
  &lt;p&gt;Now is the time for all good men to come to
  the aid of their country. This is just a
  regular paragraph.&lt;/p&gt;
 
  &lt;p&gt;The quick brown fox jumped over the lazy
  dog's back.&lt;/p&gt;
 
  &lt;h3&gt;Header 3&lt;/h3&gt;
 
  &lt;blockquote&gt;
  &lt;p&gt;This is a blockquote.&lt;/p&gt;
 
  &lt;p&gt;This is the second paragraph in the blockquote.&lt;/p&gt;
 
  &lt;h2&gt;This is an H2 in a blockquote&lt;/h2&gt;
  &lt;/blockquote&gt;
 
 
 
  ### Phrase Emphasis ###
 
  Markdown uses asterisks and underscores to indicate spans of emphasis.
 
  Markdown:
 
  Some of these words *are emphasized*.
  Some of these words _are emphasized also_.
 
  Use two asterisks for **strong emphasis**.
  Or, if you prefer, __use two underscores instead__.
 
  Output:
 
  &lt;p&gt;Some of these words &lt;em&gt;are emphasized&lt;/em&gt;.
  Some of these words &lt;em&gt;are emphasized also&lt;/em&gt;.&lt;/p&gt;
 
  &lt;p&gt;Use two asterisks for &lt;strong&gt;strong emphasis&lt;/strong&gt;.
  Or, if you prefer, &lt;strong&gt;use two underscores instead&lt;/strong&gt;.&lt;/p&gt;
 
 
 
  ## Lists ##
 
  Unordered (bulleted) lists use asterisks, pluses, and hyphens (`*`,
  `+`, and `-`) as list markers. These three markers are
  interchangable; this:
 
  * Candy.
  * Gum.
  * Booze.
 
  this:
 
  + Candy.
  + Gum.
  + Booze.
 
  and this:
 
  - Candy.
  - Gum.
  - Booze.
 
  all produce the same output:
 
  &lt;ul&gt;
  &lt;li&gt;Candy.&lt;/li&gt;
  &lt;li&gt;Gum.&lt;/li&gt;
  &lt;li&gt;Booze.&lt;/li&gt;
  &lt;/ul&gt;
 
  Ordered (numbered) lists use regular numbers, followed by periods, as
  list markers:
 
  1. Red
  2. Green
  3. Blue
 
  Output:
 
  &lt;ol&gt;
  &lt;li&gt;Red&lt;/li&gt;
  &lt;li&gt;Green&lt;/li&gt;
  &lt;li&gt;Blue&lt;/li&gt;
  &lt;/ol&gt;
 
  If you put blank lines between items, you'll get `&lt;p&gt;` tags for the
  list item text. You can create multi-paragraph list items by indenting
  the paragraphs by 4 spaces or 1 tab:
 
  * A list item.
 
  With multiple paragraphs.
 
  * Another item in the list.
 
  Output:
 
  &lt;ul&gt;
  &lt;li&gt;&lt;p&gt;A list item.&lt;/p&gt;
  &lt;p&gt;With multiple paragraphs.&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;Another item in the list.&lt;/p&gt;&lt;/li&gt;
  &lt;/ul&gt;
 
 
 
  ### Links ###
 
  Markdown supports two styles for creating links: *inline* and
  *reference*. With both styles, you use square brackets to delimit the
  text you want to turn into a link.
 
  Inline-style links use parentheses immediately after the link text.
  For example:
 
  This is an [example link](http://example.com/).
 
  Output:
 
  &lt;p&gt;This is an &lt;a href="http://example.com/"&gt;
  example link&lt;/a&gt;.&lt;/p&gt;
 
  Optionally, you may include a title attribute in the parentheses:
 
  This is an [example link](http://example.com/ "With a Title").
 
  Output:
 
  &lt;p&gt;This is an &lt;a href="http://example.com/" title="With a Title"&gt;
  example link&lt;/a&gt;.&lt;/p&gt;
 
  Reference-style links allow you to refer to your links by names, which
  you define elsewhere in your document:
 
  I get 10 times more traffic from [Google][1] than from
  [Yahoo][2] or [MSN][3].
 
  [1]: http://google.com/ "Google"
  [2]: http://search.yahoo.com/ "Yahoo Search"
  [3]: http://search.msn.com/ "MSN Search"
 
  Output:
 
  &lt;p&gt;I get 10 times more traffic from &lt;a href="http://google.com/"
  title="Google"&gt;Google&lt;/a&gt; than from &lt;a href="http://search.yahoo.com/"
  title="Yahoo Search"&gt;Yahoo&lt;/a&gt; or &lt;a href="http://search.msn.com/"
  title="MSN Search"&gt;MSN&lt;/a&gt;.&lt;/p&gt;
 
  The title attribute is optional. Link names may contain letters,
  numbers and spaces, but are *not* case sensitive:
 
  I start my morning with a cup of coffee and
  [The New York Times][NY Times].
 
  [ny times]: http://www.nytimes.com/
 
  Output:
 
  &lt;p&gt;I start my morning with a cup of coffee and
  &lt;a href="http://www.nytimes.com/"&gt;The New York Times&lt;/a&gt;.&lt;/p&gt;
 
 
  ### Images ###
 
  Image syntax is very much like link syntax.
 
  Inline (titles are optional):
 
  ![alt text](/path/to/img.jpg "Title")
 
  Reference-style:
 
  ![alt text][id]
 
  [id]: /path/to/img.jpg "Title"
 
  Both of the above examples produce the same output:
 
  &lt;img src="/path/to/img.jpg" alt="alt text" title="Title" /&gt;
 
 
 
  ### Code ###
 
  In a regular paragraph, you can create code span by wrapping text in
  backtick quotes. Any ampersands (`&amp;`) and angle brackets (`&lt;` or
  `&gt;`) will automatically be translated into HTML entities. This makes
  it easy to use Markdown to write about HTML example code:
 
  I strongly recommend against using any `&lt;blink&gt;` tags.
 
  I wish SmartyPants used named entities like `&amp;mdash;`
  instead of decimal-encoded entites like `&amp;#8212;`.
 
  Output:
 
  &lt;p&gt;I strongly recommend against using any
  &lt;code&gt;&amp;lt;blink&amp;gt;&lt;/code&gt; tags.&lt;/p&gt;
 
  &lt;p&gt;I wish SmartyPants used named entities like
  &lt;code&gt;&amp;amp;mdash;&lt;/code&gt; instead of decimal-encoded
  entites like &lt;code&gt;&amp;amp;#8212;&lt;/code&gt;.&lt;/p&gt;
 
 
  To specify an entire block of pre-formatted code, indent every line of
  the block by 4 spaces or 1 tab. Just like with code spans, `&amp;`, `&lt;`,
  and `&gt;` characters will be escaped automatically.
 
  Markdown:
 
  If you want your page to validate under XHTML 1.0 Strict,
  you've got to put paragraph tags in your blockquotes:
 
  &lt;blockquote&gt;
  &lt;p&gt;For example.&lt;/p&gt;
  &lt;/blockquote&gt;
 
  Output:
 
  &lt;p&gt;If you want your page to validate under XHTML 1.0 Strict,
  you've got to put paragraph tags in your blockquotes:&lt;/p&gt;
 
  &lt;pre&gt;&lt;code&gt;&amp;lt;blockquote&amp;gt;
  &amp;lt;p&amp;gt;For example.&amp;lt;/p&amp;gt;
  &amp;lt;/blockquote&amp;gt;
  &lt;/code&gt;&lt;/pre&gt;
  </textarea></form>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  mode: 'markdown',
  lineNumbers: true,
  matchBrackets: true,
  theme: "default"
  });
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/x-markdown</code>.</p>
 
  </body>
  </html>
 
  CodeMirror.defineMode("markdown", function(cmCfg, modeCfg) {
 
  var htmlMode = CodeMirror.getMode(cmCfg, { name: 'xml', htmlMode: true });
 
  var header = 'header'
  , code = 'comment'
  , quote = 'quote'
  , list = 'string'
  , hr = 'hr'
  , linktext = 'link'
  , linkhref = 'string'
  , em = 'em'
  , strong = 'strong'
  , emstrong = 'emstrong';
 
  var hrRE = /^[*-=_]/
  , ulRE = /^[*-+]\s+/
  , olRE = /^[0-9]\.\s+/
  , headerRE = /^(?:\={3,}|-{3,})$/
  , codeRE = /^(k:\t|\s{4,})/
  , textRE = /^[^\[*_\\<>`]+/;
 
  function switchInline(stream, state, f) {
  state.f = state.inline = f;
  return f(stream, state);
  }
 
  function switchBlock(stream, state, f) {
  state.f = state.block = f;
  return f(stream, state);
  }
 
 
  // Blocks
 
  function blockNormal(stream, state) {
  if (stream.match(codeRE)) {
  stream.skipToEnd();
  return code;
  }
 
  if (stream.eatSpace()) {
  return null;
  }
 
  if (stream.peek() === '#' || stream.match(headerRE)) {
  stream.skipToEnd();
  return header;
  }
  if (stream.eat('>')) {
  state.indentation++;
  return quote;
  }
  if (stream.peek() === '[') {
  return switchInline(stream, state, footnoteLink);
  }
  if (hrRE.test(stream.peek())) {
  var re = new RegExp('(?:\s*['+stream.peek()+']){3,}$');
  if (stream.match(re, true)) {
  return hr;
  }
  }
 
  var match;
  if (match = stream.match(ulRE, true) || stream.match(olRE, true)) {
  state.indentation += match[0].length;
  return list;
  }
 
  return switchInline(stream, state, state.inline);
  }
 
  function htmlBlock(stream, state) {
  var style = htmlMode.token(stream, state.htmlState);
  if (style === 'tag' && state.htmlState.type !== 'openTag' && !state.htmlState.context) {
  state.f = inlineNormal;
  state.block = blockNormal;
  }
  return style;
  }
 
 
  // Inline
  function getType(state) {
  return state.strong ? (state.em ? emstrong : strong)
  : (state.em ? em : null);
  }
 
  function handleText(stream, state) {
  if (stream.match(textRE, true)) {
  return getType(state);
  }
  return undefined;
  }
 
  function inlineNormal(stream, state) {
  var style = state.text(stream, state)
  if (typeof style !== 'undefined')
  return style;
 
  var ch = stream.next();
 
  if (ch === '\\') {
  stream.next();
  return getType(state);
  }
  if (ch === '`') {
  return switchInline(stream, state, inlineElement(code, '`'));
  }
  if (ch === '[') {
  return switchInline(stream, state, linkText);
  }
  if (ch === '<' && stream.match(/^\w/, false)) {
  stream.backUp(1);
  return switchBlock(stream, state, htmlBlock);
  }
 
  var t = getType(state);
  if (ch === '*' || ch === '_') {
  if (stream.eat(ch)) {
  return (state.strong = !state.strong) ? getType(state) : t;
  }
  return (state.em = !state.em) ? getType(state) : t;
  }
 
  return getType(state);
  }
 
  function linkText(stream, state) {
  while (!stream.eol()) {
  var ch = stream.next();
  if (ch === '\\') stream.next();
  if (ch === ']') {
  state.inline = state.f = linkHref;
  return linktext;
  }
  }
  return linktext;
  }
 
  function linkHref(stream, state) {
  stream.eatSpace();
  var ch = stream.next();
  if (ch === '(' || ch === '[') {
  return switchInline(stream, state, inlineElement(linkhref, ch === '(' ? ')' : ']'));
  }
  return 'error';
  }
 
  function footnoteLink(stream, state) {
  if (stream.match(/^[^\]]*\]:/, true)) {
  state.f = footnoteUrl;
  return linktext;
  }
  return switchInline(stream, state, inlineNormal);
  }
 
  function footnoteUrl(stream, state) {
  stream.eatSpace();
  stream.match(/^[^\s]+/, true);
  state.f = state.inline = inlineNormal;
  return linkhref;
  }
 
  function inlineRE(endChar) {
  if (!inlineRE[endChar]) {
  // match any not-escaped-non-endChar and any escaped char
  // then match endChar or eol
  inlineRE[endChar] = new RegExp('^(?:[^\\\\\\' + endChar + ']|\\\\.)*(?:\\' + endChar + '|$)');
  }
  return inlineRE[endChar];
  }
 
  function inlineElement(type, endChar, next) {
  next = next || inlineNormal;
  return function(stream, state) {
  stream.match(inlineRE(endChar));
  state.inline = state.f = next;
  return type;
  };
  }
 
  return {
  startState: function() {
  return {
  f: blockNormal,
 
  block: blockNormal,
  htmlState: htmlMode.startState(),
  indentation: 0,
 
  inline: inlineNormal,
  text: handleText,
  em: false,
  strong: false
  };
  },
 
  copyState: function(s) {
  return {
  f: s.f,
 
  block: s.block,
  htmlState: CodeMirror.copyState(htmlMode, s.htmlState),
  indentation: s.indentation,
 
  inline: s.inline,
  text: s.text,
  em: s.em,
  strong: s.strong
  };
  },
 
  token: function(stream, state) {
  if (stream.sol()) {
  state.f = state.block;
  var previousIndentation = state.indentation
  , currentIndentation = 0;
  while (previousIndentation > 0) {
  if (stream.eat(' ')) {
  previousIndentation--;
  currentIndentation++;
  } else if (previousIndentation >= 4 && stream.eat('\t')) {
  previousIndentation -= 4;
  currentIndentation += 4;
  } else {
  break;
  }
  }
  state.indentation = currentIndentation;
 
  if (currentIndentation > 0) return null;
  }
  return state.f(stream, state);
  },
 
  getType: getType
  };
 
  });
 
  CodeMirror.defineMIME("text/x-markdown", "markdown");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: NTriples mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="ntriples.js"></script>
  <link rel="stylesheet" href="../../doc/docs.css">
  <style type="text/css">
  .CodeMirror {
  border: 1px solid #eee;
  }
  </style>
  </head>
  <body>
  <h1>CodeMirror: NTriples mode</h1>
  <form>
  <textarea id="ntriples" name="ntriples">
  <http://Sub1> <http://pred1> <http://obj> .
  <http://Sub2> <http://pred2#an2> "literal 1" .
  <http://Sub3#an3> <http://pred3> _:bnode3 .
  _:bnode4 <http://pred4> "literal 2"@lang .
  _:bnode5 <http://pred5> "literal 3"^^<http://type> .
  </textarea>
  </form>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("ntriples"), {});
  </script>
  <p><strong>MIME types defined:</strong> <code>text/n-triples</code>.</p>
  </body>
  </html>
 
  /**********************************************************
  * This script provides syntax highlighting support for
  * the Ntriples format.
  * Ntriples format specification:
  * http://www.w3.org/TR/rdf-testcases/#ntriples
  ***********************************************************/
 
  /*
  The following expression defines the defined ASF grammar transitions.
 
  pre_subject ->
  {
  ( writing_subject_uri | writing_bnode_uri )
  -> pre_predicate
  -> writing_predicate_uri
  -> pre_object
  -> writing_object_uri | writing_object_bnode |
  (
  writing_object_literal
  -> writing_literal_lang | writing_literal_type
  )
  -> post_object
  -> BEGIN
  } otherwise {
  -> ERROR
  }
  */
  CodeMirror.defineMode("ntriples", function() {
 
  Location = {
  PRE_SUBJECT : 0,
  WRITING_SUB_URI : 1,
  WRITING_BNODE_URI : 2,
  PRE_PRED : 3,
  WRITING_PRED_URI : 4,
  PRE_OBJ : 5,
  WRITING_OBJ_URI : 6,
  WRITING_OBJ_BNODE : 7,
  WRITING_OBJ_LITERAL : 8,
  WRITING_LIT_LANG : 9,
  WRITING_LIT_TYPE : 10,
  POST_OBJ : 11,
  ERROR : 12
  };
  function transitState(currState, c) {
  var currLocation = currState.location;
  var ret;
 
  // Opening.
  if (currLocation == Location.PRE_SUBJECT && c == '<') ret = Location.WRITING_SUB_URI;
  else if(currLocation == Location.PRE_SUBJECT && c == '_') ret = Location.WRITING_BNODE_URI;
  else if(currLocation == Location.PRE_PRED && c == '<') ret = Location.WRITING_PRED_URI;
  else if(currLocation == Location.PRE_OBJ && c == '<') ret = Location.WRITING_OBJ_URI;
  else if(currLocation == Location.PRE_OBJ && c == '_') ret = Location.WRITING_OBJ_BNODE;
  else if(currLocation == Location.PRE_OBJ && c == '"') ret = Location.WRITING_OBJ_LITERAL;
 
  // Closing.
  else if(currLocation == Location.WRITING_SUB_URI && c == '>') ret = Location.PRE_PRED;
  else if(currLocation == Location.WRITING_BNODE_URI && c == ' ') ret = Location.PRE_PRED;
  else if(currLocation == Location.WRITING_PRED_URI && c == '>') ret = Location.PRE_OBJ;
  else if(currLocation == Location.WRITING_OBJ_URI && c == '>') ret = Location.POST_OBJ;
  else if(currLocation == Location.WRITING_OBJ_BNODE && c == ' ') ret = Location.POST_OBJ;
  else if(currLocation == Location.WRITING_OBJ_LITERAL && c == '"') ret = Location.POST_OBJ;
  else if(currLocation == Location.WRITING_LIT_LANG && c == ' ') ret = Location.POST_OBJ;
  else if(currLocation == Location.WRITING_LIT_TYPE && c == '>') ret = Location.POST_OBJ;
 
  // Closing typed and language literal.
  else if(currLocation == Location.WRITING_OBJ_LITERAL && c == '@') ret = Location.WRITING_LIT_LANG;
  else if(currLocation == Location.WRITING_OBJ_LITERAL && c == '^') ret = Location.WRITING_LIT_TYPE;
 
  // Spaces.
  else if( c == ' ' &&
  (
  currLocation == Location.PRE_SUBJECT ||
  currLocation == Location.PRE_PRED ||
  currLocation == Location.PRE_OBJ ||
  currLocation == Location.POST_OBJ
  )
  ) ret = currLocation;
 
  // Reset.
  else if(currLocation == Location.POST_OBJ && c == '.') ret = Location.PRE_SUBJECT;
 
  // Error
  else ret = Location.ERROR;
 
  currState.location=ret;
  }
 
  untilSpace = function(c) { return c != ' '; };
  untilEndURI = function(c) { return c != '>'; };
  return {
  startState: function() {
  return {
  location : Location.PRE_SUBJECT,
  uris : [],
  anchors : [],
  bnodes : [],
  langs : [],
  types : []
  };
  },
  token: function(stream, state) {
  var ch = stream.next();
  if(ch == '<') {
  transitState(state, ch);
  var parsedURI = '';
  stream.eatWhile( function(c) { if( c != '#' && c != '>' ) { parsedURI += c; return true; } return false;} );
  state.uris.push(parsedURI);
  if( stream.match('#', false) ) return 'variable';
  stream.next();
  transitState(state, '>');
  return 'variable';
  }
  if(ch == '#') {
  var parsedAnchor = '';
  stream.eatWhile(function(c) { if(c != '>' && c != ' ') { parsedAnchor+= c; return true; } return false});
  state.anchors.push(parsedAnchor);
  return 'variable-2';
  }
  if(ch == '>') {
  transitState(state, '>');
  return 'variable';
  }
  if(ch == '_') {
  transitState(state, ch);
  var parsedBNode = '';
  stream.eatWhile(function(c) { if( c != ' ' ) { parsedBNode += c; return true; } return false;});
  state.bnodes.push(parsedBNode);
  stream.next();
  transitState(state, ' ');
  return 'builtin';
  }
  if(ch == '"') {
  transitState(state, ch);
  stream.eatWhile( function(c) { return c != '"'; } );
  stream.next();
  if( stream.peek() != '@' && stream.peek() != '^' ) {
  transitState(state, '"');
  }
  return 'string';
  }
  if( ch == '@' ) {
  transitState(state, '@');
  var parsedLang = '';
  stream.eatWhile(function(c) { if( c != ' ' ) { parsedLang += c; return true; } return false;});
  state.langs.push(parsedLang);
  stream.next();
  transitState(state, ' ');
  return 'string-2';
  }
  if( ch == '^' ) {
  stream.next();
  transitState(state, '^');
  var parsedType = '';
  stream.eatWhile(function(c) { if( c != '>' ) { parsedType += c; return true; } return false;} );
  state.types.push(parsedType);
  stream.next();
  transitState(state, '>');
  return 'variable';
  }
  if( ch == ' ' ) {
  transitState(state, ch);
  }
  if( ch == '.' ) {
  transitState(state, ch);
  }
  }
  };
  });
 
  CodeMirror.defineMIME("text/n-triples", "ntriples");
 
  Copyright (c) 2011 souceLair <support@sourcelair.com>
 
  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
 
  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
 
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Pascal mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="pascal.js"></script>
  <link rel="stylesheet" href="../../doc/docs.css">
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  </head>
  <body>
  <h1>CodeMirror: Pascal mode</h1>
 
  <div><textarea id="code" name="code">
  (* Example Pascal code *)
 
  while a <> b do writeln('Waiting');
 
  if a > b then
  writeln('Condition met')
  else
  writeln('Condition not met');
 
  for i := 1 to 10 do
  writeln('Iteration: ', i:1);
 
  repeat
  a := a + 1
  until a = 10;
 
  case i of
  0: write('zero');
  1: write('one');
  2: write('two')
  end;
  </textarea></div>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  matchBrackets: true,
  mode: "text/x-pascal"
  });
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/x-pascal</code>.</p>
  </body>
  </html>
 
  CodeMirror.defineMode("pascal", function(config) {
  function words(str) {
  var obj = {}, words = str.split(" ");
  for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
  return obj;
  }
  var keywords = words("and array begin case const div do downto else end file for forward integer " +
  "boolean char function goto if in label mod nil not of or packed procedure " +
  "program record repeat set string then to type until var while with");
  var blockKeywords = words("case do else for if switch while struct then of");
  var atoms = {"null": true};
 
  var isOperatorChar = /[+\-*&%=<>!?|\/]/;
  var curPunc;
 
  function tokenBase(stream, state) {
  var ch = stream.next();
  if (ch == "#" && state.startOfLine) {
  stream.skipToEnd();
  return "meta";
  }
  if (ch == '"' || ch == "'") {
  state.tokenize = tokenString(ch);
  return state.tokenize(stream, state);
  }
  if (ch == "(" && stream.eat("*")) {
  state.tokenize = tokenComment;
  return tokenComment(stream, state);
  }
  if (/[\[\]{}\(\),;\:\.]/.test(ch)) {
  curPunc = ch;
  return null
  }
  if (/\d/.test(ch)) {
  stream.eatWhile(/[\w\.]/);
  return "number";
  }
  if (ch == "/") {
  if (stream.eat("/")) {
  stream.skipToEnd();
  return "comment";
  }
  }
  if (isOperatorChar.test(ch)) {
  stream.eatWhile(isOperatorChar);
  return "operator";
  }
  stream.eatWhile(/[\w\$_]/);
  var cur = stream.current();
  if (keywords.propertyIsEnumerable(cur)) {
  if (blockKeywords.propertyIsEnumerable(cur)) curPunc = "newstatement";
  return "keyword";
  }
  if (atoms.propertyIsEnumerable(cur)) return "atom";
  return "word";
  }
 
  function tokenString(quote) {
  return function(stream, state) {
  var escaped = false, next, end = false;
  while ((next = stream.next()) != null) {
  if (next == quote && !escaped) {end = true; break;}
  escaped = !escaped && next == "\\";
  }
  if (end || !escaped) state.tokenize = null;
  return "string";
  };
  }
 
  function tokenComment(stream, state) {
  var maybeEnd = false, ch;
  while (ch = stream.next()) {
  if (ch == ")" && maybeEnd) {
  state.tokenize = null;
  break;
  }
  maybeEnd = (ch == "*");
  }
  return "comment";
  }
 
  function Context(indented, column, type, align, prev) {
  this.indented = indented;
  this.column = column;
  this.type = type;
  this.align = align;
  this.prev = prev;
  }
  function pushContext(state, col, type) {
  return state.context = new Context(state.indented, col, type, null, state.context);
  }
  function popContext(state) {
  var t = state.context.type;
  if (t == ")" || t == "]" )
  state.indented = state.context.indented;
  return state.context = state.context.prev;
  }
 
  // Interface
 
  return {
  startState: function(basecolumn) {
  return {
  tokenize: null,
  context: new Context((basecolumn || 0) - config.indentUnit, 0, "top", false),
  indented: 0,
  startOfLine: true
  };
  },
 
  token: function(stream, state) {
  var ctx = state.context;
  if (stream.sol()) {
  if (ctx.align == null) ctx.align = false;
  state.indented = stream.indentation();
  state.startOfLine = true;
  }
  if (stream.eatSpace()) return null;
  curPunc = null;
  var style = (state.tokenize || tokenBase)(stream, state);
  if (style == "comment" || style == "meta") return style;
  if (ctx.align == null) ctx.align = true;
 
  if ((curPunc == ";" || curPunc == ":") && ctx.type == "statement") popContext(state);
  else if (curPunc == "[") pushContext(state, stream.column(), "]");
  else if (curPunc == "(") pushContext(state, stream.column(), ")");
  else if (curPunc == ctx.type) popContext(state);
  else if ( ctx.type == "top" || (ctx.type == "statement" && curPunc == "newstatement"))
  pushContext(state, stream.column(), "statement");
  state.startOfLine = false;
  return style;
  },
 
  electricChars: "{}"
  };
  });
 
  CodeMirror.defineMIME("text/x-pascal", "pascal");
 
  Copyright (C) 2011 by Sabaca <mail@sabaca.com> under the MIT license.
 
  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:
 
  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.
 
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  THE SOFTWARE.
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Perl mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="perl.js"></script>
  <link rel="stylesheet" href="../../doc/docs.css">
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  </head>
  <body>
  <h1>CodeMirror: Perl mode</h1>
 
  <div><textarea id="code" name="code">
  #!/usr/bin/perl
 
  use Something qw(func1 func2);
 
  # strings
  my $s1 = qq'single line';
  our $s2 = q(multi-
  line);
 
  =item Something
  Example.
  =cut
 
  my $html=<<'HTML'
  <html>
  <title>hi!</title>
  </html>
  HTML
 
  print "first,".join(',', 'second', qq~third~);
 
  if($s1 =~ m[(?<!\s)(l.ne)\z]o) {
  $h->{$1}=$$.' predefined variables';
  $s2 =~ s/\-line//ox;
  $s1 =~ s[
  line ]
  [
  block
  ]ox;
  }
 
  1; # numbers and comments
 
  __END__
  something...
 
  </textarea></div>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  matchBrackets: true
  });
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/x-perl</code>.</p>
  </body>
  </html>
 
  // CodeMirror2 mode/perl/perl.js (text/x-perl) beta 0.10 (2011-11-08)
  // This is a part of CodeMirror from https://github.com/sabaca/CodeMirror_mode_perl (mail@sabaca.com)
  CodeMirror.defineMode("perl",function(config,parserConfig){
  // http://perldoc.perl.org
  var PERL={ // null - magic touch
  // 1 - keyword
  // 2 - def
  // 3 - atom
  // 4 - operator
  // 5 - variable-2 (predefined)
  // [x,y] - x=1,2,3; y=must be defined if x{...}
  // PERL operators
  '->' : 4,
  '++' : 4,
  '--' : 4,
  '**' : 4,
  // ! ~ \ and unary + and -
  '=~' : 4,
  '!~' : 4,
  '*' : 4,
  '/' : 4,
  '%' : 4,
  'x' : 4,
  '+' : 4,
  '-' : 4,
  '.' : 4,
  '<<' : 4,
  '>>' : 4,
  // named unary operators
  '<' : 4,
  '>' : 4,
  '<=' : 4,
  '>=' : 4,
  'lt' : 4,
  'gt' : 4,
  'le' : 4,
  'ge' : 4,
  '==' : 4,
  '!=' : 4,
  '<=>' : 4,
  'eq' : 4,
  'ne' : 4,
  'cmp' : 4,
  '~~' : 4,
  '&' : 4,
  '|' : 4,
  '^' : 4,
  '&&' : 4,
  '||' : 4,
  '//' : 4,
  '..' : 4,
  '...' : 4,
  '?' : 4,
  ':' : 4,
  '=' : 4,
  '+=' : 4,
  '-=' : 4,
  '*=' : 4, // etc. ???
  ',' : 4,
  '=>' : 4,
  '::' : 4,
  // list operators (rightward)
  'not' : 4,
  'and' : 4,
  'or' : 4,
  'xor' : 4,
  // PERL predefined variables (I know, what this is a paranoid idea, but may be needed for people, who learn PERL, and for me as well, ...and may be for you?;)
  'BEGIN' : [5,1],
  'END' : [5,1],
  'PRINT' : [5,1],
  'PRINTF' : [5,1],
  'GETC' : [5,1],
  'READ' : [5,1],
  'READLINE' : [5,1],
  'DESTROY' : [5,1],
  'TIE' : [5,1],
  'TIEHANDLE' : [5,1],
  'UNTIE' : [5,1],
  'STDIN' : 5,
  'STDIN_TOP' : 5,
  'STDOUT' : 5,
  'STDOUT_TOP' : 5,
  'STDERR' : 5,
  'STDERR_TOP' : 5,
  '$ARG' : 5,
  '$_' : 5,
  '@ARG' : 5,
  '@_' : 5,
  '$LIST_SEPARATOR' : 5,
  '$"' : 5,
  '$PROCESS_ID' : 5,
  '$PID' : 5,
  '$$' : 5,
  '$REAL_GROUP_ID' : 5,
  '$GID' : 5,
  '$(' : 5,
  '$EFFECTIVE_GROUP_ID' : 5,
  '$EGID' : 5,
  '$)' : 5,
  '$PROGRAM_NAME' : 5,
  '$0' : 5,
  '$SUBSCRIPT_SEPARATOR' : 5,
  '$SUBSEP' : 5,
  '$;' : 5,
  '$REAL_USER_ID' : 5,
  '$UID' : 5,
  '$<' : 5,
  '$EFFECTIVE_USER_ID' : 5,
  '$EUID' : 5,
  '$>' : 5,
  '$a' : 5,
  '$b' : 5,
  '$COMPILING' : 5,
  '$^C' : 5,
  '$DEBUGGING' : 5,
  '$^D' : 5,
  '${^ENCODING}' : 5,
  '$ENV' : 5,
  '%ENV' : 5,
  '$SYSTEM_FD_MAX' : 5,
  '$^F' : 5,
  '@F' : 5,
  '${^GLOBAL_PHASE}' : 5,
  '$^H' : 5,
  '%^H' : 5,
  '@INC' : 5,
  '%INC' : 5,
  '$INPLACE_EDIT' : 5,
  '$^I' : 5,
  '$^M' : 5,
  '$OSNAME' : 5,
  '$^O' : 5,
  '${^OPEN}' : 5,
  '$PERLDB' : 5,
  '$^P' : 5,
  '$SIG' : 5,
  '%SIG' : 5,
  '$BASETIME' : 5,
  '$^T' : 5,
  '${^TAINT}' : 5,
  '${^UNICODE}' : 5,
  '${^UTF8CACHE}' : 5,
  '${^UTF8LOCALE}' : 5,
  '$PERL_VERSION' : 5,
  '$^V' : 5,
  '${^WIN32_SLOPPY_STAT}' : 5,
  '$EXECUTABLE_NAME' : 5,
  '$^X' : 5,
  '$1' : 5, // - regexp $1, $2...
  '$MATCH' : 5,
  '$&' : 5,
  '${^MATCH}' : 5,
  '$PREMATCH' : 5,
  '$`' : 5,
  '${^PREMATCH}' : 5,
  '$POSTMATCH' : 5,
  "$'" : 5,
  '${^POSTMATCH}' : 5,
  '$LAST_PAREN_MATCH' : 5,
  '$+' : 5,
  '$LAST_SUBMATCH_RESULT' : 5,
  '$^N' : 5,
  '@LAST_MATCH_END' : 5,
  '@+' : 5,
  '%LAST_PAREN_MATCH' : 5,
  '%+' : 5,
  '@LAST_MATCH_START' : 5,
  '@-' : 5,
  '%LAST_MATCH_START' : 5,
  '%-' : 5,
  '$LAST_REGEXP_CODE_RESULT' : 5,
  '$^R' : 5,
  '${^RE_DEBUG_FLAGS}' : 5,
  '${^RE_TRIE_MAXBUF}' : 5,
  '$ARGV' : 5,
  '@ARGV' : 5,
  'ARGV' : 5,
  'ARGVOUT' : 5,
  '$OUTPUT_FIELD_SEPARATOR' : 5,
  '$OFS' : 5,
  '$,' : 5,
  '$INPUT_LINE_NUMBER' : 5,
  '$NR' : 5,
  '$.' : 5,
  '$INPUT_RECORD_SEPARATOR' : 5,
  '$RS' : 5,
  '$/' : 5,
  '$OUTPUT_RECORD_SEPARATOR' : 5,
  '$ORS' : 5,
  '$\\' : 5,
  '$OUTPUT_AUTOFLUSH' : 5,
  '$|' : 5,
  '$ACCUMULATOR' : 5,
  '$^A' : 5,
  '$FORMAT_FORMFEED' : 5,
  '$^L' : 5,
  '$FORMAT_PAGE_NUMBER' : 5,
  '$%' : 5,
  '$FORMAT_LINES_LEFT' : 5,
  '$-' : 5,
  '$FORMAT_LINE_BREAK_CHARACTERS' : 5,
  '$:' : 5,
  '$FORMAT_LINES_PER_PAGE' : 5,
  '$=' : 5,
  '$FORMAT_TOP_NAME' : 5,
  '$^' : 5,
  '$FORMAT_NAME' : 5,
  '$~' : 5,
  '${^CHILD_ERROR_NATIVE}' : 5,
  '$EXTENDED_OS_ERROR' : 5,
  '$^E' : 5,
  '$EXCEPTIONS_BEING_CAUGHT' : 5,
  '$^S' : 5,
  '$WARNING' : 5,
  '$^W' : 5,
  '${^WARNING_BITS}' : 5,
  '$OS_ERROR' : 5,
  '$ERRNO' : 5,
  '$!' : 5,
  '%OS_ERROR' : 5,
  '%ERRNO' : 5,
  '%!' : 5,
  '$CHILD_ERROR' : 5,
  '$?' : 5,
  '$EVAL_ERROR' : 5,
  '$@' : 5,
  '$OFMT' : 5,
  '$#' : 5,
  '$*' : 5,
  '$ARRAY_BASE' : 5,
  '$[' : 5,
  '$OLD_PERL_VERSION' : 5,
  '$]' : 5,
  // PERL blocks
  'if' :[1,1],
  elsif :[1,1],
  'else' :[1,1],
  'while' :[1,1],
  unless :[1,1],
  'for' :[1,1],
  foreach :[1,1],
  // PERL functions
  'abs' :1, // - absolute value function
  accept :1, // - accept an incoming socket connect
  alarm :1, // - schedule a SIGALRM
  'atan2' :1, // - arctangent of Y/X in the range -PI to PI
  bind :1, // - binds an address to a socket
  binmode :1, // - prepare binary files for I/O
  bless :1, // - create an object
  bootstrap :1, //
  'break' :1, // - break out of a "given" block
  caller :1, // - get context of the current subroutine call
  chdir :1, // - change your current working directory
  chmod :1, // - changes the permissions on a list of files
  chomp :1, // - remove a trailing record separator from a string
  chop :1, // - remove the last character from a string
  chown :1, // - change the owership on a list of files
  chr :1, // - get character this number represents
  chroot :1, // - make directory new root for path lookups
  close :1, // - close file (or pipe or socket) handle
  closedir :1, // - close directory handle
  connect :1, // - connect to a remote socket
  'continue' :[1,1], // - optional trailing block in a while or foreach
  'cos' :1, // - cosine function
  crypt :1, // - one-way passwd-style encryption
  dbmclose :1, // - breaks binding on a tied dbm file
  dbmopen :1, // - create binding on a tied dbm file
  'default' :1, //
  defined :1, // - test whether a value, variable, or function is defined
  'delete' :1, // - deletes a value from a hash
  die :1, // - raise an exception or bail out
  'do' :1, // - turn a BLOCK into a TERM
  dump :1, // - create an immediate core dump
  each :1, // - retrieve the next key/value pair from a hash
  endgrent :1, // - be done using group file
  endhostent :1, // - be done using hosts file
  endnetent :1, // - be done using networks file
  endprotoent :1, // - be done using protocols file
  endpwent :1, // - be done using passwd file
  endservent :1, // - be done using services file
  eof :1, // - test a filehandle for its end
  'eval' :1, // - catch exceptions or compile and run code
  'exec' :1, // - abandon this program to run another
  exists :1, // - test whether a hash key is present
  exit :1, // - terminate this program
  'exp' :1, // - raise I to a power
  fcntl :1, // - file control system call
  fileno :1, // - return file descriptor from filehandle
  flock :1, // - lock an entire file with an advisory lock
  fork :1, // - create a new process just like this one
  format :1, // - declare a picture format with use by the write() function
  formline :1, // - internal function used for formats
  getc :1, // - get the next character from the filehandle
  getgrent :1, // - get next group record
  getgrgid :1, // - get group record given group user ID
  getgrnam :1, // - get group record given group name
  gethostbyaddr :1, // - get host record given its address
  gethostbyname :1, // - get host record given name
  gethostent :1, // - get next hosts record
  getlogin :1, // - return who logged in at this tty
  getnetbyaddr :1, // - get network record given its address
  getnetbyname :1, // - get networks record given name
  getnetent :1, // - get next networks record
  getpeername :1, // - find the other end of a socket connection
  getpgrp :1, // - get process group
  getppid :1, // - get parent process ID
  getpriority :1, // - get current nice value
  getprotobyname :1, // - get protocol record given name
  getprotobynumber :1, // - get protocol record numeric protocol
  getprotoent :1, // - get next protocols record
  getpwent :1, // - get next passwd record
  getpwnam :1, // - get passwd record given user login name
  getpwuid :1, // - get passwd record given user ID
  getservbyname :1, // - get services record given its name
  getservbyport :1, // - get services record given numeric port
  getservent :1, // - get next services record
  getsockname :1, // - retrieve the sockaddr for a given socket
  getsockopt :1, // - get socket options on a given socket
  given :1, //
  glob :1, // - expand filenames using wildcards
  gmtime :1, // - convert UNIX time into record or string using Greenwich time
  'goto' :1, // - create spaghetti code
  grep :1, // - locate elements in a list test true against a given criterion
  hex :1, // - convert a string to a hexadecimal number
  'import' :1, // - patch a module's namespace into your own
  index :1, // - find a substring within a string
  int :1, // - get the integer portion of a number
  ioctl :1, // - system-dependent device control system call
  'join' :1, // - join a list into a string using a separator
  keys :1, // - retrieve list of indices from a hash
  kill :1, // - send a signal to a process or process group
  last :1, // - exit a block prematurely
  lc :1, // - return lower-case version of a string
  lcfirst :1, // - return a string with just the next letter in lower case
  length :1, // - return the number of bytes in a string
  'link' :1, // - create a hard link in the filesytem
  listen :1, // - register your socket as a server
  local : 2, // - create a temporary value for a global variable (dynamic scoping)
  localtime :1, // - convert UNIX time into record or string using local time
  lock :1, // - get a thread lock on a variable, subroutine, or method
  'log' :1, // - retrieve the natural logarithm for a number
  lstat :1, // - stat a symbolic link
  m :null, // - match a string with a regular expression pattern
  map :1, // - apply a change to a list to get back a new list with the changes
  mkdir :1, // - create a directory
  msgctl :1, // - SysV IPC message control operations
  msgget :1, // - get SysV IPC message queue
  msgrcv :1, // - receive a SysV IPC message from a message queue
  msgsnd :1, // - send a SysV IPC message to a message queue
  my : 2, // - declare and assign a local variable (lexical scoping)
  'new' :1, //
  next :1, // - iterate a block prematurely
  no :1, // - unimport some module symbols or semantics at compile time
  oct :1, // - convert a string to an octal number
  open :1, // - open a file, pipe, or descriptor
  opendir :1, // - open a directory
  ord :1, // - find a character's numeric representation
  our : 2, // - declare and assign a package variable (lexical scoping)
  pack :1, // - convert a list into a binary representation
  'package' :1, // - declare a separate global namespace
  pipe :1, // - open a pair of connected filehandles
  pop :1, // - remove the last element from an array and return it
  pos :1, // - find or set the offset for the last/next m//g search
  print :1, // - output a list to a filehandle
  printf :1, // - output a formatted list to a filehandle
  prototype :1, // - get the prototype (if any) of a subroutine
  push :1, // - append one or more elements to an array
  q :null, // - singly quote a string
  qq :null, // - doubly quote a string
  qr :null, // - Compile pattern
  quotemeta :null, // - quote regular expression magic characters
  qw :null, // - quote a list of words
  qx :null, // - backquote quote a string
  rand :1, // - retrieve the next pseudorandom number
  read :1, // - fixed-length buffered input from a filehandle
  readdir :1, // - get a directory from a directory handle
  readline :1, // - fetch a record from a file
  readlink :1, // - determine where a symbolic link is pointing
  readpipe :1, // - execute a system command and collect standard output
  recv :1, // - receive a message over a Socket
  redo :1, // - start this loop iteration over again
  ref :1, // - find out the type of thing being referenced
  rename :1, // - change a filename
  require :1, // - load in external functions from a library at runtime
  reset :1, // - clear all variables of a given name
  'return' :1, // - get out of a function early
  reverse :1, // - flip a string or a list
  rewinddir :1, // - reset directory handle
  rindex :1, // - right-to-left substring search
  rmdir :1, // - remove a directory
  s :null, // - replace a pattern with a string
  say :1, // - print with newline
  scalar :1, // - force a scalar context
  seek :1, // - reposition file pointer for random-access I/O
  seekdir :1, // - reposition directory pointer
  select :1, // - reset default output or do I/O multiplexing
  semctl :1, // - SysV semaphore control operations
  semget :1, // - get set of SysV semaphores
  semop :1, // - SysV semaphore operations
  send :1, // - send a message over a socket
  setgrent :1, // - prepare group file for use
  sethostent :1, // - prepare hosts file for use
  setnetent :1, // - prepare networks file for use
  setpgrp :1, // - set the process group of a process
  setpriority :1, // - set a process's nice value
  setprotoent :1, // - prepare protocols file for use
  setpwent :1, // - prepare passwd file for use
  setservent :1, // - prepare services file for use
  setsockopt :1, // - set some socket options
  shift :1, // - remove the first element of an array, and return it
  shmctl :1, // - SysV shared memory operations
  shmget :1, // - get SysV shared memory segment identifier
  shmread :1, // - read SysV shared memory
  shmwrite :1, // - write SysV shared memory
  shutdown :1, // - close down just half of a socket connection
  'sin' :1, // - return the sine of a number
  sleep :1, // - block for some number of seconds
  socket :1, // - create a socket
  socketpair :1, // - create a pair of sockets
  'sort' :1, // - sort a list of values
  splice :1, // - add or remove elements anywhere in an array
  'split' :1, // - split up a string using a regexp delimiter
  sprintf :1, // - formatted print into a string
  'sqrt' :1, // - square root function
  srand :1, // - seed the random number generator
  stat :1, // - get a file's status information
  state :1, // - declare and assign a state variable (persistent lexical scoping)
  study :1, // - optimize input data for repeated searches
  'sub' :1, // - declare a subroutine, possibly anonymously
  'substr' :1, // - get or alter a portion of a stirng
  symlink :1, // - create a symbolic link to a file
  syscall :1, // - execute an arbitrary system call
  sysopen :1, // - open a file, pipe, or descriptor
  sysread :1, // - fixed-length unbuffered input from a filehandle
  sysseek :1, // - position I/O pointer on handle used with sysread and syswrite
  system :1, // - run a separate program
  syswrite :1, // - fixed-length unbuffered output to a filehandle
  tell :1, // - get current seekpointer on a filehandle
  telldir :1, // - get current seekpointer on a directory handle
  tie :1, // - bind a variable to an object class
  tied :1, // - get a reference to the object underlying a tied variable
  time :1, // - return number of seconds since 1970
  times :1, // - return elapsed time for self and child processes
  tr :null, // - transliterate a string
  truncate :1, // - shorten a file
  uc :1, // - return upper-case version of a string
  ucfirst :1, // - return a string with just the next letter in upper case
  umask :1, // - set file creation mode mask
  undef :1, // - remove a variable or function definition
  unlink :1, // - remove one link to a file
  unpack :1, // - convert binary structure into normal perl variables
  unshift :1, // - prepend more elements to the beginning of a list
  untie :1, // - break a tie binding to a variable
  use :1, // - load in a module at compile time
  utime :1, // - set a file's last access and modify times
  values :1, // - return a list of the values in a hash
  vec :1, // - test or set particular bits in a string
  wait :1, // - wait for any child process to die
  waitpid :1, // - wait for a particular child process to die
  wantarray :1, // - get void vs scalar vs list context of current subroutine call
  warn :1, // - print debugging info
  when :1, //
  write :1, // - print a picture record
  y :null}; // - transliterate a string
 
  var RXstyle="string-2";
  var RXmodifiers=/[goseximacplud]/; // NOTE: "m", "s", "y" and "tr" need to correct real modifiers for each regexp type
 
  function tokenChain(stream,state,chain,style,tail){ // NOTE: chain.length > 2 is not working now (it's for s[...][...]geos;)
  state.chain=null; // 12 3tail
  state.style=null;
  state.tail=null;
  state.tokenize=function(stream,state){
  var e=false,c,i=0;
  while(c=stream.next()){
  if(c===chain[i]&&!e){
  if(chain[++i]!==undefined){
  state.chain=chain[i];
  state.style=style;
  state.tail=tail}
  else if(tail)
  stream.eatWhile(tail);
  state.tokenize=tokenPerl;
  return style}
  e=!e&&c=="\\"}
  return style};
  return state.tokenize(stream,state)}
 
  function tokenSOMETHING(stream,state,string){
  state.tokenize=function(stream,state){
  if(stream.string==string)
  state.tokenize=tokenPerl;
  stream.skipToEnd();
  return "string"};
  return state.tokenize(stream,state)}
 
  function tokenPerl(stream,state){
  if(stream.eatSpace())
  return null;
  if(state.chain)
  return tokenChain(stream,state,state.chain,state.style,state.tail);
  if(stream.match(/^\-?[\d\.]/,false))
  if(stream.match(/^(\-?(\d*\.\d+(e[+-]?\d+)?|\d+\.\d*)|0x[\da-fA-F]+|0b[01]+|\d+(e[+-]?\d+)?)/))
  return 'number';
  if(stream.match(/^<<(?=\w)/)){ // NOTE: <<SOMETHING\n...\nSOMETHING\n
  stream.eatWhile(/\w/);
  return tokenSOMETHING(stream,state,stream.current().substr(2))}
  if(stream.sol()&&stream.match(/^\=item(?!\w)/)){// NOTE: \n=item...\n=cut\n
  return tokenSOMETHING(stream,state,'=cut')}
  var ch=stream.next();
  if(ch=='"'||ch=="'"){ // NOTE: ' or " or <<'SOMETHING'\n...\nSOMETHING\n or <<"SOMETHING"\n...\nSOMETHING\n
  if(stream.prefix(3)=="<<"+ch){
  var p=stream.pos;
  stream.eatWhile(/\w/);
  var n=stream.current().substr(1);
  if(n&&stream.eat(ch))
  return tokenSOMETHING(stream,state,n);
  stream.pos=p}
  return tokenChain(stream,state,[ch],"string")}
  if(ch=="q"){
  var c=stream.look(-2);
  if(!(c&&/\w/.test(c))){
  c=stream.look(0);
  if(c=="x"){
  c=stream.look(1);
  if(c=="("){
  stream.eatSuffix(2);
  return tokenChain(stream,state,[")"],RXstyle,RXmodifiers)}
  if(c=="["){
  stream.eatSuffix(2);
  return tokenChain(stream,state,["]"],RXstyle,RXmodifiers)}
  if(c=="{"){
  stream.eatSuffix(2);
  return tokenChain(stream,state,["}"],RXstyle,RXmodifiers)}
  if(c=="<"){
  stream.eatSuffix(2);
  return tokenChain(stream,state,[">"],RXstyle,RXmodifiers)}
  if(/[\^'"!~\/]/.test(c)){
  stream.eatSuffix(1);
  return tokenChain(stream,state,[stream.eat(c)],RXstyle,RXmodifiers)}}
  else if(c=="q"){
  c=stream.look(1);
  if(c=="("){
  stream.eatSuffix(2);
  return tokenChain(stream,state,[")"],"string")}
  if(c=="["){
  stream.eatSuffix(2);
  return tokenChain(stream,state,["]"],"string")}
  if(c=="{"){
  stream.eatSuffix(2);
  return tokenChain(stream,state,["}"],"string")}
  if(c=="<"){
  stream.eatSuffix(2);
  return tokenChain(stream,state,[">"],"string")}
  if(/[\^'"!~\/]/.test(c)){
  stream.eatSuffix(1);
  return tokenChain(stream,state,[stream.eat(c)],"string")}}
  else if(c=="w"){
  c=stream.look(1);
  if(c=="("){
  stream.eatSuffix(2);
  return tokenChain(stream,state,[")"],"bracket")}
  if(c=="["){
  stream.eatSuffix(2);
  return tokenChain(stream,state,["]"],"bracket")}
  if(c=="{"){
  stream.eatSuffix(2);
  return tokenChain(stream,state,["}"],"bracket")}
  if(c=="<"){
  stream.eatSuffix(2);
  return tokenChain(stream,state,[">"],"bracket")}
  if(/[\^'"!~\/]/.test(c)){
  stream.eatSuffix(1);
  return tokenChain(stream,state,[stream.eat(c)],"bracket")}}
  else if(c=="r"){
  c=stream.look(1);
  if(c=="("){
  stream.eatSuffix(2);
  return tokenChain(stream,state,[")"],RXstyle,RXmodifiers)}
  if(c=="["){
  stream.eatSuffix(2);
  return tokenChain(stream,state,["]"],RXstyle,RXmodifiers)}
  if(c=="{"){
  stream.eatSuffix(2);
  return tokenChain(stream,state,["}"],RXstyle,RXmodifiers)}
  if(c=="<"){
  stream.eatSuffix(2);
  return tokenChain(stream,state,[">"],RXstyle,RXmodifiers)}
  if(/[\^'"!~\/]/.test(c)){
  stream.eatSuffix(1);
  return tokenChain(stream,state,[stream.eat(c)],RXstyle,RXmodifiers)}}
  else if(/[\^'"!~\/(\[{<]/.test(c)){
  if(c=="("){
  stream.eatSuffix(1);
  return tokenChain(stream,state,[")"],"string")}
  if(c=="["){
  stream.eatSuffix(1);
  return tokenChain(stream,state,["]"],"string")}
  if(c=="{"){
  stream.eatSuffix(1);
  return tokenChain(stream,state,["}"],"string")}
  if(c=="<"){
  stream.eatSuffix(1);
  return tokenChain(stream,state,[">"],"string")}
  if(/[\^'"!~\/]/.test(c)){
  return tokenChain(stream,state,[stream.eat(c)],"string")}}}}
  if(ch=="m"){
  var c=stream.look(-2);
  if(!(c&&/\w/.test(c))){
  c=stream.eat(/[(\[{<\^'"!~\/]/);
  if(c){
  if(/[\^'"!~\/]/.test(c)){
  return tokenChain(stream,state,[c],RXstyle,RXmodifiers)}
  if(c=="("){
  return tokenChain(stream,state,[")"],RXstyle,RXmodifiers)}
  if(c=="["){
  return tokenChain(stream,state,["]"],RXstyle,RXmodifiers)}
  if(c=="{"){
  return tokenChain(stream,state,["}"],RXstyle,RXmodifiers)}
  if(c=="<"){
  return tokenChain(stream,state,[">"],RXstyle,RXmodifiers)}}}}
  if(ch=="s"){
  var c=/[\/>\]})\w]/.test(stream.look(-2));
  if(!c){
  c=stream.eat(/[(\[{<\^'"!~\/]/);
  if(c){
  if(c=="[")
  return tokenChain(stream,state,["]","]"],RXstyle,RXmodifiers);
  if(c=="{")
  return tokenChain(stream,state,["}","}"],RXstyle,RXmodifiers);
  if(c=="<")
  return tokenChain(stream,state,[">",">"],RXstyle,RXmodifiers);
  if(c=="(")
  return tokenChain(stream,state,[")",")"],RXstyle,RXmodifiers);
  return tokenChain(stream,state,[c,c],RXstyle,RXmodifiers)}}}
  if(ch=="y"){
  var c=/[\/>\]})\w]/.test(stream.look(-2));
  if(!c){
  c=stream.eat(/[(\[{<\^'"!~\/]/);
  if(c){
  if(c=="[")
  return tokenChain(stream,state,["]","]"],RXstyle,RXmodifiers);
  if(c=="{")
  return tokenChain(stream,state,["}","}"],RXstyle,RXmodifiers);
  if(c=="<")
  return tokenChain(stream,state,[">",">"],RXstyle,RXmodifiers);
  if(c=="(")
  return tokenChain(stream,state,[")",")"],RXstyle,RXmodifiers);
  return tokenChain(stream,state,[c,c],RXstyle,RXmodifiers)}}}
  if(ch=="t"){
  var c=/[\/>\]})\w]/.test(stream.look(-2));
  if(!c){
  c=stream.eat("r");if(c){
  c=stream.eat(/[(\[{<\^'"!~\/]/);
  if(c){
  if(c=="[")
  return tokenChain(stream,state,["]","]"],RXstyle,RXmodifiers);
  if(c=="{")
  return tokenChain(stream,state,["}","}"],RXstyle,RXmodifiers);
  if(c=="<")
  return tokenChain(stream,state,[">",">"],RXstyle,RXmodifiers);
  if(c=="(")
  return tokenChain(stream,state,[")",")"],RXstyle,RXmodifiers);
  return tokenChain(stream,state,[c,c],RXstyle,RXmodifiers)}}}}
  if(ch=="`"){
  return tokenChain(stream,state,[ch],"variable-2")}
  if(ch=="/"){
  if(!/~\s*$/.test(stream.prefix()))
  return "operator";
  else
  return tokenChain(stream,state,[ch],RXstyle,RXmodifiers)}
  if(ch=="$"){
  var p=stream.pos;
  if(stream.eatWhile(/\d/)||stream.eat("{")&&stream.eatWhile(/\d/)&&stream.eat("}"))
  return "variable-2";
  else
  stream.pos=p}
  if(/[$@%]/.test(ch)){
  var p=stream.pos;
  if(stream.eat("^")&&stream.eat(/[A-Z]/)||!/[@$%&]/.test(stream.look(-2))&&stream.eat(/[=|\\\-#?@;:&`~\^!\[\]*'"$+.,\/<>()]/)){
  var c=stream.current();
  if(PERL[c])
  return "variable-2"}
  stream.pos=p}
  if(/[$@%&]/.test(ch)){
  if(stream.eatWhile(/[\w$\[\]]/)||stream.eat("{")&&stream.eatWhile(/[\w$\[\]]/)&&stream.eat("}")){
  var c=stream.current();
  if(PERL[c])
  return "variable-2";
  else
  return "variable"}}
  if(ch=="#"){
  if(stream.look(-2)!="$"){
  stream.skipToEnd();
  return "comment"}}
  if(/[:+\-\^*$&%@=<>!?|\/~\.]/.test(ch)){
  var p=stream.pos;
  stream.eatWhile(/[:+\-\^*$&%@=<>!?|\/~\.]/);
  if(PERL[stream.current()])
  return "operator";
  else
  stream.pos=p}
  if(ch=="_"){
  if(stream.pos==1){
  if(stream.suffix(6)=="_END__"){
  return tokenChain(stream,state,['\0'],"comment")}
  else if(stream.suffix(7)=="_DATA__"){
  return tokenChain(stream,state,['\0'],"variable-2")}
  else if(stream.suffix(7)=="_C__"){
  return tokenChain(stream,state,['\0'],"string")}}}
  if(/\w/.test(ch)){
  var p=stream.pos;
  if(stream.look(-2)=="{"&&(stream.look(0)=="}"||stream.eatWhile(/\w/)&&stream.look(0)=="}"))
  return "string";
  else
  stream.pos=p}
  if(/[A-Z]/.test(ch)){
  var l=stream.look(-2);
  var p=stream.pos;
  stream.eatWhile(/[A-Z_]/);
  if(/[\da-z]/.test(stream.look(0))){
  stream.pos=p}
  else{
  var c=PERL[stream.current()];
  if(!c)
  return "meta";
  if(c[1])
  c=c[0];
  if(l!=":"){
  if(c==1)
  return "keyword";
  else if(c==2)
  return "def";
  else if(c==3)
  return "atom";
  else if(c==4)
  return "operator";
  else if(c==5)
  return "variable-2";
  else
  return "meta"}
  else
  return "meta"}}
  if(/[a-zA-Z_]/.test(ch)){
  var l=stream.look(-2);
  stream.eatWhile(/\w/);
  var c=PERL[stream.current()];
  if(!c)
  return "meta";
  if(c[1])
  c=c[0];
  if(l!=":"){
  if(c==1)
  return "keyword";
  else if(c==2)
  return "def";
  else if(c==3)
  return "atom";
  else if(c==4)
  return "operator";
  else if(c==5)
  return "variable-2";
  else
  return "meta"}
  else
  return "meta"}
  return null}
 
  return{
  startState:function(){
  return{
  tokenize:tokenPerl,
  chain:null,
  style:null,
  tail:null}},
  token:function(stream,state){
  return (state.tokenize||tokenPerl)(stream,state)},
  electricChars:"{}"}});
 
  CodeMirror.defineMIME("text/x-perl", "perl");
 
  // it's like "peek", but need for look-ahead or look-behind if index < 0
  CodeMirror.StringStream.prototype.look=function(c){
  return this.string.charAt(this.pos+(c||0))};
 
  // return a part of prefix of current stream from current position
  CodeMirror.StringStream.prototype.prefix=function(c){
  if(c){
  var x=this.pos-c;
  return this.string.substr((x>=0?x:0),c)}
  else{
  return this.string.substr(0,this.pos-1)}};
 
  // return a part of suffix of current stream from current position
  CodeMirror.StringStream.prototype.suffix=function(c){
  var y=this.string.length;
  var x=y-this.pos+1;
  return this.string.substr(this.pos,(c&&c<y?c:x))};
 
  // return a part of suffix of current stream from current position and change current position
  CodeMirror.StringStream.prototype.nsuffix=function(c){
  var p=this.pos;
  var l=c||(this.string.length-this.pos+1);
  this.pos+=l;
  return this.string.substr(p,l)};
 
  // eating and vomiting a part of stream from current position
  CodeMirror.StringStream.prototype.eatSuffix=function(c){
  var x=this.pos+c;
  var y;
  if(x<=0)
  this.pos=0;
  else if(x>=(y=this.string.length-1))
  this.pos=y;
  else
  this.pos=x};
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: PHP mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="../xml/xml.js"></script>
  <script src="../javascript/javascript.js"></script>
  <script src="../css/css.js"></script>
  <script src="../clike/clike.js"></script>
  <script src="php.js"></script>
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: PHP mode</h1>
 
  <form><textarea id="code" name="code">
  <?php
  function hello($who) {
  return "Hello " . $who;
  }
  ?>
  <p>The program says <?= hello("World") ?>.</p>
  <script>
  alert("And here is some JS code"); // also colored
  </script>
  </textarea></form>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  matchBrackets: true,
  mode: "application/x-httpd-php",
  indentUnit: 4,
  indentWithTabs: true,
  enterMode: "keep",
  tabMode: "shift"
  });
  </script>
 
  <p>Simple HTML/PHP mode based on
  the <a href="../clike/">C-like</a> mode. Depends on XML,
  JavaScript, CSS, and C-like modes.</p>
 
  <p><strong>MIME types defined:</strong> <code>application/x-httpd-php</code> (HTML with PHP code), <code>text/x-php</code> (plain, non-wrapped PHP code).</p>
  </body>
  </html>
 
  (function() {
  function keywords(str) {
  var obj = {}, words = str.split(" ");
  for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
  return obj;
  }
  function heredoc(delim) {
  return function(stream, state) {
  if (stream.match(delim)) state.tokenize = null;
  else stream.skipToEnd();
  return "string";
  }
  }
  var phpConfig = {
  name: "clike",
  keywords: keywords("abstract and array as break case catch cfunction class clone const continue declare " +
  "default do else elseif enddeclare endfor endforeach endif endswitch endwhile extends " +
  "final for foreach function global goto if implements interface instanceof namespace " +
  "new or private protected public static switch throw try use var while xor return" +
  "die echo empty exit eval include include_once isset list require require_once print unset"),
  blockKeywords: keywords("catch do else elseif for foreach if switch try while"),
  atoms: keywords("true false null TRUE FALSE NULL"),
  multiLineStrings: true,
  hooks: {
  "$": function(stream, state) {
  stream.eatWhile(/[\w\$_]/);
  return "variable-2";
  },
  "<": function(stream, state) {
  if (stream.match(/<</)) {
  stream.eatWhile(/[\w\.]/);
  state.tokenize = heredoc(stream.current().slice(3));
  return state.tokenize(stream, state);
  }
  return false;
  },
  "#": function(stream, state) {
  stream.skipToEnd();
  return "comment";
  }
  }
  };
 
  CodeMirror.defineMode("php", function(config, parserConfig) {
  var htmlMode = CodeMirror.getMode(config, {name: "xml", htmlMode: true});
  var jsMode = CodeMirror.getMode(config, "javascript");
  var cssMode = CodeMirror.getMode(config, "css");
  var phpMode = CodeMirror.getMode(config, phpConfig);
 
  function dispatch(stream, state) { // TODO open PHP inside text/css
  if (state.curMode == htmlMode) {
  var style = htmlMode.token(stream, state.curState);
  if (style == "meta" && /^<\?/.test(stream.current())) {
  state.curMode = phpMode;
  state.curState = state.php;
  state.curClose = /^\?>/;
  state.mode = 'php';
  }
  else if (style == "tag" && stream.current() == ">" && state.curState.context) {
  if (/^script$/i.test(state.curState.context.tagName)) {
  state.curMode = jsMode;
  state.curState = jsMode.startState(htmlMode.indent(state.curState, ""));
  state.curClose = /^<\/\s*script\s*>/i;
  state.mode = 'javascript';
  }
  else if (/^style$/i.test(state.curState.context.tagName)) {
  state.curMode = cssMode;
  state.curState = cssMode.startState(htmlMode.indent(state.curState, ""));
  state.curClose = /^<\/\s*style\s*>/i;
  state.mode = 'css';
  }
  }
  return style;
  }
  else if (stream.match(state.curClose, false)) {
  state.curMode = htmlMode;
  state.curState = state.html;
  state.curClose = null;
  state.mode = 'html';
  return dispatch(stream, state);
  }
  else return state.curMode.token(stream, state.curState);
  }
 
  return {
  startState: function() {
  var html = htmlMode.startState();
  return {html: html,
  php: phpMode.startState(),
  curMode: parserConfig.startOpen ? phpMode : htmlMode,
  curState: parserConfig.startOpen ? phpMode.startState() : html,
  curClose: parserConfig.startOpen ? /^\?>/ : null,
  mode: parserConfig.startOpen ? 'php' : 'html'}
  },
 
  copyState: function(state) {
  var html = state.html, htmlNew = CodeMirror.copyState(htmlMode, html),
  php = state.php, phpNew = CodeMirror.copyState(phpMode, php), cur;
  if (state.curState == html) cur = htmlNew;
  else if (state.curState == php) cur = phpNew;
  else cur = CodeMirror.copyState(state.curMode, state.curState);
  return {html: htmlNew, php: phpNew, curMode: state.curMode, curState: cur, curClose: state.curClose};
  },
 
  token: dispatch,
 
  indent: function(state, textAfter) {
  if ((state.curMode != phpMode && /^\s*<\//.test(textAfter)) ||
  (state.curMode == phpMode && /^\?>/.test(textAfter)))
  return htmlMode.indent(state.html, textAfter);
  return state.curMode.indent(state.curState, textAfter);
  },
 
  electricChars: "/{}:"
  }
  });
  CodeMirror.defineMIME("application/x-httpd-php", "php");
  CodeMirror.defineMIME("application/x-httpd-php-open", {name: "php", startOpen: true});
  CodeMirror.defineMIME("text/x-php", phpConfig);
  })();
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Oracle PL/SQL mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="plsql.js"></script>
  <link rel="stylesheet" href="../../doc/docs.css">
  <style>.CodeMirror {border: 2px inset #dee;}</style>
  </head>
  <body>
  <h1>CodeMirror: Oracle PL/SQL mode</h1>
 
  <form><textarea id="code" name="code">
  -- Oracle PL/SQL Code Demo
  /*
  based on c-like mode, adapted to PL/SQL by Peter Raganitsch ( http://www.oracle-and-apex.com/ )
  April 2011
  */
  DECLARE
  vIdx NUMBER;
  vString VARCHAR2(100);
  cText CONSTANT VARCHAR2(100) := 'That''s it! Have fun with CodeMirror 2';
  BEGIN
  vIdx := 0;
  --
  FOR rDATA IN
  ( SELECT *
  FROM EMP
  ORDER BY EMPNO
  )
  LOOP
  vIdx := vIdx + 1;
  vString := rDATA.EMPNO || ' - ' || rDATA.ENAME;
  --
  UPDATE EMP
  SET SAL = SAL * 101/100
  WHERE EMPNO = rDATA.EMPNO
  ;
  END LOOP;
  --
  SYS.DBMS_OUTPUT.Put_Line (cText);
  END;
  --
  </textarea></form>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  matchBrackets: true,
  indentUnit: 4,
  mode: "text/x-plsql"
  });
  </script>
 
  <p>
  Simple mode that handles Oracle PL/SQL language (and Oracle SQL, of course).
  </p>
 
  <p><strong>MIME type defined:</strong> <code>text/x-plsql</code>
  (PLSQL code)
  </html>
 
  CodeMirror.defineMode("plsql", function(config, parserConfig) {
  var indentUnit = config.indentUnit,
  keywords = parserConfig.keywords,
  functions = parserConfig.functions,
  types = parserConfig.types,
  sqlplus = parserConfig.sqlplus,
  multiLineStrings = parserConfig.multiLineStrings;
  var isOperatorChar = /[+\-*&%=<>!?:\/|]/;
  function chain(stream, state, f) {
  state.tokenize = f;
  return f(stream, state);
  }
 
  var type;
  function ret(tp, style) {
  type = tp;
  return style;
  }
 
  function tokenBase(stream, state) {
  var ch = stream.next();
  // start of string?
  if (ch == '"' || ch == "'")
  return chain(stream, state, tokenString(ch));
  // is it one of the special signs []{}().,;? Seperator?
  else if (/[\[\]{}\(\),;\.]/.test(ch))
  return ret(ch);
  // start of a number value?
  else if (/\d/.test(ch)) {
  stream.eatWhile(/[\w\.]/);
  return ret("number", "number");
  }
  // multi line comment or simple operator?
  else if (ch == "/") {
  if (stream.eat("*")) {
  return chain(stream, state, tokenComment);
  }
  else {
  stream.eatWhile(isOperatorChar);
  return ret("operator", "operator");
  }
  }
  // single line comment or simple operator?
  else if (ch == "-") {
  if (stream.eat("-")) {
  stream.skipToEnd();
  return ret("comment", "comment");
  }
  else {
  stream.eatWhile(isOperatorChar);
  return ret("operator", "operator");
  }
  }
  // pl/sql variable?
  else if (ch == "@" || ch == "$") {
  stream.eatWhile(/[\w\d\$_]/);
  return ret("word", "variable");
  }
  // is it a operator?
  else if (isOperatorChar.test(ch)) {
  stream.eatWhile(isOperatorChar);
  return ret("operator", "operator");
  }
  else {
  // get the whole word
  stream.eatWhile(/[\w\$_]/);
  // is it one of the listed keywords?
  if (keywords && keywords.propertyIsEnumerable(stream.current().toLowerCase())) return ret("keyword", "keyword");
  // is it one of the listed functions?
  if (functions && functions.propertyIsEnumerable(stream.current().toLowerCase())) return ret("keyword", "builtin");
  // is it one of the listed types?
  if (types && types.propertyIsEnumerable(stream.current().toLowerCase())) return ret("keyword", "variable-2");
  // is it one of the listed sqlplus keywords?
  if (sqlplus && sqlplus.propertyIsEnumerable(stream.current().toLowerCase())) return ret("keyword", "variable-3");
  // default: just a "word"
  return ret("word", "plsql-word");
  }
  }
 
  function tokenString(quote) {
  return function(stream, state) {
  var escaped = false, next, end = false;
  while ((next = stream.next()) != null) {
  if (next == quote && !escaped) {end = true; break;}
  escaped = !escaped && next == "\\";
  }
  if (end || !(escaped || multiLineStrings))
  state.tokenize = tokenBase;
  return ret("string", "plsql-string");
  };
  }
 
  function tokenComment(stream, state) {
  var maybeEnd = false, ch;
  while (ch = stream.next()) {
  if (ch == "/" && maybeEnd) {
  state.tokenize = tokenBase;
  break;
  }
  maybeEnd = (ch == "*");
  }
  return ret("comment", "plsql-comment");
  }
 
  // Interface
 
  return {
  startState: function(basecolumn) {
  return {
  tokenize: tokenBase,
  startOfLine: true
  };
  },
 
  token: function(stream, state) {
  if (stream.eatSpace()) return null;
  var style = state.tokenize(stream, state);
  return style;
  }
  };
  });
 
  (function() {
  function keywords(str) {
  var obj = {}, words = str.split(" ");
  for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
  return obj;
  }
  var cKeywords = "abort accept access add all alter and any array arraylen as asc assert assign at attributes audit " +
  "authorization avg " +
  "base_table begin between binary_integer body boolean by " +
  "case cast char char_base check close cluster clusters colauth column comment commit compress connect " +
  "connected constant constraint crash create current currval cursor " +
  "data_base database date dba deallocate debugoff debugon decimal declare default definition delay delete " +
  "desc digits dispose distinct do drop " +
  "else elsif enable end entry escape exception exception_init exchange exclusive exists exit external " +
  "fast fetch file for force form from function " +
  "generic goto grant group " +
  "having " +
  "identified if immediate in increment index indexes indicator initial initrans insert interface intersect " +
  "into is " +
  "key " +
  "level library like limited local lock log logging long loop " +
  "master maxextents maxtrans member minextents minus mislabel mode modify multiset " +
  "new next no noaudit nocompress nologging noparallel not nowait number_base " +
  "object of off offline on online only open option or order out " +
  "package parallel partition pctfree pctincrease pctused pls_integer positive positiven pragma primary prior " +
  "private privileges procedure public " +
  "raise range raw read rebuild record ref references refresh release rename replace resource restrict return " +
  "returning reverse revoke rollback row rowid rowlabel rownum rows run " +
  "savepoint schema segment select separate session set share snapshot some space split sql start statement " +
  "storage subtype successful synonym " +
  "tabauth table tables tablespace task terminate then to trigger truncate type " +
  "union unique unlimited unrecoverable unusable update use using " +
  "validate value values variable view views " +
  "when whenever where while with work";
 
  var cFunctions = "abs acos add_months ascii asin atan atan2 average " +
  "bfilename " +
  "ceil chartorowid chr concat convert cos cosh count " +
  "decode deref dual dump dup_val_on_index " +
  "empty error exp " +
  "false floor found " +
  "glb greatest " +
  "hextoraw " +
  "initcap instr instrb isopen " +
  "last_day least lenght lenghtb ln lower lpad ltrim lub " +
  "make_ref max min mod months_between " +
  "new_time next_day nextval nls_charset_decl_len nls_charset_id nls_charset_name nls_initcap nls_lower " +
  "nls_sort nls_upper nlssort no_data_found notfound null nvl " +
  "others " +
  "power " +
  "rawtohex reftohex round rowcount rowidtochar rpad rtrim " +
  "sign sin sinh soundex sqlcode sqlerrm sqrt stddev substr substrb sum sysdate " +
  "tan tanh to_char to_date to_label to_multi_byte to_number to_single_byte translate true trunc " +
  "uid upper user userenv " +
  "variance vsize";
 
  var cTypes = "bfile blob " +
  "character clob " +
  "dec " +
  "float " +
  "int integer " +
  "mlslabel " +
  "natural naturaln nchar nclob number numeric nvarchar2 " +
  "real rowtype " +
  "signtype smallint string " +
  "varchar varchar2";
 
  var cSqlplus = "appinfo arraysize autocommit autoprint autorecovery autotrace " +
  "blockterminator break btitle " +
  "cmdsep colsep compatibility compute concat copycommit copytypecheck " +
  "define describe " +
  "echo editfile embedded escape exec execute " +
  "feedback flagger flush " +
  "heading headsep " +
  "instance " +
  "linesize lno loboffset logsource long longchunksize " +
  "markup " +
  "native newpage numformat numwidth " +
  "pagesize pause pno " +
  "recsep recsepchar release repfooter repheader " +
  "serveroutput shiftinout show showmode size spool sqlblanklines sqlcase sqlcode sqlcontinue sqlnumber " +
  "sqlpluscompatibility sqlprefix sqlprompt sqlterminator suffix " +
  "tab term termout time timing trimout trimspool ttitle " +
  "underline " +
  "verify version " +
  "wrap";
 
  CodeMirror.defineMIME("text/x-plsql", {
  name: "plsql",
  keywords: keywords(cKeywords),
  functions: keywords(cFunctions),
  types: keywords(cTypes),
  sqlplus: keywords(cSqlplus)
  });
  }());
 
  The MIT License
 
  Copyright (c) 2010 Timothy Farrell
 
  Permission is hereby granted, free of charge, to any person obtaining a copy
  of this software and associated documentation files (the "Software"), to deal
  in the Software without restriction, including without limitation the rights
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  copies of the Software, and to permit persons to whom the Software is
  furnished to do so, subject to the following conditions:
 
  The above copyright notice and this permission notice shall be included in
  all copies or substantial portions of the Software.
 
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  THE SOFTWARE.
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Python mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="python.js"></script>
  <link rel="stylesheet" href="../../doc/docs.css">
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  </head>
  <body>
  <h1>CodeMirror: Python mode</h1>
 
  <div><textarea id="code" name="code">
  # Literals
  1234
  0.0e101
  .123
  0b01010011100
  0o01234567
  0x0987654321abcdef
  7
  2147483647
  3L
  79228162514264337593543950336L
  0x100000000L
  79228162514264337593543950336
  0xdeadbeef
  3.14j
  10.j
  10j
  .001j
  1e100j
  3.14e-10j
 
 
  # String Literals
  'For\''
  "God\""
  """so loved
  the world"""
  '''that he gave
  his only begotten\' '''
  'that whosoever believeth \
  in him'
  ''
 
  # Identifiers
  __a__
  a.b
  a.b.c
 
  # Operators
  + - * / % & | ^ ~ < >
  == != <= >= <> << >> // **
  and or not in is
 
  # Delimiters
  () [] {} , : ` = ; @ . # Note that @ and . require the proper context.
  += -= *= /= %= &= |= ^=
  //= >>= <<= **=
 
  # Keywords
  as assert break class continue def del elif else except
  finally for from global if import lambda pass raise
  return try while with yield
 
  # Python 2 Keywords (otherwise Identifiers)
  exec print
 
  # Python 3 Keywords (otherwise Identifiers)
  nonlocal
 
  # Types
  bool classmethod complex dict enumerate float frozenset int list object
  property reversed set slice staticmethod str super tuple type
 
  # Python 2 Types (otherwise Identifiers)
  basestring buffer file long unicode xrange
 
  # Python 3 Types (otherwise Identifiers)
  bytearray bytes filter map memoryview open range zip
 
  # Some Example code
  import os
  from package import ParentClass
 
  @nonsenseDecorator
  def doesNothing():
  pass
 
  class ExampleClass(ParentClass):
  @staticmethod
  def example(inputStr):
  a = list(inputStr)
  a.reverse()
  return ''.join(a)
 
  def __init__(self, mixin = 'Hello'):
  self.mixin = mixin
 
  </textarea></div>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  mode: {name: "python",
  version: 2,
  singleLineStringErrors: false},
  lineNumbers: true,
  indentUnit: 4,
  tabMode: "shift",
  matchBrackets: true
  });
  </script>
  <h2>Configuration Options:</h2>
  <ul>
  <li>version - 2/3 - The version of Python to recognize. Default is 2.</li>
  <li>singleLineStringErrors - true/false - If you have a single-line string that is not terminated at the end of the line, this will show subsequent lines as errors if true, otherwise it will consider the newline as the end of the string. Default is false.</li>
  </ul>
 
  <p><strong>MIME types defined:</strong> <code>text/x-python</code>.</p>
  </body>
  </html>
 
  CodeMirror.defineMode("python", function(conf, parserConf) {
  var ERRORCLASS = 'error';
 
  function wordRegexp(words) {
  return new RegExp("^((" + words.join(")|(") + "))\\b");
  }
 
  var singleOperators = new RegExp("^[\\+\\-\\*/%&|\\^~<>!]");
  var singleDelimiters = new RegExp('^[\\(\\)\\[\\]\\{\\}@,:`=;\\.]');
  var doubleOperators = new RegExp("^((==)|(!=)|(<=)|(>=)|(<>)|(<<)|(>>)|(//)|(\\*\\*))");
  var doubleDelimiters = new RegExp("^((\\+=)|(\\-=)|(\\*=)|(%=)|(/=)|(&=)|(\\|=)|(\\^=))");
  var tripleDelimiters = new RegExp("^((//=)|(>>=)|(<<=)|(\\*\\*=))");
  var identifiers = new RegExp("^[_A-Za-z][_A-Za-z0-9]*");
 
  var wordOperators = wordRegexp(['and', 'or', 'not', 'is', 'in']);
  var commonkeywords = ['as', 'assert', 'break', 'class', 'continue',
  'def', 'del', 'elif', 'else', 'except', 'finally',
  'for', 'from', 'global', 'if', 'import',
  'lambda', 'pass', 'raise', 'return',
  'try', 'while', 'with', 'yield'];
  var commontypes = ['bool', 'classmethod', 'complex', 'dict', 'enumerate',
  'float', 'frozenset', 'int', 'list', 'object',
  'property', 'reversed', 'set', 'slice', 'staticmethod',
  'str', 'super', 'tuple', 'type'];
  var py2 = {'types': ['basestring', 'buffer', 'file', 'long', 'unicode',
  'xrange'],
  'keywords': ['exec', 'print']};
  var py3 = {'types': ['bytearray', 'bytes', 'filter', 'map', 'memoryview',
  'open', 'range', 'zip'],
  'keywords': ['nonlocal']};
 
  if (!!parserConf.version && parseInt(parserConf.version, 10) === 3) {
  commonkeywords = commonkeywords.concat(py3.keywords);
  commontypes = commontypes.concat(py3.types);
  var stringPrefixes = new RegExp("^(([rb]|(br))?('{3}|\"{3}|['\"]))", "i");
  } else {
  commonkeywords = commonkeywords.concat(py2.keywords);
  commontypes = commontypes.concat(py2.types);
  var stringPrefixes = new RegExp("^(([rub]|(ur)|(br))?('{3}|\"{3}|['\"]))", "i");
  }
  var keywords = wordRegexp(commonkeywords);
  var types = wordRegexp(commontypes);
 
  var indentInfo = null;
 
  // tokenizers
  function tokenBase(stream, state) {
  // Handle scope changes
  if (stream.sol()) {
  var scopeOffset = state.scopes[0].offset;
  if (stream.eatSpace()) {
  var lineOffset = stream.indentation();
  if (lineOffset > scopeOffset) {
  indentInfo = 'indent';
  } else if (lineOffset < scopeOffset) {
  indentInfo = 'dedent';
  }
  return null;
  } else {
  if (scopeOffset > 0) {
  dedent(stream, state);
  }
  }
  }
  if (stream.eatSpace()) {
  return null;
  }
 
  var ch = stream.peek();
 
  // Handle Comments
  if (ch === '#') {
  stream.skipToEnd();
  return 'comment';
  }
 
  // Handle Number Literals
  if (stream.match(/^[0-9\.]/, false)) {
  var floatLiteral = false;
  // Floats
  if (stream.match(/^\d*\.\d+(e[\+\-]?\d+)?/i)) { floatLiteral = true; }
  if (stream.match(/^\d+\.\d*/)) { floatLiteral = true; }
  if (stream.match(/^\.\d+/)) { floatLiteral = true; }
  if (floatLiteral) {
  // Float literals may be "imaginary"
  stream.eat(/J/i);
  return 'number';
  }
  // Integers
  var intLiteral = false;
  // Hex
  if (stream.match(/^0x[0-9a-f]+/i)) { intLiteral = true; }
  // Binary
  if (stream.match(/^0b[01]+/i)) { intLiteral = true; }
  // Octal
  if (stream.match(/^0o[0-7]+/i)) { intLiteral = true; }
  // Decimal
  if (stream.match(/^[1-9]\d*(e[\+\-]?\d+)?/)) {
  // Decimal literals may be "imaginary"
  stream.eat(/J/i);
  // TODO - Can you have imaginary longs?
  intLiteral = true;
  }
  // Zero by itself with no other piece of number.
  if (stream.match(/^0(?![\dx])/i)) { intLiteral = true; }
  if (intLiteral) {
  // Integer literals may be "long"
  stream.eat(/L/i);
  return 'number';
  }
  }
 
  // Handle Strings
  if (stream.match(stringPrefixes)) {
  state.tokenize = tokenStringFactory(stream.current());
  return state.tokenize(stream, state);
  }
 
  // Handle operators and Delimiters
  if (stream.match(tripleDelimiters) || stream.match(doubleDelimiters)) {
  return null;
  }
  if (stream.match(doubleOperators)
  || stream.match(singleOperators)
  || stream.match(wordOperators)) {
  return 'operator';
  }
  if (stream.match(singleDelimiters)) {
  return null;
  }
 
  if (stream.match(types)) {
  return 'builtin';
  }
 
  if (stream.match(keywords)) {
  return 'keyword';
  }
 
  if (stream.match(identifiers)) {
  return 'variable';
  }
 
  // Handle non-detected items
  stream.next();
  return ERRORCLASS;
  }
 
  function tokenStringFactory(delimiter) {
  while ('rub'.indexOf(delimiter.charAt(0).toLowerCase()) >= 0) {
  delimiter = delimiter.substr(1);
  }
  var singleline = delimiter.length == 1;
  var OUTCLASS = 'string';
 
  return function tokenString(stream, state) {
  while (!stream.eol()) {
  stream.eatWhile(/[^'"\\]/);
  if (stream.eat('\\')) {
  stream.next();
  if (singleline && stream.eol()) {
  return OUTCLASS;
  }
  } else if (stream.match(delimiter)) {
  state.tokenize = tokenBase;
  return OUTCLASS;
  } else {
  stream.eat(/['"]/);
  }
  }
  if (singleline) {
  if (parserConf.singleLineStringErrors) {
  return ERRORCLASS;
  } else {
  state.tokenize = tokenBase;
  }
  }
  return OUTCLASS;
  };
  }
 
  function indent(stream, state, type) {
  type = type || 'py';
  var indentUnit = 0;
  if (type === 'py') {
  if (state.scopes[0].type !== 'py') {
  state.scopes[0].offset = stream.indentation();
  return;
  }
  for (var i = 0; i < state.scopes.length; ++i) {
  if (state.scopes[i].type === 'py') {
  indentUnit = state.scopes[i].offset + conf.indentUnit;
  break;
  }
  }
  } else {
  indentUnit = stream.column() + stream.current().length;
  }
  state.scopes.unshift({
  offset: indentUnit,
  type: type
  });
  }
 
  function dedent(stream, state, type) {
  type = type || 'py';
  if (state.scopes.length == 1) return;
  if (state.scopes[0].type === 'py') {
  var _indent = stream.indentation();
  var _indent_index = -1;
  for (var i = 0; i < state.scopes.length; ++i) {
  if (_indent === state.scopes[i].offset) {
  _indent_index = i;
  break;
  }
  }
  if (_indent_index === -1) {
  return true;
  }
  while (state.scopes[0].offset !== _indent) {
  state.scopes.shift();
  }
  return false
  } else {
  if (type === 'py') {
  state.scopes[0].offset = stream.indentation();
  return false;
  } else {
  if (state.scopes[0].type != type) {
  return true;
  }
  state.scopes.shift();
  return false;
  }
  }
  }
 
  function tokenLexer(stream, state) {
  indentInfo = null;
  var style = state.tokenize(stream, state);
  var current = stream.current();
 
  // Handle '.' connected identifiers
  if (current === '.') {
  style = state.tokenize(stream, state);
  current = stream.current();
  if (style === 'variable') {
  return 'variable';
  } else {
  return ERRORCLASS;
  }
  }
 
  // Handle decorators
  if (current === '@') {
  style = state.tokenize(stream, state);
  current = stream.current();
  if (style === 'variable'
  || current === '@staticmethod'
  || current === '@classmethod') {
  return 'meta';
  } else {
  return ERRORCLASS;
  }
  }
 
  // Handle scope changes.
  if (current === 'pass' || current === 'return') {
  state.dedent += 1;
  }
  if ((current === ':' && !state.lambda && state.scopes[0].type == 'py')
  || indentInfo === 'indent') {
  indent(stream, state);
  }
  var delimiter_index = '[({'.indexOf(current);
  if (delimiter_index !== -1) {
  indent(stream, state, '])}'.slice(delimiter_index, delimiter_index+1));
  }
  if (indentInfo === 'dedent') {
  if (dedent(stream, state)) {
  return ERRORCLASS;
  }
  }
  delimiter_index = '])}'.indexOf(current);
  if (delimiter_index !== -1) {
  if (dedent(stream, state, current)) {
  return ERRORCLASS;
  }
  }
  if (state.dedent > 0 && stream.eol() && state.scopes[0].type == 'py') {
  if (state.scopes.length > 1) state.scopes.shift();
  state.dedent -= 1;
  }
 
  return style;
  }
 
  var external = {
  startState: function(basecolumn) {
  return {
  tokenize: tokenBase,
  scopes: [{offset:basecolumn || 0, type:'py'}],
  lastToken: null,
  lambda: false,
  dedent: 0
  };
  },
 
  token: function(stream, state) {
  var style = tokenLexer(stream, state);
 
  state.lastToken = {style:style, content: stream.current()};
 
  if (stream.eol() && stream.lambda) {
  state.lambda = false;
  }
 
  return style;
  },
 
  indent: function(state, textAfter) {
  if (state.tokenize != tokenBase) {
  return 0;
  }
 
  return state.scopes[0].offset;
  }
 
  };
  return external;
  });
 
  CodeMirror.defineMIME("text/x-python", "python");
 
  Copyright (c) 2011, Ubalo, Inc.
  All rights reserved.
 
  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions are met:
  * Redistributions of source code must retain the above copyright
  notice, this list of conditions and the following disclaimer.
  * Redistributions in binary form must reproduce the above copyright
  notice, this list of conditions and the following disclaimer in the
  documentation and/or other materials provided with the distribution.
  * Neither the name of the Ubalo, Inc nor the names of its
  contributors may be used to endorse or promote products derived
  from this software without specific prior written permission.
 
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  DISCLAIMED. IN NO EVENT SHALL UBALO, INC BE LIABLE FOR ANY
  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: R mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="r.js"></script>
  <style>
  .CodeMirror { border-top: 1px solid silver; border-bottom: 1px solid silver; }
  .cm-s-default span.cm-semi { color: blue; font-weight: bold; }
  .cm-s-default span.cm-dollar { color: orange; font-weight: bold; }
  .cm-s-default span.cm-arrow { color: brown; }
  .cm-s-default span.cm-arg-is { color: brown; }
  </style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: R mode</h1>
  <form><textarea id="code" name="code">
  # Code from http://www.mayin.org/ajayshah/KB/R/
 
  # FIRST LEARN ABOUT LISTS --
  X = list(height=5.4, weight=54)
  print("Use default printing --")
  print(X)
  print("Accessing individual elements --")
  cat("Your height is ", X$height, " and your weight is ", X$weight, "\n")
 
  # FUNCTIONS --
  square <- function(x) {
  return(x*x)
  }
  cat("The square of 3 is ", square(3), "\n")
 
  # default value of the arg is set to 5.
  cube <- function(x=5) {
  return(x*x*x);
  }
  cat("Calling cube with 2 : ", cube(2), "\n") # will give 2^3
  cat("Calling cube : ", cube(), "\n") # will default to 5^3.
 
  # LEARN ABOUT FUNCTIONS THAT RETURN MULTIPLE OBJECTS --
  powers <- function(x) {
  parcel = list(x2=x*x, x3=x*x*x, x4=x*x*x*x);
  return(parcel);
  }
 
  X = powers(3);
  print("Showing powers of 3 --"); print(X);
 
  # WRITING THIS COMPACTLY (4 lines instead of 7)
 
  powerful <- function(x) {
  return(list(x2=x*x, x3=x*x*x, x4=x*x*x*x));
  }
  print("Showing powers of 3 --"); print(powerful(3));
 
  # In R, the last expression in a function is, by default, what is
  # returned. So you could equally just say:
  powerful <- function(x) {list(x2=x*x, x3=x*x*x, x4=x*x*x*x)}
  </textarea></form>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/x-rsrc</code>.</p>
 
  <p>Development of the CodeMirror R mode was kindly sponsored
  by <a href="http://ubalo.com/">Ubalo</a>, who hold
  the <a href="LICENSE">license</a>.</p>
 
  </body>
  </html>
 
  CodeMirror.defineMode("r", function(config) {
  function wordObj(str) {
  var words = str.split(" "), res = {};
  for (var i = 0; i < words.length; ++i) res[words[i]] = true;
  return res;
  }
  var atoms = wordObj("NULL NA Inf NaN NA_integer_ NA_real_ NA_complex_ NA_character_");
  var builtins = wordObj("list quote bquote eval return call parse deparse");
  var keywords = wordObj("if else repeat while function for in next break");
  var blockkeywords = wordObj("if else repeat while function for");
  var opChars = /[+\-*\/^<>=!&|~$:]/;
  var curPunc;
 
  function tokenBase(stream, state) {
  curPunc = null;
  var ch = stream.next();
  if (ch == "#") {
  stream.skipToEnd();
  return "comment";
  } else if (ch == "0" && stream.eat("x")) {
  stream.eatWhile(/[\da-f]/i);
  return "number";
  } else if (ch == "." && stream.eat(/\d/)) {
  stream.match(/\d*(?:e[+\-]?\d+)?/);
  return "number";
  } else if (/\d/.test(ch)) {
  stream.match(/\d*(?:\.\d+)?(?:e[+\-]\d+)?L?/);
  return "number";
  } else if (ch == "'" || ch == '"') {
  state.tokenize = tokenString(ch);
  return "string";
  } else if (ch == "." && stream.match(/.[.\d]+/)) {
  return "keyword";
  } else if (/[\w\.]/.test(ch) && ch != "_") {
  stream.eatWhile(/[\w\.]/);
  var word = stream.current();
  if (atoms.propertyIsEnumerable(word)) return "atom";
  if (keywords.propertyIsEnumerable(word)) {
  if (blockkeywords.propertyIsEnumerable(word)) curPunc = "block";
  return "keyword";
  }
  if (builtins.propertyIsEnumerable(word)) return "builtin";
  return "variable";
  } else if (ch == "%") {
  if (stream.skipTo("%")) stream.next();
  return "variable-2";
  } else if (ch == "<" && stream.eat("-")) {
  return "arrow";
  } else if (ch == "=" && state.ctx.argList) {
  return "arg-is";
  } else if (opChars.test(ch)) {
  if (ch == "$") return "dollar";
  stream.eatWhile(opChars);
  return "operator";
  } else if (/[\(\){}\[\];]/.test(ch)) {
  curPunc = ch;
  if (ch == ";") return "semi";
  return null;
  } else {
  return null;
  }
  }
 
  function tokenString(quote) {
  return function(stream, state) {
  if (stream.eat("\\")) {
  var ch = stream.next();
  if (ch == "x") stream.match(/^[a-f0-9]{2}/i);
  else if ((ch == "u" || ch == "U") && stream.eat("{") && stream.skipTo("}")) stream.next();
  else if (ch == "u") stream.match(/^[a-f0-9]{4}/i);
  else if (ch == "U") stream.match(/^[a-f0-9]{8}/i);
  else if (/[0-7]/.test(ch)) stream.match(/^[0-7]{1,2}/);
  return "string-2";
  } else {
  var next;
  while ((next = stream.next()) != null) {
  if (next == quote) { state.tokenize = tokenBase; break; }
  if (next == "\\") { stream.backUp(1); break; }
  }
  return "string";
  }
  };
  }
 
  function push(state, type, stream) {
  state.ctx = {type: type,
  indent: state.indent,
  align: null,
  column: stream.column(),
  prev: state.ctx};
  }
  function pop(state) {
  state.indent = state.ctx.indent;
  state.ctx = state.ctx.prev;
  }
 
  return {
  startState: function(base) {
  return {tokenize: tokenBase,
  ctx: {type: "top",
  indent: -config.indentUnit,
  align: false},
  indent: 0,
  afterIdent: false};
  },
 
  token: function(stream, state) {
  if (stream.sol()) {
  if (state.ctx.align == null) state.ctx.align = false;
  state.indent = stream.indentation();
  }
  if (stream.eatSpace()) return null;
  var style = state.tokenize(stream, state);
  if (style != "comment" && state.ctx.align == null) state.ctx.align = true;
 
  var ctype = state.ctx.type;
  if ((curPunc == ";" || curPunc == "{" || curPunc == "}") && ctype == "block") pop(state);
  if (curPunc == "{") push(state, "}", stream);
  else if (curPunc == "(") {
  push(state, ")", stream);
  if (state.afterIdent) state.ctx.argList = true;
  }
  else if (curPunc == "[") push(state, "]", stream);
  else if (curPunc == "block") push(state, "block", stream);
  else if (curPunc == ctype) pop(state);
  state.afterIdent = style == "variable" || style == "keyword";
  return style;
  },
 
  indent: function(state, textAfter) {
  if (state.tokenize != tokenBase) return 0;
  var firstChar = textAfter && textAfter.charAt(0), ctx = state.ctx,
  closing = firstChar == ctx.type;
  if (ctx.type == "block") return ctx.indent + (firstChar == "{" ? 0 : config.indentUnit);
  else if (ctx.align) return ctx.column + (closing ? 0 : 1);
  else return ctx.indent + (closing ? 0 : config.indentUnit);
  }
  };
  });
 
  CodeMirror.defineMIME("text/x-rsrc", "r");
 
  CodeMirror.defineMode("changes", function(config, modeConfig) {
  var headerSeperator = /^-+$/;
  var headerLine = /^(Mon|Tue|Wed|Thu|Fri|Sat|Sun) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) ?\d{1,2} \d{2}:\d{2}(:\d{2})? [A-Z]{3,4} \d{4} - /;
  var simpleEmail = /^[\w+.-]+@[\w.-]+/;
 
  return {
  token: function(stream) {
  if (stream.sol()) {
  if (stream.match(headerSeperator)) { return 'tag'; }
  if (stream.match(headerLine)) { return 'tag'; }
  }
  if (stream.match(simpleEmail)) { return 'string'; }
  stream.next();
  return null;
  }
  };
  });
 
  CodeMirror.defineMIME("text/x-rpm-changes", "changes");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: RPM changes mode</title>
  <link rel="stylesheet" href="../../../lib/codemirror.css">
  <script src="../../../lib/codemirror.js"></script>
  <script src="changes.js"></script>
  <link rel="stylesheet" href="../../../doc/docs.css">
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  </head>
  <body>
  <h1>CodeMirror: RPM changes mode</h1>
 
  <div><textarea id="code" name="code">
  -------------------------------------------------------------------
  Tue Oct 18 13:58:40 UTC 2011 - misterx@example.com
 
  - Update to r60.3
  - Fixes bug in the reflect package
  * disallow Interface method on Value obtained via unexported name
 
  -------------------------------------------------------------------
  Thu Oct 6 08:14:24 UTC 2011 - misterx@example.com
 
  - Update to r60.2
  - Fixes memory leak in certain map types
 
  -------------------------------------------------------------------
  Wed Oct 5 14:34:10 UTC 2011 - misterx@example.com
 
  - Tweaks for gdb debugging
  - go.spec changes:
  - move %go_arch definition to %prep section
  - pass correct location of go specific gdb pretty printer and
  functions to cpp as HOST_EXTRA_CFLAGS macro
  - install go gdb functions & printer
  - gdb-printer.patch
  - patch linker (src/cmd/ld/dwarf.c) to emit correct location of go
  gdb functions and pretty printer
  </textarea></div>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  mode: {name: "changes"},
  lineNumbers: true,
  indentUnit: 4,
  tabMode: "shift",
  matchBrackets: true
  });
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/x-rpm-changes</code>.</p>
  </body>
  </html>
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: RPM spec mode</title>
  <link rel="stylesheet" href="../../../lib/codemirror.css">
  <script src="../../../lib/codemirror.js"></script>
  <script src="spec.js"></script>
  <link rel="stylesheet" href="spec.css">
  <link rel="stylesheet" href="../../../doc/docs.css">
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  </head>
  <body>
  <h1>CodeMirror: RPM spec mode</h1>
 
  <div><textarea id="code" name="code">
  #
  # spec file for package minidlna
  #
  # Copyright (c) 2011, Sascha Peilicke <saschpe@gmx.de>
  #
  # All modifications and additions to the file contributed by third parties
  # remain the property of their copyright owners, unless otherwise agreed
  # upon. The license for this file, and modifications and additions to the
  # file, is the same license as for the pristine package itself (unless the
  # license for the pristine package is not an Open Source License, in which
  # case the license is the MIT License). An "Open Source License" is a
  # license that conforms to the Open Source Definition (Version 1.9)
  # published by the Open Source Initiative.
 
 
  Name: libupnp6
  Version: 1.6.13
  Release: 0
  Summary: Portable Universal Plug and Play (UPnP) SDK
  Group: System/Libraries
  License: BSD-3-Clause
  Url: http://sourceforge.net/projects/pupnp/
  Source0: http://downloads.sourceforge.net/pupnp/libupnp-%{version}.tar.bz2
  BuildRoot: %{_tmppath}/%{name}-%{version}-build
 
  %description
  The portable Universal Plug and Play (UPnP) SDK provides support for building
  UPnP-compliant control points, devices, and bridges on several operating
  systems.
 
  %package -n libupnp-devel
  Summary: Portable Universal Plug and Play (UPnP) SDK
  Group: Development/Libraries/C and C++
  Provides: pkgconfig(libupnp)
  Requires: %{name} = %{version}
 
  %description -n libupnp-devel
  The portable Universal Plug and Play (UPnP) SDK provides support for building
  UPnP-compliant control points, devices, and bridges on several operating
  systems.
 
  %prep
  %setup -n libupnp-%{version}
 
  %build
  %configure --disable-static
  make %{?_smp_mflags}
 
  %install
  %makeinstall
  find %{buildroot} -type f -name '*.la' -exec rm -f {} ';'
 
  %post -p /sbin/ldconfig
 
  %postun -p /sbin/ldconfig
 
  %files
  %defattr(-,root,root,-)
  %doc ChangeLog NEWS README TODO
  %{_libdir}/libixml.so.*
  %{_libdir}/libthreadutil.so.*
  %{_libdir}/libupnp.so.*
 
  %files -n libupnp-devel
  %defattr(-,root,root,-)
  %{_libdir}/pkgconfig/libupnp.pc
  %{_libdir}/libixml.so
  %{_libdir}/libthreadutil.so
  %{_libdir}/libupnp.so
  %{_includedir}/upnp/
 
  %changelog</textarea></div>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  mode: {name: "spec"},
  lineNumbers: true,
  indentUnit: 4,
  matchBrackets: true
  });
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/x-rpm-spec</code>.</p>
  </body>
  </html>
 
  .cm-s-default span.cm-preamble {color: #b26818; font-weight: bold;}
  .cm-s-default span.cm-macro {color: #b218b2;}
  .cm-s-default span.cm-section {color: green; font-weight: bold;}
  .cm-s-default span.cm-script {color: red;}
  .cm-s-default span.cm-issue {color: yellow;}
 
  // Quick and dirty spec file highlighting
 
  CodeMirror.defineMode("spec", function(config, modeConfig) {
  var arch = /^(i386|i586|i686|x86_64|ppc64|ppc|ia64|s390x|s390|sparc64|sparcv9|sparc|noarch|alphaev6|alpha|hppa|mipsel)/;
 
  var preamble = /^(Name|Version|Release|License|Summary|Url|Group|Source|BuildArch|BuildRequires|BuildRoot|AutoReqProv|Provides|Requires(\(\w+\))?|Obsoletes|Conflicts|Recommends|Source\d*|Patch\d*|ExclusiveArch|NoSource|Supplements):/;
  var section = /^%(debug_package|package|description|prep|build|install|files|clean|changelog|preun|postun|pre|post|triggerin|triggerun|pretrans|posttrans|verifyscript|check|triggerpostun|triggerprein|trigger)/;
  var control_flow_complex = /^%(ifnarch|ifarch|if)/; // rpm control flow macros
  var control_flow_simple = /^%(else|endif)/; // rpm control flow macros
  var operators = /^(\!|\?|\<\=|\<|\>\=|\>|\=\=|\&\&|\|\|)/; // operators in control flow macros
 
  return {
  startState: function () {
  return {
  controlFlow: false,
  macroParameters: false,
  section: false,
  };
  },
  token: function (stream, state) {
  var ch = stream.peek();
  if (ch == "#") { stream.skipToEnd(); return "comment"; }
 
  if (stream.sol()) {
  if (stream.match(preamble)) { return "preamble"; }
  if (stream.match(section)) { return "section"; }
  }
 
  if (stream.match(/^\$\w+/)) { return "def"; } // Variables like '$RPM_BUILD_ROOT'
  if (stream.match(/^\$\{\w+\}/)) { return "def"; } // Variables like '${RPM_BUILD_ROOT}'
 
  if (stream.match(control_flow_simple)) { return "keyword"; }
  if (stream.match(control_flow_complex)) {
  state.controlFlow = true;
  return "keyword";
  }
  if (state.controlFlow) {
  if (stream.match(operators)) { return "operator"; }
  if (stream.match(/^(\d+)/)) { return "number"; }
  if (stream.eol()) { state.controlFlow = false; }
  }
 
  if (stream.match(arch)) { return "number"; }
 
  // Macros like '%make_install' or '%attr(0775,root,root)'
  if (stream.match(/^%[\w]+/)) {
  if (stream.match(/^\(/)) { state.macroParameters = true; }
  return "macro";
  }
  if (state.macroParameters) {
  if (stream.match(/^\d+/)) { return "number";}
  if (stream.match(/^\)/)) {
  state.macroParameters = false;
  return "macro";
  }
  }
  if (stream.match(/^%\{\??[\w \-]+\}/)) { return "macro"; } // Macros like '%{defined fedora}'
 
  //TODO: Include bash script sub-parser (CodeMirror supports that)
  stream.next();
  return null;
  }
  };
  });
 
  CodeMirror.defineMIME("text/x-rpm-spec", "spec");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: reStructuredText mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="rst.js"></script>
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: reStructuredText mode</h1>
 
  <form><textarea id="code" name="code">
  .. This is an excerpt from Sphinx documentation: http://sphinx.pocoo.org/_sources/rest.txt
 
  .. highlightlang:: rest
 
  .. _rst-primer:
 
  reStructuredText Primer
  =======================
 
  This section is a brief introduction to reStructuredText (reST) concepts and
  syntax, intended to provide authors with enough information to author documents
  productively. Since reST was designed to be a simple, unobtrusive markup
  language, this will not take too long.
 
  .. seealso::
 
  The authoritative `reStructuredText User Documentation
  &lt;http://docutils.sourceforge.net/rst.html&gt;`_. The "ref" links in this
  document link to the description of the individual constructs in the reST
  reference.
 
 
  Paragraphs
  ----------
 
  The paragraph (:duref:`ref &lt;paragraphs&gt;`) is the most basic block in a reST
  document. Paragraphs are simply chunks of text separated by one or more blank
  lines. As in Python, indentation is significant in reST, so all lines of the
  same paragraph must be left-aligned to the same level of indentation.
 
 
  .. _inlinemarkup:
 
  Inline markup
  -------------
 
  The standard reST inline markup is quite simple: use
 
  * one asterisk: ``*text*`` for emphasis (italics),
  * two asterisks: ``**text**`` for strong emphasis (boldface), and
  * backquotes: ````text```` for code samples.
 
  If asterisks or backquotes appear in running text and could be confused with
  inline markup delimiters, they have to be escaped with a backslash.
 
  Be aware of some restrictions of this markup:
 
  * it may not be nested,
  * content may not start or end with whitespace: ``* text*`` is wrong,
  * it must be separated from surrounding text by non-word characters. Use a
  backslash escaped space to work around that: ``thisis\ *one*\ word``.
 
  These restrictions may be lifted in future versions of the docutils.
 
  reST also allows for custom "interpreted text roles"', which signify that the
  enclosed text should be interpreted in a specific way. Sphinx uses this to
  provide semantic markup and cross-referencing of identifiers, as described in
  the appropriate section. The general syntax is ``:rolename:`content```.
 
  Standard reST provides the following roles:
 
  * :durole:`emphasis` -- alternate spelling for ``*emphasis*``
  * :durole:`strong` -- alternate spelling for ``**strong**``
  * :durole:`literal` -- alternate spelling for ````literal````
  * :durole:`subscript` -- subscript text
  * :durole:`superscript` -- superscript text
  * :durole:`title-reference` -- for titles of books, periodicals, and other
  materials
 
  See :ref:`inline-markup` for roles added by Sphinx.
 
 
  Lists and Quote-like blocks
  ---------------------------
 
  List markup (:duref:`ref &lt;bullet-lists&gt;`) is natural: just place an asterisk at
  the start of a paragraph and indent properly. The same goes for numbered lists;
  they can also be autonumbered using a ``#`` sign::
 
  * This is a bulleted list.
  * It has two items, the second
  item uses two lines.
 
  1. This is a numbered list.
  2. It has two items too.
 
  #. This is a numbered list.
  #. It has two items too.
 
 
  Nested lists are possible, but be aware that they must be separated from the
  parent list items by blank lines::
 
  * this is
  * a list
 
  * with a nested list
  * and some subitems
 
  * and here the parent list continues
 
  Definition lists (:duref:`ref &lt;definition-lists&gt;`) are created as follows::
 
  term (up to a line of text)
  Definition of the term, which must be indented
 
  and can even consist of multiple paragraphs
 
  next term
  Description.
 
  Note that the term cannot have more than one line of text.
 
  Quoted paragraphs (:duref:`ref &lt;block-quotes&gt;`) are created by just indenting
  them more than the surrounding paragraphs.
 
  Line blocks (:duref:`ref &lt;line-blocks&gt;`) are a way of preserving line breaks::
 
  | These lines are
  | broken exactly like in
  | the source file.
 
  There are also several more special blocks available:
 
  * field lists (:duref:`ref &lt;field-lists&gt;`)
  * option lists (:duref:`ref &lt;option-lists&gt;`)
  * quoted literal blocks (:duref:`ref &lt;quoted-literal-blocks&gt;`)
  * doctest blocks (:duref:`ref &lt;doctest-blocks&gt;`)
 
 
  Source Code
  -----------
 
  Literal code blocks (:duref:`ref &lt;literal-blocks&gt;`) are introduced by ending a
  paragraph with the special marker ``::``. The literal block must be indented
  (and, like all paragraphs, separated from the surrounding ones by blank lines)::
 
  This is a normal text paragraph. The next paragraph is a code sample::
 
  It is not processed in any way, except
  that the indentation is removed.
 
  It can span multiple lines.
 
  This is a normal text paragraph again.
 
  The handling of the ``::`` marker is smart:
 
  * If it occurs as a paragraph of its own, that paragraph is completely left
  out of the document.
  * If it is preceded by whitespace, the marker is removed.
  * If it is preceded by non-whitespace, the marker is replaced by a single
  colon.
 
  That way, the second sentence in the above example's first paragraph would be
  rendered as "The next paragraph is a code sample:".
 
 
  .. _rst-tables:
 
  Tables
  ------
 
  Two forms of tables are supported. For *grid tables* (:duref:`ref
  &lt;grid-tables&gt;`), you have to "paint" the cell grid yourself. They look like
  this::
 
  +------------------------+------------+----------+----------+
  | Header row, column 1 | Header 2 | Header 3 | Header 4 |
  | (header rows optional) | | | |
  +========================+============+==========+==========+
  | body row 1, column 1 | column 2 | column 3 | column 4 |
  +------------------------+------------+----------+----------+
  | body row 2 | ... | ... | |
  +------------------------+------------+----------+----------+
 
  *Simple tables* (:duref:`ref &lt;simple-tables&gt;`) are easier to write, but
  limited: they must contain more than one row, and the first column cannot
  contain multiple lines. They look like this::
 
  ===== ===== =======
  A B A and B
  ===== ===== =======
  False False False
  True False False
  False True False
  True True True
  ===== ===== =======
 
 
  Hyperlinks
  ----------
 
  External links
  ^^^^^^^^^^^^^^
 
  Use ```Link text &lt;http://example.com/&gt;`_`` for inline web links. If the link
  text should be the web address, you don't need special markup at all, the parser
  finds links and mail addresses in ordinary text.
 
  You can also separate the link and the target definition (:duref:`ref
  &lt;hyperlink-targets&gt;`), like this::
 
  This is a paragraph that contains `a link`_.
 
  .. _a link: http://example.com/
 
 
  Internal links
  ^^^^^^^^^^^^^^
 
  Internal linking is done via a special reST role provided by Sphinx, see the
  section on specific markup, :ref:`ref-role`.
 
 
  Sections
  --------
 
  Section headers (:duref:`ref &lt;sections&gt;`) are created by underlining (and
  optionally overlining) the section title with a punctuation character, at least
  as long as the text::
 
  =================
  This is a heading
  =================
 
  Normally, there are no heading levels assigned to certain characters as the
  structure is determined from the succession of headings. However, for the
  Python documentation, this convention is used which you may follow:
 
  * ``#`` with overline, for parts
  * ``*`` with overline, for chapters
  * ``=``, for sections
  * ``-``, for subsections
  * ``^``, for subsubsections
  * ``"``, for paragraphs
 
  Of course, you are free to use your own marker characters (see the reST
  documentation), and use a deeper nesting level, but keep in mind that most
  target formats (HTML, LaTeX) have a limited supported nesting depth.
 
 
  Explicit Markup
  ---------------
 
  "Explicit markup" (:duref:`ref &lt;explicit-markup-blocks&gt;`) is used in reST for
  most constructs that need special handling, such as footnotes,
  specially-highlighted paragraphs, comments, and generic directives.
 
  An explicit markup block begins with a line starting with ``..`` followed by
  whitespace and is terminated by the next paragraph at the same level of
  indentation. (There needs to be a blank line between explicit markup and normal
  paragraphs. This may all sound a bit complicated, but it is intuitive enough
  when you write it.)
 
 
  .. _directives:
 
  Directives
  ----------
 
  A directive (:duref:`ref &lt;directives&gt;`) is a generic block of explicit markup.
  Besides roles, it is one of the extension mechanisms of reST, and Sphinx makes
  heavy use of it.
 
  Docutils supports the following directives:
 
  * Admonitions: :dudir:`attention`, :dudir:`caution`, :dudir:`danger`,
  :dudir:`error`, :dudir:`hint`, :dudir:`important`, :dudir:`note`,
  :dudir:`tip`, :dudir:`warning` and the generic :dudir:`admonition`.
  (Most themes style only "note" and "warning" specially.)
 
  * Images:
 
  - :dudir:`image` (see also Images_ below)
  - :dudir:`figure` (an image with caption and optional legend)
 
  * Additional body elements:
 
  - :dudir:`contents` (a local, i.e. for the current file only, table of
  contents)
  - :dudir:`container` (a container with a custom class, useful to generate an
  outer ``&lt;div&gt;`` in HTML)
  - :dudir:`rubric` (a heading without relation to the document sectioning)
  - :dudir:`topic`, :dudir:`sidebar` (special highlighted body elements)
  - :dudir:`parsed-literal` (literal block that supports inline markup)
  - :dudir:`epigraph` (a block quote with optional attribution line)
  - :dudir:`highlights`, :dudir:`pull-quote` (block quotes with their own
  class attribute)
  - :dudir:`compound` (a compound paragraph)
 
  * Special tables:
 
  - :dudir:`table` (a table with title)
  - :dudir:`csv-table` (a table generated from comma-separated values)
  - :dudir:`list-table` (a table generated from a list of lists)
 
  * Special directives:
 
  - :dudir:`raw` (include raw target-format markup)
  - :dudir:`include` (include reStructuredText from another file)
  -- in Sphinx, when given an absolute include file path, this directive takes
  it as relative to the source directory
  - :dudir:`class` (assign a class attribute to the next element) [1]_
 
  * HTML specifics:
 
  - :dudir:`meta` (generation of HTML ``&lt;meta&gt;`` tags)
  - :dudir:`title` (override document title)
 
  * Influencing markup:
 
  - :dudir:`default-role` (set a new default role)
  - :dudir:`role` (create a new role)
 
  Since these are only per-file, better use Sphinx' facilities for setting the
  :confval:`default_role`.
 
  Do *not* use the directives :dudir:`sectnum`, :dudir:`header` and
  :dudir:`footer`.
 
  Directives added by Sphinx are described in :ref:`sphinxmarkup`.
 
  Basically, a directive consists of a name, arguments, options and content. (Keep
  this terminology in mind, it is used in the next chapter describing custom
  directives.) Looking at this example, ::
 
  .. function:: foo(x)
  foo(y, z)
  :module: some.module.name
 
  Return a line of text input from the user.
 
  ``function`` is the directive name. It is given two arguments here, the
  remainder of the first line and the second line, as well as one option
  ``module`` (as you can see, options are given in the lines immediately following
  the arguments and indicated by the colons). Options must be indented to the
  same level as the directive content.
 
  The directive content follows after a blank line and is indented relative to the
  directive start.
 
 
  Images
  ------
 
  reST supports an image directive (:dudir:`ref &lt;image&gt;`), used like so::
 
  .. image:: gnu.png
  (options)
 
  When used within Sphinx, the file name given (here ``gnu.png``) must either be
  relative to the source file, or absolute which means that they are relative to
  the top source directory. For example, the file ``sketch/spam.rst`` could refer
  to the image ``images/spam.png`` as ``../images/spam.png`` or
  ``/images/spam.png``.
 
  Sphinx will automatically copy image files over to a subdirectory of the output
  directory on building (e.g. the ``_static`` directory for HTML output.)
 
  Interpretation of image size options (``width`` and ``height``) is as follows:
  if the size has no unit or the unit is pixels, the given size will only be
  respected for output channels that support pixels (i.e. not in LaTeX output).
  Other units (like ``pt`` for points) will be used for HTML and LaTeX output.
 
  Sphinx extends the standard docutils behavior by allowing an asterisk for the
  extension::
 
  .. image:: gnu.*
 
  Sphinx then searches for all images matching the provided pattern and determines
  their type. Each builder then chooses the best image out of these candidates.
  For instance, if the file name ``gnu.*`` was given and two files :file:`gnu.pdf`
  and :file:`gnu.png` existed in the source tree, the LaTeX builder would choose
  the former, while the HTML builder would prefer the latter.
 
  .. versionchanged:: 0.4
  Added the support for file names ending in an asterisk.
 
  .. versionchanged:: 0.6
  Image paths can now be absolute.
 
 
  Footnotes
  ---------
 
  For footnotes (:duref:`ref &lt;footnotes&gt;`), use ``[#name]_`` to mark the footnote
  location, and add the footnote body at the bottom of the document after a
  "Footnotes" rubric heading, like so::
 
  Lorem ipsum [#f1]_ dolor sit amet ... [#f2]_
 
  .. rubric:: Footnotes
 
  .. [#f1] Text of the first footnote.
  .. [#f2] Text of the second footnote.
 
  You can also explicitly number the footnotes (``[1]_``) or use auto-numbered
  footnotes without names (``[#]_``).
 
 
  Citations
  ---------
 
  Standard reST citations (:duref:`ref &lt;citations&gt;`) are supported, with the
  additional feature that they are "global", i.e. all citations can be referenced
  from all files. Use them like so::
 
  Lorem ipsum [Ref]_ dolor sit amet.
 
  .. [Ref] Book or article reference, URL or whatever.
 
  Citation usage is similar to footnote usage, but with a label that is not
  numeric or begins with ``#``.
 
 
  Substitutions
  -------------
 
  reST supports "substitutions" (:duref:`ref &lt;substitution-definitions&gt;`), which
  are pieces of text and/or markup referred to in the text by ``|name|``. They
  are defined like footnotes with explicit markup blocks, like this::
 
  .. |name| replace:: replacement *text*
 
  or this::
 
  .. |caution| image:: warning.png
  :alt: Warning!
 
  See the :duref:`reST reference for substitutions &lt;substitution-definitions&gt;`
  for details.
 
  If you want to use some substitutions for all documents, put them into
  :confval:`rst_prolog` or put them into a separate file and include it into all
  documents you want to use them in, using the :rst:dir:`include` directive. (Be
  sure to give the include file a file name extension differing from that of other
  source files, to avoid Sphinx finding it as a standalone document.)
 
  Sphinx defines some default substitutions, see :ref:`default-substitutions`.
 
 
  Comments
  --------
 
  Every explicit markup block which isn't a valid markup construct (like the
  footnotes above) is regarded as a comment (:duref:`ref &lt;comments&gt;`). For
  example::
 
  .. This is a comment.
 
  You can indent text after a comment start to form multiline comments::
 
  ..
  This whole indented block
  is a comment.
 
  Still in the comment.
 
 
  Source encoding
  ---------------
 
  Since the easiest way to include special characters like em dashes or copyright
  signs in reST is to directly write them as Unicode characters, one has to
  specify an encoding. Sphinx assumes source files to be encoded in UTF-8 by
  default; you can change this with the :confval:`source_encoding` config value.
 
 
  Gotchas
  -------
 
  There are some problems one commonly runs into while authoring reST documents:
 
  * **Separation of inline markup:** As said above, inline markup spans must be
  separated from the surrounding text by non-word characters, you have to use a
  backslash-escaped space to get around that. See `the reference
  &lt;http://docutils.sf.net/docs/ref/rst/restructuredtext.html#inline-markup&gt;`_
  for the details.
 
  * **No nested inline markup:** Something like ``*see :func:`foo`*`` is not
  possible.
 
 
  .. rubric:: Footnotes
 
  .. [1] When the default domain contains a :rst:dir:`class` directive, this directive
  will be shadowed. Therefore, Sphinx re-exports it as :rst:dir:`rst-class`.
  </textarea></form>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  });
  </script>
  <p>The reStructuredText mode supports one configuration parameter:</p>
  <dl>
  <dt><code>verbatim (string)</code></dt>
  <dd>A name or MIME type of a mode that will be used for highlighting
  verbatim blocks. By default, reStructuredText mode uses uniform color
  for whole block of verbatim text if no mode is given.</dd>
  </dl>
  <p>If <code>python</code> mode is available,
  it will be used for highlighting blocks containing Python/IPython terminal
  sessions (blocks starting with <code>&gt;&gt;&gt;</code> (for Python) or
  <code>In [num]:</code> (for IPython).
 
  <p><strong>MIME types defined:</strong> <code>text/x-rst</code>.</p>
  </body>
  </html>
 
 
  CodeMirror.defineMode('rst', function(config, options) {
  function setState(state, fn, ctx) {
  state.fn = fn;
  setCtx(state, ctx);
  }
 
  function setCtx(state, ctx) {
  state.ctx = ctx || {};
  }
 
  function setNormal(state, ch) {
  if (ch && (typeof ch !== 'string')) {
  var str = ch.current();
  ch = str[str.length-1];
  }
 
  setState(state, normal, {back: ch});
  }
 
  function hasMode(mode) {
  if (mode) {
  var modes = CodeMirror.listModes();
 
  for (var i in modes) {
  if (modes[i] == mode) {
  return true;
  }
  }
  }
 
  return false;
  }
 
  function getMode(mode) {
  if (hasMode(mode)) {
  return CodeMirror.getMode(config, mode);
  } else {
  return null;
  }
  }
 
  var verbatimMode = getMode(options.verbatim);
  var pythonMode = getMode('python');
 
  var reSection = /^[!"#$%&'()*+,-./:;<=>?@[\\\]^_`{|}~]/;
  var reDirective = /^\s*\w([-:.\w]*\w)?::(\s|$)/;
  var reHyperlink = /^\s*_[\w-]+:(\s|$)/;
  var reFootnote = /^\s*\[(\d+|#)\](\s|$)/;
  var reCitation = /^\s*\[[A-Za-z][\w-]*\](\s|$)/;
  var reFootnoteRef = /^\[(\d+|#)\]_/;
  var reCitationRef = /^\[[A-Za-z][\w-]*\]_/;
  var reDirectiveMarker = /^\.\.(\s|$)/;
  var reVerbatimMarker = /^::\s*$/;
  var rePreInline = /^[-\s"([{</:]/;
  var rePostInline = /^[-\s`'")\]}>/:.,;!?\\_]/;
  var reEnumeratedList = /^\s*((\d+|[A-Za-z#])[.)]|\((\d+|[A-Z-a-z#])\))\s/;
  var reBulletedList = /^\s*[-\+\*]\s/;
  var reExamples = /^\s+(>>>|In \[\d+\]:)\s/;
 
  function normal(stream, state) {
  var ch, sol, i;
 
  if (stream.eat(/\\/)) {
  ch = stream.next();
  setNormal(state, ch);
  return null;
  }
 
  sol = stream.sol();
 
  if (sol && (ch = stream.eat(reSection))) {
  for (i = 0; stream.eat(ch); i++);
 
  if (i >= 3 && stream.match(/^\s*$/)) {
  setNormal(state, null);
  return 'header';
  } else {
  stream.backUp(i + 1);
  }
  }
 
  if (sol && stream.match(reDirectiveMarker)) {
  if (!stream.eol()) {
  setState(state, directive);
  }
  return 'meta';
  }
 
  if (stream.match(reVerbatimMarker)) {
  if (!verbatimMode) {
  setState(state, verbatim);
  } else {
  var mode = verbatimMode;
 
  setState(state, verbatim, {
  mode: mode,
  local: mode.startState()
  });
  }
  return 'meta';
  }
 
  if (sol && stream.match(reExamples, false)) {
  if (!pythonMode) {
  setState(state, verbatim);
  return 'meta';
  } else {
  var mode = pythonMode;
 
  setState(state, verbatim, {
  mode: mode,
  local: mode.startState()
  });
 
  return null;
  }
  }
 
  function testBackward(re) {
  return sol || !state.ctx.back || re.test(state.ctx.back);
  }
 
  function testForward(re) {
  return stream.eol() || stream.match(re, false);
  }
 
  function testInline(re) {
  return stream.match(re) && testBackward(/\W/) && testForward(/\W/);
  }
 
  if (testInline(reFootnoteRef)) {
  setNormal(state, stream);
  return 'footnote';
  }
 
  if (testInline(reCitationRef)) {
  setNormal(state, stream);
  return 'citation';
  }
 
  ch = stream.next();
 
  if (testBackward(rePreInline)) {
  if ((ch === ':' || ch === '|') && stream.eat(/\S/)) {
  var token;
 
  if (ch === ':') {
  token = 'builtin';
  } else {
  token = 'atom';
  }
 
  setState(state, inline, {
  ch: ch,
  wide: false,
  prev: null,
  token: token
  });
 
  return token;
  }
 
  if (ch === '*' || ch === '`') {
  var orig = ch,
  wide = false;
 
  ch = stream.next();
 
  if (ch == orig) {
  wide = true;
  ch = stream.next();
  }
 
  if (ch && !/\s/.test(ch)) {
  var token;
 
  if (orig === '*') {
  token = wide ? 'strong' : 'em';
  } else {
  token = wide ? 'string' : 'string-2';
  }
 
  setState(state, inline, {
  ch: orig, // inline() has to know what to search for
  wide: wide, // are we looking for `ch` or `chch`
  prev: null, // terminator must not be preceeded with whitespace
  token: token // I don't want to recompute this all the time
  });
 
  return token;
  }
  }
  }
 
  setNormal(state, ch);
  return null;
  }
 
  function inline(stream, state) {
  var ch = stream.next(),
  token = state.ctx.token;
 
  function finish(ch) {
  state.ctx.prev = ch;
  return token;
  }
 
  if (ch != state.ctx.ch) {
  return finish(ch);
  }
 
  if (/\s/.test(state.ctx.prev)) {
  return finish(ch);
  }
 
  if (state.ctx.wide) {
  ch = stream.next();
 
  if (ch != state.ctx.ch) {
  return finish(ch);
  }
  }
 
  if (!stream.eol() && !rePostInline.test(stream.peek())) {
  if (state.ctx.wide) {
  stream.backUp(1);
  }
 
  return finish(ch);
  }
 
  setState(state, normal);
  setNormal(state, ch);
 
  return token;
  }
 
  function directive(stream, state) {
  var token = null;
 
  if (stream.match(reDirective)) {
  token = 'attribute';
  } else if (stream.match(reHyperlink)) {
  token = 'link';
  } else if (stream.match(reFootnote)) {
  token = 'quote';
  } else if (stream.match(reCitation)) {
  token = 'quote';
  } else {
  stream.eatSpace();
 
  if (stream.eol()) {
  setNormal(state, stream);
  return null;
  } else {
  stream.skipToEnd();
  setState(state, comment);
  return 'comment';
  }
  }
 
  // FIXME this is unreachable
  setState(state, body, {start: true});
  return token;
  }
 
  function body(stream, state) {
  var token = 'body';
 
  if (!state.ctx.start || stream.sol()) {
  return block(stream, state, token);
  }
 
  stream.skipToEnd();
  setCtx(state);
 
  return token;
  }
 
  function comment(stream, state) {
  return block(stream, state, 'comment');
  }
 
  function verbatim(stream, state) {
  if (!verbatimMode) {
  return block(stream, state, 'meta');
  } else {
  if (stream.sol()) {
  if (!stream.eatSpace()) {
  setNormal(state, stream);
  }
 
  return null;
  }
 
  return verbatimMode.token(stream, state.ctx.local);
  }
  }
 
  function block(stream, state, token) {
  if (stream.eol() || stream.eatSpace()) {
  stream.skipToEnd();
  return token;
  } else {
  setNormal(state, stream);
  return null;
  }
  }
 
  return {
  startState: function() {
  return {fn: normal, ctx: {}};
  },
 
  copyState: function(state) {
  return {fn: state.fn, ctx: state.ctx};
  },
 
  token: function(stream, state) {
  var token = state.fn(stream, state);
  return token;
  }
  };
  });
 
  CodeMirror.defineMIME("text/x-rst", "rst");
 
  Copyright (c) 2011, Ubalo, Inc.
  All rights reserved.
 
  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions are met:
  * Redistributions of source code must retain the above copyright
  notice, this list of conditions and the following disclaimer.
  * Redistributions in binary form must reproduce the above copyright
  notice, this list of conditions and the following disclaimer in the
  documentation and/or other materials provided with the distribution.
  * Neither the name of the Ubalo, Inc. nor the names of its
  contributors may be used to endorse or promote products derived
  from this software without specific prior written permission.
 
  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  DISCLAIMED. IN NO EVENT SHALL UBALO, INC BE LIABLE FOR ANY
  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Ruby mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="ruby.js"></script>
  <style>
  .CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}
  .cm-s-default span.cm-arrow { color: red; }
  </style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: Ruby mode</h1>
  <form><textarea id="code" name="code">
  # Code from http://sandbox.mc.edu/~bennet/ruby/code/poly_rb.html
  #
  # This program evaluates polynomials. It first asks for the coefficients
  # of a polynomial, which must be entered on one line, highest-order first.
  # It then requests values of x and will compute the value of the poly for
  # each x. It will repeatly ask for x values, unless you the user enters
  # a blank line. It that case, it will ask for another polynomial. If the
  # user types quit for either input, the program immediately exits.
  #
 
  #
  # Function to evaluate a polynomial at x. The polynomial is given
  # as a list of coefficients, from the greatest to the least.
  def polyval(x, coef)
  sum = 0
  coef = coef.clone # Don't want to destroy the original
  while true
  sum += coef.shift # Add and remove the next coef
  break if coef.empty? # If no more, done entirely.
  sum *= x # This happens the right number of times.
  end
  return sum
  end
 
  #
  # Function to read a line containing a list of integers and return
  # them as an array of integers. If the string conversion fails, it
  # throws TypeError. If the input line is the word 'quit', then it
  # converts it to an end-of-file exception
  def readints(prompt)
  # Read a line
  print prompt
  line = readline.chomp
  raise EOFError.new if line == 'quit' # You can also use a real EOF.
 
  # Go through each item on the line, converting each one and adding it
  # to retval.
  retval = [ ]
  for str in line.split(/\s+/)
  if str =~ /^\-?\d+$/
  retval.push(str.to_i)
  else
  raise TypeError.new
  end
  end
 
  return retval
  end
 
  #
  # Take a coeff and an exponent and return the string representation, ignoring
  # the sign of the coefficient.
  def term_to_str(coef, exp)
  ret = ""
 
  # Show coeff, unless it's 1 or at the right
  coef = coef.abs
  ret = coef.to_s unless coef == 1 && exp > 0
  ret += "x" if exp > 0 # x if exponent not 0
  ret += "^" + exp.to_s if exp > 1 # ^exponent, if > 1.
 
  return ret
  end
 
  #
  # Create a string of the polynomial in sort-of-readable form.
  def polystr(p)
  # Get the exponent of first coefficient, plus 1.
  exp = p.length
 
  # Assign exponents to each term, making pairs of coeff and exponent,
  # Then get rid of the zero terms.
  p = (p.map { |c| exp -= 1; [ c, exp ] }).select { |p| p[0] != 0 }
 
  # If there's nothing left, it's a zero
  return "0" if p.empty?
 
  # *** Now p is a non-empty list of [ coef, exponent ] pairs. ***
 
  # Convert the first term, preceded by a "-" if it's negative.
  result = (if p[0][0] < 0 then "-" else "" end) + term_to_str(*p[0])
 
  # Convert the rest of the terms, in each case adding the appropriate
  # + or - separating them.
  for term in p[1...p.length]
  # Add the separator then the rep. of the term.
  result += (if term[0] < 0 then " - " else " + " end) +
  term_to_str(*term)
  end
 
  return result
  end
 
  #
  # Run until some kind of endfile.
  begin
  # Repeat until an exception or quit gets us out.
  while true
  # Read a poly until it works. An EOF will except out of the
  # program.
  print "\n"
  begin
  poly = readints("Enter a polynomial coefficients: ")
  rescue TypeError
  print "Try again.\n"
  retry
  end
  break if poly.empty?
 
  # Read and evaluate x values until the user types a blank line.
  # Again, an EOF will except out of the pgm.
  while true
  # Request an integer.
  print "Enter x value or blank line: "
  x = readline.chomp
  break if x == ''
  raise EOFError.new if x == 'quit'
 
  # If it looks bad, let's try again.
  if x !~ /^\-?\d+$/
  print "That doesn't look like an integer. Please try again.\n"
  next
  end
 
  # Convert to an integer and print the result.
  x = x.to_i
  print "p(x) = ", polystr(poly), "\n"
  print "p(", x, ") = ", polyval(x, poly), "\n"
  end
  end
  rescue EOFError
  print "\n=== EOF ===\n"
  rescue Interrupt, SignalException
  print "\n=== Interrupted ===\n"
  else
  print "--- Bye ---\n"
  end
  </textarea></form>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  mode: "text/x-ruby",
  tabMode: "indent",
  matchBrackets: true,
  indentUnit: 4
  });
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/x-ruby</code>.</p>
 
  <p>Development of the CodeMirror Ruby mode was kindly sponsored
  by <a href="http://ubalo.com/">Ubalo</a>, who hold
  the <a href="LICENSE">license</a>.</p>
 
  </body>
  </html>
 
  CodeMirror.defineMode("ruby", function(config, parserConfig) {
  function wordObj(words) {
  var o = {};
  for (var i = 0, e = words.length; i < e; ++i) o[words[i]] = true;
  return o;
  }
  var keywords = wordObj([
  "alias", "and", "BEGIN", "begin", "break", "case", "class", "def", "defined?", "do", "else",
  "elsif", "END", "end", "ensure", "false", "for", "if", "in", "module", "next", "not", "or",
  "redo", "rescue", "retry", "return", "self", "super", "then", "true", "undef", "unless",
  "until", "when", "while", "yield", "nil", "raise", "throw", "catch", "fail", "loop", "callcc",
  "caller", "lambda", "proc", "public", "protected", "private", "require", "load",
  "require_relative", "extend", "autoload"
  ]);
  var indentWords = wordObj(["def", "class", "case", "for", "while", "do", "module", "then",
  "unless", "catch", "loop", "proc"]);
  var dedentWords = wordObj(["end", "until"]);
  var matching = {"[": "]", "{": "}", "(": ")"};
  var curPunc;
 
  function chain(newtok, stream, state) {
  state.tokenize.push(newtok);
  return newtok(stream, state);
  }
 
  function tokenBase(stream, state) {
  curPunc = null;
  if (stream.sol() && stream.match("=begin") && stream.eol()) {
  state.tokenize.push(readBlockComment);
  return "comment";
  }
  if (stream.eatSpace()) return null;
  var ch = stream.next();
  if (ch == "`" || ch == "'" || ch == '"' || ch == "/") {
  return chain(readQuoted(ch, "string", ch == '"'), stream, state);
  } else if (ch == "%") {
  var style, embed = false;
  if (stream.eat("s")) style = "atom";
  else if (stream.eat(/[WQ]/)) { style = "string"; embed = true; }
  else if (stream.eat(/[wxqr]/)) style = "string";
  var delim = stream.eat(/[^\w\s]/);
  if (!delim) return "operator";
  if (matching.propertyIsEnumerable(delim)) delim = matching[delim];
  return chain(readQuoted(delim, style, embed, true), stream, state);
  } else if (ch == "#") {
  stream.skipToEnd();
  return "comment";
  } else if (ch == "<" && stream.eat("<")) {
  stream.eat("-");
  stream.eat(/[\'\"\`]/);
  var match = stream.match(/^\w+/);
  stream.eat(/[\'\"\`]/);
  if (match) return chain(readHereDoc(match[0]), stream, state);
  return null;
  } else if (ch == "0") {
  if (stream.eat("x")) stream.eatWhile(/[\da-fA-F]/);
  else if (stream.eat("b")) stream.eatWhile(/[01]/);
  else stream.eatWhile(/[0-7]/);
  return "number";
  } else if (/\d/.test(ch)) {
  stream.match(/^[\d_]*(?:\.[\d_]+)?(?:[eE][+\-]?[\d_]+)?/);
  return "number";
  } else if (ch == "?") {
  while (stream.match(/^\\[CM]-/)) {}
  if (stream.eat("\\")) stream.eatWhile(/\w/);
  else stream.next();
  return "string";
  } else if (ch == ":") {
  if (stream.eat("'")) return chain(readQuoted("'", "atom", false), stream, state);
  if (stream.eat('"')) return chain(readQuoted('"', "atom", true), stream, state);
  stream.eatWhile(/[\w\?]/);
  return "atom";
  } else if (ch == "@") {
  stream.eat("@");
  stream.eatWhile(/[\w\?]/);
  return "variable-2";
  } else if (ch == "$") {
  stream.next();
  stream.eatWhile(/[\w\?]/);
  return "variable-3";
  } else if (/\w/.test(ch)) {
  stream.eatWhile(/[\w\?]/);
  if (stream.eat(":")) return "atom";
  return "ident";
  } else if (ch == "|" && (state.varList || state.lastTok == "{" || state.lastTok == "do")) {
  curPunc = "|";
  return null;
  } else if (/[\(\)\[\]{}\\;]/.test(ch)) {
  curPunc = ch;
  return null;
  } else if (ch == "-" && stream.eat(">")) {
  return "arrow";
  } else if (/[=+\-\/*:\.^%<>~|]/.test(ch)) {
  stream.eatWhile(/[=+\-\/*:\.^%<>~|]/);
  return "operator";
  } else {
  return null;
  }
  }
 
  function tokenBaseUntilBrace() {
  var depth = 1;
  return function(stream, state) {
  if (stream.peek() == "}") {
  depth--;
  if (depth == 0) {
  state.tokenize.pop();
  return state.tokenize[state.tokenize.length-1](stream, state);
  }
  } else if (stream.peek() == "{") {
  depth++;
  }
  return tokenBase(stream, state);
  };
  }
  function readQuoted(quote, style, embed, unescaped) {
  return function(stream, state) {
  var escaped = false, ch;
  while ((ch = stream.next()) != null) {
  if (ch == quote && (unescaped || !escaped)) {
  state.tokenize.pop();
  break;
  }
  if (embed && ch == "#" && !escaped && stream.eat("{")) {
  state.tokenize.push(tokenBaseUntilBrace(arguments.callee));
  break;
  }
  escaped = !escaped && ch == "\\";
  }
  return style;
  };
  }
  function readHereDoc(phrase) {
  return function(stream, state) {
  if (stream.match(phrase)) state.tokenize.pop();
  else stream.skipToEnd();
  return "string";
  };
  }
  function readBlockComment(stream, state) {
  if (stream.sol() && stream.match("=end") && stream.eol())
  state.tokenize.pop();
  stream.skipToEnd();
  return "comment";
  }
 
  return {
  startState: function() {
  return {tokenize: [tokenBase],
  indented: 0,
  context: {type: "top", indented: -config.indentUnit},
  continuedLine: false,
  lastTok: null,
  varList: false};
  },
 
  token: function(stream, state) {
  if (stream.sol()) state.indented = stream.indentation();
  var style = state.tokenize[state.tokenize.length-1](stream, state), kwtype;
  if (style == "ident") {
  var word = stream.current();
  style = keywords.propertyIsEnumerable(stream.current()) ? "keyword"
  : /^[A-Z]/.test(word) ? "tag"
  : (state.lastTok == "def" || state.lastTok == "class" || state.varList) ? "def"
  : "variable";
  if (indentWords.propertyIsEnumerable(word)) kwtype = "indent";
  else if (dedentWords.propertyIsEnumerable(word)) kwtype = "dedent";
  else if (word == "if" && stream.column() == stream.indentation()) kwtype = "indent";
  }
  if (curPunc || (style && style != "comment")) state.lastTok = word || curPunc || style;
  if (curPunc == "|") state.varList = !state.varList;
 
  if (kwtype == "indent" || /[\(\[\{]/.test(curPunc))
  state.context = {prev: state.context, type: curPunc || style, indented: state.indented};
  else if ((kwtype == "dedent" || /[\)\]\}]/.test(curPunc)) && state.context.prev)
  state.context = state.context.prev;
 
  if (stream.eol())
  state.continuedLine = (curPunc == "\\" || style == "operator");
  return style;
  },
 
  indent: function(state, textAfter) {
  if (state.tokenize[state.tokenize.length-1] != tokenBase) return 0;
  var firstChar = textAfter && textAfter.charAt(0);
  var ct = state.context;
  var closing = ct.type == matching[firstChar] ||
  ct.type == "keyword" && /^(?:end|until|else|elsif|when)\b/.test(textAfter);
  return ct.indented + (closing ? 0 : config.indentUnit) +
  (state.continuedLine ? config.indentUnit : 0);
  }
  };
  });
 
  CodeMirror.defineMIME("text/x-ruby", "ruby");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Rust mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="rust.js"></script>
  <link rel="stylesheet" href="../../doc/docs.css">
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  </head>
  <body>
  <h1>CodeMirror: Rust mode</h1>
 
  <div><textarea id="code" name="code">
  // Demo code.
 
  type foo<T> = int;
  tag bar {
  some(int, foo<float>);
  none;
  }
 
  fn check_crate(x: int) {
  let v = 10;
  alt foo {
  1 to 3 {
  print_foo();
  if x {
  blah() + 10;
  }
  }
  (x, y) { "bye" }
  _ { "hi" }
  }
  }
  </textarea></div>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  matchBrackets: true,
  tabMode: "indent"
  });
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/x-rustsrc</code>.</p>
  </body>
  </html>
 
  CodeMirror.defineMode("rust", function() {
  var indentUnit = 4, altIndentUnit = 2;
  var valKeywords = {
  "if": "if-style", "while": "if-style", "else": "else-style",
  "do": "else-style", "ret": "else-style", "fail": "else-style",
  "break": "atom", "cont": "atom", "const": "let", "resource": "fn",
  "let": "let", "fn": "fn", "for": "for", "alt": "alt", "obj": "fn",
  "lambda": "fn", "type": "type", "tag": "tag", "mod": "mod",
  "as": "op", "true": "atom", "false": "atom", "assert": "op", "check": "op",
  "claim": "op", "native": "ignore", "unsafe": "ignore", "import": "else-style",
  "export": "else-style", "copy": "op", "log": "op", "log_err": "op",
  "use": "op", "bind": "op"
  };
  var typeKeywords = function() {
  var keywords = {"fn": "fn", "block": "fn", "obj": "obj"};
  var atoms = "bool uint int i8 i16 i32 i64 u8 u16 u32 u64 float f32 f64 str char".split(" ");
  for (var i = 0, e = atoms.length; i < e; ++i) keywords[atoms[i]] = "atom";
  return keywords;
  }();
  var operatorChar = /[+\-*&%=<>!?|\.@]/;
 
  // Tokenizer
 
  // Used as scratch variable to communicate multiple values without
  // consing up tons of objects.
  var tcat, content;
  function r(tc, style) {
  tcat = tc;
  return style;
  }
 
  function tokenBase(stream, state) {
  var ch = stream.next();
  if (ch == '"') {
  state.tokenize = tokenString;
  return state.tokenize(stream, state);
  }
  if (ch == "'") {
  tcat = "atom";
  if (stream.eat("\\")) {
  if (stream.skipTo("'")) { stream.next(); return "string"; }
  else { return "error"; }
  } else {
  stream.next();
  return stream.eat("'") ? "string" : "error";
  }
  }
  if (ch == "/") {
  if (stream.eat("/")) { stream.skipToEnd(); return "comment"; }
  if (stream.eat("*")) {
  state.tokenize = tokenComment(1);
  return state.tokenize(stream, state);
  }
  }
  if (ch == "#") {
  if (stream.eat("[")) { tcat = "open-attr"; return null; }
  stream.eatWhile(/\w/);
  return r("macro", "meta");
  }
  if (ch == ":" && stream.match(":<")) {
  return r("op", null);
  }
  if (ch.match(/\d/) || (ch == "." && stream.eat(/\d/))) {
  var flp = false;
  if (!stream.match(/^x[\da-f]+/i) && !stream.match(/^b[01]+/)) {
  stream.eatWhile(/\d/);
  if (stream.eat(".")) { flp = true; stream.eatWhile(/\d/); }
  if (stream.match(/^e[+\-]?\d+/i)) { flp = true; }
  }
  if (flp) stream.match(/^f(?:32|64)/);
  else stream.match(/^[ui](?:8|16|32|64)/);
  return r("atom", "number");
  }
  if (ch.match(/[()\[\]{}:;,]/)) return r(ch, null);
  if (ch == "-" && stream.eat(">")) return r("->", null);
  if (ch.match(operatorChar)) {
  stream.eatWhile(operatorChar);
  return r("op", null);
  }
  stream.eatWhile(/\w/);
  content = stream.current();
  if (stream.match(/^::\w/)) {
  stream.backUp(1);
  return r("prefix", "variable-2");
  }
  if (state.keywords.propertyIsEnumerable(content))
  return r(state.keywords[content], content.match(/true|false/) ? "atom" : "keyword");
  return r("name", "variable");
  }
 
  function tokenString(stream, state) {
  var ch, escaped = false;
  while (ch = stream.next()) {
  if (ch == '"' && !escaped) {
  state.tokenize = tokenBase;
  return r("atom", "string");
  }
  escaped = !escaped && ch == "\\";
  }
  // Hack to not confuse the parser when a string is split in
  // pieces.
  return r("op", "string");
  }
 
  function tokenComment(depth) {
  return function(stream, state) {
  var lastCh = null, ch;
  while (ch = stream.next()) {
  if (ch == "/" && lastCh == "*") {
  if (depth == 1) {
  state.tokenize = tokenBase;
  break;
  } else {
  state.tokenize = tokenComment(depth - 1);
  return state.tokenize(stream, state);
  }
  }
  if (ch == "*" && lastCh == "/") {
  state.tokenize = tokenComment(depth + 1);
  return state.tokenize(stream, state);
  }
  lastCh = ch;
  }
  return "comment";
  };
  }
 
  // Parser
 
  var cx = {state: null, stream: null, marked: null, cc: null};
  function pass() {
  for (var i = arguments.length - 1; i >= 0; i--) cx.cc.push(arguments[i]);
  }
  function cont() {
  pass.apply(null, arguments);
  return true;
  }
 
  function pushlex(type, info) {
  var result = function() {
  var state = cx.state;
  state.lexical = {indented: state.indented, column: cx.stream.column(),
  type: type, prev: state.lexical, info: info};
  };
  result.lex = true;
  return result;
  }
  function poplex() {
  var state = cx.state;
  if (state.lexical.prev) {
  if (state.lexical.type == ")")
  state.indented = state.lexical.indented;
  state.lexical = state.lexical.prev;
  }
  }
  function typecx() { cx.state.keywords = typeKeywords; }
  function valcx() { cx.state.keywords = valKeywords; }
  poplex.lex = typecx.lex = valcx.lex = true;
 
  function commasep(comb, end) {
  function more(type) {
  if (type == ",") return cont(comb, more);
  if (type == end) return cont();
  return cont(more);
  }
  return function(type) {
  if (type == end) return cont();
  return pass(comb, more);
  };
  }
 
  function block(type) {
  if (type == "}") return cont();
  if (type == "let") return cont(pushlex("stat", "let"), letdef1, poplex, block);
  if (type == "fn") return cont(pushlex("stat"), fndef, poplex, block);
  if (type == "type") return cont(pushlex("stat"), tydef, endstatement, poplex, block);
  if (type == "tag") return cont(pushlex("stat"), tagdef, poplex, block);
  if (type == "mod") return cont(pushlex("stat"), mod, poplex, block);
  if (type == "open-attr") return cont(pushlex("]"), commasep(expression, "]"), poplex);
  if (type == "ignore" || type.match(/[\]\);,]/)) return cont(block);
  return pass(pushlex("stat"), expression, poplex, endstatement, block);
  }
  function endstatement(type) {
  if (type == ";") return cont();
  return pass();
  }
  function expression(type) {
  if (type == "atom" || type == "name") return cont(maybeop);
  if (type == "{") return cont(pushlex("}"), exprbrace, poplex);
  if (type.match(/[\[\(]/)) return matchBrackets(type, expression);
  if (type.match(/[\]\)\};,]/)) return pass();
  if (type == "if-style") return cont(expression, expression);
  if (type == "else-style" || type == "op") return cont(expression);
  if (type == "for") return cont(pattern, maybetype, inop, expression, expression);
  if (type == "alt") return cont(expression, altbody);
  if (type == "fn") return cont(fndef);
  if (type == "macro") return cont(macro);
  return cont();
  }
  function maybeop(type) {
  if (content == ".") return cont(maybeprop);
  if (content == "::<"){return cont(typarams, maybeop);}
  if (type == "op" || content == ":") return cont(expression);
  if (type == "(" || type == "[") return matchBrackets(type, expression);
  return pass();
  }
  function maybeprop(type) {
  if (content.match(/^\w+$/)) {cx.marked = "variable"; return cont(maybeop);}
  return pass(expression);
  }
  function exprbrace(type) {
  if (type == "op") {
  if (content == "|") return cont(blockvars, poplex, pushlex("}", "block"), block);
  if (content == "||") return cont(poplex, pushlex("}", "block"), block);
  }
  if (content == "mutable" || (content.match(/^\w+$/) && cx.stream.peek() == ":"
  && !cx.stream.match("::", false)))
  return pass(record_of(expression));
  return pass(block);
  }
  function record_of(comb) {
  function ro(type) {
  if (content == "mutable" || content == "with") {cx.marked = "keyword"; return cont(ro);}
  if (content.match(/^\w*$/)) {cx.marked = "variable"; return cont(ro);}
  if (type == ":") return cont(comb, ro);
  if (type == "}") return cont();
  return cont(ro);
  }
  return ro;
  }
  function blockvars(type) {
  if (type == "name") {cx.marked = "def"; return cont(blockvars);}
  if (type == "op" && content == "|") return cont();
  return cont(blockvars);
  }
 
  function letdef1(type) {
  if (type.match(/[\]\)\};]/)) return cont();
  if (content == "=") return cont(expression, letdef2);
  if (type == ",") return cont(letdef1);
  return pass(pattern, maybetype, letdef1);
  }
  function letdef2(type) {
  if (type.match(/[\]\)\};,]/)) return pass(letdef1);
  else return pass(expression, letdef2);
  }
  function maybetype(type) {
  if (type == ":") return cont(typecx, rtype, valcx);
  return pass();
  }
  function inop(type) {
  if (type == "name" && content == "in") {cx.marked = "keyword"; return cont();}
  return pass();
  }
  function fndef(type) {
  if (type == "name") {cx.marked = "def"; return cont(fndef);}
  if (content == "<") return cont(typarams, fndef);
  if (type == "{") return pass(expression);
  if (type == "(") return cont(pushlex(")"), commasep(argdef, ")"), poplex, fndef);
  if (type == "->") return cont(typecx, rtype, valcx, fndef);
  return cont(fndef);
  }
  function tydef(type) {
  if (type == "name") {cx.marked = "def"; return cont(tydef);}
  if (content == "<") return cont(typarams, tydef);
  if (content == "=") return cont(typecx, rtype, valcx);
  return cont(tydef);
  }
  function tagdef(type) {
  if (type == "name") {cx.marked = "def"; return cont(tagdef);}
  if (content == "<") return cont(typarams, tagdef);
  if (content == "=") return cont(typecx, rtype, valcx, endstatement);
  if (type == "{") return cont(pushlex("}"), typecx, tagblock, valcx, poplex);
  return cont(tagdef);
  }
  function tagblock(type) {
  if (type == "}") return cont();
  if (type == "(") return cont(pushlex(")"), commasep(rtype, ")"), poplex, tagblock);
  if (content.match(/^\w+$/)) cx.marked = "def";
  return cont(tagblock);
  }
  function mod(type) {
  if (type == "name") {cx.marked = "def"; return cont(mod);}
  if (type == "{") return cont(pushlex("}"), block, poplex);
  return pass();
  }
  function typarams(type) {
  if (content == ">") return cont();
  if (content == ",") return cont(typarams);
  return pass(rtype, typarams);
  }
  function argdef(type) {
  if (type == "name") {cx.marked = "def"; return cont(argdef);}
  if (type == ":") return cont(typecx, rtype, valcx);
  return pass();
  }
  function rtype(type) {
  if (type == "name") {cx.marked = "variable-3"; return cont(rtypemaybeparam); }
  if (content == "mutable") {cx.marked = "keyword"; return cont(rtype);}
  if (type == "atom") return cont(rtypemaybeparam);
  if (type == "op" || type == "obj") return cont(rtype);
  if (type == "fn") return cont(fntype);
  if (type == "{") return cont(pushlex("{"), record_of(rtype), poplex);
  return matchBrackets(type, rtype);
  }
  function rtypemaybeparam(type) {
  if (content == "<") return cont(typarams);
  return pass();
  }
  function fntype(type) {
  if (type == "(") return cont(pushlex("("), commasep(rtype, ")"), poplex, fntype);
  if (type == "->") return cont(rtype);
  return pass();
  }
  function pattern(type) {
  if (type == "name") {cx.marked = "def"; return cont(patternmaybeop);}
  if (type == "atom") return cont(patternmaybeop);
  if (type == "op") return cont(pattern);
  if (type.match(/[\]\)\};,]/)) return pass();
  return matchBrackets(type, pattern);
  }
  function patternmaybeop(type) {
  if (type == "op" && content == ".") return cont();
  if (content == "to") {cx.marked = "keyword"; return cont(pattern);}
  else return pass();
  }
  function altbody(type) {
  if (type == "{") return cont(pushlex("}", "alt"), altblock1, poplex);
  return pass();
  }
  function altblock1(type) {
  if (type == "}") return cont();
  if (type == "|") return cont(altblock1);
  if (content == "when") {cx.marked = "keyword"; return cont(expression, altblock2);}
  if (type.match(/[\]\);,]/)) return cont(altblock1);
  return pass(pattern, altblock2);
  }
  function altblock2(type) {
  if (type == "{") return cont(pushlex("}", "alt"), block, poplex, altblock1);
  else return pass(altblock1);
  }
 
  function macro(type) {
  if (type.match(/[\[\(\{]/)) return matchBrackets(type, expression);
  return pass();
  }
  function matchBrackets(type, comb) {
  if (type == "[") return cont(pushlex("]"), commasep(comb, "]"), poplex);
  if (type == "(") return cont(pushlex(")"), commasep(comb, ")"), poplex);
  if (type == "{") return cont(pushlex("}"), commasep(comb, "}"), poplex);
  return cont();
  }
 
  function parse(state, stream, style) {
  var cc = state.cc;
  // Communicate our context to the combinators.
  // (Less wasteful than consing up a hundred closures on every call.)
  cx.state = state; cx.stream = stream; cx.marked = null, cx.cc = cc;
 
  while (true) {
  var combinator = cc.length ? cc.pop() : block;
  if (combinator(tcat)) {
  while(cc.length && cc[cc.length - 1].lex)
  cc.pop()();
  return cx.marked || style;
  }
  }
  }
 
  return {
  startState: function() {
  return {
  tokenize: tokenBase,
  cc: [],
  lexical: {indented: -indentUnit, column: 0, type: "top", align: false},
  keywords: valKeywords,
  indented: 0
  };
  },
 
  token: function(stream, state) {
  if (stream.sol()) {
  if (!state.lexical.hasOwnProperty("align"))
  state.lexical.align = false;
  state.indented = stream.indentation();
  }
  if (stream.eatSpace()) return null;
  tcat = content = null;
  var style = state.tokenize(stream, state);
  if (style == "comment") return style;
  if (!state.lexical.hasOwnProperty("align"))
  state.lexical.align = true;
  if (tcat == "prefix") return style;
  if (!content) content = stream.current();
  return parse(state, stream, style);
  },
 
  indent: function(state, textAfter) {
  if (state.tokenize != tokenBase) return 0;
  var firstChar = textAfter && textAfter.charAt(0), lexical = state.lexical,
  type = lexical.type, closing = firstChar == type;
  if (type == "stat") return lexical.indented + indentUnit;
  if (lexical.align) return lexical.column + (closing ? 0 : 1);
  return lexical.indented + (closing ? 0 : (lexical.info == "alt" ? altIndentUnit : indentUnit));
  },
 
  electricChars: "{}"
  };
  });
 
  CodeMirror.defineMIME("text/x-rustsrc", "rust");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Scheme mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="scheme.js"></script>
  <style>.CodeMirror {background: #f8f8f8;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: Scheme mode</h1>
  <form><textarea id="code" name="code">
  ; See if the input starts with a given symbol.
  (define (match-symbol input pattern)
  (cond ((null? (remain input)) #f)
  ((eqv? (car (remain input)) pattern) (r-cdr input))
  (else #f)))
 
  ; Allow the input to start with one of a list of patterns.
  (define (match-or input pattern)
  (cond ((null? pattern) #f)
  ((match-pattern input (car pattern)))
  (else (match-or input (cdr pattern)))))
 
  ; Allow a sequence of patterns.
  (define (match-seq input pattern)
  (if (null? pattern)
  input
  (let ((match (match-pattern input (car pattern))))
  (if match (match-seq match (cdr pattern)) #f))))
 
  ; Match with the pattern but no problem if it does not match.
  (define (match-opt input pattern)
  (let ((match (match-pattern input (car pattern))))
  (if match match input)))
 
  ; Match anything (other than '()), until pattern is found. The rather
  ; clumsy form of requiring an ending pattern is needed to decide where
  ; the end of the match is. If none is given, this will match the rest
  ; of the sentence.
  (define (match-any input pattern)
  (cond ((null? (remain input)) #f)
  ((null? pattern) (f-cons (remain input) (clear-remain input)))
  (else
  (let ((accum-any (collector)))
  (define (match-pattern-any input pattern)
  (cond ((null? (remain input)) #f)
  (else (accum-any (car (remain input)))
  (cond ((match-pattern (r-cdr input) pattern))
  (else (match-pattern-any (r-cdr input) pattern))))))
  (let ((retval (match-pattern-any input (car pattern))))
  (if retval
  (f-cons (accum-any) retval)
  #f))))))
  </textarea></form>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/x-scheme</code>.</p>
 
  </body>
  </html>
 
  /**
  * Author: Koh Zi Han, based on implementation by Koh Zi Chun
  */
  CodeMirror.defineMode("scheme", function (config, mode) {
  var BUILTIN = "builtin", COMMENT = "comment", STRING = "string",
  ATOM = "atom", NUMBER = "number", BRACKET = "bracket", KEYWORD="keyword";
  var INDENT_WORD_SKIP = 2, KEYWORDS_SKIP = 1;
 
  function makeKeywords(str) {
  var obj = {}, words = str.split(" ");
  for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
  return obj;
  }
 
  var keywords = makeKeywords("λ case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char<? char=? char>=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt #f floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci<? string-ci=? string-ci>=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string<? string=? string>=? string>? string? substring symbol->string symbol? #t tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?");
  var indentKeys = makeKeywords("define let letrec let* lambda");
 
 
  function stateStack(indent, type, prev) { // represents a state stack object
  this.indent = indent;
  this.type = type;
  this.prev = prev;
  }
 
  function pushStack(state, indent, type) {
  state.indentStack = new stateStack(indent, type, state.indentStack);
  }
 
  function popStack(state) {
  state.indentStack = state.indentStack.prev;
  }
 
  /**
  * Scheme numbers are complicated unfortunately.
  * Checks if we're looking at a number, which might be possibly a fraction.
  * Also checks that it is not part of a longer identifier. Returns true/false accordingly.
  */
  function isNumber(ch, stream){
  if(/[0-9]/.exec(ch) != null){
  stream.eatWhile(/[0-9]/);
  stream.eat(/\//);
  stream.eatWhile(/[0-9]/);
  if (stream.eol() || !(/[a-zA-Z\-\_\/]/.exec(stream.peek()))) return true;
  stream.backUp(stream.current().length - 1); // undo all the eating
  }
  return false;
  }
 
  return {
  startState: function () {
  return {
  indentStack: null,
  indentation: 0,
  mode: false,
  sExprComment: false
  };
  },
 
  token: function (stream, state) {
  if (state.indentStack == null && stream.sol()) {
  // update indentation, but only if indentStack is empty
  state.indentation = stream.indentation();
  }
 
  // skip spaces
  if (stream.eatSpace()) {
  return null;
  }
  var returnType = null;
 
  switch(state.mode){
  case "string": // multi-line string parsing mode
  var next, escaped = false;
  while ((next = stream.next()) != null) {
  if (next == "\"" && !escaped) {
 
  state.mode = false;
  break;
  }
  escaped = !escaped && next == "\\";
  }
  returnType = STRING; // continue on in scheme-string mode
  break;
  case "comment": // comment parsing mode
  var next, maybeEnd = false;
  while ((next = stream.next()) != null) {
  if (next == "#" && maybeEnd) {
 
  state.mode = false;
  break;
  }
  maybeEnd = (next == "|");
  }
  returnType = COMMENT;
  break;
  case "s-expr-comment": // s-expr commenting mode
  state.mode = false;
  if(stream.peek() == "(" || stream.peek() == "["){
  // actually start scheme s-expr commenting mode
  state.sExprComment = 0;
  }else{
  // if not we just comment the entire of the next token
  stream.eatWhile(/[^/s]/); // eat non spaces
  returnType = COMMENT;
  break;
  }
  default: // default parsing mode
  var ch = stream.next();
 
  if (ch == "\"") {
  state.mode = "string";
  returnType = STRING;
 
  } else if (ch == "'") {
  returnType = ATOM;
  } else if (ch == '#') {
  if (stream.eat("|")) { // Multi-line comment
  state.mode = "comment"; // toggle to comment mode
  returnType = COMMENT;
  } else if (stream.eat(/[tf]/)) { // #t/#f (atom)
  returnType = ATOM;
  } else if (stream.eat(';')) { // S-Expr comment
  state.mode = "s-expr-comment";
  returnType = COMMENT;
  }
 
  } else if (ch == ";") { // comment
  stream.skipToEnd(); // rest of the line is a comment
  returnType = COMMENT;
  } else if (ch == "-"){
 
  if(!isNaN(parseInt(stream.peek()))){
  stream.eatWhile(/[\/0-9]/);
  returnType = NUMBER;
  }else{
  returnType = null;
  }
  } else if (isNumber(ch,stream)){
  returnType = NUMBER;
  } else if (ch == "(" || ch == "[") {
  var keyWord = ''; var indentTemp = stream.column();
  /**
  Either
  (indent-word ..
  (non-indent-word ..
  (;something else, bracket, etc.
  */
 
  while ((letter = stream.eat(/[^\s\(\[\;\)\]]/)) != null) {
  keyWord += letter;
  }
 
  if (keyWord.length > 0 && indentKeys.propertyIsEnumerable(keyWord)) { // indent-word
 
  pushStack(state, indentTemp + INDENT_WORD_SKIP, ch);
  } else { // non-indent word
  // we continue eating the spaces
  stream.eatSpace();
  if (stream.eol() || stream.peek() == ";") {
  // nothing significant after
  // we restart indentation 1 space after
  pushStack(state, indentTemp + 1, ch);
  } else {
  pushStack(state, indentTemp + stream.current().length, ch); // else we match
  }
  }
  stream.backUp(stream.current().length - 1); // undo all the eating
 
  if(typeof state.sExprComment == "number") state.sExprComment++;
 
  returnType = BRACKET;
  } else if (ch == ")" || ch == "]") {
  returnType = BRACKET;
  if (state.indentStack != null && state.indentStack.type == (ch == ")" ? "(" : "[")) {
  popStack(state);
 
  if(typeof state.sExprComment == "number"){
  if(--state.sExprComment == 0){
  returnType = COMMENT; // final closing bracket
  state.sExprComment = false; // turn off s-expr commenting mode
  }
  }
  }
  } else {
  stream.eatWhile(/[\w\$_\-]/);
 
  if (keywords && keywords.propertyIsEnumerable(stream.current())) {
  returnType = BUILTIN;
  }else returnType = null;
  }
  }
  return (typeof state.sExprComment == "number") ? COMMENT : returnType;
  },
 
  indent: function (state, textAfter) {
  if (state.indentStack == null) return state.indentation;
  return state.indentStack.indent;
  }
  };
  });
 
  CodeMirror.defineMIME("text/x-scheme", "scheme");
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Smalltalk mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="smalltalk.js"></script>
  <link rel="stylesheet" href="../../doc/docs.css">
  <style>
  .CodeMirror {border: 2px solid #dee; border-right-width: 10px;}
  .CodeMirror-gutter {border: none; background: #dee;}
  .CodeMirror-gutter pre {color: white; font-weight: bold;}
  </style>
  </head>
  <body>
  <h1>CodeMirror: Smalltalk mode</h1>
 
  <form><textarea id="code" name="code">
  "
  This is a test of the Smalltalk code
  "
  Seaside.WAComponent subclass: #MyCounter [
  | count |
  MyCounter class &gt;&gt; canBeRoot [ ^true ]
 
  initialize [
  super initialize.
  count := 0.
  ]
  states [ ^{ self } ]
  renderContentOn: html [
  html heading: count.
  html anchor callback: [ count := count + 1 ]; with: '++'.
  html space.
  html anchor callback: [ count := count - 1 ]; with: '--'.
  ]
  ]
 
  MyCounter registerAsApplication: 'mycounter'
  </textarea></form>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  lineNumbers: true,
  matchBrackets: true,
  mode: "text/x-stsrc",
  indentUnit: 4
  });
  </script>
 
  <p>Simple Smalltalk mode.</p>
 
  <p><strong>MIME types defined:</strong> <code>text/x-stsrc</code>.</p>
  </body>
  </html>
 
  CodeMirror.defineMode('smalltalk', function(config, modeConfig) {
 
  var specialChars = /[+\-/\\*~<>=@%|&?!.:;^]/;
  var keywords = /true|false|nil|self|super|thisContext/;
 
  var Context = function(tokenizer, parent) {
  this.next = tokenizer;
  this.parent = parent;
  };
 
  var Token = function(name, context, eos) {
  this.name = name;
  this.context = context;
  this.eos = eos;
  };
 
  var State = function() {
  this.context = new Context(next, null);
  this.expectVariable = true;
  this.indentation = 0;
  this.userIndentationDelta = 0;
  };
 
  State.prototype.userIndent = function(indentation) {
  this.userIndentationDelta = indentation > 0 ? (indentation / config.indentUnit - this.indentation) : 0;
  };
 
  var next = function(stream, context, state) {
  var token = new Token(null, context, false);
  var char = stream.next();
 
  if (char === '"') {
  token = nextComment(stream, new Context(nextComment, context));
 
  } else if (char === '\'') {
  token = nextString(stream, new Context(nextString, context));
 
  } else if (char === '#') {
  stream.eatWhile(/[^ .]/);
  token.name = 'string-2';
 
  } else if (char === '$') {
  stream.eatWhile(/[^ ]/);
  token.name = 'string-2';
 
  } else if (char === '|' && state.expectVariable) {
  token.context = new Context(nextTemporaries, context);
 
  } else if (/[\[\]{}()]/.test(char)) {
  token.name = 'bracket';
  token.eos = /[\[{(]/.test(char);
 
  if (char === '[') {
  state.indentation++;
  } else if (char === ']') {
  state.indentation = Math.max(0, state.indentation - 1);
  }
 
  } else if (specialChars.test(char)) {
  stream.eatWhile(specialChars);
  token.name = 'operator';
  token.eos = char !== ';'; // ; cascaded message expression
 
  } else if (/\d/.test(char)) {
  stream.eatWhile(/[\w\d]/);
  token.name = 'number'
 
  } else if (/[\w_]/.test(char)) {
  stream.eatWhile(/[\w\d_]/);
  token.name = state.expectVariable ? (keywords.test(stream.current()) ? 'keyword' : 'variable') : null;
 
  } else {
  token.eos = state.expectVariable;
  }
 
  return token;
  };
 
  var nextComment = function(stream, context) {
  stream.eatWhile(/[^"]/);
  return new Token('comment', stream.eat('"') ? context.parent : context, true);
  };
 
  var nextString = function(stream, context) {
  stream.eatWhile(/[^']/);
  return new Token('string', stream.eat('\'') ? context.parent : context, false);
  };
 
  var nextTemporaries = function(stream, context, state) {
  var token = new Token(null, context, false);
  var char = stream.next();
 
  if (char === '|') {
  token.context = context.parent;
  token.eos = true;
 
  } else {
  stream.eatWhile(/[^|]/);
  token.name = 'variable';
  }
 
  return token;
  }
 
  return {
  startState: function() {
  return new State;
  },
 
  token: function(stream, state) {
  state.userIndent(stream.indentation());
 
  if (stream.eatSpace()) {
  return null;
  }
 
  var token = state.context.next(stream, state.context, state);
  state.context = token.context;
  state.expectVariable = token.eos;
 
  state.lastToken = token;
  return token.name;
  },
 
  blankLine: function(state) {
  state.userIndent(0);
  },
 
  indent: function(state, textAfter) {
  var i = state.context.next === next && textAfter && textAfter.charAt(0) === ']' ? -1 : state.userIndentationDelta;
  return (state.indentation + i) * config.indentUnit;
  },
 
  electricChars: ']'
  };
 
  });
 
  CodeMirror.defineMIME('text/x-stsrc', {name: 'smalltalk'});
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: SPARQL mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="sparql.js"></script>
  <style>.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: SPARQL mode</h1>
  <form><textarea id="code" name="code">
  PREFIX a: &lt;http://www.w3.org/2000/10/annotation-ns#>
  PREFIX dc: &lt;http://purl.org/dc/elements/1.1/>
  PREFIX foaf: &lt;http://xmlns.com/foaf/0.1/>
 
  # Comment!
 
  SELECT ?given ?family
  WHERE {
  ?annot a:annotates &lt;http://www.w3.org/TR/rdf-sparql-query/> .
  ?annot dc:creator ?c .
  OPTIONAL {?c foaf:given ?given ;
  foaf:family ?family } .
  FILTER isBlank(?c)
  }
  </textarea></form>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  mode: "application/x-sparql-query",
  tabMode: "indent",
  matchBrackets: true
  });
  </script>
 
  <p><strong>MIME types defined:</strong> <code>application/x-sparql-query</code>.</p>
 
  </body>
  </html>
 
  CodeMirror.defineMode("sparql", function(config) {
  var indentUnit = config.indentUnit;
  var curPunc;
 
  function wordRegexp(words) {
  return new RegExp("^(?:" + words.join("|") + ")$", "i");
  }
  var ops = wordRegexp(["str", "lang", "langmatches", "datatype", "bound", "sameterm", "isiri", "isuri",
  "isblank", "isliteral", "union", "a"]);
  var keywords = wordRegexp(["base", "prefix", "select", "distinct", "reduced", "construct", "describe",
  "ask", "from", "named", "where", "order", "limit", "offset", "filter", "optional",
  "graph", "by", "asc", "desc"]);
  var operatorChars = /[*+\-<>=&|]/;
 
  function tokenBase(stream, state) {
  var ch = stream.next();
  curPunc = null;
  if (ch == "$" || ch == "?") {
  stream.match(/^[\w\d]*/);
  return "variable-2";
  }
  else if (ch == "<" && !stream.match(/^[\s\u00a0=]/, false)) {
  stream.match(/^[^\s\u00a0>]*>?/);
  return "atom";
  }
  else if (ch == "\"" || ch == "'") {
  state.tokenize = tokenLiteral(ch);
  return state.tokenize(stream, state);
  }
  else if (/[{}\(\),\.;\[\]]/.test(ch)) {
  curPunc = ch;
  return null;
  }
  else if (ch == "#") {
  stream.skipToEnd();
  return "comment";
  }
  else if (operatorChars.test(ch)) {
  stream.eatWhile(operatorChars);
  return null;
  }
  else if (ch == ":") {
  stream.eatWhile(/[\w\d\._\-]/);
  return "atom";
  }
  else {
  stream.eatWhile(/[_\w\d]/);
  if (stream.eat(":")) {
  stream.eatWhile(/[\w\d_\-]/);
  return "atom";
  }
  var word = stream.current(), type;
  if (ops.test(word))
  return null;
  else if (keywords.test(word))
  return "keyword";
  else
  return "variable";
  }
  }
 
  function tokenLiteral(quote) {
  return function(stream, state) {
  var escaped = false, ch;
  while ((ch = stream.next()) != null) {
  if (ch == quote && !escaped) {
  state.tokenize = tokenBase;
  break;
  }
  escaped = !escaped && ch == "\\";
  }
  return "string";
  };
  }
 
  function pushContext(state, type, col) {
  state.context = {prev: state.context, indent: state.indent, col: col, type: type};
  }
  function popContext(state) {
  state.indent = state.context.indent;
  state.context = state.context.prev;
  }
 
  return {
  startState: function(base) {
  return {tokenize: tokenBase,
  context: null,
  indent: 0,
  col: 0};
  },
 
  token: function(stream, state) {
  if (stream.sol()) {
  if (state.context && state.context.align == null) state.context.align = false;
  state.indent = stream.indentation();
  }
  if (stream.eatSpace()) return null;
  var style = state.tokenize(stream, state);
 
  if (style != "comment" && state.context && state.context.align == null && state.context.type != "pattern") {
  state.context.align = true;
  }
 
  if (curPunc == "(") pushContext(state, ")", stream.column());
  else if (curPunc == "[") pushContext(state, "]", stream.column());
  else if (curPunc == "{") pushContext(state, "}", stream.column());
  else if (/[\]\}\)]/.test(curPunc)) {
  while (state.context && state.context.type == "pattern") popContext(state);
  if (state.context && curPunc == state.context.type) popContext(state);
  }
  else if (curPunc == "." && state.context && state.context.type == "pattern") popContext(state);
  else if (/atom|string|variable/.test(style) && state.context) {
  if (/[\}\]]/.test(state.context.type))
  pushContext(state, "pattern", stream.column());
  else if (state.context.type == "pattern" && !state.context.align) {
  state.context.align = true;
  state.context.col = stream.column();
  }
  }
 
  return style;
  },
 
  indent: function(state, textAfter) {
  var firstChar = textAfter && textAfter.charAt(0);
  var context = state.context;
  if (/[\]\}]/.test(firstChar))
  while (context && context.type == "pattern") context = context.prev;
 
  var closing = context && firstChar == context.type;
  if (!context)
  return 0;
  else if (context.type == "pattern")
  return context.col;
  else if (context.align)
  return context.col + (closing ? 0 : 1);
  else
  return context.indent + (closing ? 0 : indentUnit);
  }
  };
  });
 
  CodeMirror.defineMIME("application/x-sparql-query", "sparql");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: sTeX mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="stex.js"></script>
  <style>.CodeMirror {background: #f8f8f8;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: sTeX mode</h1>
  <form><textarea id="code" name="code">
  \begin{module}[id=bbt-size]
  \importmodule[balanced-binary-trees]{balanced-binary-trees}
  \importmodule[\KWARCslides{dmath/en/cardinality}]{cardinality}
 
  \begin{frame}
  \frametitle{Size Lemma for Balanced Trees}
  \begin{itemize}
  \item
  \begin{assertion}[id=size-lemma,type=lemma]
  Let $G=\tup{V,E}$ be a \termref[cd=binary-trees]{balanced binary tree}
  of \termref[cd=graph-depth,name=vertex-depth]{depth}$n>i$, then the set
  $\defeq{\livar{V}i}{\setst{\inset{v}{V}}{\gdepth{v} = i}}$ of
  \termref[cd=graphs-intro,name=node]{nodes} at
  \termref[cd=graph-depth,name=vertex-depth]{depth} $i$ has
  \termref[cd=cardinality,name=cardinality]{cardinality} $\power2i$.
  \end{assertion}
  \item
  \begin{sproof}[id=size-lemma-pf,proofend=,for=size-lemma]{via induction over the depth $i$.}
  \begin{spfcases}{We have to consider two cases}
  \begin{spfcase}{$i=0$}
  \begin{spfstep}[display=flow]
  then $\livar{V}i=\set{\livar{v}r}$, where $\livar{v}r$ is the root, so
  $\eq{\card{\livar{V}0},\card{\set{\livar{v}r}},1,\power20}$.
  \end{spfstep}
  \end{spfcase}
  \begin{spfcase}{$i>0$}
  \begin{spfstep}[display=flow]
  then $\livar{V}{i-1}$ contains $\power2{i-1}$ vertexes
  \begin{justification}[method=byIH](IH)\end{justification}
  \end{spfstep}
  \begin{spfstep}
  By the \begin{justification}[method=byDef]definition of a binary
  tree\end{justification}, each $\inset{v}{\livar{V}{i-1}}$ is a leaf or has
  two children that are at depth $i$.
  \end{spfstep}
  \begin{spfstep}
  As $G$ is \termref[cd=balanced-binary-trees,name=balanced-binary-tree]{balanced} and $\gdepth{G}=n>i$, $\livar{V}{i-1}$ cannot contain
  leaves.
  \end{spfstep}
  \begin{spfstep}[type=conclusion]
  Thus $\eq{\card{\livar{V}i},{\atimes[cdot]{2,\card{\livar{V}{i-1}}}},{\atimes[cdot]{2,\power2{i-1}}},\power2i}$.
  \end{spfstep}
  \end{spfcase}
  \end{spfcases}
  \end{sproof}
  \item
  \begin{assertion}[id=fbbt,type=corollary]
  A fully balanced tree of depth $d$ has $\power2{d+1}-1$ nodes.
  \end{assertion}
  \item
  \begin{sproof}[for=fbbt,id=fbbt-pf]{}
  \begin{spfstep}
  Let $\defeq{G}{\tup{V,E}}$ be a fully balanced tree
  \end{spfstep}
  \begin{spfstep}
  Then $\card{V}=\Sumfromto{i}1d{\power2i}= \power2{d+1}-1$.
  \end{spfstep}
  \end{sproof}
  \end{itemize}
  \end{frame}
  \begin{note}
  \begin{omtext}[type=conclusion,for=binary-tree]
  This shows that balanced binary trees grow in breadth very quickly, a consequence of
  this is that they are very shallow (and this compute very fast), which is the essence of
  the next result.
  \end{omtext}
  \end{note}
  \end{module}
 
  %%% Local Variables:
  %%% mode: LaTeX
  %%% TeX-master: "all"
  %%% End: \end{document}
  </textarea></form>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/stex</code>.</p>
 
  </body>
  </html>
 
  /*
  * Author: Constantin Jucovschi (c.jucovschi@jacobs-university.de)
  * Licence: MIT
  */
 
  CodeMirror.defineMode("stex", function(cmCfg, modeCfg)
  {
  function pushCommand(state, command) {
  state.cmdState.push(command);
  }
 
  function peekCommand(state) {
  if (state.cmdState.length>0)
  return state.cmdState[state.cmdState.length-1];
  else
  return null;
  }
 
  function popCommand(state) {
  if (state.cmdState.length>0) {
  var plug = state.cmdState.pop();
  plug.closeBracket();
  }
  }
 
  function applyMostPowerful(state) {
  var context = state.cmdState;
  for (var i = context.length - 1; i >= 0; i--) {
  var plug = context[i];
  if (plug.name=="DEFAULT")
  continue;
  return plug.styleIdentifier();
  }
  return null;
  }
 
  function addPluginPattern(pluginName, cmdStyle, brackets, styles) {
  return function () {
  this.name=pluginName;
  this.bracketNo = 0;
  this.style=cmdStyle;
  this.styles = styles;
  this.brackets = brackets;
 
  this.styleIdentifier = function(content) {
  if (this.bracketNo<=this.styles.length)
  return this.styles[this.bracketNo-1];
  else
  return null;
  };
  this.openBracket = function(content) {
  this.bracketNo++;
  return "bracket";
  };
  this.closeBracket = function(content) {
  };
  }
  }
 
  var plugins = new Array();
 
  plugins["importmodule"] = addPluginPattern("importmodule", "tag", "{[", ["string", "builtin"]);
  plugins["documentclass"] = addPluginPattern("documentclass", "tag", "{[", ["", "atom"]);
  plugins["usepackage"] = addPluginPattern("documentclass", "tag", "[", ["atom"]);
  plugins["begin"] = addPluginPattern("documentclass", "tag", "[", ["atom"]);
  plugins["end"] = addPluginPattern("documentclass", "tag", "[", ["atom"]);
 
  plugins["DEFAULT"] = function () {
  this.name="DEFAULT";
  this.style="tag";
 
  this.styleIdentifier = function(content) {
  };
  this.openBracket = function(content) {
  };
  this.closeBracket = function(content) {
  };
  };
 
  function setState(state, f) {
  state.f = f;
  }
 
  function normal(source, state) {
  if (source.match(/^\\[a-z]+/)) {
  var cmdName = source.current();
  cmdName = cmdName.substr(1, cmdName.length-1);
  var plug = plugins[cmdName];
  if (typeof(plug) == 'undefined') {
  plug = plugins["DEFAULT"];
  }
  plug = new plug();
  pushCommand(state, plug);
  setState(state, beginParams);
  return plug.style;
  }
 
  var ch = source.next();
  if (ch == "%") {
  setState(state, inCComment);
  return "comment";
  }
  else if (ch=='}' || ch==']') {
  plug = peekCommand(state);
  if (plug) {
  plug.closeBracket(ch);
  setState(state, beginParams);
  } else
  return "error";
  return "bracket";
  } else if (ch=='{' || ch=='[') {
  plug = plugins["DEFAULT"];
  plug = new plug();
  pushCommand(state, plug);
  return "bracket";
  }
  else if (/\d/.test(ch)) {
  source.eatWhile(/[\w.%]/);
  return "atom";
  }
  else {
  source.eatWhile(/[\w-_]/);
  return applyMostPowerful(state);
  }
  }
 
  function inCComment(source, state) {
  source.skipToEnd();
  setState(state, normal);
  return "comment";
  }
 
  function beginParams(source, state) {
  var ch = source.peek();
  if (ch == '{' || ch == '[') {
  var lastPlug = peekCommand(state);
  var style = lastPlug.openBracket(ch);
  source.eat(ch);
  setState(state, normal);
  return "bracket";
  }
  if (/[ \t\r]/.test(ch)) {
  source.eat(ch);
  return null;
  }
  setState(state, normal);
  lastPlug = peekCommand(state);
  if (lastPlug) {
  popCommand(state);
  }
  return normal(source, state);
  }
 
  return {
  startState: function() { return { f:normal, cmdState:[] }; },
  copyState: function(s) { return { f: s.f, cmdState: s.cmdState.slice(0, s.cmdState.length) }; },
 
  token: function(stream, state) {
  var t = state.f(stream, state);
  var w = stream.current();
  return t;
  }
  };
  });
 
 
  CodeMirror.defineMIME("text/x-stex", "stex");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: TiddlyWiki mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="tiddlywiki.js"></script>
  <link rel="stylesheet" href="tiddlywiki.css">
  <link rel="stylesheet" href="../../doc/docs.css">
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  </head>
  <body>
  <h1>CodeMirror: TiddlyWiki mode</h1>
 
  <div><textarea id="code" name="code">
  !TiddlyWiki Formatting
  * Rendered versions can be found at: http://www.tiddlywiki.com/#Reference
 
  |!Option|!Syntax|!Output|
  |bold font|{{{''bold''}}}|''bold''|
  |italic type|{{{//italic//}}}|//italic//|
  |underlined text|{{{__underlined__}}}|__underlined__|
  |strikethrough text|{{{--strikethrough--}}}|--strikethrough--|
  |superscript text|{{{^^super^^script}}}|^^super^^script|
  |subscript text|{{{~~sub~~script}}}|~~sub~~script|
  |highlighted text|{{{@@highlighted@@}}}|@@highlighted@@|
  |preformatted text|<html><code>{{{preformatted}}}</code></html>|{{{preformatted}}}|
 
  !Block Elements
  !!Headings
  {{{
  !Heading 1
  !!Heading 2
  !!!Heading 3
  !!!!Heading 4
  !!!!!Heading 5
  }}}
  <<<
 
  !Heading 1
 
  !!Heading 2
 
  !!!Heading 3
 
  !!!!Heading 4
 
  !!!!!Heading 5
  <<<
 
  !!Lists
  {{{
  * unordered list, level 1
  ** unordered list, level 2
  *** unordered list, level 3
 
  # ordered list, level 1
  ## ordered list, level 2
  ### unordered list, level 3
 
  ; definition list, term
  : definition list, description
  }}}
  <<<
  * unordered list, level 1
  ** unordered list, level 2
  *** unordered list, level 3
 
  # ordered list, level 1
  ## ordered list, level 2
  ### unordered list, level 3
 
  ; definition list, term
  : definition list, description
  <<<
 
  !!Blockquotes
  {{{
  > blockquote, level 1
  >> blockquote, level 2
  >>> blockquote, level 3
 
  <<<
  blockquote
  <<<
  }}}
  <<<
  > blockquote, level 1
  >> blockquote, level 2
  >>> blockquote, level 3
 
  > blockquote
  <<<
 
  !!Preformatted Text
  <html><pre>
  {{{
  preformatted (e.g. code)
  }}}
  </pre></html>
  <<<
  {{{
  preformatted (e.g. code)
  }}}
  <<<
 
  !!Code Sections
  {{{
  Text style code
  }}}
 
  //{{{
  JS styled code. TiddlyWiki mixed mode should support highlighter switching in the future.
  //}}}
 
  <!--{{{-->
  XML styled code. TiddlyWiki mixed mode should support highlighter switching in the future.
  <!--}}}-->
 
  !!Tables
  {{{
  |CssClass|k
  |!heading column 1|!heading column 2|
  |row 1, column 1|row 1, column 2|
  |row 2, column 1|row 2, column 2|
  |>|COLSPAN|
  |ROWSPAN| ... |
  |~| ... |
  |CssProperty:value;...| ... |
  |caption|c
  }}}
  ''Annotation:''
  * The {{{>}}} marker creates a "colspan", causing the current cell to merge with the one to the right.
  * The {{{~}}} marker creates a "rowspan", causing the current cell to merge with the one above.
  <<<
  |CssClass|k
  |!heading column 1|!heading column 2|
  |row 1, column 1|row 1, column 2|
  |row 2, column 1|row 2, column 2|
  |>|COLSPAN|
  |ROWSPAN| ... |
  |~| ... |
  |CssProperty:value;...| ... |
  |caption|c
  <<<
  !!Images /% TODO %/
  cf. [[TiddlyWiki.com|http://www.tiddlywiki.com/#EmbeddedImages]]
 
  !Hyperlinks
  * [[WikiWords|WikiWord]] are automatically transformed to hyperlinks to the respective tiddler
  ** the automatic transformation can be suppressed by preceding the respective WikiWord with a tilde ({{{~}}}): {{{~WikiWord}}}
  * [[PrettyLinks]] are enclosed in square brackets and contain the desired tiddler name: {{{[[tiddler name]]}}}
  ** optionally, a custom title or description can be added, separated by a pipe character ({{{|}}}): {{{[[title|target]]}}}<br>'''N.B.:''' In this case, the target can also be any website (i.e. URL).
 
  !Custom Styling
  * {{{@@CssProperty:value;CssProperty:value;...@@}}}<br>''N.B.:'' CSS color definitions should use lowercase letters to prevent the inadvertent creation of WikiWords.
  * <html><code>{{customCssClass{...}}}</code></html>
  * raw HTML can be inserted by enclosing the respective code in HTML tags: {{{<html> ... </html>}}}
 
  !Special Markers
  * {{{<br>}}} forces a manual line break
  * {{{----}}} creates a horizontal ruler
  * [[HTML entities|http://www.tiddlywiki.com/#HtmlEntities]]
  * [[HTML entities local|HtmlEntities]]
  * {{{<<macroName>>}}} calls the respective [[macro|Macros]]
  * To hide text within a tiddler so that it is not displayed, it can be wrapped in {{{/%}}} and {{{%/}}}.<br/>This can be a useful trick for hiding drafts or annotating complex markup.
  * To prevent wiki markup from taking effect for a particular section, that section can be enclosed in three double quotes: e.g. {{{"""WikiWord"""}}}.
  </textarea></div>
 
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  mode: 'tiddlywiki',
  lineNumbers: true,
  enterMode: 'keep',
  matchBrackets: true
  });
  </script>
 
  <p>TiddlyWiki mode supports a single configuration.</p>
 
  <p><strong>MIME types defined:</strong> <code>text/x-tiddlywiki</code>.</p>
  </body>
  </html>
 
  .cm-s-default span.cm-header {color: blue; font-weight:bold;}
  .cm-s-default span.cm-code {color: #a50;}
  .cm-s-default span.cm-code-inline {color: #660;}
 
  .cm-s-default span.cm-quote {color: #555;}
  .cm-s-default span.cm-list {color: #c60;}
  .cm-s-default span.cm-hr {color: #999;}
  .cm-s-default span.cm-em {font-style: italic;}
  .cm-s-default span.cm-strong {font-weight: bold;}
 
  .cm-s-default span.cm-link-external {color: blue;}
  .cm-s-default span.cm-brace {color: #170; font-weight: bold;}
  .cm-s-default span.cm-macro {color: #9E3825;}
  .cm-s-default span.cm-table {color: blue;}
  .cm-s-default span.cm-warning {color: red; font-weight: bold;}
 
  .cm-s-default span.cm-underlined {text-decoration: underline;}
  .cm-s-default span.cm-line-through {text-decoration: line-through;}
 
  .cm-s-default span.cm-comment {color: #666;}
 
 
  /***
  |''Name''|tiddlywiki.js|
  |''Description''|Enables TiddlyWikiy syntax highlighting using CodeMirror2|
  |''Author''|PMario|
  |''Version''|0.1.6|
  |''Status''|''beta''|
  |''Source''|[[GitHub|https://github.com/pmario/CodeMirror2/blob/tw-syntax/mode/tiddlywiki]]|
  |''Documentation''|http://codemirror.tiddlyspace.com/|
  |''License''|[[MIT License|http://www.opensource.org/licenses/mit-license.php]]|
  |''CoreVersion''|2.5.0|
  |''Requires''|codemirror.js|
  |''Keywords''|syntax highlighting color code mirror codemirror|
  ! Info
  CoreVersion parameter is needed for TiddlyWiki only!
  ***/
  //{{{
  CodeMirror.defineMode("tiddlywiki", function (config, parserConfig) {
  var indentUnit = config.indentUnit;
 
  // Tokenizer
  var textwords = function () {
  function kw(type) {
  return {
  type: type,
  style: "text"
  };
  }
  return {};
  }();
 
  var keywords = function () {
  function kw(type) {
  return { type: type, style: "macro"};
  }
  return {
  "allTags": kw('allTags'), "closeAll": kw('closeAll'), "list": kw('list'),
  "newJournal": kw('newJournal'), "newTiddler": kw('newTiddler'),
  "permaview": kw('permaview'), "saveChanges": kw('saveChanges'),
  "search": kw('search'), "slider": kw('slider'), "tabs": kw('tabs'),
  "tag": kw('tag'), "tagging": kw('tagging'), "tags": kw('tags'),
  "tiddler": kw('tiddler'), "timeline": kw('timeline'),
  "today": kw('today'), "version": kw('version'), "option": kw('option'),
 
  "with": kw('with'),
  "filter": kw('filter')
  };
  }();
 
  var isSpaceName = /[\w_\-]/i,
  reHR = /^\-\-\-\-+$/,
  reWikiCommentStart = /^\/\*\*\*$/, // /***
  reWikiCommentStop = /^\*\*\*\/$/, // ***/
  reBlockQuote = /^<<<$/,
 
  reJsCodeStart = /^\/\/\{\{\{$/, // //{{{
  reJsCodeStop = /^\/\/\}\}\}$/, // //}}}
  reXmlCodeStart = /^<!--\{\{\{-->$/,
  reXmlCodeStop = /^<!--\}\}\}-->$/,
 
  reCodeBlockStart = /^\{\{\{$/,
  reCodeBlockStop = /^\}\}\}$/,
 
  reCodeStart = /\{\{\{/,
  reUntilCodeStop = /.*?\}\}\}/;
 
  function chain(stream, state, f) {
  state.tokenize = f;
  return f(stream, state);
  }
 
  // used for strings
  function nextUntilUnescaped(stream, end) {
  var escaped = false,
  next;
  while ((next = stream.next()) != null) {
  if (next == end && !escaped) return false;
  escaped = !escaped && next == "\\";
  }
  return escaped;
  }
 
  // Used as scratch variables to communicate multiple values without
  // consing up tons of objects.
  var type, content;
 
  function ret(tp, style, cont) {
  type = tp;
  content = cont;
  return style;
  }
 
  function jsTokenBase(stream, state) {
  var sol = stream.sol(),
  ch, tch;
 
  state.block = false; // indicates the start of a code block.
 
  ch = stream.peek(); // don't eat, to make match simpler
 
  // check start of blocks
  if (sol && /[<\/\*{}\-]/.test(ch)) {
  if (stream.match(reCodeBlockStart)) {
  state.block = true;
  return chain(stream, state, twTokenCode);
  }
  if (stream.match(reBlockQuote)) {
  return ret('quote', 'quote');
  }
  if (stream.match(reWikiCommentStart) || stream.match(reWikiCommentStop)) {
  return ret('code', 'code');
  }
  if (stream.match(reJsCodeStart) || stream.match(reJsCodeStop) || stream.match(reXmlCodeStart) || stream.match(reXmlCodeStop)) {
  return ret('code', 'code');
  }
  if (stream.match(reHR)) {
  return ret('hr', 'hr');
  }
  } // sol
  var ch = stream.next();
 
  if (sol && /[\/\*!#;:>|]/.test(ch)) {
  if (ch == "!") { // tw header
  stream.skipToEnd();
  return ret("header", "header");
  }
  if (ch == "*") { // tw list
  stream.eatWhile('*');
  return ret("list", "list");
  }
  if (ch == "#") { // tw numbered list
  stream.eatWhile('#');
  return ret("list", "list");
  }
  if (ch == ";") { // tw list
  stream.eatWhile(';');
  return ret("list", "list");
  }
  if (ch == ":") { // tw list
  stream.eatWhile(':');
  return ret("list", "list");
  }
  if (ch == ">") { // single line quote
  stream.eatWhile(">");
  return ret("quote", "quote");
  }
  if (ch == '|') {
  return ret('table', 'table');
  }
  }
 
  if (ch == '{' && stream.match(/\{\{/)) {
  return chain(stream, state, twTokenCode);
  }
 
  // rudimentary html:// file:// link matching. TW knows much more ...
  if (/[hf]/i.test(ch)) {
  if (/[ti]/i.test(stream.peek()) && stream.match(/\b(ttps?|tp|ile):\/\/[\-A-Z0-9+&@#\/%?=~_|$!:,.;]*[A-Z0-9+&@#\/%=~_|$]/i)) {
  return ret("link-external", "link-external");
  }
  }
  // just a little string indicator, don't want to have the whole string covered
  if (ch == '"') {
  return ret('string', 'string');
  }
  if (/[\[\]]/.test(ch)) { // check for [[..]]
  if (stream.peek() == ch) {
  stream.next();
  return ret('brace', 'brace');
  }
  }
  if (ch == "@") { // check for space link. TODO fix @@...@@ highlighting
  stream.eatWhile(isSpaceName);
  return ret("link-external", "link-external");
  }
  if (/\d/.test(ch)) { // numbers
  stream.eatWhile(/\d/);
  return ret("number", "number");
  }
  if (ch == "/") { // tw invisible comment
  if (stream.eat("%")) {
  return chain(stream, state, twTokenComment);
  }
  else if (stream.eat("/")) { //
  return chain(stream, state, twTokenEm);
  }
  }
  if (ch == "_") { // tw underline
  if (stream.eat("_")) {
  return chain(stream, state, twTokenUnderline);
  }
  }
  if (ch == "-") { // tw strikethrough TODO looks ugly .. different handling see below;
  if (stream.eat("-")) {
  return chain(stream, state, twTokenStrike);
  }
  }
  if (ch == "'") { // tw bold
  if (stream.eat("'")) {
  return chain(stream, state, twTokenStrong);
  }
  }
  if (ch == "<") { // tw macro
  if (stream.eat("<")) {
  return chain(stream, state, twTokenMacro);
  }
  }
  else {
  return ret(ch);
  }
 
  stream.eatWhile(/[\w\$_]/);
  var word = stream.current(),
  known = textwords.propertyIsEnumerable(word) && textwords[word];
 
  return known ? ret(known.type, known.style, word) : ret("text", null, word);
 
  } // jsTokenBase()
 
  function twTokenString(quote) {
  return function (stream, state) {
  if (!nextUntilUnescaped(stream, quote)) state.tokenize = jsTokenBase;
  return ret("string", "string");
  };
  }
 
  // tw invisible comment
  function twTokenComment(stream, state) {
  var maybeEnd = false,
  ch;
  while (ch = stream.next()) {
  if (ch == "/" && maybeEnd) {
  state.tokenize = jsTokenBase;
  break;
  }
  maybeEnd = (ch == "%");
  }
  return ret("comment", "comment");
  }
 
  // tw strong / bold
  function twTokenStrong(stream, state) {
  var maybeEnd = false,
  ch;
  while (ch = stream.next()) {
  if (ch == "'" && maybeEnd) {
  state.tokenize = jsTokenBase;
  break;
  }
  maybeEnd = (ch == "'");
  }
  return ret("text", "strong");
  }
 
  // tw code
  function twTokenCode(stream, state) {
  var ch, sb = state.block;
 
  if (sb && stream.current()) {
  return ret("code", "code");
  }
 
  if (!sb && stream.match(reUntilCodeStop)) {
  state.tokenize = jsTokenBase;
  return ret("code", "code-inline");
  }
 
  if (sb && stream.sol() && stream.match(reCodeBlockStop)) {
  state.tokenize = jsTokenBase;
  return ret("code", "code");
  }
 
  ch = stream.next();
  return (sb) ? ret("code", "code") : ret("code", "code-inline");
  }
 
  // tw em / italic
  function twTokenEm(stream, state) {
  var maybeEnd = false,
  ch;
  while (ch = stream.next()) {
  if (ch == "/" && maybeEnd) {
  state.tokenize = jsTokenBase;
  break;
  }
  maybeEnd = (ch == "/");
  }
  return ret("text", "em");
  }
 
  // tw underlined text
  function twTokenUnderline(stream, state) {
  var maybeEnd = false,
  ch;
  while (ch = stream.next()) {
  if (ch == "_" && maybeEnd) {
  state.tokenize = jsTokenBase;
  break;
  }
  maybeEnd = (ch == "_");
  }
  return ret("text", "underlined");
  }
 
  // tw strike through text looks ugly
  // TODO just strike through the first and last 2 chars if possible.
  function twTokenStrike(stream, state) {
  var maybeEnd = false,
  ch, nr;
 
  while (ch = stream.next()) {
  if (ch == "-" && maybeEnd) {
  state.tokenize = jsTokenBase;
  break;
  }
  maybeEnd = (ch == "-");
  }
  return ret("text", "line-through");
  }
 
  // macro
  function twTokenMacro(stream, state) {
  var ch, tmp, word, known;
 
  if (stream.current() == '<<') {
  return ret('brace', 'macro');
  }
 
  ch = stream.next();
  if (!ch) {
  state.tokenize = jsTokenBase;
  return ret(ch);
  }
  if (ch == ">") {
  if (stream.peek() == '>') {
  stream.next();
  state.tokenize = jsTokenBase;
  return ret("brace", "macro");
  }
  }
 
  stream.eatWhile(/[\w\$_]/);
  word = stream.current();
  known = keywords.propertyIsEnumerable(word) && keywords[word];
 
  if (known) {
  return ret(known.type, known.style, word);
  }
  else {
  return ret("macro", null, word);
  }
  }
 
  // Interface
  return {
  startState: function (basecolumn) {
  return {
  tokenize: jsTokenBase,
  indented: 0,
  level: 0
  };
  },
 
  token: function (stream, state) {
  if (stream.eatSpace()) return null;
  var style = state.tokenize(stream, state);
  return style;
  },
 
  electricChars: ""
  };
  });
 
  CodeMirror.defineMIME("text/x-tiddlywiki", "tiddlywiki");
  //}}}
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Velocity mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="velocity.js"></script>
  <link rel="stylesheet" href="../../theme/night.css">
  <style>.CodeMirror {border: 1px solid black;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: Velocity mode</h1>
  <form><textarea id="code" name="code">
  ## Velocity Code Demo
  #*
  based on PL/SQL mode by Peter Raganitsch, adapted to Velocity by Steve O'Hara ( http://www.pivotal-solutions.co.uk )
  August 2011
  *#
 
  #*
  This is a multiline comment.
  This is the second line
  *#
 
  #[[ hello steve
  This has invalid syntax that would normally need "poor man's escaping" like:
 
  #define()
 
  ${blah
  ]]#
 
  #include( "disclaimer.txt" "opinion.txt" )
  #include( $foo $bar )
 
  #parse( "lecorbusier.vm" )
  #parse( $foo )
 
  #evaluate( 'string with VTL #if(true)will be displayed#end' )
 
  #define( $hello ) Hello $who #end #set( $who = "World!") $hello ## displays Hello World!
 
  #foreach( $customer in $customerList )
 
  $foreach.count $customer.Name
 
  #if( $foo == ${bar})
  it's true!
  #break
  #{else}
  it's not!
  #stop
  #end
 
  #if ($foreach.parent.hasNext)
  $velocityCount
  #end
  #end
 
  $someObject.getValues("this is a string split
  across lines")
 
  #macro( tablerows $color $somelist )
  #foreach( $something in $somelist )
  <tr><td bgcolor=$color>$something</td></tr>
  #end
  #end
 
  #tablerows("red" ["dadsdf","dsa"])
 
  Variable reference: #set( $monkey = $bill )
  String literal: #set( $monkey.Friend = 'monica' )
  Property reference: #set( $monkey.Blame = $whitehouse.Leak )
  Method reference: #set( $monkey.Plan = $spindoctor.weave($web) )
  Number literal: #set( $monkey.Number = 123 )
  Range operator: #set( $monkey.Numbers = [1..3] )
  Object list: #set( $monkey.Say = ["Not", $my, "fault"] )
  Object map: #set( $monkey.Map = {"banana" : "good", "roast beef" : "bad"})
 
  The RHS can also be a simple arithmetic expression, such as:
  Addition: #set( $value = $foo + 1 )
  Subtraction: #set( $value = $bar - 1 )
  Multiplication: #set( $value = $foo * $bar )
  Division: #set( $value = $foo / $bar )
  Remainder: #set( $value = $foo % $bar )
 
  </textarea></form>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  tabMode: "indent",
  matchBrackets: true,
  theme: "night",
  lineNumbers: true,
  indentUnit: 4,
  mode: "text/velocity"
  });
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/velocity</code>.</p>
 
  </body>
  </html>
 
  CodeMirror.defineMode("velocity", function(config) {
  function parseWords(str) {
  var obj = {}, words = str.split(" ");
  for (var i = 0; i < words.length; ++i) obj[words[i]] = true;
  return obj;
  }
 
  var indentUnit = config.indentUnit
  var keywords = parseWords("#end #else #break #stop #[[ #]] " +
  "#{end} #{else} #{break} #{stop}");
  var functions = parseWords("#if #elseif #foreach #set #include #parse #macro #define #evaluate " +
  "#{if} #{elseif} #{foreach} #{set} #{include} #{parse} #{macro} #{define} #{evaluate}");
  var specials = parseWords("$foreach.count $foreach.hasNext $foreach.first $foreach.last $foreach.topmost $foreach.parent $velocityCount");
  var isOperatorChar = /[+\-*&%=<>!?:\/|]/;
  var multiLineStrings =true;
 
  function chain(stream, state, f) {
  state.tokenize = f;
  return f(stream, state);
  }
  function tokenBase(stream, state) {
  var beforeParams = state.beforeParams;
  state.beforeParams = false;
  var ch = stream.next();
  // start of string?
  if ((ch == '"' || ch == "'") && state.inParams)
  return chain(stream, state, tokenString(ch));
  // is it one of the special signs []{}().,;? Seperator?
  else if (/[\[\]{}\(\),;\.]/.test(ch)) {
  if (ch == "(" && beforeParams) state.inParams = true;
  else if (ch == ")") state.inParams = false;
  return null;
  }
  // start of a number value?
  else if (/\d/.test(ch)) {
  stream.eatWhile(/[\w\.]/);
  return "number";
  }
  // multi line comment?
  else if (ch == "#" && stream.eat("*")) {
  return chain(stream, state, tokenComment);
  }
  // unparsed content?
  else if (ch == "#" && stream.match(/ *\[ *\[/)) {
  return chain(stream, state, tokenUnparsed);
  }
  // single line comment?
  else if (ch == "#" && stream.eat("#")) {
  stream.skipToEnd();
  return "comment";
  }
  // variable?
  else if (ch == "$") {
  stream.eatWhile(/[\w\d\$_\.{}]/);
  // is it one of the specials?
  if (specials && specials.propertyIsEnumerable(stream.current().toLowerCase())) {
  return "keyword";
  }
  else {
  state.beforeParams = true;
  return "builtin";
  }
  }
  // is it a operator?
  else if (isOperatorChar.test(ch)) {
  stream.eatWhile(isOperatorChar);
  return "operator";
  }
  else {
  // get the whole word
  stream.eatWhile(/[\w\$_{}]/);
  var word = stream.current().toLowerCase();
  // is it one of the listed keywords?
  if (keywords && keywords.propertyIsEnumerable(word))
  return "keyword";
  // is it one of the listed functions?
  if (functions && functions.propertyIsEnumerable(word) ||
  stream.current().match(/^#[a-z0-9_]+ *$/i) && stream.peek()=="(") {
  state.beforeParams = true;
  return "keyword";
  }
  // default: just a "word"
  return null;
  }
  }
 
  function tokenString(quote) {
  return function(stream, state) {
  var escaped = false, next, end = false;
  while ((next = stream.next()) != null) {
  if (next == quote && !escaped) {
  end = true;
  break;
  }
  escaped = !escaped && next == "\\";
  }
  if (end) state.tokenize = tokenBase;
  return "string";
  };
  }
 
  function tokenComment(stream, state) {
  var maybeEnd = false, ch;
  while (ch = stream.next()) {
  if (ch == "#" && maybeEnd) {
  state.tokenize = tokenBase;
  break;
  }
  maybeEnd = (ch == "*");
  }
  return "comment";
  }
 
  function tokenUnparsed(stream, state) {
  var maybeEnd = 0, ch;
  while (ch = stream.next()) {
  if (ch == "#" && maybeEnd == 2) {
  state.tokenize = tokenBase;
  break;
  }
  if (ch == "]")
  maybeEnd++;
  else if (ch != " ")
  maybeEnd = 0;
  }
  return "meta";
  }
  // Interface
 
  return {
  startState: function(basecolumn) {
  return {
  tokenize: tokenBase,
  beforeParams: false,
  inParams: false
  };
  },
 
  token: function(stream, state) {
  if (stream.eatSpace()) return null;
  return state.tokenize(stream, state);
  }
  };
  });
 
  CodeMirror.defineMIME("text/velocity", "velocity");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: XML mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="xml.js"></script>
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: XML mode</h1>
  <form><textarea id="code" name="code">
  &lt;html style="color: green"&gt;
  &lt;!-- this is a comment --&gt;
  &lt;head&gt;
  &lt;title&gt;HTML Example&lt;/title&gt;
  &lt;/head&gt;
  &lt;body&gt;
  The indentation tries to be &lt;em&gt;somewhat &amp;quot;do what
  I mean&amp;quot;&lt;/em&gt;... but might not match your style.
  &lt;/body&gt;
  &lt;/html&gt;
  </textarea></form>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
  mode: {name: "xml", alignCDATA: true},
  lineNumbers: true
  });
  </script>
  <p>The XML mode supports two configuration parameters:</p>
  <dl>
  <dt><code>htmlMode (boolean)</code></dt>
  <dd>This switches the mode to parse HTML instead of XML. This
  means attributes do not have to be quoted, and some elements
  (such as <code>br</code>) do not require a closing tag.</dd>
  <dt><code>alignCDATA (boolean)</code></dt>
  <dd>Setting this to true will force the opening tag of CDATA
  blocks to not be indented.</dd>
  </dl>
 
  <p><strong>MIME types defined:</strong> <code>application/xml</code>, <code>text/html</code>.</p>
  </body>
  </html>
 
  CodeMirror.defineMode("xml", function(config, parserConfig) {
  var indentUnit = config.indentUnit;
  var Kludges = parserConfig.htmlMode ? {
  autoSelfClosers: {"br": true, "img": true, "hr": true, "link": true, "input": true,
  "meta": true, "col": true, "frame": true, "base": true, "area": true},
  doNotIndent: {"pre": true},
  allowUnquoted: true
  } : {autoSelfClosers: {}, doNotIndent: {}, allowUnquoted: false};
  var alignCDATA = parserConfig.alignCDATA;
 
  // Return variables for tokenizers
  var tagName, type;
 
  function inText(stream, state) {
  function chain(parser) {
  state.tokenize = parser;
  return parser(stream, state);
  }
 
  var ch = stream.next();
  if (ch == "<") {
  if (stream.eat("!")) {
  if (stream.eat("[")) {
  if (stream.match("CDATA[")) return chain(inBlock("atom", "]]>"));
  else return null;
  }
  else if (stream.match("--")) return chain(inBlock("comment", "-->"));
  else if (stream.match("DOCTYPE", true, true)) {
  stream.eatWhile(/[\w\._\-]/);
  return chain(doctype(1));
  }
  else return null;
  }
  else if (stream.eat("?")) {
  stream.eatWhile(/[\w\._\-]/);
  state.tokenize = inBlock("meta", "?>");
  return "meta";
  }
  else {
  type = stream.eat("/") ? "closeTag" : "openTag";
  stream.eatSpace();
  tagName = "";
  var c;
  while ((c = stream.eat(/[^\s\u00a0=<>\"\'\/?]/))) tagName += c;
  state.tokenize = inTag;
  return "tag";
  }
  }
  else if (ch == "&") {
  stream.eatWhile(/[^;]/);
  stream.eat(";");
  return "atom";
  }
  else {
  stream.eatWhile(/[^&<]/);
  return null;
  }
  }
 
  function inTag(stream, state) {
  var ch = stream.next();
  if (ch == ">" || (ch == "/" && stream.eat(">"))) {
  state.tokenize = inText;
  type = ch == ">" ? "endTag" : "selfcloseTag";
  return "tag";
  }
  else if (ch == "=") {
  type = "equals";
  return null;
  }
  else if (/[\'\"]/.test(ch)) {
  state.tokenize = inAttribute(ch);
  return state.tokenize(stream, state);
  }
  else {
  stream.eatWhile(/[^\s\u00a0=<>\"\'\/?]/);
  return "word";
  }
  }
 
  function inAttribute(quote) {
  return function(stream, state) {
  while (!stream.eol()) {
  if (stream.next() == quote) {
  state.tokenize = inTag;
  break;
  }
  }
  return "string";
  };
  }
 
  function inBlock(style, terminator) {
  return function(stream, state) {
  while (!stream.eol()) {
  if (stream.match(terminator)) {
  state.tokenize = inText;
  break;
  }
  stream.next();
  }
  return style;
  };
  }
  function doctype(depth) {
  return function(stream, state) {
  var ch;
  while ((ch = stream.next()) != null) {
  if (ch == "<") {
  state.tokenize = doctype(depth + 1);
  return state.tokenize(stream, state);
  } else if (ch == ">") {
  if (depth == 1) {
  state.tokenize = inText;
  break;
  } else {
  state.tokenize = doctype(depth - 1);
  return state.tokenize(stream, state);
  }
  }
  }
  return "meta";
  };
  }
 
  var curState, setStyle;
  function pass() {
  for (var i = arguments.length - 1; i >= 0; i--) curState.cc.push(arguments[i]);
  }
  function cont() {
  pass.apply(null, arguments);
  return true;
  }
 
  function pushContext(tagName, startOfLine) {
  var noIndent = Kludges.doNotIndent.hasOwnProperty(tagName) || (curState.context && curState.context.noIndent);
  curState.context = {
  prev: curState.context,
  tagName: tagName,
  indent: curState.indented,
  startOfLine: startOfLine,
  noIndent: noIndent
  };
  }
  function popContext() {
  if (curState.context) curState.context = curState.context.prev;
  }
 
  function element(type) {
  if (type == "openTag") {
  curState.tagName = tagName;
  return cont(attributes, endtag(curState.startOfLine));
  } else if (type == "closeTag") {
  var err = false;
  if (curState.context) {
  err = curState.context.tagName != tagName;
  } else {
  err = true;
  }
  if (err) setStyle = "error";
  return cont(endclosetag(err));
  }
  return cont();
  }
  function endtag(startOfLine) {
  return function(type) {
  if (type == "selfcloseTag" ||
  (type == "endTag" && Kludges.autoSelfClosers.hasOwnProperty(curState.tagName.toLowerCase())))
  return cont();
  if (type == "endTag") {pushContext(curState.tagName, startOfLine); return cont();}
  return cont();
  };
  }
  function endclosetag(err) {
  return function(type) {
  if (err) setStyle = "error";
  if (type == "endTag") { popContext(); return cont(); }
  setStyle = "error";
  return cont(arguments.callee);
  }
  }
 
  function attributes(type) {
  if (type == "word") {setStyle = "attribute"; return cont(attributes);}
  if (type == "equals") return cont(attvalue, attributes);
  if (type == "string") {setStyle = "error"; return cont(attributes);}
  return pass();
  }
  function attvalue(type) {
  if (type == "word" && Kludges.allowUnquoted) {setStyle = "string"; return cont();}
  if (type == "string") return cont(attvaluemaybe);
  return pass();
  }
  function attvaluemaybe(type) {
  if (type == "string") return cont(attvaluemaybe);
  else return pass();
  }
 
  return {
  startState: function() {
  return {tokenize: inText, cc: [], indented: 0, startOfLine: true, tagName: null, context: null};
  },
 
  token: function(stream, state) {
  if (stream.sol()) {
  state.startOfLine = true;
  state.indented = stream.indentation();
  }
  if (stream.eatSpace()) return null;
 
  setStyle = type = tagName = null;
  var style = state.tokenize(stream, state);
  state.type = type;
  if ((style || type) && style != "comment") {
  curState = state;
  while (true) {
  var comb = state.cc.pop() || element;
  if (comb(type || style)) break;
  }
  }
  state.startOfLine = false;
  return setStyle || style;
  },
 
  indent: function(state, textAfter, fullLine) {
  var context = state.context;
  if ((state.tokenize != inTag && state.tokenize != inText) ||
  context && context.noIndent)
  return fullLine ? fullLine.match(/^(\s*)/)[0].length : 0;
  if (alignCDATA && /<!\[CDATA\[/.test(textAfter)) return 0;
  if (context && /^<\//.test(textAfter))
  context = context.prev;
  while (context && !context.startOfLine)
  context = context.prev;
  if (context) return context.indent + indentUnit;
  else return 0;
  },
 
  compareStates: function(a, b) {
  if (a.indented != b.indented || a.tokenize != b.tokenize) return false;
  for (var ca = a.context, cb = b.context; ; ca = ca.prev, cb = cb.prev) {
  if (!ca || !cb) return ca == cb;
  if (ca.tagName != cb.tagName) return false;
  }
  },
 
  electricChars: "/"
  };
  });
 
  CodeMirror.defineMIME("application/xml", "xml");
  CodeMirror.defineMIME("text/html", {name: "xml", htmlMode: true});
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Pure XML mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="xmlpure.js"></script>
  <style type="text/css">.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: XML mode</h1>
  <form><textarea id="code" name="code">
  &lt;?xml version="1.0" encoding="UTF-8" standalone="no" ?&gt;
 
  &lt;!-- This is the pure XML mode,
  and we're inside a comment! --&gt;
 
  &lt;catalog&gt;
  &lt;books&gt;
  &lt;book id="bk01"&gt;
  &lt;title&gt;Lord of Light&lt;/title&gt;
  &lt;author&gt;Roger Zelazny&lt;/author&gt;
  &lt;year&gt;1967&lt;/year&gt;
  &lt;description&gt;&lt;![CDATA[This is a great book, really!!]]&gt;&lt;/description&gt;
  &lt;/book&gt;
  &lt;/books&gt;
  &lt;/catalog&gt;
  </textarea></form>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {mode: {name: "xmlpure"}});
  </script>
 
  <p>This is my XML parser, based on the original:</p>
  <ul>
  <li>No html mode - this is pure xml</li>
  <li>Illegal attributes and element names are errors</li>
  <li>Attributes must have a value</li>
  <li>XML declaration supported (e.g.: <b>&lt;?xml version="1.0" encoding="utf-8" standalone="no" ?&gt;</b>)</li>
  <li>CDATA and comment blocks are not indented (except for their start-tag)</li>
  <li>Better handling of errors per line with the state object - provides good infrastructure for extending it</li>
  </ul>
 
  <p>What's missing:</p>
  <ul>
  <li>Make sure only a single root element exists at the document level</li>
  <li>Multi-line attributes should NOT indent</li>
  <li>Start tags are not painted red when they have no matching end tags (is this really wrong?)</li>
  </ul>
 
  <p><strong>MIME types defined:</strong> <code>application/xml</code>, <code>text/xml</code>.</p>
 
  <p><b>@author</b>: Dror BG (<i>deebug.dev[at]gmail.com</i>)<br/>
  <p><b>@date</b>: August, 2011<br/>
  <p><b>@github</b>: <a href='https://github.com/deebugger/CodeMirror2' target='blank'>https://github.com/deebugger/CodeMirror2</a></p>
 
  <p><strong>MIME types defined:</strong> <code>application/xml</code>, <code>text/xml</code>.</p>
  </body>
  </html>
 
  /**
  * xmlpure.js
  *
  * Building upon and improving the CodeMirror 2 XML parser
  * @author: Dror BG (deebug.dev@gmail.com)
  * @date: August, 2011
  */
 
  CodeMirror.defineMode("xmlpure", function(config, parserConfig) {
  // constants
  var STYLE_ERROR = "error";
  var STYLE_INSTRUCTION = "comment";
  var STYLE_COMMENT = "comment";
  var STYLE_ELEMENT_NAME = "tag";
  var STYLE_ATTRIBUTE = "attribute";
  var STYLE_WORD = "string";
  var STYLE_TEXT = "atom";
 
  var TAG_INSTRUCTION = "!instruction";
  var TAG_CDATA = "!cdata";
  var TAG_COMMENT = "!comment";
  var TAG_TEXT = "!text";
 
  var doNotIndent = {
  "!cdata": true,
  "!comment": true,
  "!text": true,
  "!instruction": true
  };
 
  // options
  var indentUnit = config.indentUnit;
 
  ///////////////////////////////////////////////////////////////////////////
  // helper functions
 
  // chain a parser to another parser
  function chain(stream, state, parser) {
  state.tokenize = parser;
  return parser(stream, state);
  }
 
  // parse a block (comment, CDATA or text)
  function inBlock(style, terminator, nextTokenize) {
  return function(stream, state) {
  while (!stream.eol()) {
  if (stream.match(terminator)) {
  popContext(state);
  state.tokenize = nextTokenize;
  break;
  }
  stream.next();
  }
  return style;
  };
  }
 
  // go down a level in the document
  // (hint: look at who calls this function to know what the contexts are)
  function pushContext(state, tagName) {
  var noIndent = doNotIndent.hasOwnProperty(tagName) || (state.context && state.context.doIndent);
  var newContext = {
  tagName: tagName,
  prev: state.context,
  indent: state.context ? state.context.indent + indentUnit : 0,
  lineNumber: state.lineNumber,
  indented: state.indented,
  noIndent: noIndent
  };
  state.context = newContext;
  }
 
  // go up a level in the document
  function popContext(state) {
  if (state.context) {
  var oldContext = state.context;
  state.context = oldContext.prev;
  return oldContext;
  }
 
  // we shouldn't be here - it means we didn't have a context to pop
  return null;
  }
 
  // return true if the current token is seperated from the tokens before it
  // which means either this is the start of the line, or there is at least
  // one space or tab character behind the token
  // otherwise returns false
  function isTokenSeparated(stream) {
  return stream.sol() ||
  stream.string.charAt(stream.start - 1) == " " ||
  stream.string.charAt(stream.start - 1) == "\t";
  }
 
  ///////////////////////////////////////////////////////////////////////////
  // context: document
  //
  // an XML document can contain:
  // - a single declaration (if defined, it must be the very first line)
  // - exactly one root element
  // @todo try to actually limit the number of root elements to 1
  // - zero or more comments
  function parseDocument(stream, state) {
  if(stream.eat("<")) {
  if(stream.eat("?")) {
  // processing instruction
  pushContext(state, TAG_INSTRUCTION);
  state.tokenize = parseProcessingInstructionStartTag;
  return STYLE_INSTRUCTION;
  } else if(stream.match("!--")) {
  // new context: comment
  pushContext(state, TAG_COMMENT);
  return chain(stream, state, inBlock(STYLE_COMMENT, "-->", parseDocument));
  } else if(stream.eatSpace() || stream.eol() ) {
  stream.skipToEnd();
  return STYLE_ERROR;
  } else {
  // element
  state.tokenize = parseElementTagName;
  return STYLE_ELEMENT_NAME;
  }
  }
 
  // error on line
  stream.skipToEnd();
  return STYLE_ERROR;
  }
 
  ///////////////////////////////////////////////////////////////////////////
  // context: XML element start-tag or end-tag
  //
  // - element start-tag can contain attributes
  // - element start-tag may self-close (or start an element block if it doesn't)
  // - element end-tag can contain only the tag name
  function parseElementTagName(stream, state) {
  // get the name of the tag
  var startPos = stream.pos;
  if(stream.match(/^[a-zA-Z_:][-a-zA-Z0-9_:.]*/)) {
  // element start-tag
  var tagName = stream.string.substring(startPos, stream.pos);
  pushContext(state, tagName);
  state.tokenize = parseElement;
  return STYLE_ELEMENT_NAME;
  } else if(stream.match(/^\/[a-zA-Z_:][-a-zA-Z0-9_:.]*( )*>/)) {
  // element end-tag
  var endTagName = stream.string.substring(startPos + 1, stream.pos - 1).trim();
  var oldContext = popContext(state);
  state.tokenize = state.context == null ? parseDocument : parseElementBlock;
  if(oldContext == null || endTagName != oldContext.tagName) {
  // the start and end tag names should match - error
  return STYLE_ERROR;
  }
  return STYLE_ELEMENT_NAME;
  } else {
  // no tag name - error
  state.tokenize = state.context == null ? parseDocument : parseElementBlock;
  stream.eatWhile(/[^>]/);
  stream.eat(">");
  return STYLE_ERROR;
  }
 
  stream.skipToEnd();
  return null;
  }
 
  function parseElement(stream, state) {
  if(stream.match(/^\/>/)) {
  // self-closing tag
  popContext(state);
  state.tokenize = state.context == null ? parseDocument : parseElementBlock;
  return STYLE_ELEMENT_NAME;
  } else if(stream.eat(/^>/)) {
  state.tokenize = parseElementBlock;
  return STYLE_ELEMENT_NAME;
  } else if(isTokenSeparated(stream) && stream.match(/^[a-zA-Z_:][-a-zA-Z0-9_:.]*( )*=/)) {
  // attribute
  state.tokenize = parseAttribute;
  return STYLE_ATTRIBUTE;
  }
 
  // no other options - this is an error
  state.tokenize = state.context == null ? parseDocument : parseDocument;
  stream.eatWhile(/[^>]/);
  stream.eat(">");
  return STYLE_ERROR;
  }
 
  ///////////////////////////////////////////////////////////////////////////
  // context: attribute
  //
  // attribute values may contain everything, except:
  // - the ending quote (with ' or ") - this marks the end of the value
  // - the character "<" - should never appear
  // - ampersand ("&") - unless it starts a reference: a string that ends with a semi-colon (";")
  // ---> note: this parser is lax in what may be put into a reference string,
  // ---> consult http://www.w3.org/TR/REC-xml/#NT-Reference if you want to make it tighter
  function parseAttribute(stream, state) {
  var quote = stream.next();
  if(quote != "\"" && quote != "'") {
  // attribute must be quoted
  stream.skipToEnd();
  state.tokenize = parseElement;
  return STYLE_ERROR;
  }
 
  state.tokParams.quote = quote;
  state.tokenize = parseAttributeValue;
  return STYLE_WORD;
  }
 
  // @todo: find out whether this attribute value spans multiple lines,
  // and if so, push a context for it in order not to indent it
  // (or something of the sort..)
  function parseAttributeValue(stream, state) {
  var ch = "";
  while(!stream.eol()) {
  ch = stream.next();
  if(ch == state.tokParams.quote) {
  // end quote found
  state.tokenize = parseElement;
  return STYLE_WORD;
  } else if(ch == "<") {
  // can't have less-than signs in an attribute value, ever
  stream.skipToEnd()
  state.tokenize = parseElement;
  return STYLE_ERROR;
  } else if(ch == "&") {
  // reference - look for a semi-colon, or return error if none found
  ch = stream.next();
 
  // make sure that semi-colon isn't right after the ampersand
  if(ch == ';') {
  stream.skipToEnd()
  state.tokenize = parseElement;
  return STYLE_ERROR;
  }
 
  // make sure no less-than characters slipped in
  while(!stream.eol() && ch != ";") {
  if(ch == "<") {
  // can't have less-than signs in an attribute value, ever
  stream.skipToEnd()
  state.tokenize = parseElement;
  return STYLE_ERROR;
  }
  ch = stream.next();
  }
  if(stream.eol() && ch != ";") {
  // no ampersand found - error
  stream.skipToEnd();
  state.tokenize = parseElement;
  return STYLE_ERROR;
  }
  }
  }
 
  // attribute value continues to next line
  return STYLE_WORD;
  }
 
  ///////////////////////////////////////////////////////////////////////////
  // context: element block
  //
  // a block can contain:
  // - elements
  // - text
  // - CDATA sections
  // - comments
  function parseElementBlock(stream, state) {
  if(stream.eat("<")) {
  if(stream.match("?")) {
  pushContext(state, TAG_INSTRUCTION);
  state.tokenize = parseProcessingInstructionStartTag;
  return STYLE_INSTRUCTION;
  } else if(stream.match("!--")) {
  // new context: comment
  pushContext(state, TAG_COMMENT);
  return chain(stream, state, inBlock(STYLE_COMMENT, "-->",
  state.context == null ? parseDocument : parseElementBlock));
  } else if(stream.match("![CDATA[")) {
  // new context: CDATA section
  pushContext(state, TAG_CDATA);
  return chain(stream, state, inBlock(STYLE_TEXT, "]]>",
  state.context == null ? parseDocument : parseElementBlock));
  } else if(stream.eatSpace() || stream.eol() ) {
  stream.skipToEnd();
  return STYLE_ERROR;
  } else {
  // element
  state.tokenize = parseElementTagName;
  return STYLE_ELEMENT_NAME;
  }
  } else {
  // new context: text
  pushContext(state, TAG_TEXT);
  state.tokenize = parseText;
  return null;
  }
 
  state.tokenize = state.context == null ? parseDocument : parseElementBlock;
  stream.skipToEnd();
  return null;
  }
 
  function parseText(stream, state) {
  stream.eatWhile(/[^<]/);
  if(!stream.eol()) {
  // we cannot possibly be in the document context,
  // just inside an element block
  popContext(state);
  state.tokenize = parseElementBlock;
  }
  return STYLE_TEXT;
  }
 
  ///////////////////////////////////////////////////////////////////////////
  // context: XML processing instructions
  //
  // XML processing instructions (PIs) allow documents to contain instructions for applications.
  // PI format: <?name data?>
  // - 'name' can be anything other than 'xml' (case-insensitive)
  // - 'data' can be anything which doesn't contain '?>'
  // XML declaration is a special PI (see XML declaration context below)
  function parseProcessingInstructionStartTag(stream, state) {
  if(stream.match("xml", true, true)) {
  // xml declaration
  if(state.lineNumber > 1 || stream.pos > 5) {
  state.tokenize = parseDocument;
  stream.skipToEnd();
  return STYLE_ERROR;
  } else {
  state.tokenize = parseDeclarationVersion;
  return STYLE_INSTRUCTION;
  }
  }
 
  // regular processing instruction
  if(isTokenSeparated(stream) || stream.match("?>")) {
  // we have a space after the start-tag, or nothing but the end-tag
  // either way - error!
  state.tokenize = parseDocument;
  stream.skipToEnd();
  return STYLE_ERROR;
  }
 
  state.tokenize = parseProcessingInstructionBody;
  return STYLE_INSTRUCTION;
  }
 
  function parseProcessingInstructionBody(stream, state) {
  stream.eatWhile(/[^?]/);
  if(stream.eat("?")) {
  if(stream.eat(">")) {
  popContext(state);
  state.tokenize = state.context == null ? parseDocument : parseElementBlock;
  }
  }
  return STYLE_INSTRUCTION;
  }
 
 
  ///////////////////////////////////////////////////////////////////////////
  // context: XML declaration
  //
  // XML declaration is of the following format:
  // <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
  // - must start at the first character of the first line
  // - may span multiple lines
  // - must include 'version'
  // - may include 'encoding' and 'standalone' (in that order after 'version')
  // - attribute names must be lowercase
  // - cannot contain anything else on the line
  function parseDeclarationVersion(stream, state) {
  state.tokenize = parseDeclarationEncoding;
 
  if(isTokenSeparated(stream) && stream.match(/^version( )*=( )*"([a-zA-Z0-9_.:]|\-)+"/)) {
  return STYLE_INSTRUCTION;
  }
  stream.skipToEnd();
  return STYLE_ERROR;
  }
 
  function parseDeclarationEncoding(stream, state) {
  state.tokenize = parseDeclarationStandalone;
 
  if(isTokenSeparated(stream) && stream.match(/^encoding( )*=( )*"[A-Za-z]([A-Za-z0-9._]|\-)*"/)) {
  return STYLE_INSTRUCTION;
  }
  return null;
  }
 
  function parseDeclarationStandalone(stream, state) {
  state.tokenize = parseDeclarationEndTag;
 
  if(isTokenSeparated(stream) && stream.match(/^standalone( )*=( )*"(yes|no)"/)) {
  return STYLE_INSTRUCTION;
  }
  return null;
  }
 
  function parseDeclarationEndTag(stream, state) {
  state.tokenize = parseDocument;
 
  if(stream.match("?>") && stream.eol()) {
  popContext(state);
  return STYLE_INSTRUCTION;
  }
  stream.skipToEnd();
  return STYLE_ERROR;
  }
 
  ///////////////////////////////////////////////////////////////////////////
  // returned object
  return {
  electricChars: "/[",
 
  startState: function() {
  return {
  tokenize: parseDocument,
  tokParams: {},
  lineNumber: 0,
  lineError: false,
  context: null,
  indented: 0
  };
  },
 
  token: function(stream, state) {
  if(stream.sol()) {
  // initialize a new line
  state.lineNumber++;
  state.lineError = false;
  state.indented = stream.indentation();
  }
 
  // eat all (the spaces) you can
  if(stream.eatSpace()) return null;
 
  // run the current tokenize function, according to the state
  var style = state.tokenize(stream, state);
 
  // is there an error somewhere in the line?
  state.lineError = (state.lineError || style == "error");
 
  return style;
  },
 
  blankLine: function(state) {
  // blank lines are lines too!
  state.lineNumber++;
  state.lineError = false;
  },
 
  indent: function(state, textAfter) {
  if(state.context) {
  if(state.context.noIndent == true) {
  // do not indent - no return value at all
  return;
  }
  if(textAfter.match(/^<\/.*/)) {
  // end-tag - indent back to last context
  return state.context.indent;
  }
  if(textAfter.match(/^<!\[CDATA\[/)) {
  // a stand-alone CDATA start-tag - indent back to column 0
  return 0;
  }
  // indent to last context + regular indent unit
  return state.context.indent + indentUnit;
  }
  return 0;
  },
 
  compareStates: function(a, b) {
  if (a.indented != b.indented) return false;
  for (var ca = a.context, cb = b.context; ; ca = ca.prev, cb = cb.prev) {
  if (!ca || !cb) return ca == cb;
  if (ca.tagName != cb.tagName) return false;
  }
  }
  };
  });
 
  CodeMirror.defineMIME("application/xml", "purexml");
  CodeMirror.defineMIME("text/xml", "purexml");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: YAML mode</title>
  <link rel="stylesheet" href="../../lib/codemirror.css">
  <script src="../../lib/codemirror.js"></script>
  <script src="yaml.js"></script>
  <style>.CodeMirror { border-top: 1px solid #ddd; border-bottom: 1px solid #ddd; }</style>
  <link rel="stylesheet" href="../../doc/docs.css">
  </head>
  <body>
  <h1>CodeMirror: YAML mode</h1>
  <form><textarea id="code" name="code">
  --- # Favorite movies
  - Casablanca
  - North by Northwest
  - The Man Who Wasn't There
  --- # Shopping list
  [milk, pumpkin pie, eggs, juice]
  --- # Indented Blocks, common in YAML data files, use indentation and new lines to separate the key: value pairs
  name: John Smith
  age: 33
  --- # Inline Blocks, common in YAML data streams, use commas to separate the key: value pairs between braces
  {name: John Smith, age: 33}
  ---
  receipt: Oz-Ware Purchase Invoice
  date: 2007-08-06
  customer:
  given: Dorothy
  family: Gale
 
  items:
  - part_no: A4786
  descrip: Water Bucket (Filled)
  price: 1.47
  quantity: 4
 
  - part_no: E1628
  descrip: High Heeled "Ruby" Slippers
  size: 8
  price: 100.27
  quantity: 1
 
  bill-to: &id001
  street: |
  123 Tornado Alley
  Suite 16
  city: East Centerville
  state: KS
 
  ship-to: *id001
 
  specialDelivery: >
  Follow the Yellow Brick
  Road to the Emerald City.
  Pay no attention to the
  man behind the curtain.
  ...
  </textarea></form>
  <script>
  var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
  </script>
 
  <p><strong>MIME types defined:</strong> <code>text/x-yaml</code>.</p>
 
  </body>
  </html>
 
  CodeMirror.defineMode("yaml", function() {
 
  var cons = ['true', 'false', 'on', 'off', 'yes', 'no'];
  var keywordRegex = new RegExp("\\b(("+cons.join(")|(")+"))$", 'i');
 
  return {
  token: function(stream, state) {
  var ch = stream.peek();
  var esc = state.escaped;
  state.escaped = false;
  /* comments */
  if (ch == "#") { stream.skipToEnd(); return "comment"; }
  if (state.literal && stream.indentation() > state.keyCol) {
  stream.skipToEnd(); return "string";
  } else if (state.literal) { state.literal = false; }
  if (stream.sol()) {
  state.keyCol = 0;
  state.pair = false;
  state.pairStart = false;
  /* document start */
  if(stream.match(/---/)) { return "def"; }
  /* document end */
  if (stream.match(/\.\.\./)) { return "def"; }
  /* array list item */
  if (stream.match(/\s*-\s+/)) { return 'meta'; }
  }
  /* pairs (associative arrays) -> key */
  if (!state.pair && stream.match(/^\s*([a-z0-9\._-])+(?=\s*:)/i)) {
  state.pair = true;
  state.keyCol = stream.indentation();
  return "atom";
  }
  if (state.pair && stream.match(/^:\s*/)) { state.pairStart = true; return 'meta'; }
 
  /* inline pairs/lists */
  if (stream.match(/^(\{|\}|\[|\])/)) {
  if (ch == '{')
  state.inlinePairs++;
  else if (ch == '}')
  state.inlinePairs--;
  else if (ch == '[')
  state.inlineList++;
  else
  state.inlineList--;
  return 'meta';
  }
 
  /* list seperator */
  if (state.inlineList > 0 && !esc && ch == ',') {
  stream.next();
  return 'meta';
  }
  /* pairs seperator */
  if (state.inlinePairs > 0 && !esc && ch == ',') {
  state.keyCol = 0;
  state.pair = false;
  state.pairStart = false;
  stream.next();
  return 'meta';
  }
 
  /* start of value of a pair */
  if (state.pairStart) {
  /* block literals */
  if (stream.match(/^\s*(\||\>)\s*/)) { state.literal = true; return 'meta'; };
  /* references */
  if (stream.match(/^\s*(\&|\*)[a-z0-9\._-]+\b/i)) { return 'variable-2'; }
  /* numbers */
  if (state.inlinePairs == 0 && stream.match(/^\s*-?[0-9\.\,]+\s?$/)) { return 'number'; }
  if (state.inlinePairs > 0 && stream.match(/^\s*-?[0-9\.\,]+\s?(?=(,|}))/)) { return 'number'; }
  /* keywords */
  if (stream.match(keywordRegex)) { return 'keyword'; }
  }
 
  /* nothing found, continue */
  state.pairStart = false;
  state.escaped = (ch == '\\');
  stream.next();
  return null;
  },
  startState: function() {
  return {
  pair: false,
  pairStart: false,
  keyCol: 0,
  inlinePairs: 0,
  inlineList: 0,
  literal: false,
  escaped: false
  };
  }
  };
  });
 
  CodeMirror.defineMIME("text/x-yaml", "yaml");
 
  <!doctype html>
  <html>
  <head>
  <title>CodeMirror: Test Suite</title>
  <link rel="stylesheet" href="../lib/codemirror.css">
  <script src="../lib/codemirror.js"></script>
  <script src="../mode/javascript/javascript.js"></script>
 
  <style type="text/css">
  .ok {color: #0e0;}
  .failure {color: #e00;}
  .error {color: #c90;}
  </style>
  </head>
  <body>
  <h1>CodeMirror: Test Suite</h1>
 
  <p>A limited set of programmatic sanity tests for CodeMirror.</p>
 
  <pre id=output></pre>
 
  <div style="visibility: hidden" id=testground>
  <form><textarea id="code" name="code"></textarea><input type=submit value=ok name=submit></form>
  </div>
 
  <script src="test.js"></script>
  </body>
  </html>
 
  var tests = [];
 
  test("fromTextArea", function() {
  var te = document.getElementById("code");
  te.value = "CONTENT";
  var cm = CodeMirror.fromTextArea(te);
  is(!te.offsetHeight);
  eq(cm.getValue(), "CONTENT");
  cm.setValue("foo\nbar");
  eq(cm.getValue(), "foo\nbar");
  cm.save();
  is(/^foo\r?\nbar$/.test(te.value));
  cm.setValue("xxx");
  cm.toTextArea();
  is(te.offsetHeight);
  eq(te.value, "xxx");
  });
 
  testCM("getRange", function(cm) {
  eq(cm.getLine(0), "1234");
  eq(cm.getLine(1), "5678");
  eq(cm.getLine(2), null);
  eq(cm.getLine(-1), null);
  eq(cm.getRange({line: 0, ch: 0}, {line: 0, ch: 3}), "123");
  eq(cm.getRange({line: 0, ch: -1}, {line: 0, ch: 200}), "1234");
  eq(cm.getRange({line: 0, ch: 2}, {line: 1, ch: 2}), "34\n56");
  eq(cm.getRange({line: 1, ch: 2}, {line: 100, ch: 0}), "78");
  }, {value: "1234\n5678"});
 
  testCM("replaceRange", function(cm) {
  eq(cm.getValue(), "");
  cm.replaceRange("foo\n", {line: 0, ch: 0});
  eq(cm.getValue(), "foo\n");
  cm.replaceRange("a\nb", {line: 0, ch: 1});
  eq(cm.getValue(), "fa\nboo\n");
  eq(cm.lineCount(), 3);
  cm.replaceRange("xyzzy", {line: 0, ch: 0}, {line: 1, ch: 1});
  eq(cm.getValue(), "xyzzyoo\n");
  cm.replaceRange("abc", {line: 0, ch: 0}, {line: 10, ch: 0});
  eq(cm.getValue(), "abc");
  eq(cm.lineCount(), 1);
  });
 
  testCM("selection", function(cm) {
  cm.setSelection({line: 0, ch: 4}, {line: 2, ch: 2});
  is(cm.somethingSelected());
  eq(cm.getSelection(), "11\n222222\n33");
  eqPos(cm.getCursor(false), {line: 2, ch: 2});
  eqPos(cm.getCursor(true), {line: 0, ch: 4});
  cm.setSelection({line: 1, ch: 0});
  is(!cm.somethingSelected());
  eq(cm.getSelection(), "");
  eqPos(cm.getCursor(true), {line: 1, ch: 0});
  cm.replaceSelection("abc");
  eq(cm.getSelection(), "abc");
  eq(cm.getValue(), "111111\nabc222222\n333333");
  cm.replaceSelection("def", "end");
  eq(cm.getSelection(), "");
  eqPos(cm.getCursor(true), {line: 1, ch: 3});
  cm.setCursor({line: 2, ch: 1});
  eqPos(cm.getCursor(true), {line: 2, ch: 1});
  cm.setCursor(1, 2);
  eqPos(cm.getCursor(true), {line: 1, ch: 2});
  }, {value: "111111\n222222\n333333"});
 
  testCM("lines", function(cm) {
  eq(cm.getLine(0), "111111");
  eq(cm.getLine(1), "222222");
  eq(cm.getLine(-1), null);
  cm.removeLine(1);
  cm.setLine(1, "abc");
  eq(cm.getValue(), "111111\nabc");
  }, {value: "111111\n222222\n333333"});
 
  testCM("indent", function(cm) {
  cm.indentLine(1);
  eq(cm.getLine(1), " blah();");
  cm.setOption("indentUnit", 8);
  cm.indentLine(1);
  eq(cm.getLine(1), "\tblah();");
  }, {value: "if (x) {\nblah();\n}", indentUnit: 3, indentWithTabs: true, tabSize: 8});
 
  test("defaults", function() {
  var olddefaults = CodeMirror.defaults, defs = CodeMirror.defaults = {};
  for (var opt in olddefaults) defs[opt] = olddefaults[opt];
  defs.indentUnit = 5;
  defs.value = "uu";
  defs.enterMode = "keep";
  defs.tabindex = 55;
  var place = document.getElementById("testground"), cm = CodeMirror(place);
  try {
  eq(cm.getOption("indentUnit"), 5);
  cm.setOption("indentUnit", 10);
  eq(defs.indentUnit, 5);
  eq(cm.getValue(), "uu");
  eq(cm.getOption("enterMode"), "keep");
  eq(cm.getInputField().tabIndex, 55);
  }
  finally {
  CodeMirror.defaults = olddefaults;
  place.removeChild(cm.getWrapperElement());
  }
  });
 
  testCM("lineInfo", function(cm) {
  eq(cm.lineInfo(-1), null);
  var lh = cm.setMarker(1, "FOO", "bar");
  var info = cm.lineInfo(1);
  eq(info.text, "222222");
  eq(info.markerText, "FOO");
  eq(info.markerClass, "bar");
  eq(info.line, 1);
  eq(cm.lineInfo(2).markerText, null);
  cm.clearMarker(lh);
  eq(cm.lineInfo(1).markerText, null);
  }, {value: "111111\n222222\n333333"});
 
  testCM("coords", function(cm) {
  var scroller = cm.getWrapperElement().getElementsByClassName("CodeMirror-scroll")[0];
  scroller.style.height = "100px";
  var content = [];
  for (var i = 0; i < 200; ++i) content.push("------------------------------" + i);
  cm.setValue(content.join("\n"));
  var top = cm.charCoords({line: 0, ch: 0});
  var bot = cm.charCoords({line: 200, ch: 30});
  is(top.x < bot.x);
  is(top.y < bot.y);
  is(top.y < top.yBot);
  scroller.scrollTop = 100;
  cm.refresh();
  var top2 = cm.charCoords({line: 0, ch: 0});
  is(top.y > top2.y);
  eq(top.x, top2.x);
  });
 
  testCM("coordsChar", function(cm) {
  var content = [];
  for (var i = 0; i < 70; ++i) content.push("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx");
  cm.setValue(content.join("\n"));
  for (var x = 0; x < 35; x += 2) {
  for (var y = 0; y < 70; y += 5) {
  cm.setCursor(y, x);
  var pos = cm.coordsChar(cm.charCoords({line: y, ch: x}));
  eq(pos.line, y);
  eq(pos.ch, x);
  }
  }
  });
 
  testCM("posFromIndex", function(cm) {
  cm.setValue(
  "This function should\n" +
  "convert a zero based index\n" +
  "to line and ch."
  );
 
  var examples = [
  { index: -1, line: 0, ch: 0 }, // <- Tests clipping
  { index: 0, line: 0, ch: 0 },
  { index: 10, line: 0, ch: 10 },
  { index: 39, line: 1, ch: 18 },
  { index: 55, line: 2, ch: 7 },
  { index: 63, line: 2, ch: 15 },
  { index: 64, line: 2, ch: 15 } // <- Tests clipping
  ];
 
  for (var i = 0; i < examples.length; i++) {
  var example = examples[i];
  var pos = cm.posFromIndex(example.index);
  eq(pos.line, example.line);
  eq(pos.ch, example.ch);
  if (example.index >= 0 && example.index < 64)
  eq(cm.indexFromPos(pos), example.index);
  }
  });
 
  testCM("undo", function(cm) {
  cm.setLine(0, "def");
  eq(cm.historySize().undo, 1);
  cm.undo();
  eq(cm.getValue(), "abc");
  eq(cm.historySize().undo, 0);
  eq(cm.historySize().redo, 1);
  cm.redo();
  eq(cm.getValue(), "def");
  eq(cm.historySize().undo, 1);
  eq(cm.historySize().redo, 0);
  cm.setValue("1\n\n\n2");
  cm.clearHistory();
  eq(cm.historySize().undo, 0);
  for (var i = 0; i < 20; ++i) {
  cm.replaceRange("a", {line: 0, ch: 0});
  cm.replaceRange("b", {line: 3, ch: 0});
  }
  eq(cm.historySize().undo, 40);
  for (var i = 0; i < 38; ++i) cm.undo();
  eq(cm.historySize().undo, 2);
  eq(cm.historySize().redo, 38);
  eq(cm.getValue(), "a1\n\n\nb2");
  cm.setOption("undoDepth", 10);
  for (var i = 0; i < 20; ++i) {
  cm.replaceRange("a", {line: 0, ch: 0});
  cm.replaceRange("b", {line: 3, ch: 0});
  }
  eq(cm.historySize().undo, 10);
  }, {value: "abc"});
 
  testCM("undoMultiLine", function(cm) {
  cm.replaceRange("x", {line:0, ch: 0});
  cm.replaceRange("y", {line:1, ch: 0});
  cm.undo();
  eq(cm.getValue(), "abc\ndef\nghi");
  cm.replaceRange("y", {line:1, ch: 0});
  cm.replaceRange("x", {line:0, ch: 0});
  cm.undo();
  eq(cm.getValue(), "abc\ndef\nghi");
  cm.replaceRange("y", {line:2, ch: 0});
  cm.replaceRange("x", {line:1, ch: 0});
  cm.replaceRange("z", {line:2, ch: 0});
  cm.undo();
  eq(cm.getValue(), "abc\ndef\nghi");
  }, {value: "abc\ndef\nghi"});
 
  testCM("markTextSingleLine", function(cm) {
  forEach([{a: 0, b: 1, c: "", f: 2, t: 5},
  {a: 0, b: 4, c: "", f: 0, t: 2},
  {a: 1, b: 2, c: "x", f: 3, t: 6},
  {a: 4, b: 5, c: "", f: 3, t: 5},
  {a: 4, b: 5, c: "xx", f: 3, t: 7},
  {a: 2, b: 5, c: "", f: 2, t: 3},
  {a: 2, b: 5, c: "abcd", f: 6, t: 7},
  {a: 2, b: 6, c: "x", f: null, t: null},
  {a: 3, b: 6, c: "", f: null, t: null},
  {a: 0, b: 9, c: "hallo", f: null, t: null},
  {a: 4, b: 6, c: "x", f: 3, t: 4},
  {a: 4, b: 8, c: "", f: 3, t: 4},
  {a: 6, b: 6, c: "a", f: 3, t: 6},
  {a: 8, b: 9, c: "", f: 3, t: 6}], function(test) {
  cm.setValue("1234567890");
  var r = cm.markText({line: 0, ch: 3}, {line: 0, ch: 6}, "foo");
  cm.replaceRange(test.c, {line: 0, ch: test.a}, {line: 0, ch: test.b});
  var f = r.find();
  eq(f.from && f.from.ch, test.f); eq(f.to && f.to.ch, test.t);
  });
  });
 
  testCM("markTextMultiLine", function(cm) {
  function p(v) { return v && {line: v[0], ch: v[1]}; }
  forEach([{a: [0, 0], b: [0, 5], c: "", f: [0, 0], t: [2, 5]},
  {a: [0, 1], b: [0, 10], c: "", f: [0, 1], t: [2, 5]},
  {a: [0, 5], b: [0, 6], c: "x", f: [0, 6], t: [2, 5]},
  {a: [0, 0], b: [1, 0], c: "", f: [0, 0], t: [1, 5]},
  {a: [0, 6], b: [2, 4], c: "", f: [0, 5], t: [0, 7]},
  {a: [0, 6], b: [2, 4], c: "aa", f: [0, 5], t: [0, 9]},
  {a: [1, 2], b: [1, 8], c: "", f: [0, 5], t: [2, 5]},
  {a: [0, 5], b: [2, 5], c: "xx", f: null, t: null},
  {a: [0, 0], b: [2, 10], c: "x", f: null, t: null},
  {a: [1, 5], b: [2, 5], c: "", f: [0, 5], t: [1, 5]},
  {a: [2, 0], b: [2, 3], c: "", f: [0, 5], t: [2, 2]},
  {a: [2, 5], b: [3, 0], c: "a\nb", f: [0, 5], t: [2, 5]},
  {a: [2, 3], b: [3, 0], c: "x", f: [0, 5], t: [2, 3]},
  {a: [1, 1], b: [1, 9], c: "1\n2\n3", f: [0, 5], t: [4, 5]}], function(test) {
  cm.setValue("aaaaaaaaaa\nbbbbbbbbbb\ncccccccccc\ndddddddd\n");
  var r = cm.markText({line: 0, ch: 5}, {line: 2, ch: 5}, "foo");
  cm.replaceRange(test.c, p(test.a), p(test.b));
  var f = r.find();
  eqPos(f.from, p(test.f)); eqPos(f.to, p(test.t));
  });
  });
 
  testCM("bookmark", function(cm) {
  function p(v) { return v && {line: v[0], ch: v[1]}; }
  forEach([{a: [1, 0], b: [1, 1], c: "", d: [1, 4]},
  {a: [1, 1], b: [1, 1], c: "xx", d: [1, 7]},
  {a: [1, 4], b: [1, 5], c: "ab", d: [1, 6]},
  {a: [1, 4], b: [1, 6], c: "", d: null},
  {a: [1, 5], b: [1, 6], c: "abc", d: [1, 5]},
  {a: [1, 6], b: [1, 8], c: "", d: [1, 5]},
  {a: [1, 4], b: [1, 4], c: "\n\n", d: [3, 1]}], function(test) {
  cm.setValue("1234567890\n1234567890\n1234567890");
  var b = cm.setBookmark({line: 1, ch: 5});
  cm.replaceRange(test.c, p(test.a), p(test.b));
  eqPos(b.find(), p(test.d));
  });
  });
 
  // Scaffolding
 
  function htmlEscape(str) {
  return str.replace(/[<&]/g, function(str) {return str == "&" ? "&amp;" : "&lt;";});
  }
  function forEach(arr, f) {
  for (var i = 0, e = arr.length; i < e; ++i) f(arr[i]);
  }
 
  function Failure(why) {this.message = why;}
 
  function test(name, run) {tests.push({name: name, func: run});}
  function testCM(name, run, opts) {
  test(name, function() {
  var place = document.getElementById("testground"), cm = CodeMirror(place, opts);
  try {run(cm);}
  finally {place.removeChild(cm.getWrapperElement());}
  });
  }
 
  function runTests() {
  var failures = [], run = 0;
  for (var i = 0; i < tests.length; ++i) {
  var test = tests[i];
  try {test.func();}
  catch(e) {
  if (e instanceof Failure)
  failures.push({type: "failure", test: test.name, text: e.message});
  else
  failures.push({type: "error", test: test.name, text: e.toString()});
  }
  run++;
  }
  var html = [run + " tests run."];
  if (failures.length)
  forEach(failures, function(fail) {
  html.push(fail.test + ': <span class="' + fail.type + '">' + htmlEscape(fail.text) + "</span>");
  });
  else html.push('<span class="ok">All passed.</span>');
  document.getElementById("output").innerHTML = html.join("\n");
  }
 
  function eq(a, b, msg) {
  if (a != b) throw new Failure(a + " != " + b + (msg ? " (" + msg + ")" : ""));
  }
  function eqPos(a, b, msg) {
  if (a == b) return;
  if (a == null || b == null) throw new Failure("comparing point to null");
  eq(a.line, b.line, msg);
  eq(a.ch, b.ch, msg);
  }
  function is(a, msg) {
  if (!a) throw new Failure("assertion failed" + (msg ? " (" + msg + ")" : ""));
  }
 
  window.onload = runTests;
 
  .cm-s-cobalt { background: #002240; color: white; }
  .cm-s-cobalt span.CodeMirror-selected { background: #b36539 !important; }
  .cm-s-cobalt .CodeMirror-gutter { background: #002240; border-right: 1px solid #aaa; }
  .cm-s-cobalt .CodeMirror-gutter-text { color: #d0d0d0; }
  .cm-s-cobalt .CodeMirror-cursor { border-left: 1px solid white !important; }
 
  .cm-s-cobalt span.cm-comment { color: #08f; }
  .cm-s-cobalt span.cm-atom { color: #845dc4; }
  .cm-s-cobalt span.cm-number, .cm-s-cobalt span.cm-attribute { color: #ff80e1; }
  .cm-s-cobalt span.cm-keyword { color: #ffee80; }
  .cm-s-cobalt span.cm-string { color: #3ad900; }
  .cm-s-cobalt span.cm-meta { color: #ff9d00; }
  .cm-s-cobalt span.cm-variable-2, .cm-s-cobalt span.cm-tag { color: #9effff; }
  .cm-s-cobalt span.cm-variable-3, .cm-s-cobalt span.cm-def { color: white; }
  .cm-s-cobalt span.cm-error { color: #9d1e15; }
  .cm-s-cobalt span.cm-bracket { color: #d8d8d8; }
  .cm-s-cobalt span.cm-builtin, .cm-s-cobalt span.cm-special { color: #ff9e59; }
  .cm-s-cobalt span.cm-link { color: #845dc4; }
 
  .cm-s-eclipse span.cm-meta {color: #FF1717;}
  .cm-s-eclipse span.cm-keyword { font-weight: bold; color: #7F0055; }
  .cm-s-eclipse span.cm-atom {color: #219;}
  .cm-s-eclipse span.cm-number {color: #164;}
  .cm-s-eclipse span.cm-def {color: #00f;}
  .cm-s-eclipse span.cm-variable {color: black;}
  .cm-s-eclipse span.cm-variable-2 {color: #0000C0;}
  .cm-s-eclipse span.cm-variable-3 {color: #0000C0;}
  .cm-s-eclipse span.cm-property {color: black;}
  .cm-s-eclipse span.cm-operator {color: black;}
  .cm-s-eclipse span.cm-comment {color: #3F7F5F;}
  .cm-s-eclipse span.cm-string {color: #2A00FF;}
  .cm-s-eclipse span.cm-string-2 {color: #f50;}
  .cm-s-eclipse span.cm-error {color: #f00;}
  .cm-s-eclipse span.cm-qualifier {color: #555;}
  .cm-s-eclipse span.cm-builtin {color: #30a;}
  .cm-s-eclipse span.cm-bracket {color: #cc7;}
  .cm-s-eclipse span.cm-tag {color: #170;}
  .cm-s-eclipse span.cm-attribute {color: #00c;}
  .cm-s-eclipse span.cm-link {color: #219;}
 
  .cm-s-eclipse .CodeMirror-matchingbracket {
  border:1px solid grey;
  color:black !important;;
  }
 
  .cm-s-elegant span.cm-number, .cm-s-elegant span.cm-string, .cm-s-elegant span.cm-atom {color: #762;}
  .cm-s-elegant span.cm-comment {color: #262;font-style: italic;}
  .cm-s-elegant span.cm-meta {color: #555;font-style: italic;}
  .cm-s-elegant span.cm-variable {color: black;}
  .cm-s-elegant span.cm-variable-2 {color: #b11;}
  .cm-s-elegant span.cm-qualifier {color: #555;}
  .cm-s-elegant span.cm-keyword {color: #730;}
  .cm-s-elegant span.cm-builtin {color: #30a;}
  .cm-s-elegant span.cm-error {background-color: #fdd;}
  .cm-s-elegant span.cm-link {color: #762;}
 
  /* Based on Sublime Text's Monokai theme */
 
  .cm-s-monokai {background: #272822; color: #f8f8f2;}
  .cm-s-monokai span.CodeMirror-selected {background: #ffe792 !important;}
  .cm-s-monokai .CodeMirror-gutter {background: #272822; border-right: 0px;}
  .cm-s-monokai .CodeMirror-gutter-text {color: #d0d0d0;}
  .cm-s-monokai .CodeMirror-cursor {border-left: 1px solid #f8f8f0 !important;}
 
  .cm-s-monokai span.cm-comment {color: #75715e;}
  .cm-s-monokai span.cm-atom {color: #ae81ff;}
  .cm-s-monokai span.cm-number {color: #ae81ff;}
 
  .cm-s-monokai span.cm-property, .cm-s-monokai span.cm-attribute {color: #a6e22e;}
  .cm-s-monokai span.cm-keyword {color: #f92672;}
  .cm-s-monokai span.cm-string {color: #e6db74;}
 
  .cm-s-monokai span.cm-variable {color: #a6e22e;}
  .cm-s-monokai span.cm-variable-2 {color: #9effff;}
  .cm-s-monokai span.cm-def {color: #fd971f;}
  .cm-s-monokai span.cm-error {background: #f92672; color: #f8f8f0;}
  .cm-s-monokai span.cm-bracket {color: #f8f8f2;}
  .cm-s-monokai span.cm-tag {color: #f92672;}
  .cm-s-monokai span.cm-link {color: #ae81ff;}
 
  .cm-s-monokai .CodeMirror-matchingbracket {
  text-decoration: underline;
  color: white !important;
  }
 
  .cm-s-neat span.cm-comment { color: #a86; }
  .cm-s-neat span.cm-keyword { font-weight: bold; color: blue; }
  .cm-s-neat span.cm-string { color: #a22; }
  .cm-s-neat span.cm-builtin { font-weight: bold; color: #077; }
  .cm-s-neat span.cm-special { font-weight: bold; color: #0aa; }
  .cm-s-neat span.cm-variable { color: black; }
  .cm-s-neat span.cm-number, .cm-s-neat span.cm-atom { color: #3a3; }
  .cm-s-neat span.cm-meta {color: #555;}
  .cm-s-neat span.cm-link { color: #3a3; }
 
  /* Loosely based on the Midnight Textmate theme */
 
  .cm-s-night { background: #0a001f; color: #f8f8f8; }
  .cm-s-night span.CodeMirror-selected { background: #a8f !important; }
  .cm-s-night .CodeMirror-gutter { background: #0a001f; border-right: 1px solid #aaa; }
  .cm-s-night .CodeMirror-gutter-text { color: #f8f8f8; }
  .cm-s-night .CodeMirror-cursor { border-left: 1px solid white !important; }
 
  .cm-s-night span.cm-comment { color: #6900a1; }
  .cm-s-night span.cm-atom { color: #845dc4; }
  .cm-s-night span.cm-number, .cm-s-night span.cm-attribute { color: #ffd500; }
  .cm-s-night span.cm-keyword { color: #599eff; }
  .cm-s-night span.cm-string { color: #37f14a; }
  .cm-s-night span.cm-meta { color: #7678e2; }
  .cm-s-night span.cm-variable-2, .cm-s-night span.cm-tag { color: #99b2ff; }
  .cm-s-night span.cm-variable-3, .cm-s-night span.cm-def { color: white; }
  .cm-s-night span.cm-error { color: #9d1e15; }
  .cm-s-night span.cm-bracket { color: #8da6ce; }
  .cm-s-night span.cm-comment { color: #6900a1; }
  .cm-s-night span.cm-builtin, .cm-s-night span.cm-special { color: #ff9e59; }
  .cm-s-night span.cm-link { color: #845dc4; }
 
  .cm-s-rubyblue { font:13px/1.4em Trebuchet, Verdana, sans-serif; } /* - customized editor font - */
 
  .cm-s-rubyblue { background: #112435; color: white; }
  .cm-s-rubyblue span.CodeMirror-selected { background: #0000FF !important; }
  .cm-s-rubyblue .CodeMirror-gutter { background: #1F4661; border-right: 7px solid #3E7087; min-width:2.5em; }
  .cm-s-rubyblue .CodeMirror-gutter-text { color: white; }
  .cm-s-rubyblue .CodeMirror-cursor { border-left: 1px solid white !important; }
 
  .cm-s-rubyblue span.cm-comment { color: #999; font-style:italic; }
  .cm-s-rubyblue span.cm-atom { color: #F4C20B; }
  .cm-s-rubyblue span.cm-number, .cm-s-rubyblue span.cm-attribute { color: #82C6E0; }
  .cm-s-rubyblue span.cm-keyword { color: #F0F; }
  .cm-s-rubyblue span.cm-string { color: #F08047; }
  .cm-s-rubyblue span.cm-meta { color: #F0F; }
  .cm-s-rubyblue span.cm-variable-2, .cm-s-rubyblue span.cm-tag { color: #7BD827; }
  .cm-s-rubyblue span.cm-variable-3, .cm-s-rubyblue span.cm-def { color: white; }
  .cm-s-rubyblue span.cm-error { color: #AF2018; }
  .cm-s-rubyblue span.cm-bracket { color: #F0F; }
  .cm-s-rubyblue span.cm-link { color: #F4C20B; }
  .cm-s-rubyblue span.CodeMirror-matchingbracket { color:#F0F !important; }
  .cm-s-rubyblue span.cm-builtin, .cm-s-rubyblue span.cm-special { color: #FF9D00; }
 
  /*! jQuery v1.7.1 jquery.com | jquery.org/license */
  (function(a,b){function cy(a){return f.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}function cv(a){if(!ck[a]){var b=c.body,d=f("<"+a+">").appendTo(b),e=d.css("display");d.remove();if(e==="none"||e===""){cl||(cl=c.createElement("iframe"),cl.frameBorder=cl.width=cl.height=0),b.appendChild(cl);if(!cm||!cl.createElement)cm=(cl.contentWindow||cl.contentDocument).document,cm.write((c.compatMode==="CSS1Compat"?"<!doctype html>":"")+"<html><body>"),cm.close();d=cm.createElement(a),cm.body.appendChild(d),e=f.css(d,"display"),b.removeChild(cl)}ck[a]=e}return ck[a]}function cu(a,b){var c={};f.each(cq.concat.apply([],cq.slice(0,b)),function(){c[this]=a});return c}function ct(){cr=b}function cs(){setTimeout(ct,0);return cr=f.now()}function cj(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function ci(){try{return new a.XMLHttpRequest}catch(b){}}function cc(a,c){a.dataFilter&&(c=a.dataFilter(c,a.dataType));var d=a.dataTypes,e={},g,h,i=d.length,j,k=d[0],l,m,n,o,p;for(g=1;g<i;g++){if(g===1)for(h in a.converters)typeof h=="string"&&(e[h.toLowerCase()]=a.converters[h]);l=k,k=d[g];if(k==="*")k=l;else if(l!=="*"&&l!==k){m=l+" "+k,n=e[m]||e["* "+k];if(!n){p=b;for(o in e){j=o.split(" ");if(j[0]===l||j[0]==="*"){p=e[j[1]+" "+k];if(p){o=e[o],o===!0?n=p:p===!0&&(n=o);break}}}}!n&&!p&&f.error("No conversion from "+m.replace(" "," to ")),n!==!0&&(c=n?n(c):p(o(c)))}}return c}function cb(a,c,d){var e=a.contents,f=a.dataTypes,g=a.responseFields,h,i,j,k;for(i in g)i in d&&(c[g[i]]=d[i]);while(f[0]==="*")f.shift(),h===b&&(h=a.mimeType||c.getResponseHeader("content-type"));if(h)for(i in e)if(e[i]&&e[i].test(h)){f.unshift(i);break}if(f[0]in d)j=f[0];else{for(i in d){if(!f[0]||a.converters[i+" "+f[0]]){j=i;break}k||(k=i)}j=j||k}if(j){j!==f[0]&&f.unshift(j);return d[j]}}function ca(a,b,c,d){if(f.isArray(b))f.each(b,function(b,e){c||bE.test(a)?d(a,e):ca(a+"["+(typeof e=="object"||f.isArray(e)?b:"")+"]",e,c,d)});else if(!c&&b!=null&&typeof b=="object")for(var e in b)ca(a+"["+e+"]",b[e],c,d);else d(a,b)}function b_(a,c){var d,e,g=f.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((g[d]?a:e||(e={}))[d]=c[d]);e&&f.extend(!0,a,e)}function b$(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h=a[f],i=0,j=h?h.length:0,k=a===bT,l;for(;i<j&&(k||!l);i++)l=h[i](c,d,e),typeof l=="string"&&(!k||g[l]?l=b:(c.dataTypes.unshift(l),l=b$(a,c,d,e,l,g)));(k||!l)&&!g["*"]&&(l=b$(a,c,d,e,"*",g));return l}function bZ(a){return function(b,c){typeof b!="string"&&(c=b,b="*");if(f.isFunction(c)){var d=b.toLowerCase().split(bP),e=0,g=d.length,h,i,j;for(;e<g;e++)h=d[e],j=/^\+/.test(h),j&&(h=h.substr(1)||"*"),i=a[h]=a[h]||[],i[j?"unshift":"push"](c)}}}function bC(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=b==="width"?bx:by,g=0,h=e.length;if(d>0){if(c!=="border")for(;g<h;g++)c||(d-=parseFloat(f.css(a,"padding"+e[g]))||0),c==="margin"?d+=parseFloat(f.css(a,c+e[g]))||0:d-=parseFloat(f.css(a,"border"+e[g]+"Width"))||0;return d+"px"}d=bz(a,b,b);if(d<0||d==null)d=a.style[b]||0;d=parseFloat(d)||0;if(c)for(;g<h;g++)d+=parseFloat(f.css(a,"padding"+e[g]))||0,c!=="padding"&&(d+=parseFloat(f.css(a,"border"+e[g]+"Width"))||0),c==="margin"&&(d+=parseFloat(f.css(a,c+e[g]))||0);return d+"px"}function bp(a,b){b.src?f.ajax({url:b.src,async:!1,dataType:"script"}):f.globalEval((b.text||b.textContent||b.innerHTML||"").replace(bf,"/*$0*/")),b.parentNode&&b.parentNode.removeChild(b)}function bo(a){var b=c.createElement("div");bh.appendChild(b),b.innerHTML=a.outerHTML;return b.firstChild}function bn(a){var b=(a.nodeName||"").toLowerCase();b==="input"?bm(a):b!=="script"&&typeof a.getElementsByTagName!="undefined"&&f.grep(a.getElementsByTagName("input"),bm)}function bm(a){if(a.type==="checkbox"||a.type==="radio")a.defaultChecked=a.checked}function bl(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bk(a,b){var c;if(b.nodeType===1){b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase();if(c==="object")b.outerHTML=a.outerHTML;else if(c!=="input"||a.type!=="checkbox"&&a.type!=="radio"){if(c==="option")b.selected=a.defaultSelected;else if(c==="input"||c==="textarea")b.defaultValue=a.defaultValue}else a.checked&&(b.defaultChecked=b.checked=a.checked),b.value!==a.value&&(b.value=a.value);b.removeAttribute(f.expando)}}function bj(a,b){if(b.nodeType===1&&!!f.hasData(a)){var c,d,e,g=f._data(a),h=f._data(b,g),i=g.events;if(i){delete h.handle,h.events={};for(c in i)for(d=0,e=i[c].length;d<e;d++)f.event.add(b,c+(i[c][d].namespace?".":"")+i[c][d].namespace,i[c][d],i[c][d].data)}h.data&&(h.data=f.extend({},h.data))}}function bi(a,b){return f.nodeName(a,"table")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function U(a){var b=V.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function T(a,b,c){b=b||0;if(f.isFunction(b))return f.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return f.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=f.grep(a,function(a){return a.nodeType===1});if(O.test(b))return f.filter(b,d,!c);b=f.filter(b,d)}return f.grep(a,function(a,d){return f.inArray(a,b)>=0===c})}function S(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function K(){return!0}function J(){return!1}function n(a,b,c){var d=b+"defer",e=b+"queue",g=b+"mark",h=f._data(a,d);h&&(c==="queue"||!f._data(a,e))&&(c==="mark"||!f._data(a,g))&&setTimeout(function(){!f._data(a,e)&&!f._data(a,g)&&(f.removeData(a,d,!0),h.fire())},0)}function m(a){for(var b in a){if(b==="data"&&f.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function l(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(k,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:f.isNumeric(d)?parseFloat(d):j.test(d)?f.parseJSON(d):d}catch(g){}f.data(a,c,d)}else d=b}return d}function h(a){var b=g[a]={},c,d;a=a.split(/\s+/);for(c=0,d=a.length;c<d;c++)b[a[c]]=!0;return b}var c=a.document,d=a.navigator,e=a.location,f=function(){function J(){if(!e.isReady){try{c.documentElement.doScroll("left")}catch(a){setTimeout(J,1);return}e.ready()}}var e=function(a,b){return new e.fn.init(a,b,h)},f=a.jQuery,g=a.$,h,i=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,j=/\S/,k=/^\s+/,l=/\s+$/,m=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,n=/^[\],:{}\s]*$/,o=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,p=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,q=/(?:^|:|,)(?:\s*\[)+/g,r=/(webkit)[ \/]([\w.]+)/,s=/(opera)(?:.*version)?[ \/]([\w.]+)/,t=/(msie) ([\w.]+)/,u=/(mozilla)(?:.*? rv:([\w.]+))?/,v=/-([a-z]|[0-9])/ig,w=/^-ms-/,x=function(a,b){return(b+"").toUpperCase()},y=d.userAgent,z,A,B,C=Object.prototype.toString,D=Object.prototype.hasOwnProperty,E=Array.prototype.push,F=Array.prototype.slice,G=String.prototype.trim,H=Array.prototype.indexOf,I={};e.fn=e.prototype={constructor:e,init:function(a,d,f){var g,h,j,k;if(!a)return this;if(a.nodeType){this.context=this[0]=a,this.length=1;return this}if(a==="body"&&!d&&c.body){this.context=c,this[0]=c.body,this.selector=a,this.length=1;return this}if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?g=i.exec(a):g=[null,a,null];if(g&&(g[1]||!d)){if(g[1]){d=d instanceof e?d[0]:d,k=d?d.ownerDocument||d:c,j=m.exec(a),j?e.isPlainObject(d)?(a=[c.createElement(j[1])],e.fn.attr.call(a,d,!0)):a=[k.createElement(j[1])]:(j=e.buildFragment([g[1]],[k]),a=(j.cacheable?e.clone(j.fragment):j.fragment).childNodes);return e.merge(this,a)}h=c.getElementById(g[2]);if(h&&h.parentNode){if(h.id!==g[2])return f.find(a);this.length=1,this[0]=h}this.context=c,this.selector=a;return this}return!d||d.jquery?(d||f).find(a):this.constructor(d).find(a)}if(e.isFunction(a))return f.ready(a);a.selector!==b&&(this.selector=a.selector,this.context=a.context);return e.makeArray(a,this)},selector:"",jquery:"1.7.1",length:0,size:function(){return this.length},toArray:function(){return F.call(this,0)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=this.constructor();e.isArray(a)?E.apply(d,a):e.merge(d,a),d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")");return d},each:function(a,b){return e.each(this,a,b)},ready:function(a){e.bindReady(),A.add(a);return this},eq:function(a){a=+a;return a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(F.apply(this,arguments),"slice",F.call(arguments).join(","))},map:function(a){return this.pushStack(e.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:E,sort:[].sort,splice:[].splice},e.fn.init.prototype=e.fn,e.extend=e.fn.extend=function(){var a,c,d,f,g,h,i=arguments[0]||{},j=1,k=arguments.length,l=!1;typeof i=="boolean"&&(l=i,i=arguments[1]||{},j=2),typeof i!="object"&&!e.isFunction(i)&&(i={}),k===j&&(i=this,--j);for(;j<k;j++)if((a=arguments[j])!=null)for(c in a){d=i[c],f=a[c];if(i===f)continue;l&&f&&(e.isPlainObject(f)||(g=e.isArray(f)))?(g?(g=!1,h=d&&e.isArray(d)?d:[]):h=d&&e.isPlainObject(d)?d:{},i[c]=e.extend(l,h,f)):f!==b&&(i[c]=f)}return i},e.extend({noConflict:function(b){a.$===e&&(a.$=g),b&&a.jQuery===e&&(a.jQuery=f);return e},isReady:!1,readyWait:1,holdReady:function(a){a?e.readyWait++:e.ready(!0)},ready:function(a){if(a===!0&&!--e.readyWait||a!==!0&&!e.isReady){if(!c.body)return setTimeout(e.ready,1);e.isReady=!0;if(a!==!0&&--e.readyWait>0)return;A.fireWith(c,[e]),e.fn.trigger&&e(c).trigger("ready").off("ready")}},bindReady:function(){if(!A){A=e.Callbacks("once memory");if(c.readyState==="complete")return setTimeout(e.ready,1);if(c.addEventListener)c.addEventListener("DOMContentLoaded",B,!1),a.addEventListener("load",e.ready,!1);else if(c.attachEvent){c.attachEvent("onreadystatechange",B),a.attachEvent("onload",e.ready);var b=!1;try{b=a.frameElement==null}catch(d){}c.documentElement.doScroll&&b&&J()}}},isFunction:function(a){return e.type(a)==="function"},isArray:Array.isArray||function(a){return e.type(a)==="array"},isWindow:function(a){return a&&typeof a=="object"&&"setInterval"in a},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):I[C.call(a)]||"object"},isPlainObject:function(a){if(!a||e.type(a)!=="object"||a.nodeType||e.isWindow(a))return!1;try{if(a.constructor&&!D.call(a,"constructor")&&!D.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||D.call(a,d)},isEmptyObject:function(a){for(var b in a)return!1;return!0},error:function(a){throw new Error(a)},parseJSON:function(b){if(typeof b!="string"||!b)return null;b=e.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(n.test(b.replace(o,"@").replace(p,"]").replace(q,"")))return(new Function("return "+b))();e.error("Invalid JSON: "+b)},parseXML:function(c){var d,f;try{a.DOMParser?(f=new DOMParser,d=f.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(g){d=b}(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&e.error("Invalid XML: "+c);return d},noop:function(){},globalEval:function(b){b&&j.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(w,"ms-").replace(v,x)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var f,g=0,h=a.length,i=h===b||e.isFunction(a);if(d){if(i){for(f in a)if(c.apply(a[f],d)===!1)break}else for(;g<h;)if(c.apply(a[g++],d)===!1)break}else if(i){for(f in a)if(c.call(a[f],f,a[f])===!1)break}else for(;g<h;)if(c.call(a[g],g,a[g++])===!1)break;return a},trim:G?function(a){return a==null?"":G.call(a)}:function(a){return a==null?"":(a+"").replace(k,"").replace(l,"")},makeArray:function(a,b){var c=b||[];if(a!=null){var d=e.type(a);a.length==null||d==="string"||d==="function"||d==="regexp"||e.isWindow(a)?E.call(c,a):e.merge(c,a)}return c},inArray:function(a,b,c){var d;if(b){if(H)return H.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=a.length,e=0;if(typeof c.length=="number")for(var f=c.length;e<f;e++)a[d++]=c[e];else while(c[e]!==b)a[d++]=c[e++];a.length=d;return a},grep:function(a,b,c){var d=[],e;c=!!c;for(var f=0,g=a.length;f<g;f++)e=!!b(a[f],f),c!==e&&d.push(a[f]);return d},map:function(a,c,d){var f,g,h=[],i=0,j=a.length,k=a instanceof e||j!==b&&typeof j=="number"&&(j>0&&a[0]&&a[j-1]||j===0||e.isArray(a));if(k)for(;i<j;i++)f=c(a[i],i,d),f!=null&&(h[h.length]=f);else for(g in a)f=c(a[g],g,d),f!=null&&(h[h.length]=f);return h.concat.apply([],h)},guid:1,proxy:function(a,c){if(typeof c=="string"){var d=a[c];c=a,a=d}if(!e.isFunction(a))return b;var f=F.call(arguments,2),g=function(){return a.apply(c,f.concat(F.call(arguments)))};g.guid=a.guid=a.guid||g.guid||e.guid++;return g},access:function(a,c,d,f,g,h){var i=a.length;if(typeof c=="object"){for(var j in c)e.access(a,j,c[j],f,g,d);return a}if(d!==b){f=!h&&f&&e.isFunction(d);for(var k=0;k<i;k++)g(a[k],c,f?d.call(a[k],k,g(a[k],c)):d,h);return a}return i?g(a[0],c):b},now:function(){return(new Date).getTime()},uaMatch:function(a){a=a.toLowerCase();var b=r.exec(a)||s.exec(a)||t.exec(a)||a.indexOf("compatible")<0&&u.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},sub:function(){function a(b,c){return new a.fn.init(b,c)}e.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,f){f&&f instanceof e&&!(f instanceof a)&&(f=a(f));return e.fn.init.call(this,d,f,b)},a.fn.init.prototype=a.fn;var b=a(c);return a},browser:{}}),e.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){I["[object "+b+"]"]=b.toLowerCase()}),z=e.uaMatch(y),z.browser&&(e.browser[z.browser]=!0,e.browser.version=z.version),e.browser.webkit&&(e.browser.safari=!0),j.test(" ")&&(k=/^[\s\xA0]+/,l=/[\s\xA0]+$/),h=e(c),c.addEventListener?B=function(){c.removeEventListener("DOMContentLoaded",B,!1),e.ready()}:c.attachEvent&&(B=function(){c.readyState==="complete"&&(c.detachEvent("onreadystatechange",B),e.ready())});return e}(),g={};f.Callbacks=function(a){a=a?g[a]||h(a):{};var c=[],d=[],e,i,j,k,l,m=function(b){var d,e,g,h,i;for(d=0,e=b.length;d<e;d++)g=b[d],h=f.type(g),h==="array"?m(g):h==="function"&&(!a.unique||!o.has(g))&&c.push(g)},n=function(b,f){f=f||[],e=!a.memory||[b,f],i=!0,l=j||0,j=0,k=c.length;for(;c&&l<k;l++)if(c[l].apply(b,f)===!1&&a.stopOnFalse){e=!0;break}i=!1,c&&(a.once?e===!0?o.disable():c=[]:d&&d.length&&(e=d.shift(),o.fireWith(e[0],e[1])))},o={add:function(){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this},remove:function(){if(c){var b=arguments,d=0,e=b.length;for(;d<e;d++)for(var f=0;f<c.length;f++)if(b[d]===c[f]){i&&f<=k&&(k--,f<=l&&l--),c.splice(f--,1);if(a.unique)break}}return this},has:function(a){if(c){var b=0,d=c.length;for(;b<d;b++)if(a===c[b])return!0}return!1},empty:function(){c=[];return this},disable:function(){c=d=e=b;return this},disabled:function(){return!c},lock:function(){d=b,(!e||e===!0)&&o.disable();return this},locked:function(){return!d},fireWith:function(b,c){d&&(i?a.once||d.push([b,c]):(!a.once||!e)&&n(b,c));return this},fire:function(){o.fireWith(this,arguments);return this},fired:function(){return!!e}};return o};var i=[].slice;f.extend({Deferred:function(a){var b=f.Callbacks("once memory"),c=f.Callbacks("once memory"),d=f.Callbacks("memory"),e="pending",g={resolve:b,reject:c,notify:d},h={done:b.add,fail:c.add,progress:d.add,state:function(){return e},isResolved:b.fired,isRejected:c.fired,then:function(a,b,c){i.done(a).fail(b).progress(c);return this},always:function(){i.done.apply(i,arguments).fail.apply(i,arguments);return this},pipe:function(a,b,c){return f.Deferred(function(d){f.each({done:[a,"resolve"],fail:[b,"reject"],progress:[c,"notify"]},function(a,b){var c=b[0],e=b[1],g;f.isFunction(c)?i[a](function(){g=c.apply(this,arguments),g&&f.isFunction(g.promise)?g.promise().then(d.resolve,d.reject,d.notify):d[e+"With"](this===i?d:this,[g])}):i[a](d[e])})}).promise()},promise:function(a){if(a==null)a=h;else for(var b in h)a[b]=h[b];return a}},i=h.promise({}),j;for(j in g)i[j]=g[j].fire,i[j+"With"]=g[j].fireWith;i.done(function(){e="resolved"},c.disable,d.lock).fail(function(){e="rejected"},b.disable,d.lock),a&&a.call(i,i);return i},when:function(a){function m(a){return function(b){e[a]=arguments.length>1?i.call(arguments,0):b,j.notifyWith(k,e)}}function l(a){return function(c){b[a]=arguments.length>1?i.call(arguments,0):c,--g||j.resolveWith(j,b)}}var b=i.call(arguments,0),c=0,d=b.length,e=Array(d),g=d,h=d,j=d<=1&&a&&f.isFunction(a.promise)?a:f.Deferred(),k=j.promise();if(d>1){for(;c<d;c++)b[c]&&b[c].promise&&f.isFunction(b[c].promise)?b[c].promise().then(l(c),j.reject,m(c)):--g;g||j.resolveWith(j,b)}else j!==a&&j.resolveWith(j,d?[a]:[]);return k}}),f.support=function(){var b,d,e,g,h,i,j,k,l,m,n,o,p,q=c.createElement("div"),r=c.documentElement;q.setAttribute("className","t"),q.innerHTML=" <link/><table></table><a href='/a' style='top:1px;float:left;opacity:.55;'>a</a><input type='checkbox'/>",d=q.getElementsByTagName("*"),e=q.getElementsByTagName("a")[0];if(!d||!d.length||!e)return{};g=c.createElement("select"),h=g.appendChild(c.createElement("option")),i=q.getElementsByTagName("input")[0],b={leadingWhitespace:q.firstChild.nodeType===3,tbody:!q.getElementsByTagName("tbody").length,htmlSerialize:!!q.getElementsByTagName("link").length,style:/top/.test(e.getAttribute("style")),hrefNormalized:e.getAttribute("href")==="/a",opacity:/^0.55/.test(e.style.opacity),cssFloat:!!e.style.cssFloat,checkOn:i.value==="on",optSelected:h.selected,getSetAttribute:q.className!=="t",enctype:!!c.createElement("form").enctype,html5Clone:c.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0},i.checked=!0,b.noCloneChecked=i.cloneNode(!0).checked,g.disabled=!0,b.optDisabled=!h.disabled;try{delete q.test}catch(s){b.deleteExpando=!1}!q.addEventListener&&q.attachEvent&&q.fireEvent&&(q.attachEvent("onclick",function(){b.noCloneEvent=!1}),q.cloneNode(!0).fireEvent("onclick")),i=c.createElement("input"),i.value="t",i.setAttribute("type","radio"),b.radioValue=i.value==="t",i.setAttribute("checked","checked"),q.appendChild(i),k=c.createDocumentFragment(),k.appendChild(q.lastChild),b.checkClone=k.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=i.checked,k.removeChild(i),k.appendChild(q),q.innerHTML="",a.getComputedStyle&&(j=c.createElement("div"),j.style.width="0",j.style.marginRight="0",q.style.width="2px",q.appendChild(j),b.reliableMarginRight=(parseInt((a.getComputedStyle(j,null)||{marginRight:0}).marginRight,10)||0)===0);if(q.attachEvent)for(o in{submit:1,change:1,focusin:1})n="on"+o,p=n in q,p||(q.setAttribute(n,"return;"),p=typeof q[n]=="function"),b[o+"Bubbles"]=p;k.removeChild(q),k=g=h=j=q=i=null,f(function(){var a,d,e,g,h,i,j,k,m,n,o,r=c.getElementsByTagName("body")[0];!r||(j=1,k="position:absolute;top:0;left:0;width:1px;height:1px;margin:0;",m="visibility:hidden;border:0;",n="style='"+k+"border:5px solid #000;padding:0;'",o="<div "+n+"><div></div></div>"+"<table "+n+" cellpadding='0' cellspacing='0'>"+"<tr><td></td></tr></table>",a=c.createElement("div"),a.style.cssText=m+"width:0;height:0;position:static;top:0;margin-top:"+j+"px",r.insertBefore(a,r.firstChild),q=c.createElement("div"),a.appendChild(q),q.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>",l=q.getElementsByTagName("td"),p=l[0].offsetHeight===0,l[0].style.display="",l[1].style.display="none",b.reliableHiddenOffsets=p&&l[0].offsetHeight===0,q.innerHTML="",q.style.width=q.style.paddingLeft="1px",f.boxModel=b.boxModel=q.offsetWidth===2,typeof q.style.zoom!="undefined"&&(q.style.display="inline",q.style.zoom=1,b.inlineBlockNeedsLayout=q.offsetWidth===2,q.style.display="",q.innerHTML="<div style='width:4px;'></div>",b.shrinkWrapBlocks=q.offsetWidth!==2),q.style.cssText=k+m,q.innerHTML=o,d=q.firstChild,e=d.firstChild,h=d.nextSibling.firstChild.firstChild,i={doesNotAddBorder:e.offsetTop!==5,doesAddBorderForTableAndCells:h.offsetTop===5},e.style.position="fixed",e.style.top="20px",i.fixedPosition=e.offsetTop===20||e.offsetTop===15,e.style.position=e.style.top="",d.style.overflow="hidden",d.style.position="relative",i.subtractsBorderForOverflowNotVisible=e.offsetTop===-5,i.doesNotIncludeMarginInBodyOffset=r.offsetTop!==j,r.removeChild(a),q=a=null,f.extend(b,i))});return b}();var j=/^(?:\{.*\}|\[.*\])$/,k=/([A-Z])/g;f.extend({cache:{},uuid:0,expando:"jQuery"+(f.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){a=a.nodeType?f.cache[a[f.expando]]:a[f.expando];return!!a&&!m(a)},data:function(a,c,d,e){if(!!f.acceptData(a)){var g,h,i,j=f.expando,k=typeof c=="string",l=a.nodeType,m=l?f.cache:a,n=l?a[j]:a[j]&&j,o=c==="events";if((!n||!m[n]||!o&&!e&&!m[n].data)&&k&&d===b)return;n||(l?a[j]=n=++f.uuid:n=j),m[n]||(m[n]={},l||(m[n].toJSON=f.noop));if(typeof c=="object"||typeof c=="function")e?m[n]=f.extend(m[n],c):m[n].data=f.extend(m[n].data,c);g=h=m[n],e||(h.data||(h.data={}),h=h.data),d!==b&&(h[f.camelCase(c)]=d);if(o&&!h[c])return g.events;k?(i=h[c],i==null&&(i=h[f.camelCase(c)])):i=h;return i}},removeData:function(a,b,c){if(!!f.acceptData(a)){var d,e,g,h=f.expando,i=a.nodeType,j=i?f.cache:a,k=i?a[h]:h;if(!j[k])return;if(b){d=c?j[k]:j[k].data;if(d){f.isArray(b)||(b in d?b=[b]:(b=f.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,g=b.length;e<g;e++)delete d[b[e]];if(!(c?m:f.isEmptyObject)(d))return}}if(!c){delete j[k].data;if(!m(j[k]))return}f.support.deleteExpando||!j.setInterval?delete j[k]:j[k]=null,i&&(f.support.deleteExpando?delete a[h]:a.removeAttribute?a.removeAttribute(h):a[h]=null)}},_data:function(a,b,c){return f.data(a,b,c,!0)},acceptData:function(a){if(a.nodeName){var b=f.noData[a.nodeName.toLowerCase()];if(b)return b!==!0&&a.getAttribute("classid")===b}return!0}}),f.fn.extend({data:function(a,c){var d,e,g,h=null;if(typeof a=="undefined"){if(this.length){h=f.data(this[0]);if(this[0].nodeType===1&&!f._data(this[0],"parsedAttrs")){e=this[0].attributes;for(var i=0,j=e.length;i<j;i++)g=e[i].name,g.indexOf("data-")===0&&(g=f.camelCase(g.substring(5)),l(this[0],g,h[g]));f._data(this[0],"parsedAttrs",!0)}}return h}if(typeof a=="object")return this.each(function(){f.data(this,a)});d=a.split("."),d[1]=d[1]?"."+d[1]:"";if(c===b){h=this.triggerHandler("getData"+d[1]+"!",[d[0]]),h===b&&this.length&&(h=f.data(this[0],a),h=l(this[0],a,h));return h===b&&d[1]?this.data(d[0]):h}return this.each(function(){var b=f(this),e=[d[0],c];b.triggerHandler("setData"+d[1]+"!",e),f.data(this,a,c),b.triggerHandler("changeData"+d[1]+"!",e)})},removeData:function(a){return this.each(function(){f.removeData(this,a)})}}),f.extend({_mark:function(a,b){a&&(b=(b||"fx")+"mark",f._data(a,b,(f._data(a,b)||0)+1))},_unmark:function(a,b,c){a!==!0&&(c=b,b=a,a=!1);if(b){c=c||"fx";var d=c+"mark",e=a?0:(f._data(b,d)||1)-1;e?f._data(b,d,e):(f.removeData(b,d,!0),n(b,c,"mark"))}},queue:function(a,b,c){var d;if(a){b=(b||"fx")+"queue",d=f._data(a,b),c&&(!d||f.isArray(c)?d=f._data(a,b,f.makeArray(c)):d.push(c));return d||[]}},dequeue:function(a,b){b=b||"fx";var c=f.queue(a,b),d=c.shift(),e={};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),f._data(a,b+".run",e),d.call(a,function(){f.dequeue(a,b)},e)),c.length||(f.removeData(a,b+"queue "+b+".run",!0),n(a,b,"queue"))}}),f.fn.extend({queue:function(a,c){typeof a!="string"&&(c=a,a="fx");if(c===b)return f.queue(this[0],a);return this.each(function(){var b=f.queue(this,a,c);a==="fx"&&b[0]!=="inprogress"&&f.dequeue(this,a)})},dequeue:function(a){return this.each(function(){f.dequeue(this,a)})},delay:function(a,b){a=f.fx?f.fx.speeds[a]||a:a,b=b||"fx";return this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){function m(){--h||d.resolveWith(e,[e])}typeof a!="string"&&(c=a,a=b),a=a||"fx";var d=f.Deferred(),e=this,g=e.length,h=1,i=a+"defer",j=a+"queue",k=a+"mark",l;while(g--)if(l=f.data(e[g],i,b,!0)||(f.data(e[g],j,b,!0)||f.data(e[g],k,b,!0))&&f.data(e[g],i,f.Callbacks("once memory"),!0))h++,l.add(m);m();return d.promise()}});var o=/[\n\t\r]/g,p=/\s+/,q=/\r/g,r=/^(?:button|input)$/i,s=/^(?:button|input|object|select|textarea)$/i,t=/^a(?:rea)?$/i,u=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,v=f.support.getSetAttribute,w,x,y;f.fn.extend({attr:function(a,b){return f.access(this,a,b,!0,f.attr)},removeAttr:function(a){return this.each(function(){f.removeAttr(this,a)})},prop:function(a,b){return f.access(this,a,b,!0,f.prop)},removeProp:function(a){a=f.propFix[a]||a;return this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,g,h,i;if(f.isFunction(a))return this.each(function(b){f(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(p);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{g=" "+e.className+" ";for(h=0,i=b.length;h<i;h++)~g.indexOf(" "+b[h]+" ")||(g+=b[h]+" ");e.className=f.trim(g)}}}return this},removeClass:function(a){var c,d,e,g,h,i,j;if(f.isFunction(a))return this.each(function(b){f(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(p);for(d=0,e=this.length;d<e;d++){g=this[d];if(g.nodeType===1&&g.className)if(a){h=(" "+g.className+" ").replace(o," ");for(i=0,j=c.length;i<j;i++)h=h.replace(" "+c[i]+" "," ");g.className=f.trim(h)}else g.className=""}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";if(f.isFunction(a))return this.each(function(c){f(this).toggleClass(a.call(this,c,this.className,b),b)});return this.each(function(){if(c==="string"){var e,g=0,h=f(this),i=b,j=a.split(p);while(e=j[g++])i=d?i:!h.hasClass(e),h[i?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&f._data(this,"__className__",this.className),this.className=this.className||a===!1?"":f._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(o," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,g=this[0];{if(!!arguments.length){e=f.isFunction(a);return this.each(function(d){var g=f(this),h;if(this.nodeType===1){e?h=a.call(this,d,g.val()):h=a,h==null?h="":typeof h=="number"?h+="":f.isArray(h)&&(h=f.map(h,function(a){return a==null?"":a+""})),c=f.valHooks[this.nodeName.toLowerCase()]||f.valHooks[this.type];if(!c||!("set"in c)||c.set(this,h,"value")===b)this.value=h}})}if(g){c=f.valHooks[g.nodeName.toLowerCase()]||f.valHooks[g.type];if(c&&"get"in c&&(d=c.get(g,"value"))!==b)return d;d=g.value;return typeof d=="string"?d.replace(q,""):d==null?"":d}}}}),f.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,g=a.selectedIndex,h=[],i=a.options,j=a.type==="select-one";if(g<0)return null;c=j?g:0,d=j?g+1:i.length;for(;c<d;c++){e=i[c];if(e.selected&&(f.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!f.nodeName(e.parentNode,"optgroup"))){b=f(e).val();if(j)return b;h.push(b)}}if(j&&!h.length&&i.length)return f(i[g]).val();return h},set:function(a,b){var c=f.makeArray(b);f(a).find("option").each(function(){this.selected=f.inArray(f(this).val(),c)>=0}),c.length||(a.selectedIndex=-1);return c}}},attrFn:{val:!0,css:!0,html:!0,text:!0,data:!0,width:!0,height:!0,offset:!0},attr:function(a,c,d,e){var g,h,i,j=a.nodeType;if(!!a&&j!==3&&j!==8&&j!==2){if(e&&c in f.attrFn)return f(a)[c](d);if(typeof a.getAttribute=="undefined")return f.prop(a,c,d);i=j!==1||!f.isXMLDoc(a),i&&(c=c.toLowerCase(),h=f.attrHooks[c]||(u.test(c)?x:w));if(d!==b){if(d===null){f.removeAttr(a,c);return}if(h&&"set"in h&&i&&(g=h.set(a,d,c))!==b)return g;a.setAttribute(c,""+d);return d}if(h&&"get"in h&&i&&(g=h.get(a,c))!==null)return g;g=a.getAttribute(c);return g===null?b:g}},removeAttr:function(a,b){var c,d,e,g,h=0;if(b&&a.nodeType===1){d=b.toLowerCase().split(p),g=d.length;for(;h<g;h++)e=d[h],e&&(c=f.propFix[e]||e,f.attr(a,e,""),a.removeAttribute(v?e:c),u.test(e)&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(r.test(a.nodeName)&&a.parentNode)f.error("type property can't be changed");else if(!f.support.radioValue&&b==="radio"&&f.nodeName(a,"input")){var c=a.value;a.setAttribute("type",b),c&&(a.value=c);return b}}},value:{get:function(a,b){if(w&&f.nodeName(a,"button"))return w.get(a,b);return b in a?a.value:null},set:function(a,b,c){if(w&&f.nodeName(a,"button"))return w.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,g,h,i=a.nodeType;if(!!a&&i!==3&&i!==8&&i!==2){h=i!==1||!f.isXMLDoc(a),h&&(c=f.propFix[c]||c,g=f.propHooks[c]);return d!==b?g&&"set"in g&&(e=g.set(a,d,c))!==b?e:a[c]=d:g&&"get"in g&&(e=g.get(a,c))!==null?e:a[c]}},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):s.test(a.nodeName)||t.test(a.nodeName)&&a.href?0:b}}}}),f.attrHooks.tabindex=f.propHooks.tabIndex,x={get:function(a,c){var d,e=f.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;b===!1?f.removeAttr(a,c):(d=f.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase()));return c}},v||(y={name:!0,id:!0},w=f.valHooks.button={get:function(a,c){var d;d=a.getAttributeNode(c);return d&&(y[c]?d.nodeValue!=="":d.specified)?d.nodeValue:b},set:function(a,b,d){var e=a.getAttributeNode(d);e||(e=c.createAttribute(d),a.setAttributeNode(e));return e.nodeValue=b+""}},f.attrHooks.tabindex.set=w.set,f.each(["width","height"],function(a,b){f.attrHooks[b]=f.extend(f.attrHooks[b],{set:function(a,c){if(c===""){a.setAttribute(b,"auto");return c}}})}),f.attrHooks.contenteditable={get:w.get,set:function(a,b,c){b===""&&(b="false"),w.set(a,b,c)}}),f.support.hrefNormalized||f.each(["href","src","width","height"],function(a,c){f.attrHooks[c]=f.extend(f.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),f.support.style||(f.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),f.support.optSelected||(f.propHooks.selected=f.extend(f.propHooks.selected,{get:function(a){var b=a.parentNode;b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex);return null}})),f.support.enctype||(f.propFix.enctype="encoding"),f.support.checkOn||f.each(["radio","checkbox"],function(){f.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),f.each(["radio","checkbox"],function(){f.valHooks[this]=f.extend(f.valHooks[this],{set:function(a,b){if(f.isArray(b))return a.checked=f.inArray(f(a).val(),b)>=0}})});var z=/^(?:textarea|input|select)$/i,A=/^([^\.]*)?(?:\.(.+))?$/,B=/\bhover(\.\S+)?\b/,C=/^key/,D=/^(?:mouse|contextmenu)|click/,E=/^(?:focusinfocus|focusoutblur)$/,F=/^(\w*)(?:#([\w\-]+))?(?:\.([\w\-]+))?$/,G=function(a){var b=F.exec(a);b&&(b[1]=(b[1]||"").toLowerCase(),b[3]=b[3]&&new RegExp("(?:^|\\s)"+b[3]+"(?:\\s|$)"));return b},H=function(a,b){var c=a.attributes||{};return(!b[1]||a.nodeName.toLowerCase()===b[1])&&(!b[2]||(c.id||{}).value===b[2])&&(!b[3]||b[3].test((c["class"]||{}).value))},I=function(a){return f.event.special.hover?a:a.replace(B,"mouseenter$1 mouseleave$1")};
  f.event={add:function(a,c,d,e,g){var h,i,j,k,l,m,n,o,p,q,r,s;if(!(a.nodeType===3||a.nodeType===8||!c||!d||!(h=f._data(a)))){d.handler&&(p=d,d=p.handler),d.guid||(d.guid=f.guid++),j=h.events,j||(h.events=j={}),i=h.handle,i||(h.handle=i=function(a){return typeof f!="undefined"&&(!a||f.event.triggered!==a.type)?f.event.dispatch.apply(i.elem,arguments):b},i.elem=a),c=f.trim(I(c)).split(" ");for(k=0;k<c.length;k++){l=A.exec(c[k])||[],m=l[1],n=(l[2]||"").split(".").sort(),s=f.event.special[m]||{},m=(g?s.delegateType:s.bindType)||m,s=f.event.special[m]||{},o=f.extend({type:m,origType:l[1],data:e,handler:d,guid:d.guid,selector:g,quick:G(g),namespace:n.join(".")},p),r=j[m];if(!r){r=j[m]=[],r.delegateCount=0;if(!s.setup||s.setup.call(a,e,n,i)===!1)a.addEventListener?a.addEventListener(m,i,!1):a.attachEvent&&a.attachEvent("on"+m,i)}s.add&&(s.add.call(a,o),o.handler.guid||(o.handler.guid=d.guid)),g?r.splice(r.delegateCount++,0,o):r.push(o),f.event.global[m]=!0}a=null}},global:{},remove:function(a,b,c,d,e){var g=f.hasData(a)&&f._data(a),h,i,j,k,l,m,n,o,p,q,r,s;if(!!g&&!!(o=g.events)){b=f.trim(I(b||"")).split(" ");for(h=0;h<b.length;h++){i=A.exec(b[h])||[],j=k=i[1],l=i[2];if(!j){for(j in o)f.event.remove(a,j+b[h],c,d,!0);continue}p=f.event.special[j]||{},j=(d?p.delegateType:p.bindType)||j,r=o[j]||[],m=r.length,l=l?new RegExp("(^|\\.)"+l.split(".").sort().join("\\.(?:.*\\.)?")+"(\\.|$)"):null;for(n=0;n<r.length;n++)s=r[n],(e||k===s.origType)&&(!c||c.guid===s.guid)&&(!l||l.test(s.namespace))&&(!d||d===s.selector||d==="**"&&s.selector)&&(r.splice(n--,1),s.selector&&r.delegateCount--,p.remove&&p.remove.call(a,s));r.length===0&&m!==r.length&&((!p.teardown||p.teardown.call(a,l)===!1)&&f.removeEvent(a,j,g.handle),delete o[j])}f.isEmptyObject(o)&&(q=g.handle,q&&(q.elem=null),f.removeData(a,["events","handle"],!0))}},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,e,g){if(!e||e.nodeType!==3&&e.nodeType!==8){var h=c.type||c,i=[],j,k,l,m,n,o,p,q,r,s;if(E.test(h+f.event.triggered))return;h.indexOf("!")>=0&&(h=h.slice(0,-1),k=!0),h.indexOf(".")>=0&&(i=h.split("."),h=i.shift(),i.sort());if((!e||f.event.customEvent[h])&&!f.event.global[h])return;c=typeof c=="object"?c[f.expando]?c:new f.Event(h,c):new f.Event(h),c.type=h,c.isTrigger=!0,c.exclusive=k,c.namespace=i.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+i.join("\\.(?:.*\\.)?")+"(\\.|$)"):null,o=h.indexOf(":")<0?"on"+h:"";if(!e){j=f.cache;for(l in j)j[l].events&&j[l].events[h]&&f.event.trigger(c,d,j[l].handle.elem,!0);return}c.result=b,c.target||(c.target=e),d=d!=null?f.makeArray(d):[],d.unshift(c),p=f.event.special[h]||{};if(p.trigger&&p.trigger.apply(e,d)===!1)return;r=[[e,p.bindType||h]];if(!g&&!p.noBubble&&!f.isWindow(e)){s=p.delegateType||h,m=E.test(s+h)?e:e.parentNode,n=null;for(;m;m=m.parentNode)r.push([m,s]),n=m;n&&n===e.ownerDocument&&r.push([n.defaultView||n.parentWindow||a,s])}for(l=0;l<r.length&&!c.isPropagationStopped();l++)m=r[l][0],c.type=r[l][1],q=(f._data(m,"events")||{})[c.type]&&f._data(m,"handle"),q&&q.apply(m,d),q=o&&m[o],q&&f.acceptData(m)&&q.apply(m,d)===!1&&c.preventDefault();c.type=h,!g&&!c.isDefaultPrevented()&&(!p._default||p._default.apply(e.ownerDocument,d)===!1)&&(h!=="click"||!f.nodeName(e,"a"))&&f.acceptData(e)&&o&&e[h]&&(h!=="focus"&&h!=="blur"||c.target.offsetWidth!==0)&&!f.isWindow(e)&&(n=e[o],n&&(e[o]=null),f.event.triggered=h,e[h](),f.event.triggered=b,n&&(e[o]=n));return c.result}},dispatch:function(c){c=f.event.fix(c||a.event);var d=(f._data(this,"events")||{})[c.type]||[],e=d.delegateCount,g=[].slice.call(arguments,0),h=!c.exclusive&&!c.namespace,i=[],j,k,l,m,n,o,p,q,r,s,t;g[0]=c,c.delegateTarget=this;if(e&&!c.target.disabled&&(!c.button||c.type!=="click")){m=f(this),m.context=this.ownerDocument||this;for(l=c.target;l!=this;l=l.parentNode||this){o={},q=[],m[0]=l;for(j=0;j<e;j++)r=d[j],s=r.selector,o[s]===b&&(o[s]=r.quick?H(l,r.quick):m.is(s)),o[s]&&q.push(r);q.length&&i.push({elem:l,matches:q})}}d.length>e&&i.push({elem:this,matches:d.slice(e)});for(j=0;j<i.length&&!c.isPropagationStopped();j++){p=i[j],c.currentTarget=p.elem;for(k=0;k<p.matches.length&&!c.isImmediatePropagationStopped();k++){r=p.matches[k];if(h||!c.namespace&&!r.namespace||c.namespace_re&&c.namespace_re.test(r.namespace))c.data=r.data,c.handleObj=r,n=((f.event.special[r.origType]||{}).handle||r.handler).apply(p.elem,g),n!==b&&(c.result=n,n===!1&&(c.preventDefault(),c.stopPropagation()))}}return c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode);return a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,d){var e,f,g,h=d.button,i=d.fromElement;a.pageX==null&&d.clientX!=null&&(e=a.target.ownerDocument||c,f=e.documentElement,g=e.body,a.pageX=d.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=d.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?d.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0);return a}},fix:function(a){if(a[f.expando])return a;var d,e,g=a,h=f.event.fixHooks[a.type]||{},i=h.props?this.props.concat(h.props):this.props;a=f.Event(g);for(d=i.length;d;)e=i[--d],a[e]=g[e];a.target||(a.target=g.srcElement||c),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey===b&&(a.metaKey=a.ctrlKey);return h.filter?h.filter(a,g):a},special:{ready:{setup:f.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){f.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=f.extend(new f.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?f.event.trigger(e,null,b):f.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},f.event.handle=f.event.dispatch,f.removeEvent=c.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){a.detachEvent&&a.detachEvent("on"+b,c)},f.Event=function(a,b){if(!(this instanceof f.Event))return new f.Event(a,b);a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?K:J):this.type=a,b&&f.extend(this,b),this.timeStamp=a&&a.timeStamp||f.now(),this[f.expando]=!0},f.Event.prototype={preventDefault:function(){this.isDefaultPrevented=K;var a=this.originalEvent;!a||(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){this.isPropagationStopped=K;var a=this.originalEvent;!a||(a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=K,this.stopPropagation()},isDefaultPrevented:J,isPropagationStopped:J,isImmediatePropagationStopped:J},f.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){f.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c=this,d=a.relatedTarget,e=a.handleObj,g=e.selector,h;if(!d||d!==c&&!f.contains(c,d))a.type=e.origType,h=e.handler.apply(this,arguments),a.type=b;return h}}}),f.support.submitBubbles||(f.event.special.submit={setup:function(){if(f.nodeName(this,"form"))return!1;f.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=f.nodeName(c,"input")||f.nodeName(c,"button")?c.form:b;d&&!d._submit_attached&&(f.event.add(d,"submit._submit",function(a){this.parentNode&&!a.isTrigger&&f.event.simulate("submit",this.parentNode,a,!0)}),d._submit_attached=!0)})},teardown:function(){if(f.nodeName(this,"form"))return!1;f.event.remove(this,"._submit")}}),f.support.changeBubbles||(f.event.special.change={setup:function(){if(z.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")f.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),f.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1,f.event.simulate("change",this,a,!0))});return!1}f.event.add(this,"beforeactivate._change",function(a){var b=a.target;z.test(b.nodeName)&&!b._change_attached&&(f.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&f.event.simulate("change",this.parentNode,a,!0)}),b._change_attached=!0)})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){f.event.remove(this,"._change");return z.test(this.nodeName)}}),f.support.focusinBubbles||f.each({focus:"focusin",blur:"focusout"},function(a,b){var d=0,e=function(a){f.event.simulate(b,a.target,f.event.fix(a),!0)};f.event.special[b]={setup:function(){d++===0&&c.addEventListener(a,e,!0)},teardown:function(){--d===0&&c.removeEventListener(a,e,!0)}}}),f.fn.extend({on:function(a,c,d,e,g){var h,i;if(typeof a=="object"){typeof c!="string"&&(d=c,c=b);for(i in a)this.on(i,c,d,a[i],g);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=J;else if(!e)return this;g===1&&(h=e,e=function(a){f().off(a);return h.apply(this,arguments)},e.guid=h.guid||(h.guid=f.guid++));return this.each(function(){f.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on.call(this,a,b,c,d,1)},off:function(a,c,d){if(a&&a.preventDefault&&a.handleObj){var e=a.handleObj;f(a.delegateTarget).off(e.namespace?e.type+"."+e.namespace:e.type,e.selector,e.handler);return this}if(typeof a=="object"){for(var g in a)this.off(g,c,a[g]);return this}if(c===!1||typeof c=="function")d=c,c=b;d===!1&&(d=J);return this.each(function(){f.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){f(this.context).on(a,this.selector,b,c);return this},die:function(a,b){f(this.context).off(a,this.selector||"**",b);return this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a,c)},trigger:function(a,b){return this.each(function(){f.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return f.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||f.guid++,d=0,e=function(c){var e=(f._data(this,"lastToggle"+a.guid)||0)%d;f._data(this,"lastToggle"+a.guid,e+1),c.preventDefault();return b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),f.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){f.fn[b]=function(a,c){c==null&&(c=a,a=null);return arguments.length>0?this.on(b,null,a,c):this.trigger(b)},f.attrFn&&(f.attrFn[b]=!0),C.test(b)&&(f.event.fixHooks[b]=f.event.keyHooks),D.test(b)&&(f.event.fixHooks[b]=f.event.mouseHooks)}),function(){function x(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}if(j.nodeType===1){g||(j[d]=c,j.sizset=h);if(typeof b!="string"){if(j===b){k=!0;break}}else if(m.filter(b,[j]).length>0){k=j;break}}j=j[a]}e[h]=k}}}function w(a,b,c,e,f,g){for(var h=0,i=e.length;h<i;h++){var j=e[h];if(j){var k=!1;j=j[a];while(j){if(j[d]===c){k=e[j.sizset];break}j.nodeType===1&&!g&&(j[d]=c,j.sizset=h);if(j.nodeName.toLowerCase()===b){k=j;break}j=j[a]}e[h]=k}}}var a=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,d="sizcache"+(Math.random()+"").replace(".",""),e=0,g=Object.prototype.toString,h=!1,i=!0,j=/\\/g,k=/\r\n/g,l=/\W/;[0,0].sort(function(){i=!1;return 0});var m=function(b,d,e,f){e=e||[],d=d||c;var h=d;if(d.nodeType!==1&&d.nodeType!==9)return[];if(!b||typeof b!="string")return e;var i,j,k,l,n,q,r,t,u=!0,v=m.isXML(d),w=[],x=b;do{a.exec(""),i=a.exec(x);if(i){x=i[3],w.push(i[1]);if(i[2]){l=i[3];break}}}while(i);if(w.length>1&&p.exec(b))if(w.length===2&&o.relative[w[0]])j=y(w[0]+w[1],d,f);else{j=o.relative[w[0]]?[d]:m(w.shift(),d);while(w.length)b=w.shift(),o.relative[b]&&(b+=w.shift()),j=y(b,j,f)}else{!f&&w.length>1&&d.nodeType===9&&!v&&o.match.ID.test(w[0])&&!o.match.ID.test(w[w.length-1])&&(n=m.find(w.shift(),d,v),d=n.expr?m.filter(n.expr,n.set)[0]:n.set[0]);if(d){n=f?{expr:w.pop(),set:s(f)}:m.find(w.pop(),w.length===1&&(w[0]==="~"||w[0]==="+")&&d.parentNode?d.parentNode:d,v),j=n.expr?m.filter(n.expr,n.set):n.set,w.length>0?k=s(j):u=!1;while(w.length)q=w.pop(),r=q,o.relative[q]?r=w.pop():q="",r==null&&(r=d),o.relative[q](k,r,v)}else k=w=[]}k||(k=j),k||m.error(q||b);if(g.call(k)==="[object Array]")if(!u)e.push.apply(e,k);else if(d&&d.nodeType===1)for(t=0;k[t]!=null;t++)k[t]&&(k[t]===!0||k[t].nodeType===1&&m.contains(d,k[t]))&&e.push(j[t]);else for(t=0;k[t]!=null;t++)k[t]&&k[t].nodeType===1&&e.push(j[t]);else s(k,e);l&&(m(l,h,e,f),m.uniqueSort(e));return e};m.uniqueSort=function(a){if(u){h=i,a.sort(u);if(h)for(var b=1;b<a.length;b++)a[b]===a[b-1]&&a.splice(b--,1)}return a},m.matches=function(a,b){return m(a,null,null,b)},m.matchesSelector=function(a,b){return m(b,null,null,[a]).length>0},m.find=function(a,b,c){var d,e,f,g,h,i;if(!a)return[];for(e=0,f=o.order.length;e<f;e++){h=o.order[e];if(g=o.leftMatch[h].exec(a)){i=g[1],g.splice(1,1);if(i.substr(i.length-1)!=="\\"){g[1]=(g[1]||"").replace(j,""),d=o.find[h](g,b,c);if(d!=null){a=a.replace(o.match[h],"");break}}}}d||(d=typeof b.getElementsByTagName!="undefined"?b.getElementsByTagName("*"):[]);return{set:d,expr:a}},m.filter=function(a,c,d,e){var f,g,h,i,j,k,l,n,p,q=a,r=[],s=c,t=c&&c[0]&&m.isXML(c[0]);while(a&&c.length){for(h in o.filter)if((f=o.leftMatch[h].exec(a))!=null&&f[2]){k=o.filter[h],l=f[1],g=!1,f.splice(1,1);if(l.substr(l.length-1)==="\\")continue;s===r&&(r=[]);if(o.preFilter[h]){f=o.preFilter[h](f,s,d,r,e,t);if(!f)g=i=!0;else if(f===!0)continue}if(f)for(n=0;(j=s[n])!=null;n++)j&&(i=k(j,f,n,s),p=e^i,d&&i!=null?p?g=!0:s[n]=!1:p&&(r.push(j),g=!0));if(i!==b){d||(s=r),a=a.replace(o.match[h],"");if(!g)return[];break}}if(a===q)if(g==null)m.error(a);else break;q=a}return s},m.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)};var n=m.getText=function(a){var b,c,d=a.nodeType,e="";if(d){if(d===1||d===9){if(typeof a.textContent=="string")return a.textContent;if(typeof a.innerText=="string")return a.innerText.replace(k,"");for(a=a.firstChild;a;a=a.nextSibling)e+=n(a)}else if(d===3||d===4)return a.nodeValue}else for(b=0;c=a[b];b++)c.nodeType!==8&&(e+=n(c));return e},o=m.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^\-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF\-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(a){return a.getAttribute("href")},type:function(a){return a.getAttribute("type")}},relative:{"+":function(a,b){var c=typeof b=="string",d=c&&!l.test(b),e=c&&!d;d&&(b=b.toLowerCase());for(var f=0,g=a.length,h;f<g;f++)if(h=a[f]){while((h=h.previousSibling)&&h.nodeType!==1);a[f]=e||h&&h.nodeName.toLowerCase()===b?h||!1:h===b}e&&m.filter(b,a,!0)},">":function(a,b){var c,d=typeof b=="string",e=0,f=a.length;if(d&&!l.test(b)){b=b.toLowerCase();for(;e<f;e++){c=a[e];if(c){var g=c.parentNode;a[e]=g.nodeName.toLowerCase()===b?g:!1}}}else{for(;e<f;e++)c=a[e],c&&(a[e]=d?c.parentNode:c.parentNode===b);d&&m.filter(b,a,!0)}},"":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("parentNode",b,f,a,d,c)},"~":function(a,b,c){var d,f=e++,g=x;typeof b=="string"&&!l.test(b)&&(b=b.toLowerCase(),d=b,g=w),g("previousSibling",b,f,a,d,c)}},find:{ID:function(a,b,c){if(typeof b.getElementById!="undefined"&&!c){var d=b.getElementById(a[1]);return d&&d.parentNode?[d]:[]}},NAME:function(a,b){if(typeof b.getElementsByName!="undefined"){var c=[],d=b.getElementsByName(a[1]);for(var e=0,f=d.length;e<f;e++)d[e].getAttribute("name")===a[1]&&c.push(d[e]);return c.length===0?null:c}},TAG:function(a,b){if(typeof b.getElementsByTagName!="undefined")return b.getElementsByTagName(a[1])}},preFilter:{CLASS:function(a,b,c,d,e,f){a=" "+a[1].replace(j,"")+" ";if(f)return a;for(var g=0,h;(h=b[g])!=null;g++)h&&(e^(h.className&&(" "+h.className+" ").replace(/[\t\n\r]/g," ").indexOf(a)>=0)?c||d.push(h):c&&(b[g]=!1));return!1},ID:function(a){return a[1].replace(j,"")},TAG:function(a,b){return a[1].replace(j,"").toLowerCase()},CHILD:function(a){if(a[1]==="nth"){a[2]||m.error(a[0]),a[2]=a[2].replace(/^\+|\s*/g,"");var b=/(-?)(\d*)(?:n([+\-]?\d*))?/.exec(a[2]==="even"&&"2n"||a[2]==="odd"&&"2n+1"||!/\D/.test(a[2])&&"0n+"+a[2]||a[2]);a[2]=b[1]+(b[2]||1)-0,a[3]=b[3]-0}else a[2]&&m.error(a[0]);a[0]=e++;return a},ATTR:function(a,b,c,d,e,f){var g=a[1]=a[1].replace(j,"");!f&&o.attrMap[g]&&(a[1]=o.attrMap[g]),a[4]=(a[4]||a[5]||"").replace(j,""),a[2]==="~="&&(a[4]=" "+a[4]+" ");return a},PSEUDO:function(b,c,d,e,f){if(b[1]==="not")if((a.exec(b[3])||"").length>1||/^\w/.test(b[3]))b[3]=m(b[3],null,null,c);else{var g=m.filter(b[3],c,d,!0^f);d||e.push.apply(e,g);return!1}else if(o.match.POS.test(b[0])||o.match.CHILD.test(b[0]))return!0;return b},POS:function(a){a.unshift(!0);return a}},filters:{enabled:function(a){return a.disabled===!1&&a.type!=="hidden"},disabled:function(a){return a.disabled===!0},checked:function(a){return a.checked===!0},selected:function(a){a.parentNode&&a.parentNode.selectedIndex;return a.selected===!0},parent:function(a){return!!a.firstChild},empty:function(a){return!a.firstChild},has:function(a,b,c){return!!m(c[3],a).length},header:function(a){return/h\d/i.test(a.nodeName)},text:function(a){var b=a.getAttribute("type"),c=a.type;return a.nodeName.toLowerCase()==="input"&&"text"===c&&(b===c||b===null)},radio:function(a){return a.nodeName.toLowerCase()==="input"&&"radio"===a.type},checkbox:function(a){return a.nodeName.toLowerCase()==="input"&&"checkbox"===a.type},file:function(a){return a.nodeName.toLowerCase()==="input"&&"file"===a.type},password:function(a){return a.nodeName.toLowerCase()==="input"&&"password"===a.type},submit:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"submit"===a.type},image:function(a){return a.nodeName.toLowerCase()==="input"&&"image"===a.type},reset:function(a){var b=a.nodeName.toLowerCase();return(b==="input"||b==="button")&&"reset"===a.type},button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&"button"===a.type||b==="button"},input:function(a){return/input|select|textarea|button/i.test(a.nodeName)},focus:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b){return b===0},last:function(a,b,c,d){return b===d.length-1},even:function(a,b){return b%2===0},odd:function(a,b){return b%2===1},lt:function(a,b,c){return b<c[3]-0},gt:function(a,b,c){return b>c[3]-0},nth:function(a,b,c){return c[3]-0===b},eq:function(a,b,c){return c[3]-0===b}},filter:{PSEUDO:function(a,b,c,d){var e=b[1],f=o.filters[e];if(f)return f(a,c,b,d);if(e==="contains")return(a.textContent||a.innerText||n([a])||"").indexOf(b[3])>=0;if(e==="not"){var g=b[3];for(var h=0,i=g.length;h<i;h++)if(g[h]===a)return!1;return!0}m.error(e)},CHILD:function(a,b){var c,e,f,g,h,i,j,k=b[1],l=a;switch(k){case"only":case"first":while(l=l.previousSibling)if(l.nodeType===1)return!1;if(k==="first")return!0;l=a;case"last":while(l=l.nextSibling)if(l.nodeType===1)return!1;return!0;case"nth":c=b[2],e=b[3];if(c===1&&e===0)return!0;f=b[0],g=a.parentNode;if(g&&(g[d]!==f||!a.nodeIndex)){i=0;for(l=g.firstChild;l;l=l.nextSibling)l.nodeType===1&&(l.nodeIndex=++i);g[d]=f}j=a.nodeIndex-e;return c===0?j===0:j%c===0&&j/c>=0}},ID:function(a,b){return a.nodeType===1&&a.getAttribute("id")===b},TAG:function(a,b){return b==="*"&&a.nodeType===1||!!a.nodeName&&a.nodeName.toLowerCase()===b},CLASS:function(a,b){return(" "+(a.className||a.getAttribute("class"))+" ").indexOf(b)>-1},ATTR:function(a,b){var c=b[1],d=m.attr?m.attr(a,c):o.attrHandle[c]?o.attrHandle[c](a):a[c]!=null?a[c]:a.getAttribute(c),e=d+"",f=b[2],g=b[4];return d==null?f==="!=":!f&&m.attr?d!=null:f==="="?e===g:f==="*="?e.indexOf(g)>=0:f==="~="?(" "+e+" ").indexOf(g)>=0:g?f==="!="?e!==g:f==="^="?e.indexOf(g)===0:f==="$="?e.substr(e.length-g.length)===g:f==="|="?e===g||e.substr(0,g.length+1)===g+"-":!1:e&&d!==!1},POS:function(a,b,c,d){var e=b[2],f=o.setFilters[e];if(f)return f(a,c,b,d)}}},p=o.match.POS,q=function(a,b){return"\\"+(b-0+1)};for(var r in o.match)o.match[r]=new RegExp(o.match[r].source+/(?![^\[]*\])(?![^\(]*\))/.source),o.leftMatch[r]=new RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[r].source.replace(/\\(\d+)/g,q));var s=function(a,b){a=Array.prototype.slice.call(a,0);if(b){b.push.apply(b,a);return b}return a};try{Array.prototype.slice.call(c.documentElement.childNodes,0)[0].nodeType}catch(t){s=function(a,b){var c=0,d=b||[];if(g.call(a)==="[object Array]")Array.prototype.push.apply(d,a);else if(typeof a.length=="number")for(var e=a.length;c<e;c++)d.push(a[c]);else for(;a[c];c++)d.push(a[c]);return d}}var u,v;c.documentElement.compareDocumentPosition?u=function(a,b){if(a===b){h=!0;return 0}if(!a.compareDocumentPosition||!b.compareDocumentPosition)return a.compareDocumentPosition?-1:1;return a.compareDocumentPosition(b)&4?-1:1}:(u=function(a,b){if(a===b){h=!0;return 0}if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,i=b.parentNode,j=g;if(g===i)return v(a,b);if(!g)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)f.unshift(j),j=j.parentNode;c=e.length,d=f.length;for(var k=0;k<c&&k<d;k++)if(e[k]!==f[k])return v(e[k],f[k]);return k===c?v(a,f[k],-1):v(e[k],b,1)},v=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),function(){var a=c.createElement("div"),d="script"+(new Date).getTime(),e=c.documentElement;a.innerHTML="<a name='"+d+"'/>",e.insertBefore(a,e.firstChild),c.getElementById(d)&&(o.find.ID=function(a,c,d){if(typeof c.getElementById!="undefined"&&!d){var e=c.getElementById(a[1]);return e?e.id===a[1]||typeof e.getAttributeNode!="undefined"&&e.getAttributeNode("id").nodeValue===a[1]?[e]:b:[]}},o.filter.ID=function(a,b){var c=typeof a.getAttributeNode!="undefined"&&a.getAttributeNode("id");return a.nodeType===1&&c&&c.nodeValue===b}),e.removeChild(a),e=a=null}(),function(){var a=c.createElement("div");a.appendChild(c.createComment("")),a.getElementsByTagName("*").length>0&&(o.find.TAG=function(a,b){var c=b.getElementsByTagName(a[1]);if(a[1]==="*"){var d=[];for(var e=0;c[e];e++)c[e].nodeType===1&&d.push(c[e]);c=d}return c}),a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!="undefined"&&a.firstChild.getAttribute("href")!=="#"&&(o.attrHandle.href=function(a){return a.getAttribute("href",2)}),a=null}(),c.querySelectorAll&&function(){var a=m,b=c.createElement("div"),d="__sizzle__";b.innerHTML="<p class='TEST'></p>";if(!b.querySelectorAll||b.querySelectorAll(".TEST").length!==0){m=function(b,e,f,g){e=e||c;if(!g&&!m.isXML(e)){var h=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(b);if(h&&(e.nodeType===1||e.nodeType===9)){if(h[1])return s(e.getElementsByTagName(b),f);if(h[2]&&o.find.CLASS&&e.getElementsByClassName)return s(e.getElementsByClassName(h[2]),f)}if(e.nodeType===9){if(b==="body"&&e.body)return s([e.body],f);if(h&&h[3]){var i=e.getElementById(h[3]);if(!i||!i.parentNode)return s([],f);if(i.id===h[3])return s([i],f)}try{return s(e.querySelectorAll(b),f)}catch(j){}}else if(e.nodeType===1&&e.nodeName.toLowerCase()!=="object"){var k=e,l=e.getAttribute("id"),n=l||d,p=e.parentNode,q=/^\s*[+~]/.test(b);l?n=n.replace(/'/g,"\\$&"):e.setAttribute("id",n),q&&p&&(e=e.parentNode);try{if(!q||p)return s(e.querySelectorAll("[id='"+n+"'] "+b),f)}catch(r){}finally{l||k.removeAttribute("id")}}}return a(b,e,f,g)};for(var e in a)m[e]=a[e];b=null}}(),function(){var a=c.documentElement,b=a.matchesSelector||a.mozMatchesSelector||a.webkitMatchesSelector||a.msMatchesSelector;if(b){var d=!b.call(c.createElement("div"),"div"),e=!1;try{b.call(c.documentElement,"[test!='']:sizzle")}catch(f){e=!0}m.matchesSelector=function(a,c){c=c.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!m.isXML(a))try{if(e||!o.match.PSEUDO.test(c)&&!/!=/.test(c)){var f=b.call(a,c);if(f||!d||a.document&&a.document.nodeType!==11)return f}}catch(g){}return m(c,null,null,[a]).length>0}}}(),function(){var a=c.createElement("div");a.innerHTML="<div class='test e'></div><div class='test'></div>";if(!!a.getElementsByClassName&&a.getElementsByClassName("e").length!==0){a.lastChild.className="e";if(a.getElementsByClassName("e").length===1)return;o.order.splice(1,0,"CLASS"),o.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!="undefined"&&!c)return b.getElementsByClassName(a[1])},a=null}}(),c.documentElement.contains?m.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):!0)}:c.documentElement.compareDocumentPosition?m.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16)}:m.contains=function(){return!1},m.isXML=function(a){var b=(a?a.ownerDocument||a:0).documentElement;return b?b.nodeName!=="HTML":!1};var y=function(a,b,c){var d,e=[],f="",g=b.nodeType?[b]:b;while(d=o.match.PSEUDO.exec(a))f+=d[0],a=a.replace(o.match.PSEUDO,"");a=o.relative[a]?a+"*":a;for(var h=0,i=g.length;h<i;h++)m(a,g[h],e,c);return m.filter(f,e)};m.attr=f.attr,m.selectors.attrMap={},f.find=m,f.expr=m.selectors,f.expr[":"]=f.expr.filters,f.unique=m.uniqueSort,f.text=m.getText,f.isXMLDoc=m.isXML,f.contains=m.contains}();var L=/Until$/,M=/^(?:parents|prevUntil|prevAll)/,N=/,/,O=/^.[^:#\[\.,]*$/,P=Array.prototype.slice,Q=f.expr.match.POS,R={children:!0,contents:!0,next:!0,prev:!0};f.fn.extend({find:function(a){var b=this,c,d;if(typeof a!="string")return f(a).filter(function(){for(c=0,d=b.length;c<d;c++)if(f.contains(b[c],this))return!0});var e=this.pushStack("","find",a),g,h,i;for(c=0,d=this.length;c<d;c++){g=e.length,f.find(a,this[c],e);if(c>0)for(h=g;h<e.length;h++)for(i=0;i<g;i++)if(e[i]===e[h]){e.splice(h--,1);break}}return e},has:function(a){var b=f(a);return this.filter(function(){for(var a=0,c=b.length;a<c;a++)if(f.contains(this,b[a]))return!0})},not:function(a){return this.pushStack(T(this,a,!1),"not",a)},filter:function(a){return this.pushStack(T(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?Q.test(a)?f(a,this.context).index(this[0])>=0:f.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c=[],d,e,g=this[0];if(f.isArray(a)){var h=1;while(g&&g.ownerDocument&&g!==b){for(d=0;d<a.length;d++)f(g).is(a[d])&&c.push({selector:a[d],elem:g,level:h});g=g.parentNode,h++}return c}var i=Q.test(a)||typeof a!="string"?f(a,b||this.context):0;for(d=0,e=this.length;d<e;d++){g=this[d];while(g){if(i?i.index(g)>-1:f.find.matchesSelector(g,a)){c.push(g);break}g=g.parentNode;if(!g||!g.ownerDocument||g===b||g.nodeType===11)break}}c=c.length>1?f.unique(c):c;return this.pushStack(c,"closest",a)},index:function(a){if(!a)return this[0]&&this[0].parentNode?this.prevAll().length:-1;if(typeof a=="string")return f.inArray(this[0],f(a));return f.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var c=typeof a=="string"?f(a,b):f.makeArray(a&&a.nodeType?[a]:a),d=f.merge(this.get(),c);return this.pushStack(S(c[0])||S(d[0])?d:f.unique(d))},andSelf:function(){return this.add(this.prevObject)}}),f.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return f.dir(a,"parentNode")},parentsUntil:function(a,b,c){return f.dir(a,"parentNode",c)},next:function(a){return f.nth(a,2,"nextSibling")},prev:function(a){return f.nth(a,2,"previousSibling")},nextAll:function(a){return f.dir(a,"nextSibling")},prevAll:function(a){return f.dir(a,"previousSibling")},nextUntil:function(a,b,c){return f.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return f.dir(a,"previousSibling",c)},siblings:function(a){return f.sibling(a.parentNode.firstChild,a)},children:function(a){return f.sibling(a.firstChild)},contents:function(a){return f.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:f.makeArray(a.childNodes)}},function(a,b){f.fn[a]=function(c,d){var e=f.map(this,b,c);L.test(a)||(d=c),d&&typeof d=="string"&&(e=f.filter(d,e)),e=this.length>1&&!R[a]?f.unique(e):e,(this.length>1||N.test(d))&&M.test(a)&&(e=e.reverse());return this.pushStack(e,a,P.call(arguments).join(","))}}),f.extend({filter:function(a,b,c){c&&(a=":not("+a+")");return b.length===1?f.find.matchesSelector(b[0],a)?[b[0]]:[]:f.find.matches(a,b)},dir:function(a,c,d){var e=[],g=a[c];while(g&&g.nodeType!==9&&(d===b||g.nodeType!==1||!f(g).is(d)))g.nodeType===1&&e.push(g),g=g[c];return e},nth:function(a,b,c,d){b=b||1;var e=0;for(;a;a=a[c])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var V="abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",W=/ jQuery\d+="(?:\d+|null)"/g,X=/^\s+/,Y=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Z=/<([\w:]+)/,$=/<tbody/i,_=/<|&#?\w+;/,ba=/<(?:script|style)/i,bb=/<(?:script|object|embed|option|style)/i,bc=new RegExp("<(?:"+V+")","i"),bd=/checked\s*(?:[^=]|=\s*.checked.)/i,be=/\/(java|ecma)script/i,bf=/^\s*<!(?:\[CDATA\[|\-\-)/,bg={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bh=U(c);bg.optgroup=bg.option,bg.tbody=bg.tfoot=bg.colgroup=bg.caption=bg.thead,bg.th=bg.td,f.support.htmlSerialize||(bg._default=[1,"div<div>","</div>"]),f.fn.extend({text:function(a){if(f.isFunction(a))return this.each(function(b){var c=f(this);c.text(a.call(this,b,c.text()))});if(typeof a!="object"&&a!==b)return this.empty().append((this[0]&&this[0].ownerDocument||c).createTextNode(a));return f.text(this)},wrapAll:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapAll(a.call(this,b))});if(this[0]){var b=f(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){if(f.isFunction(a))return this.each(function(b){f(this).wrapInner(a.call(this,b))});return this.each(function(){var b=f(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=f.isFunction(a);return this.each(function(c){f(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){f.nodeName(this,"body")||f(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=f.clean(arguments);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,f.clean(arguments));return a}},remove:function(a,b){for(var c=0,d;(d=this[c])!=null;c++)if(!a||f.filter(a,[d]).length)!b&&d.nodeType===1&&(f.cleanData(d.getElementsByTagName("*")),f.cleanData([d])),d.parentNode&&d.parentNode.removeChild(d);return this},empty:function()
  {for(var a=0,b;(b=this[a])!=null;a++){b.nodeType===1&&f.cleanData(b.getElementsByTagName("*"));while(b.firstChild)b.removeChild(b.firstChild)}return this},clone:function(a,b){a=a==null?!1:a,b=b==null?a:b;return this.map(function(){return f.clone(this,a,b)})},html:function(a){if(a===b)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(W,""):null;if(typeof a=="string"&&!ba.test(a)&&(f.support.leadingWhitespace||!X.test(a))&&!bg[(Z.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Y,"<$1></$2>");try{for(var c=0,d=this.length;c<d;c++)this[c].nodeType===1&&(f.cleanData(this[c].getElementsByTagName("*")),this[c].innerHTML=a)}catch(e){this.empty().append(a)}}else f.isFunction(a)?this.each(function(b){var c=f(this);c.html(a.call(this,b,c.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(f.isFunction(a))return this.each(function(b){var c=f(this),d=c.html();c.replaceWith(a.call(this,b,d))});typeof a!="string"&&(a=f(a).detach());return this.each(function(){var b=this.nextSibling,c=this.parentNode;f(this).remove(),b?f(b).before(a):f(c).append(a)})}return this.length?this.pushStack(f(f.isFunction(a)?a():a),"replaceWith",a):this},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){var e,g,h,i,j=a[0],k=[];if(!f.support.checkClone&&arguments.length===3&&typeof j=="string"&&bd.test(j))return this.each(function(){f(this).domManip(a,c,d,!0)});if(f.isFunction(j))return this.each(function(e){var g=f(this);a[0]=j.call(this,e,c?g.html():b),g.domManip(a,c,d)});if(this[0]){i=j&&j.parentNode,f.support.parentNode&&i&&i.nodeType===11&&i.childNodes.length===this.length?e={fragment:i}:e=f.buildFragment(a,this,k),h=e.fragment,h.childNodes.length===1?g=h=h.firstChild:g=h.firstChild;if(g){c=c&&f.nodeName(g,"tr");for(var l=0,m=this.length,n=m-1;l<m;l++)d.call(c?bi(this[l],g):this[l],e.cacheable||m>1&&l<n?f.clone(h,!0,!0):h)}k.length&&f.each(k,bp)}return this}}),f.buildFragment=function(a,b,d){var e,g,h,i,j=a[0];b&&b[0]&&(i=b[0].ownerDocument||b[0]),i.createDocumentFragment||(i=c),a.length===1&&typeof j=="string"&&j.length<512&&i===c&&j.charAt(0)==="<"&&!bb.test(j)&&(f.support.checkClone||!bd.test(j))&&(f.support.html5Clone||!bc.test(j))&&(g=!0,h=f.fragments[j],h&&h!==1&&(e=h)),e||(e=i.createDocumentFragment(),f.clean(a,i,e,d)),g&&(f.fragments[j]=h?e:1);return{fragment:e,cacheable:g}},f.fragments={},f.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){f.fn[a]=function(c){var d=[],e=f(c),g=this.length===1&&this[0].parentNode;if(g&&g.nodeType===11&&g.childNodes.length===1&&e.length===1){e[b](this[0]);return this}for(var h=0,i=e.length;h<i;h++){var j=(h>0?this.clone(!0):this).get();f(e[h])[b](j),d=d.concat(j)}return this.pushStack(d,a,e.selector)}}),f.extend({clone:function(a,b,c){var d,e,g,h=f.support.html5Clone||!bc.test("<"+a.nodeName)?a.cloneNode(!0):bo(a);if((!f.support.noCloneEvent||!f.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!f.isXMLDoc(a)){bk(a,h),d=bl(a),e=bl(h);for(g=0;d[g];++g)e[g]&&bk(d[g],e[g])}if(b){bj(a,h);if(c){d=bl(a),e=bl(h);for(g=0;d[g];++g)bj(d[g],e[g])}}d=e=null;return h},clean:function(a,b,d,e){var g;b=b||c,typeof b.createElement=="undefined"&&(b=b.ownerDocument||b[0]&&b[0].ownerDocument||c);var h=[],i;for(var j=0,k;(k=a[j])!=null;j++){typeof k=="number"&&(k+="");if(!k)continue;if(typeof k=="string")if(!_.test(k))k=b.createTextNode(k);else{k=k.replace(Y,"<$1></$2>");var l=(Z.exec(k)||["",""])[1].toLowerCase(),m=bg[l]||bg._default,n=m[0],o=b.createElement("div");b===c?bh.appendChild(o):U(b).appendChild(o),o.innerHTML=m[1]+k+m[2];while(n--)o=o.lastChild;if(!f.support.tbody){var p=$.test(k),q=l==="table"&&!p?o.firstChild&&o.firstChild.childNodes:m[1]==="<table>"&&!p?o.childNodes:[];for(i=q.length-1;i>=0;--i)f.nodeName(q[i],"tbody")&&!q[i].childNodes.length&&q[i].parentNode.removeChild(q[i])}!f.support.leadingWhitespace&&X.test(k)&&o.insertBefore(b.createTextNode(X.exec(k)[0]),o.firstChild),k=o.childNodes}var r;if(!f.support.appendChecked)if(k[0]&&typeof (r=k.length)=="number")for(i=0;i<r;i++)bn(k[i]);else bn(k);k.nodeType?h.push(k):h=f.merge(h,k)}if(d){g=function(a){return!a.type||be.test(a.type)};for(j=0;h[j];j++)if(e&&f.nodeName(h[j],"script")&&(!h[j].type||h[j].type.toLowerCase()==="text/javascript"))e.push(h[j].parentNode?h[j].parentNode.removeChild(h[j]):h[j]);else{if(h[j].nodeType===1){var s=f.grep(h[j].getElementsByTagName("script"),g);h.splice.apply(h,[j+1,0].concat(s))}d.appendChild(h[j])}}return h},cleanData:function(a){var b,c,d=f.cache,e=f.event.special,g=f.support.deleteExpando;for(var h=0,i;(i=a[h])!=null;h++){if(i.nodeName&&f.noData[i.nodeName.toLowerCase()])continue;c=i[f.expando];if(c){b=d[c];if(b&&b.events){for(var j in b.events)e[j]?f.event.remove(i,j):f.removeEvent(i,j,b.handle);b.handle&&(b.handle.elem=null)}g?delete i[f.expando]:i.removeAttribute&&i.removeAttribute(f.expando),delete d[c]}}}});var bq=/alpha\([^)]*\)/i,br=/opacity=([^)]*)/,bs=/([A-Z]|^ms)/g,bt=/^-?\d+(?:px)?$/i,bu=/^-?\d/,bv=/^([\-+])=([\-+.\de]+)/,bw={position:"absolute",visibility:"hidden",display:"block"},bx=["Left","Right"],by=["Top","Bottom"],bz,bA,bB;f.fn.css=function(a,c){if(arguments.length===2&&c===b)return this;return f.access(this,a,c,!0,function(a,c,d){return d!==b?f.style(a,c,d):f.css(a,c)})},f.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bz(a,"opacity","opacity");return c===""?"1":c}return a.style.opacity}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":f.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!!a&&a.nodeType!==3&&a.nodeType!==8&&!!a.style){var g,h,i=f.camelCase(c),j=a.style,k=f.cssHooks[i];c=f.cssProps[i]||i;if(d===b){if(k&&"get"in k&&(g=k.get(a,!1,e))!==b)return g;return j[c]}h=typeof d,h==="string"&&(g=bv.exec(d))&&(d=+(g[1]+1)*+g[2]+parseFloat(f.css(a,c)),h="number");if(d==null||h==="number"&&isNaN(d))return;h==="number"&&!f.cssNumber[i]&&(d+="px");if(!k||!("set"in k)||(d=k.set(a,d))!==b)try{j[c]=d}catch(l){}}},css:function(a,c,d){var e,g;c=f.camelCase(c),g=f.cssHooks[c],c=f.cssProps[c]||c,c==="cssFloat"&&(c="float");if(g&&"get"in g&&(e=g.get(a,!0,d))!==b)return e;if(bz)return bz(a,c)},swap:function(a,b,c){var d={};for(var e in b)d[e]=a.style[e],a.style[e]=b[e];c.call(a);for(e in b)a.style[e]=d[e]}}),f.curCSS=f.css,f.each(["height","width"],function(a,b){f.cssHooks[b]={get:function(a,c,d){var e;if(c){if(a.offsetWidth!==0)return bC(a,b,d);f.swap(a,bw,function(){e=bC(a,b,d)});return e}},set:function(a,b){if(!bt.test(b))return b;b=parseFloat(b);if(b>=0)return b+"px"}}}),f.support.opacity||(f.cssHooks.opacity={get:function(a,b){return br.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=f.isNumeric(b)?"alpha(opacity="+b*100+")":"",g=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&f.trim(g.replace(bq,""))===""){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bq.test(g)?g.replace(bq,e):g+" "+e}}),f(function(){f.support.reliableMarginRight||(f.cssHooks.marginRight={get:function(a,b){var c;f.swap(a,{display:"inline-block"},function(){b?c=bz(a,"margin-right","marginRight"):c=a.style.marginRight});return c}})}),c.defaultView&&c.defaultView.getComputedStyle&&(bA=function(a,b){var c,d,e;b=b.replace(bs,"-$1").toLowerCase(),(d=a.ownerDocument.defaultView)&&(e=d.getComputedStyle(a,null))&&(c=e.getPropertyValue(b),c===""&&!f.contains(a.ownerDocument.documentElement,a)&&(c=f.style(a,b)));return c}),c.documentElement.currentStyle&&(bB=function(a,b){var c,d,e,f=a.currentStyle&&a.currentStyle[b],g=a.style;f===null&&g&&(e=g[b])&&(f=e),!bt.test(f)&&bu.test(f)&&(c=g.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),g.left=b==="fontSize"?"1em":f||0,f=g.pixelLeft+"px",g.left=c,d&&(a.runtimeStyle.left=d));return f===""?"auto":f}),bz=bA||bB,f.expr&&f.expr.filters&&(f.expr.filters.hidden=function(a){var b=a.offsetWidth,c=a.offsetHeight;return b===0&&c===0||!f.support.reliableHiddenOffsets&&(a.style&&a.style.display||f.css(a,"display"))==="none"},f.expr.filters.visible=function(a){return!f.expr.filters.hidden(a)});var bD=/%20/g,bE=/\[\]$/,bF=/\r?\n/g,bG=/#.*$/,bH=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,bI=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,bJ=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,bK=/^(?:GET|HEAD)$/,bL=/^\/\//,bM=/\?/,bN=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,bO=/^(?:select|textarea)/i,bP=/\s+/,bQ=/([?&])_=[^&]*/,bR=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+))?)?/,bS=f.fn.load,bT={},bU={},bV,bW,bX=["*/"]+["*"];try{bV=e.href}catch(bY){bV=c.createElement("a"),bV.href="",bV=bV.href}bW=bR.exec(bV.toLowerCase())||[],f.fn.extend({load:function(a,c,d){if(typeof a!="string"&&bS)return bS.apply(this,arguments);if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var g=a.slice(e,a.length);a=a.slice(0,e)}var h="GET";c&&(f.isFunction(c)?(d=c,c=b):typeof c=="object"&&(c=f.param(c,f.ajaxSettings.traditional),h="POST"));var i=this;f.ajax({url:a,type:h,dataType:"html",data:c,complete:function(a,b,c){c=a.responseText,a.isResolved()&&(a.done(function(a){c=a}),i.html(g?f("<div>").append(c.replace(bN,"")).find(g):c)),d&&i.each(d,[c,b,a])}});return this},serialize:function(){return f.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?f.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||bO.test(this.nodeName)||bI.test(this.type))}).map(function(a,b){var c=f(this).val();return c==null?null:f.isArray(c)?f.map(c,function(a,c){return{name:b.name,value:a.replace(bF,"\r\n")}}):{name:b.name,value:c.replace(bF,"\r\n")}}).get()}}),f.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){f.fn[b]=function(a){return this.on(b,a)}}),f.each(["get","post"],function(a,c){f[c]=function(a,d,e,g){f.isFunction(d)&&(g=g||e,e=d,d=b);return f.ajax({type:c,url:a,data:d,success:e,dataType:g})}}),f.extend({getScript:function(a,c){return f.get(a,b,c,"script")},getJSON:function(a,b,c){return f.get(a,b,c,"json")},ajaxSetup:function(a,b){b?b_(a,f.ajaxSettings):(b=a,a=f.ajaxSettings),b_(a,b);return a},ajaxSettings:{url:bV,isLocal:bJ.test(bW[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":bX},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":f.parseJSON,"text xml":f.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:bZ(bT),ajaxTransport:bZ(bU),ajax:function(a,c){function w(a,c,l,m){if(s!==2){s=2,q&&clearTimeout(q),p=b,n=m||"",v.readyState=a>0?4:0;var o,r,u,w=c,x=l?cb(d,v,l):b,y,z;if(a>=200&&a<300||a===304){if(d.ifModified){if(y=v.getResponseHeader("Last-Modified"))f.lastModified[k]=y;if(z=v.getResponseHeader("Etag"))f.etag[k]=z}if(a===304)w="notmodified",o=!0;else try{r=cc(d,x),w="success",o=!0}catch(A){w="parsererror",u=A}}else{u=w;if(!w||a)w="error",a<0&&(a=0)}v.status=a,v.statusText=""+(c||w),o?h.resolveWith(e,[r,w,v]):h.rejectWith(e,[v,w,u]),v.statusCode(j),j=b,t&&g.trigger("ajax"+(o?"Success":"Error"),[v,d,o?r:u]),i.fireWith(e,[v,w]),t&&(g.trigger("ajaxComplete",[v,d]),--f.active||f.event.trigger("ajaxStop"))}}typeof a=="object"&&(c=a,a=b),c=c||{};var d=f.ajaxSetup({},c),e=d.context||d,g=e!==d&&(e.nodeType||e instanceof f)?f(e):f.event,h=f.Deferred(),i=f.Callbacks("once memory"),j=d.statusCode||{},k,l={},m={},n,o,p,q,r,s=0,t,u,v={readyState:0,setRequestHeader:function(a,b){if(!s){var c=a.toLowerCase();a=m[c]=m[c]||a,l[a]=b}return this},getAllResponseHeaders:function(){return s===2?n:null},getResponseHeader:function(a){var c;if(s===2){if(!o){o={};while(c=bH.exec(n))o[c[1].toLowerCase()]=c[2]}c=o[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){s||(d.mimeType=a);return this},abort:function(a){a=a||"abort",p&&p.abort(a),w(0,a);return this}};h.promise(v),v.success=v.done,v.error=v.fail,v.complete=i.add,v.statusCode=function(a){if(a){var b;if(s<2)for(b in a)j[b]=[j[b],a[b]];else b=a[v.status],v.then(b,b)}return this},d.url=((a||d.url)+"").replace(bG,"").replace(bL,bW[1]+"//"),d.dataTypes=f.trim(d.dataType||"*").toLowerCase().split(bP),d.crossDomain==null&&(r=bR.exec(d.url.toLowerCase()),d.crossDomain=!(!r||r[1]==bW[1]&&r[2]==bW[2]&&(r[3]||(r[1]==="http:"?80:443))==(bW[3]||(bW[1]==="http:"?80:443)))),d.data&&d.processData&&typeof d.data!="string"&&(d.data=f.param(d.data,d.traditional)),b$(bT,d,c,v);if(s===2)return!1;t=d.global,d.type=d.type.toUpperCase(),d.hasContent=!bK.test(d.type),t&&f.active++===0&&f.event.trigger("ajaxStart");if(!d.hasContent){d.data&&(d.url+=(bM.test(d.url)?"&":"?")+d.data,delete d.data),k=d.url;if(d.cache===!1){var x=f.now(),y=d.url.replace(bQ,"$1_="+x);d.url=y+(y===d.url?(bM.test(d.url)?"&":"?")+"_="+x:"")}}(d.data&&d.hasContent&&d.contentType!==!1||c.contentType)&&v.setRequestHeader("Content-Type",d.contentType),d.ifModified&&(k=k||d.url,f.lastModified[k]&&v.setRequestHeader("If-Modified-Since",f.lastModified[k]),f.etag[k]&&v.setRequestHeader("If-None-Match",f.etag[k])),v.setRequestHeader("Accept",d.dataTypes[0]&&d.accepts[d.dataTypes[0]]?d.accepts[d.dataTypes[0]]+(d.dataTypes[0]!=="*"?", "+bX+"; q=0.01":""):d.accepts["*"]);for(u in d.headers)v.setRequestHeader(u,d.headers[u]);if(d.beforeSend&&(d.beforeSend.call(e,v,d)===!1||s===2)){v.abort();return!1}for(u in{success:1,error:1,complete:1})v[u](d[u]);p=b$(bU,d,c,v);if(!p)w(-1,"No Transport");else{v.readyState=1,t&&g.trigger("ajaxSend",[v,d]),d.async&&d.timeout>0&&(q=setTimeout(function(){v.abort("timeout")},d.timeout));try{s=1,p.send(l,w)}catch(z){if(s<2)w(-1,z);else throw z}}return v},param:function(a,c){var d=[],e=function(a,b){b=f.isFunction(b)?b():b,d[d.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=f.ajaxSettings.traditional);if(f.isArray(a)||a.jquery&&!f.isPlainObject(a))f.each(a,function(){e(this.name,this.value)});else for(var g in a)ca(g,a[g],c,e);return d.join("&").replace(bD,"+")}}),f.extend({active:0,lastModified:{},etag:{}});var cd=f.now(),ce=/(\=)\?(&|$)|\?\?/i;f.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return f.expando+"_"+cd++}}),f.ajaxPrefilter("json jsonp",function(b,c,d){var e=b.contentType==="application/x-www-form-urlencoded"&&typeof b.data=="string";if(b.dataTypes[0]==="jsonp"||b.jsonp!==!1&&(ce.test(b.url)||e&&ce.test(b.data))){var g,h=b.jsonpCallback=f.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,i=a[h],j=b.url,k=b.data,l="$1"+h+"$2";b.jsonp!==!1&&(j=j.replace(ce,l),b.url===j&&(e&&(k=k.replace(ce,l)),b.data===k&&(j+=(/\?/.test(j)?"&":"?")+b.jsonp+"="+h))),b.url=j,b.data=k,a[h]=function(a){g=[a]},d.always(function(){a[h]=i,g&&f.isFunction(i)&&a[h](g[0])}),b.converters["script json"]=function(){g||f.error(h+" was not called");return g[0]},b.dataTypes[0]="json";return"script"}}),f.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){f.globalEval(a);return a}}}),f.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),f.ajaxTransport("script",function(a){if(a.crossDomain){var d,e=c.head||c.getElementsByTagName("head")[0]||c.documentElement;return{send:function(f,g){d=c.createElement("script"),d.async="async",a.scriptCharset&&(d.charset=a.scriptCharset),d.src=a.url,d.onload=d.onreadystatechange=function(a,c){if(c||!d.readyState||/loaded|complete/.test(d.readyState))d.onload=d.onreadystatechange=null,e&&d.parentNode&&e.removeChild(d),d=b,c||g(200,"success")},e.insertBefore(d,e.firstChild)},abort:function(){d&&d.onload(0,1)}}}});var cf=a.ActiveXObject?function(){for(var a in ch)ch[a](0,1)}:!1,cg=0,ch;f.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&ci()||cj()}:ci,function(a){f.extend(f.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(f.ajaxSettings.xhr()),f.support.ajax&&f.ajaxTransport(function(c){if(!c.crossDomain||f.support.cors){var d;return{send:function(e,g){var h=c.xhr(),i,j;c.username?h.open(c.type,c.url,c.async,c.username,c.password):h.open(c.type,c.url,c.async);if(c.xhrFields)for(j in c.xhrFields)h[j]=c.xhrFields[j];c.mimeType&&h.overrideMimeType&&h.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(j in e)h.setRequestHeader(j,e[j])}catch(k){}h.send(c.hasContent&&c.data||null),d=function(a,e){var j,k,l,m,n;try{if(d&&(e||h.readyState===4)){d=b,i&&(h.onreadystatechange=f.noop,cf&&delete ch[i]);if(e)h.readyState!==4&&h.abort();else{j=h.status,l=h.getAllResponseHeaders(),m={},n=h.responseXML,n&&n.documentElement&&(m.xml=n),m.text=h.responseText;try{k=h.statusText}catch(o){k=""}!j&&c.isLocal&&!c.crossDomain?j=m.text?200:404:j===1223&&(j=204)}}}catch(p){e||g(-1,p)}m&&g(j,k,m,l)},!c.async||h.readyState===4?d():(i=++cg,cf&&(ch||(ch={},f(a).unload(cf)),ch[i]=d),h.onreadystatechange=d)},abort:function(){d&&d(0,1)}}}});var ck={},cl,cm,cn=/^(?:toggle|show|hide)$/,co=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,cp,cq=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]],cr;f.fn.extend({show:function(a,b,c){var d,e;if(a||a===0)return this.animate(cu("show",3),a,b,c);for(var g=0,h=this.length;g<h;g++)d=this[g],d.style&&(e=d.style.display,!f._data(d,"olddisplay")&&e==="none"&&(e=d.style.display=""),e===""&&f.css(d,"display")==="none"&&f._data(d,"olddisplay",cv(d.nodeName)));for(g=0;g<h;g++){d=this[g];if(d.style){e=d.style.display;if(e===""||e==="none")d.style.display=f._data(d,"olddisplay")||""}}return this},hide:function(a,b,c){if(a||a===0)return this.animate(cu("hide",3),a,b,c);var d,e,g=0,h=this.length;for(;g<h;g++)d=this[g],d.style&&(e=f.css(d,"display"),e!=="none"&&!f._data(d,"olddisplay")&&f._data(d,"olddisplay",e));for(g=0;g<h;g++)this[g].style&&(this[g].style.display="none");return this},_toggle:f.fn.toggle,toggle:function(a,b,c){var d=typeof a=="boolean";f.isFunction(a)&&f.isFunction(b)?this._toggle.apply(this,arguments):a==null||d?this.each(function(){var b=d?a:f(this).is(":hidden");f(this)[b?"show":"hide"]()}):this.animate(cu("toggle",3),a,b,c);return this},fadeTo:function(a,b,c,d){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){function g(){e.queue===!1&&f._mark(this);var b=f.extend({},e),c=this.nodeType===1,d=c&&f(this).is(":hidden"),g,h,i,j,k,l,m,n,o;b.animatedProperties={};for(i in a){g=f.camelCase(i),i!==g&&(a[g]=a[i],delete a[i]),h=a[g],f.isArray(h)?(b.animatedProperties[g]=h[1],h=a[g]=h[0]):b.animatedProperties[g]=b.specialEasing&&b.specialEasing[g]||b.easing||"swing";if(h==="hide"&&d||h==="show"&&!d)return b.complete.call(this);c&&(g==="height"||g==="width")&&(b.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY],f.css(this,"display")==="inline"&&f.css(this,"float")==="none"&&(!f.support.inlineBlockNeedsLayout||cv(this.nodeName)==="inline"?this.style.display="inline-block":this.style.zoom=1))}b.overflow!=null&&(this.style.overflow="hidden");for(i in a)j=new f.fx(this,b,i),h=a[i],cn.test(h)?(o=f._data(this,"toggle"+i)||(h==="toggle"?d?"show":"hide":0),o?(f._data(this,"toggle"+i,o==="show"?"hide":"show"),j[o]()):j[h]()):(k=co.exec(h),l=j.cur(),k?(m=parseFloat(k[2]),n=k[3]||(f.cssNumber[i]?"":"px"),n!=="px"&&(f.style(this,i,(m||1)+n),l=(m||1)/j.cur()*l,f.style(this,i,l+n)),k[1]&&(m=(k[1]==="-="?-1:1)*m+l),j.custom(l,m,n)):j.custom(l,h,""));return!0}var e=f.speed(b,c,d);if(f.isEmptyObject(a))return this.each(e.complete,[!1]);a=f.extend({},a);return e.queue===!1?this.each(g):this.queue(e.queue,g)},stop:function(a,c,d){typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]);return this.each(function(){function h(a,b,c){var e=b[c];f.removeData(a,c,!0),e.stop(d)}var b,c=!1,e=f.timers,g=f._data(this);d||f._unmark(!0,this);if(a==null)for(b in g)g[b]&&g[b].stop&&b.indexOf(".run")===b.length-4&&h(this,g,b);else g[b=a+".run"]&&g[b].stop&&h(this,g,b);for(b=e.length;b--;)e[b].elem===this&&(a==null||e[b].queue===a)&&(d?e[b](!0):e[b].saveState(),c=!0,e.splice(b,1));(!d||!c)&&f.dequeue(this,a)})}}),f.each({slideDown:cu("show",1),slideUp:cu("hide",1),slideToggle:cu("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){f.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),f.extend({speed:function(a,b,c){var d=a&&typeof a=="object"?f.extend({},a):{complete:c||!c&&b||f.isFunction(a)&&a,duration:a,easing:c&&b||b&&!f.isFunction(b)&&b};d.duration=f.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in f.fx.speeds?f.fx.speeds[d.duration]:f.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";d.old=d.complete,d.complete=function(a){f.isFunction(d.old)&&d.old.call(this),d.queue?f.dequeue(this,d.queue):a!==!1&&f._unmark(this)};return d},easing:{linear:function(a,b,c,d){return c+d*a},swing:function(a,b,c,d){return(-Math.cos(a*Math.PI)/2+.5)*d+c}},timers:[],fx:function(a,b,c){this.options=b,this.elem=a,this.prop=c,b.orig=b.orig||{}}}),f.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this),(f.fx.step[this.prop]||f.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a,b=f.css(this.elem,this.prop);return isNaN(a=parseFloat(b))?!b||b==="auto"?0:b:a},custom:function(a,c,d){function h(a){return e.step(a)}var e=this,g=f.fx;this.startTime=cr||cs(),this.end=c,this.now=this.start=a,this.pos=this.state=0,this.unit=d||this.unit||(f.cssNumber[this.prop]?"":"px"),h.queue=this.options.queue,h.elem=this.elem,h.saveState=function(){e.options.hide&&f._data(e.elem,"fxshow"+e.prop)===b&&f._data(e.elem,"fxshow"+e.prop,e.start)},h()&&f.timers.push(h)&&!cp&&(cp=setInterval(g.tick,g.interval))},show:function(){var a=f._data(this.elem,"fxshow"+this.prop);this.options.orig[this.prop]=a||f.style(this.elem,this.prop),this.options.show=!0,a!==b?this.custom(this.cur(),a):this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur()),f(this.elem).show()},hide:function(){this.options.orig[this.prop]=f._data(this.elem,"fxshow"+this.prop)||f.style(this.elem,this.prop),this.options.hide=!0,this.custom(this.cur(),0)},step:function(a){var b,c,d,e=cr||cs(),g=!0,h=this.elem,i=this.options;if(a||e>=i.duration+this.startTime){this.now=this.end,this.pos=this.state=1,this.update(),i.animatedProperties[this.prop]=!0;for(b in i.animatedProperties)i.animatedProperties[b]!==!0&&(g=!1);if(g){i.overflow!=null&&!f.support.shrinkWrapBlocks&&f.each(["","X","Y"],function(a,b){h.style["overflow"+b]=i.overflow[a]}),i.hide&&f(h).hide();if(i.hide||i.show)for(b in i.animatedProperties)f.style(h,b,i.orig[b]),f.removeData(h,"fxshow"+b,!0),f.removeData(h,"toggle"+b,!0);d=i.complete,d&&(i.complete=!1,d.call(h))}return!1}i.duration==Infinity?this.now=e:(c=e-this.startTime,this.state=c/i.duration,this.pos=f.easing[i.animatedProperties[this.prop]](this.state,c,0,1,i.duration),this.now=this.start+(this.end-this.start)*this.pos),this.update();return!0}},f.extend(f.fx,{tick:function(){var a,b=f.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||f.fx.stop()},interval:13,stop:function(){clearInterval(cp),cp=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){f.style(a.elem,"opacity",a.now)},_default:function(a){a.elem.style&&a.elem.style[a.prop]!=null?a.elem.style[a.prop]=a.now+a.unit:a.elem[a.prop]=a.now}}}),f.each(["width","height"],function(a,b){f.fx.step[b]=function(a){f.style(a.elem,b,Math.max(0,a.now)+a.unit)}}),f.expr&&f.expr.filters&&(f.expr.filters.animated=function(a){return f.grep(f.timers,function(b){return a===b.elem}).length});var cw=/^t(?:able|d|h)$/i,cx=/^(?:body|html)$/i;"getBoundingClientRect"in c.documentElement?f.fn.offset=function(a){var b=this[0],c;if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);try{c=b.getBoundingClientRect()}catch(d){}var e=b.ownerDocument,g=e.documentElement;if(!c||!f.contains(g,b))return c?{top:c.top,left:c.left}:{top:0,left:0};var h=e.body,i=cy(e),j=g.clientTop||h.clientTop||0,k=g.clientLeft||h.clientLeft||0,l=i.pageYOffset||f.support.boxModel&&g.scrollTop||h.scrollTop,m=i.pageXOffset||f.support.boxModel&&g.scrollLeft||h.scrollLeft,n=c.top+l-j,o=c.left+m-k;return{top:n,left:o}}:f.fn.offset=function(a){var b=this[0];if(a)return this.each(function(b){f.offset.setOffset(this,a,b)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return f.offset.bodyOffset(b);var c,d=b.offsetParent,e=b,g=b.ownerDocument,h=g.documentElement,i=g.body,j=g.defaultView,k=j?j.getComputedStyle(b,null):b.currentStyle,l=b.offsetTop,m=b.offsetLeft;while((b=b.parentNode)&&b!==i&&b!==h){if(f.support.fixedPosition&&k.position==="fixed")break;c=j?j.getComputedStyle(b,null):b.currentStyle,l-=b.scrollTop,m-=b.scrollLeft,b===d&&(l+=b.offsetTop,m+=b.offsetLeft,f.support.doesNotAddBorder&&(!f.support.doesAddBorderForTableAndCells||!cw.test(b.nodeName))&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),e=d,d=b.offsetParent),f.support.subtractsBorderForOverflowNotVisible&&c.overflow!=="visible"&&(l+=parseFloat(c.borderTopWidth)||0,m+=parseFloat(c.borderLeftWidth)||0),k=c}if(k.position==="relative"||k.position==="static")l+=i.offsetTop,m+=i.offsetLeft;f.support.fixedPosition&&k.position==="fixed"&&(l+=Math.max(h.scrollTop,i.scrollTop),m+=Math.max(h.scrollLeft,i.scrollLeft));return{top:l,left:m}},f.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;f.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(f.css(a,"marginTop"))||0,c+=parseFloat(f.css(a,"marginLeft"))||0);return{top:b,left:c}},setOffset:function(a,b,c){var d=f.css(a,"position");d==="static"&&(a.style.position="relative");var e=f(a),g=e.offset(),h=f.css(a,"top"),i=f.css(a,"left"),j=(d==="absolute"||d==="fixed")&&f.inArray("auto",[h,i])>-1,k={},l={},m,n;j?(l=e.position(),m=l.top,n=l.left):(m=parseFloat(h)||0,n=parseFloat(i)||0),f.isFunction(b)&&(b=b.call(a,c,g)),b.top!=null&&(k.top=b.top-g.top+m),b.left!=null&&(k.left=b.left-g.left+n),"using"in b?b.using.call(a,k):e.css(k)}},f.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),c=this.offset(),d=cx.test(b[0].nodeName)?{top:0,left:0}:b.offset();c.top-=parseFloat(f.css(a,"marginTop"))||0,c.left-=parseFloat(f.css(a,"marginLeft"))||0,d.top+=parseFloat(f.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(f.css(b[0],"borderLeftWidth"))||0;return{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||c.body;while(a&&!cx.test(a.nodeName)&&f.css(a,"position")==="static")a=a.offsetParent;return a})}}),f.each(["Left","Top"],function(a,c){var d="scroll"+c;f.fn[d]=function(c){var e,g;if(c===b){e=this[0];if(!e)return null;g=cy(e);return g?"pageXOffset"in g?g[a?"pageYOffset":"pageXOffset"]:f.support.boxModel&&g.document.documentElement[d]||g.document.body[d]:e[d]}return this.each(function(){g=cy(this),g?g.scrollTo(a?f(g).scrollLeft():c,a?c:f(g).scrollTop()):this[d]=c})}}),f.each(["Height","Width"],function(a,c){var d=c.toLowerCase();f.fn["inner"+c]=function(){var a=this[0];return a?a.style?parseFloat(f.css(a,d,"padding")):this[d]():null},f.fn["outer"+c]=function(a){var b=this[0];return b?b.style?parseFloat(f.css(b,d,a?"margin":"border")):this[d]():null},f.fn[d]=function(a){var e=this[0];if(!e)return a==null?null:this;if(f.isFunction(a))return this.each(function(b){var c=f(this);c[d](a.call(this,b,c[d]()))});if(f.isWindow(e)){var g=e.document.documentElement["client"+c],h=e.document.body;return e.document.compatMode==="CSS1Compat"&&g||h&&h["client"+c]||g}if(e.nodeType===9)return Math.max(e.documentElement["client"+c],e.body["scroll"+c],e.documentElement["scroll"+c],e.body["offset"+c],e.documentElement["offset"+c]);if(a===b){var i=f.css(e,d),j=parseFloat(i);return f.isNumeric(j)?j:i}return this.css(d,typeof a=="string"?a:a+"px")}}),a.jQuery=a.$=f,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return f})})(window);
  /*
  * jQuery hashchange event - v1.3 - 7/21/2010
  * http://benalman.com/projects/jquery-hashchange-plugin/
  *
  * Copyright (c) 2010 "Cowboy" Ben Alman
  * Dual licensed under the MIT and GPL licenses.
  * http://benalman.com/about/license/
  */
  (function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$('<iframe tabindex="-1" title="empty"/>').hide().one("load",function(){r||l(a());n()}).attr("src",r||"javascript:0").insertAfter("body")[0].contentWindow;h.onpropertychange=function(){try{if(event.propertyName==="title"){q.document.title=h.title}}catch(s){}}}};j.stop=k;o=function(){return a(q.location.href)};l=function(v,s){var u=q.document,t=$.fn[c].domain;if(v!==s){u.title=h.title;u.open();t&&u.write('<script>document.domain="'+t+'"<\/script>');u.close();q.location.hash=v}}})();return j})()})(jQuery,this);
  // seedrandom.js version 2.0.
  // Author: David Bau 4/2/2011
  //
  // Defines a method Math.seedrandom() that, when called, substitutes
  // an explicitly seeded RC4-based algorithm for Math.random(). Also
  // supports automatic seeding from local or network sources of entropy.
  //
  // Usage:
  //
  // <script src=http://davidbau.com/encode/seedrandom-min.js></script>
  //
  // Math.seedrandom('yipee'); Sets Math.random to a function that is
  // initialized using the given explicit seed.
  //
  // Math.seedrandom(); Sets Math.random to a function that is
  // seeded using the current time, dom state,
  // and other accumulated local entropy.
  // The generated seed string is returned.
  //
  // Math.seedrandom('yowza', true);
  // Seeds using the given explicit seed mixed
  // together with accumulated entropy.
  //
  // <script src="http://bit.ly/srandom-512"></script>
  // Seeds using physical random bits downloaded
  // from random.org.
  //
  // <script src="https://jsonlib.appspot.com/urandom?callback=Math.seedrandom">
  // </script> Seeds using urandom bits from call.jsonlib.com,
  // which is faster than random.org.
  //
  // Examples:
  //
  // Math.seedrandom("hello"); // Use "hello" as the seed.
  // document.write(Math.random()); // Always 0.5463663768140734
  // document.write(Math.random()); // Always 0.43973793770592234
  // var rng1 = Math.random; // Remember the current prng.
  //
  // var autoseed = Math.seedrandom(); // New prng with an automatic seed.
  // document.write(Math.random()); // Pretty much unpredictable.
  //
  // Math.random = rng1; // Continue "hello" prng sequence.
  // document.write(Math.random()); // Always 0.554769432473455
  //
  // Math.seedrandom(autoseed); // Restart at the previous seed.
  // document.write(Math.random()); // Repeat the 'unpredictable' value.
  //
  // Notes:
  //
  // Each time seedrandom('arg') is called, entropy from the passed seed
  // is accumulated in a pool to help generate future seeds for the
  // zero-argument form of Math.seedrandom, so entropy can be injected over
  // time by calling seedrandom with explicit data repeatedly.
  //
  // On speed - This javascript implementation of Math.random() is about
  // 3-10x slower than the built-in Math.random() because it is not native
  // code, but this is typically fast enough anyway. Seeding is more expensive,
  // especially if you use auto-seeding. Some details (timings on Chrome 4):
  //
  // Our Math.random() - avg less than 0.002 milliseconds per call
  // seedrandom('explicit') - avg less than 0.5 milliseconds per call
  // seedrandom('explicit', true) - avg less than 2 milliseconds per call
  // seedrandom() - avg about 38 milliseconds per call
  //
  // LICENSE (BSD):
  //
  // Copyright 2010 David Bau, all rights reserved.
  //
  // Redistribution and use in source and binary forms, with or without
  // modification, are permitted provided that the following conditions are met:
  //
  // 1. Redistributions of source code must retain the above copyright
  // notice, this list of conditions and the following disclaimer.
  //
  // 2. Redistributions in binary form must reproduce the above copyright
  // notice, this list of conditions and the following disclaimer in the
  // documentation and/or other materials provided with the distribution.
  //
  // 3. Neither the name of this module nor the names of its contributors may
  // be used to endorse or promote products derived from this software
  // without specific prior written permission.
  //
  // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  //
  /**
  * All code is in an anonymous closure to keep the global namespace clean.
  *
  * @param {number=} overflow
  * @param {number=} startdenom
  */
  (function (pool, math, width, chunks, significance, overflow, startdenom) {
 
 
  //
  // seedrandom()
  // This is the seedrandom function described above.
  //
  math['seedrandom'] = function seedrandom(seed, use_entropy) {
  var key = [];
  var arc4;
 
  // Flatten the seed string or build one from local entropy if needed.
  seed = mixkey(flatten(
  use_entropy ? [seed, pool] :
  arguments.length ? seed :
  [new Date().getTime(), pool, window], 3), key);
 
  // Use the seed to initialize an ARC4 generator.
  arc4 = new ARC4(key);
 
  // Mix the randomness into accumulated entropy.
  mixkey(arc4.S, pool);
 
  // Override Math.random
 
  // This function returns a random double in [0, 1) that contains
  // randomness in every bit of the mantissa of the IEEE 754 value.
 
  math['random'] = function random() { // Closure to return a random double:
  var n = arc4.g(chunks); // Start with a numerator n < 2 ^ 48
  var d = startdenom; // and denominator d = 2 ^ 48.
  var x = 0; // and no 'extra last byte'.
  while (n < significance) { // Fill up all significant digits by
  n = (n + x) * width; // shifting numerator and
  d *= width; // denominator and generating a
  x = arc4.g(1); // new least-significant-byte.
  }
  while (n >= overflow) { // To avoid rounding up, before adding
  n /= 2; // last byte, shift everything
  d /= 2; // right using integer math until
  x >>>= 1; // we have exactly the desired bits.
  }
  return (n + x) / d; // Form the number within [0, 1).
  };
 
  // Return the seed that was used
  return seed;
  };
 
  //
  // ARC4
  //
  // An ARC4 implementation. The constructor takes a key in the form of
  // an array of at most (width) integers that should be 0 <= x < (width).
  //
  // The g(count) method returns a pseudorandom integer that concatenates
  // the next (count) outputs from ARC4. Its return value is a number x
  // that is in the range 0 <= x < (width ^ count).
  //
  /** @constructor */
  function ARC4(key) {
  var t, u, me = this, keylen = key.length;
  var i = 0, j = me.i = me.j = me.m = 0;
  me.S = [];
  me.c = [];
 
  // The empty key [] is treated as [0].
  if (!keylen) { key = [keylen++]; }
 
  // Set up S using the standard key scheduling algorithm.
  while (i < width) { me.S[i] = i++; }
  for (i = 0; i < width; i++) {
  t = me.S[i];
  j = lowbits(j + t + key[i % keylen]);
  u = me.S[j];
  me.S[i] = u;
  me.S[j] = t;
  }
 
  // The "g" method returns the next (count) outputs as one number.
  me.g = function getnext(count) {
  var s = me.S;
  var i = lowbits(me.i + 1); var t = s[i];
  var j = lowbits(me.j + t); var u = s[j];
  s[i] = u;
  s[j] = t;
  var r = s[lowbits(t + u)];
  while (--count) {
  i = lowbits(i + 1); t = s[i];
  j = lowbits(j + t); u = s[j];
  s[i] = u;
  s[j] = t;
  r = r * width + s[lowbits(t + u)];
  }
  me.i = i;
  me.j = j;
  return r;
  };
  // For robust unpredictability discard an initial batch of values.
  // See http://www.rsa.com/rsalabs/node.asp?id=2009
  me.g(width);
  }
 
  //
  // flatten()
  // Converts an object tree to nested arrays of strings.
  //
  /** @param {Object=} result
  * @param {string=} prop
  * @param {string=} typ */
  function flatten(obj, depth, result, prop, typ) {
  result = [];
  typ = typeof(obj);
  if (depth && typ == 'object') {
  for (prop in obj) {
  if (prop.indexOf('S') < 5) { // Avoid FF3 bug (local/sessionStorage)
  try { result.push(flatten(obj[prop], depth - 1)); } catch (e) {}
  }
  }
  }
  return (result.length ? result : obj + (typ != 'string' ? '\0' : ''));
  }
 
  //
  // mixkey()
  // Mixes a string seed into a key that is an array of integers, and
  // returns a shortened string seed that is equivalent to the result key.
  //
  /** @param {number=} smear
  * @param {number=} j */
  function mixkey(seed, key, smear, j) {
  seed += ''; // Ensure the seed is a string
  smear = 0;
  for (j = 0; j < seed.length; j++) {
  key[lowbits(j)] =
  lowbits((smear ^= key[lowbits(j)] * 19) + seed.charCodeAt(j));
  }
  seed = '';
  for (j in key) { seed += String.fromCharCode(key[j]); }
  return seed;
  }
 
  //
  // lowbits()
  // A quick "n mod width" for width a power of 2.
  //
  function lowbits(n) { return n & (width - 1); }
 
  //
  // The following constants are related to IEEE 754 limits.
  //
  startdenom = math.pow(width, chunks);
  significance = math.pow(2, significance);
  overflow = significance * 2;
 
  //
  // When seedrandom.js is loaded, we immediately mix a few bits
  // from the built-in RNG into the entropy pool. Because we do
  // not want to intefere with determinstic PRNG state later,
  // seedrandom will not call math.random on its own again after
  // initialization.
  //
  mixkey(math.random(), pool);
 
  // End anonymous scope, and pass initial values.
  })(
  [], // pool: entropy pool starts empty
  Math, // math: package containing random, pow, and seedrandom
  256, // width: each RC4 output is 0 <= x < 256
  6, // chunks: at least six RC4 outputs for each double
  52 // significance: there are 52 significant digits in a double
  );
 
  <?php
 
  class CSVParser {
  var $fp = null;
  var $delimiter = null;
  var $enclosure = null;
 
  function __construct($file, $delimiter = ',', $enclosure = '"'){
  $this->fp = fopen($file, 'r');
  $this->delimiter = $delimiter;
  $this->enclosure = $enclosure;
  }
 
  function __destruct(){
  fclose($this->fp);
  }
 
  function getFlotrData($lines_count = 1000000){
  $data = array();
  $ticks = array();
 
  $this->nextLine();
  $x = 0;
  while(($line = $this->nextLine()) && $lines_count--){
  $d = array($x);
  $i = 1;
  while ($i < 5 && $value = $line[$i++]) {
  $d[] = floatval($value);
  }
  $data[] = $d;
  $ticks[] = array($x, $line[0]);
 
  $x++;
  }
  return array('ticks' => $ticks, 'data' => $data);
  }
 
  function reset(){
  rewind($this->fp);
  }
 
  function nextLine(){
  return fgetcsv($this->fp, null, $this->delimiter, $this->enclosure);
  }
  }
 
  $parser = new CSVParser('http://ichart.finance.yahoo.com/table.csv?s=AAPL&a=00&b=1&c=1999&d=11&e=31&f=2020&g=m&ignore=.csv');
 
  echo json_encode($parser->getFlotrData(30));
 
  ?>
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  <html>
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <title>Flotr: Basic Watermark Example</title>
  <link rel="stylesheet" href="style.css" type="text/css" />
 
  <script type="text/javascript" src="../../flotr/prototype/lib/prototype.js"></script>
  <script type="text/javascript" src="examples.js"></script>
 
  <!--[if IE]>
  <script type="text/javascript" src="../../flotr/prototype/lib/excanvas.js"></script>
  <script type="text/javascript" src="../../flotr/prototype/lib/base64.js"></script>
  <![endif]-->
  <script type="text/javascript" src="../../flotr/prototype/lib/canvas2image.js"></script>
  <script type="text/javascript" src="../../flotr/prototype/lib/canvastext.js"></script>
  <script type="text/javascript" src="../../flotr/prototype/flotr.js"></script>
  </head>
  <body>
 
  <!-- ad -->
 
  <div id="wrapper">
  <h1></h1>
  <div id="container" style="width:600px;height:300px;"></div>
  <h2>Example</h2>
  <p>This example shows a basic Flotr graph with a watermark image.</p>
  <p>Finished? Go to the example <a href="index.html" title="Flotr Example Index Page">index page</a>, play with the <a href="../../playground/index.html" title="Flotr playground">playground</a> or read the <a href="http://www.solutoire.com/flotr/docs/" title="Flotr Documentation Pages">Flotr Documentation Pages</a>.</p>
  <h2>The Code</h2>
  <pre id="code-view"><code class="javascript"></code></pre>
  <div id="footer">Copyright &copy; 2008 Bas Wenneker, <a href="http://www.solutoire.com">solutoire.com</a></div>
  </div>
 
  <!-- ad -->
 
  <script type="text/javascript">
  /**
  * Wait till dom's finished loading.
  */
  document.observe('dom:loaded', function () {
  /**
  * Fill series d1 and d2.
  */
  var d1 = [];
  for (var i = 0; i < 14; i += 0.5)
  d1.push([i, Math.sin(i)]);
 
  var d2 = [
  [0, 3],
  [4, 8],
  [8, 5],
  [9, 13]
  ];
 
  /**
  * Draw the graph.
  */
  var f = Flotr.draw($('container'), [d1, d2], {
  grid: {
  /**
  * The watermark can be added in two ways:
  */
  //backgroundImage: 'images/butterfly.jpg'
  /**
  * However, if you need positioning and/or transparancy, use:
  */
  backgroundImage: {
  left: 60,
  src: 'images/butterfly.jpg',
  alpha: 0.3
  },
  }
  });
  });
  </script>
 
  <!-- analytics -->
  </body>
  </html>
 
 Binary files /dev/null and b/js/flotr2/examples/old_examples/blank.cur differ
  // Gets the value from a group of radio buttons
  function getV(nl) {
  var v = null;
  _.each(nl, function(e) {
  if (e.checked) {
  v = e.value;
  return;
  }
  });
  return v;
  }
 
  (function(){
  var view = document.getElementById('code-view');
  if (view) {
  var code = document.body.getElementsByTagName('script')[0].innerHTML.replace(/\n\t\t\t/g, '\n');
  if (view.outerHTML)
  view.outerHTML = '<pre id="code-view"><code class="javascript">' + code + '</code></pre>';
  else
  view.innerHTML = code;
  }
 
  document.getElementById('wrapper').getElementsByTagName('h1')[0].innerHTML =
  document.getElementsByTagName('title')[0].innerHTML;
  })();
 
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  <html>
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <title>Flotr: Extending Flotr</title>
  <link rel="stylesheet" href="style.css" type="text/css" />
  <script type="text/javascript" src="../lib/yepnope.js"></script>
  </head>
  <body>
 
  <!-- ad -->
 
  <div id="wrapper">
  <h1></h1>
  <div id="container" style="width:600px;height:300px;"></div>
  <h2>Flotr Structure</h2>
  <p>This example shows you how to extend Flotr. But before you begin, it's important to know how Flotr is structured.
  Flotr consists of two important parts. The first one is the Flotr object. This object acts like a namespace for
  all utility functions, just to be sure it doesn't collide with the environment. </p>
  <p>Finished? Go to the example <a href="index.html" title="Flotr Example Index Page">index page</a>, play with the <a href="../../playground/index.html" title="Flotr playground">playground</a> or read the <a href="http://www.solutoire.com/flotr/docs/" title="Flotr Documentation Pages">Flotr Documentation Pages</a>.</p>
  <h2>The Code</h2>
  <pre id="code-view"><code class="javascript"></code></pre>
  <div id="footer">Copyright &copy; 2008 Bas Wenneker, <a href="http://www.solutoire.com">solutoire.com</a></div>
  </div>
 
  <!-- ad -->
 
  <script type="text/javascript">
  // @TODO fix it
  function example(){
 
  var MyGraph = Class.create(Flotr.Graph, {
  drawCount: 0,
  drawSeries: function($super, series){
  this.drawCount++;
  $super(series);
  }
  });
 
  /**
  * Fill series d1 and d2.
  */
  var d1 = [];
  for(var i = 0; i < 14; i += 0.5)
  d1.push([i, Math.sin(i)]);
 
  var d2 = [[0, 3], [4, 8], [8, 5], [9, 13]];
 
  /**
  * Draw the graph.
  */
  var f = Flotr.draw($('container'), [ d1, d2 ], null, MyGraph);
 
  alert('Draw count: '+f.drawCount);
  };
  </script>
 
  <!-- analytics -->
  </body>
  <script type="text/javascript" src="includes.js"></script>
  </html>
 
  yepnope([
  // Libs
  '../lib/bean-min.js',
  '../lib/underscore-min.js',
  {
  test : (navigator.appVersion.indexOf("MSIE") != -1 && parseFloat(navigator.appVersion.split("MSIE")[1]) < 9),
  // Load for IE < 9
  yep : [
  '../lib/excanvas.js',
  '../lib/base64.js'
  ]
  },
  '../lib/canvas2image.js',
  '../lib/canvastext.js',
 
  // Examples
  'examples.js',
 
  // Flotr
  '../js/Flotr.js',
  '../js/Flotr.defaultOptions.js',
  '../js/Flotr.Color.js',
  '../js/Flotr.Date.js',
  '../js/Flotr.DOM.js',
  '../js/Flotr.EventAdapter.js',
  '../js/Flotr.Graph.js',
  '../js/Flotr.Axis.js',
  '../js/Flotr.Series.js',
  '../js/types/lines.js',
  '../js/types/bars.js',
  '../js/types/points.js',
  '../js/types/pie.js',
  '../js/types/candles.js',
  '../js/types/markers.js',
  '../js/types/radar.js',
  '../js/types/bubbles.js',
  '../js/plugins/selection.js',
  '../js/plugins/spreadsheet.js',
  '../js/plugins/hit.js',
  '../js/plugins/crosshair.js',
  '../js/plugins/labels.js',
  '../js/plugins/legend.js',
  '../js/plugins/titles.js',
  '../js/types/gantt.js',
  { complete : example }
  ]);
 
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  <html>
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <title>Flotr Example Index Page</title>
  <link rel="stylesheet" href="style.css" type="text/css" />
  </head>
  <body>
 
  <!-- ad -->
 
  <div id="wrapper">
  <h1>Flotr for Prototype.js Example Index</h1>
  <p>
  This is the <a href="http://www.solutoire.com/flotr">Flotr</a> for <a href="http://www.prototypejs.org/" target="_blank">Prototype.js</a> example index page. Here you can find links to various Flotr examples.
  Each example emphasizes a certain feature, but I think it's useful to read and understand all of the examples,
  even if they're of no use to you. Just to get a better understanding of Flotr.
  </p>
 
  <ul>
  <li><a href="basic.html">Basic Example</a></li>
  <li><a href="basic-axis.html">Basic Axis Example</a></li>
  <li><a href="basic-bar.html">Basic Bar Example</a></li>
  <li><a href="basic-stacked-bars.html">Basic Stacked Bars Example</a></li>
  <li><a href="basic-pie.html">Basic Pie Example</a></li>
  <li><a href="basic-radar.html">Basic Radar Example</a></li>
  <li><a href="basic-bubble.html">Basic Bubble Example</a></li>
  <li><a href="basic-candlesticks.html">Basic Candle sticks Example</a></li>
  <li><a href="basic-legend.html">Basic Legend Example</a></li>
  <li><a href="mouse-tracking.html">Mouse Tracking Support Example</a></li>
  <li><a href="mouse-zoom.html">Mouse Zoom Support Example</a></li>
  <li><a href="mouse-zoom-preview.html">Mouse Zoom with Preview Example</a></li>
  <li><a href="mouse-drag.html">Mouse Drag Support Example</a></li>
  <li><a href="basic-time.html">Basic Time Example</a></li>
  <li><a href="negative.html">Negative Value Support Example</a></li>
  <!-- <li><a href="extending-flotr.html">Extending Flotr Example</a></li> -->
  <li><a href="click-event.html">Click Event Hook Example</a></li>
  <!--
  <li><a href="json-real-data.html">JSON Request on Real Data Example</a></li>
  <li><a href="json-data.html">JSON Request Data Example</a></li>
  -->
  <li><a href="image-download.html">Download Image Example</a></li>
  <li><a href="data-download.html">Download CSV Example</a></li>
  <li><a href="advanced-titles.html">Advanced Titles Example</a></li>
  <li><a href="color-gradients.html">Color Gradients Example</a></li>
  </ul>
 
  <!-- <p>If you want to play more, go the playground <a href="../../playground/index.html" title="Flotr Playground">Flotr Playground</a>.</p> -->
  <p>Can't find what you're looking for? Check out the <a href="http://www.solutoire.com/flotr/docs/" title="Flotr Documentation">Flotr Documentation</a>.</p>
 
  <div id="footer">Copyright &copy; 2008 Bas Wenneker, <a href="http://www.solutoire.com">solutoire.com</a></div>
 
  <!-- ad -->
 
  <!-- analytics -->
 
  </div>
  </body>
  </html>
 
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  <html>
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <title>Flotr: JSON Data Example</title>
  <link rel="stylesheet" href="style.css" type="text/css" />
  <script type="text/javascript" src="../lib/yepnope.js"></script>
  </head>
  <body>
 
  <!-- ad -->
 
  <div id="wrapper">
  <h1></h1>
  <div id="container" style="display:none;width:600px;height:300px;"></div>
  <button disabled="disabled" id="json-btn">Request JSON</button>
  <h2>Example</h2>
  <p>
  This example shows you how to use JSON data with Flotr. The canvas container is hidden when the page is
  loaded. By pressing the button a GET request is send to <a href="json.txt">json.txt</a>.
  This returns a JSON string with data for three series. When the returned json is a valid object, the
  canvas container is shown and the graph is rendered with <code>Flotr.draw()</code>. Here's the requested json:
  </p>
  <pre><code class="javascript">{
  series:[{
  data:[[0,1],[1,4],[2,3],[3,6],[4,4.5]],
  points:{show:true},
  lines:{show:true}
  },
  [[0,0.5],[1,0.6],[2,1.8],[3,0.9],[4,2]],
  [[0,1.5],[1,2],[2,4.5],[3,3.5],[4,5.5]]
  ],
  options:{
  mouse:{track:true},
  xaxis:{noTicks:10, tickDecimals:1}
  }
  }</code></pre>
  <p>
  Let me give you one advise about JSON. To make sure you receive the data in the right format, use the Firefox extension <a href="http://www.getfirebug.com" title="Firebug Javascript Debug Extension">Firebug</a>
  to <code>console.log</code> (print) the response. With Firebug you can examine the Ajax request and it's response.
  Also, it's worth reading <a href="http://prototypejs.org/learn/json">Introduction to JSON</a> on PrototypeJS.org.
  </p>
  <p>Finished? Go to the example <a href="index.html" title="Flotr Example Index Page">index page</a>, play with the <a href="../../playground/index.html" title="Flotr playground">playground</a> or read the <a href="http://www.solutoire.com/flotr/docs/" title="Flotr Documentation Pages">Flotr Documentation Pages</a>.</p>
  <h2>The Code</h2>
  <pre id="code-view"><code class="javascript"></code></pre>
  <div id="footer">Copyright &copy; 2008 Bas Wenneker, <a href="http://www.solutoire.com">solutoire.com</a></div>
  </div>
 
  <!-- ad -->
 
  <script type="text/javascript">
  function example(){
  var f = null,
  button = $('json-btn');
  button.disabled = false;
  button.observe('click', function(){
  /**
  * The json.txt contains a valid json string. Imagine this string
  * is generated by some server-side script.
  */
  new Ajax.Request('json.txt', {
  method:'get',
  onSuccess: function(transport){
  /**
  * Parse (eval) the JSON from the server.
  */
  var json = transport.responseText.evalJSON();
 
  if(json.series && json.options){
  /**
  * The json is valid! Display the canvas container.
  */
  $('container').show();
 
  /**
  * Draw the graph using the JSON data. Of course the
  * options are optional.
  */
  f = Flotr.draw($('container'), json.series, json.options);
  }
 
  }
  });
  });
  }
  </script>
 
  <!-- analytics -->
 
  </body>
  <script type="text/javascript" src="includes.js"></script>
  </html>
 
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  <html>
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <title>Flotr: JSON on Real Data Example</title>
  <link rel="stylesheet" href="style.css" type="text/css" />
  <script type="text/javascript" src="../lib/yepnope.js"></script>
  </head>
  <body>
 
  <!-- ad -->
 
  <div id="wrapper">
  <h1></h1>
  <div id="container" style="width:600px;height:300px;"></div>
  <h2>Example</h2>
  <p>
  This example shows you how to use JSON data with Flotr. The canvas container is hidden when the page is
  loaded. By pressing the button a GET request is send to <a href="json.txt">json.txt</a>.
  This returns a JSON string with data for three series. When the returned json is a valid object, the
  canvas container is shown and the graph is rendered with <code>Flotr.draw()</code>. Here's the requested json:
  </p>
  <p>
  Let me give you one advise about JSON. To make sure you receive the data in the right format, use the Firefox extension <a href="http://www.getfirebug.com" title="Firebug Javascript Debug Extension">Firebug</a>
  to <code>console.log</code> (print) the response. With Firebug you can examine the Ajax request and it's response.
  Also, it's worth reading <a href="http://prototypejs.org/learn/json">Introduction to JSON</a> on PrototypeJS.org.
  </p>
  <p>Finished? Go to the example <a href="index.html" title="Flotr Example Index Page">index page</a>, play with the <a href="../../playground/index.html" title="Flotr playground">playground</a> or read the <a href="http://www.solutoire.com/flotr/docs/" title="Flotr Documentation Pages">Flotr Documentation Pages</a>.</p>
  <h2>The Code</h2>
  <pre id="code-view"><code class="javascript"></code></pre>
  <div id="footer">Copyright &copy; 2008 Bas Wenneker, <a href="http://www.solutoire.com">solutoire.com</a></div>
  </div>
 
  <!-- ad -->
 
  <script type="text/javascript">
  var f = null;
  function example(){
  /**
  * The ajax-financial-data.php retrieves data drom the Yahoo Ichart application.
  */
  new Ajax.Request('ajax-financial-data.php', {
  method:'get',
  onSuccess: function(transport){
  /**
  * Parse (eval) the JSON from the server.
  */
  var json = transport.responseText.evalJSON();
 
  if(json.data && json.ticks){
  var options = {
  title: "Apple Inc. real time quotes",
  xaxis: {ticks: json.ticks, labelsAngle: 45},
  candles: {show: true, candleWidth: 0.6},
  HtmlText: false
  };
 
  /**
  * Draw the graph using the JSON data. Of course the
  * options are optional.
  */
  f = Flotr.draw($('container'), [json.data], options);
  }
  else {
  $('container').update('The data could not be retrieved. Check if your server can access yahoo.com and has PHP and the php_json extension.')
  }
  }
  });
  };
  </script>
 
  <!-- analytics -->
 
  </body>
  <script type="text/javascript" src="includes.js"></script>
  </html>
 
  {
  series:[{
  data:[[0,1],[1,4],[2,3],[3,6],[4,4.5]],
  points:{show:true},
  lines:{show:true}
  },
  [[0,0.5],[1,0.6],[2,1.8],[3,0.9],[4,2]],
  [[0,1.5],[1,2],[2,4.5],[3,3.5],[4,5.5]]
  ],
  options:{
  mouse:{track:true},
  xaxis:{noTicks:10, tickDecimals:1}
  }
  }
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  <html>
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <title>Flotr: Logarithmic Scale Example</title>
  <link rel="stylesheet" href="style.css" type="text/css" />
 
  <script type="text/javascript" src="../../flotr/prototype/lib/prototype.js"></script>
  <script type="text/javascript" src="examples.js"></script>
 
  <!--[if IE]>
  <script type="text/javascript" src="../../flotr/prototype/lib/excanvas.js"></script>
  <script type="text/javascript" src="../../flotr/prototype/lib/base64.js"></script>
  <![endif]-->
  <script type="text/javascript" src="../../flotr/prototype/lib/canvas2image.js"></script>
  <script type="text/javascript" src="../../flotr/prototype/lib/canvastext.js"></script>
  <script type="text/javascript" src="../../flotr/prototype/flotr.js"></script>
  </head>
  <body>
 
  <!-- ad -->
 
  <div id="wrapper">
  <h1></h1>
  <div id="container" style="width:600px;height:600px;"></div>
  <h2>Example</h2>
  <p>This graph shows how logarithmic scale is handled</p>
  <p>Finished? Go to the example <a href="index.html" title="Flotr Example Index Page">index page</a>, play with the <a href="../../playground/index.html" title="Flotr playground">playground</a> or read the <a href="http://www.solutoire.com/flotr/docs/" title="Flotr Documentation Pages">Flotr Documentation Pages</a>.</p>
  <h2>The Code</h2>
  <pre id="code-view"><code class="javascript"></code></pre>
  <div id="footer">Copyright &copy; 2008 Bas Wenneker, <a href="http://www.solutoire.com">solutoire.com</a></div>
  </div>
 
  <!-- ad -->
 
  <script type="text/javascript">
  window.onload= function(){
  var d1 = [];
 
  var i;
  for(i = -10; i <= 10; i += 0.1){
  d1.push([i, Math.exp(i)]);
  }
 
  /**
  * Draw the graph.
  */
  var f = Flotr.draw(
  $('container'),[
  {data:d1, label:'exp(x)'}
  ],{
  yaxis:{
  ticks: [10e-5, 10e-4, 10e-3, 10e-2, 10e-1, 10e0, 10e1, 10e2, 10e3, 10e4, 10e5],
  scaling:'logarithmic',
  //base: 0.5,
  min: 10e-6,
  max: 10e6
  },
  spreadsheet:{
  show: true
  },
  mouse: {track: true}
  });
  }
  </script>
 
  <!-- analytics -->
 
  </body>
  </html>
 
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  <html>
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <title>Flotr: Mouse Zoom With Preview Example</title>
  <link rel="stylesheet" href="style.css" type="text/css" />
  <script type="text/javascript" src="../lib/yepnope.js"></script>
  </head>
  <body>
 
  <!-- ad -->
 
  <div id="wrapper">
  <h1></h1>
  <div id="overview" style="width:200px;height:100px;float:right;"></div>
  <div id="container" style="width:500px;height:250px;"></div>
  <h2>Example</h2>
  <p>This example show an enhancement of the mouse-zoom example. It displays an overview of the graph. By selecting an area in the graph or in the overview, the graph is zoomed. Read more about the <a href="http://www.solutoire.com/flotr/docs/eventhooks/" title="Flotr Event Hooks">event hooks</a>.</p>
  <p>Finished? Go to the example <a href="index.html" title="Flotr Example Index Page">index page</a>, play with the <a href="../../playground/index.html" title="Flotr playground">playground</a> or read the <a href="http://www.solutoire.com/flotr/docs/" title="Flotr Documentation Pages">Flotr Documentation Pages</a>.</p>
  <p><button id="reset-btn">Reset</button></p>
  <h2>The Code</h2>
  <pre id="code-view"><code class="javascript"></code></pre>
  <div id="footer">Copyright &copy; 2008 Bas Wenneker, <a href="http://www.solutoire.com">solutoire.com</a></div>
  </div>
 
  <!-- ad -->
 
  <script type="text/javascript">
  function example(){
 
  var container = document.getElementById('container'),
  overviewContainer = document.getElementById('overview');
 
  /**
  * Fill series d1 and d2.
  */
  var d1 = [];
  var d2 = [];
  var d3 = [];
  for(var i = 0; i < 40; i += 0.5){
  d1.push([i, Math.sin(i)+3*Math.cos(i)]);
  d2.push([i, Math.pow(1.1, i)]);
  d3.push([i, 40 - i+Math.random()*10]);
  }
 
  /**
  * Global options object.
  */
  var options = {
  selection: { mode:'xy', fps:30 }
  };
 
  // setup overview
  var overviewOptions = {
  lines: { show: true, lineWidth: 1 },
  shadowSize: 0,
  grid: { color: '#999', outlineWidth: 1 },
  selection: { mode: 'xy' }
  };
 
  /**
  * Function displays a graph in the 'container' element, extending
  * the global options object with the optionally passed options.
  */
  function drawGraph(opts){
  /**
  * Clone the options, so the 'options' variable always keeps intact.
  */
  var o = _.extend(_.clone(options), opts || {});
  /**
  * Return a new graph.
  */
  return Flotr.draw(
  container,
  [ d1, d2, d3 ],
  o
  );
  }
 
  /**
  * Function displays a graph in the 'overview' element.
  */
  function drawOverview(){
  return Flotr.draw(
  overviewContainer,
  [ d1, d2, d3 ],
  overviewOptions
  );
  }
 
  /**
  * Actually draw the graphs.
  */
  var f = drawGraph();
  var overview = drawOverview();
 
  /**
  * Hook into the 'flotr:select' event.
  */
  Flotr.EventAdapter.observe(container, 'flotr:select', function(area){
  /**
  * Do the zooming.
  */
  f = drawGraph({
  xaxis: {min:area.x1, max:area.x2},
  yaxis: {min:area.y1, max:area.y2}
  });
 
  // don't fire event on the overview to prevent eternal loop
  overview.setSelection(area, true);
  });
 
  /**
  * Hook into the 'flotr:select' event from overview.
  */
  Flotr.EventAdapter.observe(overview, 'flotr:select', function(evt){
  f.setSelection(evt.memo[0]);
  });
 
  /**
  * Observe click event on the reset-btn. Reset the graph when clicked.
  * The drawGraph function wrapped in another function otherwise it get's
  * an Event object passed as first argument, while it expects an options
  * object.
  */
  document.getElementById('reset-btn').onclick = function(){
  drawGraph();
  drawOverview();
  };
  };
  </script>
 
  <!-- analytics -->
 
  </body>
  <script type="text/javascript" src="includes.js"></script>
  </html>
 
  body{
  font-family:Arial,Helvetica,sans-serif;
  font-size: 12px;
  }
 
  #wrapper{
  width: 700px;
  margin: 50px auto;
  }
 
  a:link, a:visited{
  color: #004892;
  font-weight: bold;
  text-decoration: none;
  }
 
  a:visited{
  color: #1763b5;
  }
 
  a:focus, a:hover, a:active{
  color: #3c85d4;
  background-color: #b6d9ff;
  }
 
  h1, h2, h3 {
  font-family:Georgia,"Times New Roman",Times,serif;
  font-style:italic;
  font-weight:normal;
  letter-spacing:-1px;
  font-size: 1.5em;
  color: #050404;
  }
 
  h2{
  font-size: 1.4em;
  }
 
  p{
  margin: 10px;
  }
 
  code {
  background: #b6d9ff;
  font-size: 0.9em;
  color: #004892;
  }
 
  pre{
  border: 4px solid #B6D9FF;
  background:#d2e8ff;
  color: #004892;
  padding: 15px;
  margin:5px 0;
  }
 
  pre code{
  background-color: transparent;
  display:block;
  line-height:16px;
  overflow-x: auto;
  overflow-y: hidden;
  white-space:pre;
  padding:0 5px;
  }
 
  #footer{
  margin: 30px 0;
  text-align:center;
  }
 
  iframe {
  border:3px solid #B6D9FF;
  }
 
  .ad{
  width: 740px;
  margin: 10px auto;
  }
 
  .flotr-datagrid-container {
  border: 1px solid #999;
  border-bottom: none;
  background: #fff;
  }
  .flotr-datagrid {
  border-collapse: collapse;
  border-spacing: 0;
  }
  .flotr-datagrid td, .flotr-datagrid th {
  border: 1px solid #ccc;
  padding: 1px 3px;
  min-width: 2em;
  }
  .flotr-datagrid tr:hover, .flotr-datagrid col.hover {
  background: #f3f3f3;
  }
  .flotr-datagrid tr:hover th, .flotr-datagrid th.hover {
  background: #999;
  color: #fff;
  }
  .flotr-datagrid th {
  text-align: left;
  background: #e3e3e3;
  border: 2px outset #fff;
  }
  .flotr-datagrid-toolbar {
  padding: 1px;
  border-bottom: 1px solid #ccc;
  background: #f9f9f9;
  }
  .flotr-datagrid td:hover {
  background: #ccc;
  }
  .flotr-datagrid .first-row th {
  text-align: center;
  }
  .flotr-canvas {
  margin-bottom: -3px;
  padding-bottom: 1px;
  }
  .flotr-tabs-group {
  border-top: 1px solid #999;
  }
  .flotr-tab {
  border: 1px solid #666;
  border-top: none;
  margin: 0 3px;
  padding: 1px 4px;
  cursor: pointer;
  -moz-border-radius: 0 0 4px 4px;
  -webkit-border-bottom-left-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-radius: 0 0 4px 4px;
  opacity: 0.5;
  -moz-opacity: 0.5;
  }
  .flotr-tab.selected {
  background: #ddd;
  opacity: 1;
  -moz-opacity: 1;
  }
  .flotr-tab:hover {
  background: #ccc;
  }
  <!DOCTYPE html>
  <html>
 
  <head>
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <title>Flotr Example Index Page</title>
  <link rel="stylesheet" href="examples.css" type="text/css" />
  <link rel="stylesheet" href="lib/google-code-prettify/prettify.css" type="text/css" />
  </head>
 
  <body>
 
  <div id="body-container">
 
  <div id="content-container">
  <div id="content">
 
  <h2>Examples:</h2>
  <div id="examples"></div>
  <div id="example-highlight"></div>
 
  <div id="example">
  <h3 id="example-label">Example:</h3>
  <div id="example-graph"></div>
  <div id="example-description"></div>
 
  <div id="example-profile-container">
  <h3>Profile:</h3>
  <div id="example-profile"></div>
  </div>
 
  <div id="example-source-container">
  <h3>Source:</h3>
  <div id="example-source"></div>
  <textarea id="example-editor"></textarea>
  <div id="example-buttons">
  <button id="example-run">Run</button>
  <button id="example-edit">Edit</button>
  </div>
  </div>
  </div>
 
  </div>
  </div>
 
  </div>
 
 
 
  </body>
 
  <script>
  Flotr = {};
  Flotr.ExamplesCallback = function () {
  Profile = new Flotr.Profile();
  };
  </script>
 
  <script type="text/javascript" src="../lib/yepnope.js"></script>
  <script type="text/javascript" src="js/includes.dev.js"></script>
 
  </html>
 
  (function (root, factory) {
  if (typeof define === 'function' && define.amd) {
  // AMD. Register as an anonymous module.
  define(['bean', 'underscore'], function (bean, _) {
  // Also create a global in case some scripts
  // that are loaded still are looking for
  // a global even when an AMD loader is in use.
  return (root.Flotr = factory(bean, _));
  });
  } else {
  // Browser globals
  root.Flotr = factory(root.bean, root._);
  }
  }(this, function (bean, _) {
 
  /**
  * Flotr2 (c) 2012 Carl Sutherland
  * MIT License
  * Special thanks to:
  * Flotr: http://code.google.com/p/flotr/ (fork)
  * Flot: https://github.com/flot/flot (original fork)
  */
  (function () {
 
  var
  global = this,
  previousFlotr = this.Flotr,
  Flotr;
 
  Flotr = {
  _: _,
  bean: bean,
  isIphone: /iphone/i.test(navigator.userAgent),
  isIE: (navigator.appVersion.indexOf("MSIE") != -1 ? parseFloat(navigator.appVersion.split("MSIE")[1]) : false),
 
  /**
  * An object of the registered graph types. Use Flotr.addType(type, object)
  * to add your own type.
  */
  graphTypes: {},
 
  /**
  * The list of the registered plugins
  */
  plugins: {},
 
  /**
  * Can be used to add your own chart type.
  * @param {String} name - Type of chart, like 'pies', 'bars' etc.
  * @param {String} graphType - The object containing the basic drawing functions (draw, etc)
  */
  addType: function(name, graphType){
  Flotr.graphTypes[name] = graphType;
  Flotr.defaultOptions[name] = graphType.options || {};
  Flotr.defaultOptions.defaultType = Flotr.defaultOptions.defaultType || name;
  },
 
  /**
  * Can be used to add a plugin
  * @param {String} name - The name of the plugin
  * @param {String} plugin - The object containing the plugin's data (callbacks, options, function1, function2, ...)
  */
  addPlugin: function(name, plugin){
  Flotr.plugins[name] = plugin;
  Flotr.defaultOptions[name] = plugin.options || {};
  },
 
  /**
  * Draws the graph. This function is here for backwards compatibility with Flotr version 0.1.0alpha.
  * You could also draw graphs by directly calling Flotr.Graph(element, data, options).
  * @param {Element} el - element to insert the graph into
  * @param {Object} data - an array or object of dataseries
  * @param {Object} options - an object containing options
  * @param {Class} _GraphKlass_ - (optional) Class to pass the arguments to, defaults to Flotr.Graph
  * @return {Object} returns a new graph object and of course draws the graph.
  */
  draw: function(el, data, options, GraphKlass){
  GraphKlass = GraphKlass || Flotr.Graph;
  return new GraphKlass(el, data, options);
  },
 
  /**
  * Recursively merges two objects.
  * @param {Object} src - source object (likely the object with the least properties)
  * @param {Object} dest - destination object (optional, object with the most properties)
  * @return {Object} recursively merged Object
  * @TODO See if we can't remove this.
  */
  merge: function(src, dest){
  var i, v, result = dest || {};
 
  for (i in src) {
  v = src[i];
  if (v && typeof(v) === 'object') {
  if (v.constructor === Array) {
  result[i] = this._.clone(v);
  } else if (v.constructor !== RegExp && !this._.isElement(v)) {
  result[i] = Flotr.merge(v, (dest ? dest[i] : undefined));
  } else {
  result[i] = v;
  }
  } else {
  result[i] = v;
  }
  }
 
  return result;
  },
 
  /**
  * Recursively clones an object.
  * @param {Object} object - The object to clone
  * @return {Object} the clone
  * @TODO See if we can't remove this.
  */
  clone: function(object){
  return Flotr.merge(object, {});
  },
 
  /**
  * Function calculates the ticksize and returns it.
  * @param {Integer} noTicks - number of ticks
  * @param {Integer} min - lower bound integer value for the current axis
  * @param {Integer} max - upper bound integer value for the current axis
  * @param {Integer} decimals - number of decimals for the ticks
  * @return {Integer} returns the ticksize in pixels
  */
  getTickSize: function(noTicks, min, max, decimals){
  var delta = (max - min) / noTicks,
  magn = Flotr.getMagnitude(delta),
  tickSize = 10,
  norm = delta / magn; // Norm is between 1.0 and 10.0.
 
  if(norm < 1.5) tickSize = 1;
  else if(norm < 2.25) tickSize = 2;
  else if(norm < 3) tickSize = ((decimals === 0) ? 2 : 2.5);
  else if(norm < 7.5) tickSize = 5;
 
  return tickSize * magn;
  },
 
  /**
  * Default tick formatter.
  * @param {String, Integer} val - tick value integer
  * @param {Object} axisOpts - the axis' options
  * @return {String} formatted tick string
  */
  defaultTickFormatter: function(val, axisOpts){
  return val+'';
  },
 
  /**
  * Formats the mouse tracker values.
  * @param {Object} obj - Track value Object {x:..,y:..}
  * @return {String} Formatted track string
  */
  defaultTrackFormatter: function(obj){
  return '('+obj.x+', '+obj.y+')';
  },
 
  /**
  * Utility function to convert file size values in bytes to kB, MB, ...
  * @param value {Number} - The value to convert
  * @param precision {Number} - The number of digits after the comma (default: 2)
  * @param base {Number} - The base (default: 1000)
  */
  engineeringNotation: function(value, precision, base){
  var sizes = ['Y','Z','E','P','T','G','M','k',''],
  fractionSizes = ['y','z','a','f','p','n','µ','m',''],
  total = sizes.length;
 
  base = base || 1000;
  precision = Math.pow(10, precision || 2);
 
  if (value === 0) return 0;
 
  if (value > 1) {
  while (total-- && (value >= base)) value /= base;
  }
  else {
  sizes = fractionSizes;
  total = sizes.length;
  while (total-- && (value < 1)) value *= base;
  }
 
  return (Math.round(value * precision) / precision) + sizes[total];
  },
 
  /**
  * Returns the magnitude of the input value.
  * @param {Integer, Float} x - integer or float value
  * @return {Integer, Float} returns the magnitude of the input value
  */
  getMagnitude: function(x){
  return Math.pow(10, Math.floor(Math.log(x) / Math.LN10));
  },
  toPixel: function(val){
  return Math.floor(val)+0.5;//((val-Math.round(val) < 0.4) ? (Math.floor(val)-0.5) : val);
  },
  toRad: function(angle){
  return -angle * (Math.PI/180);
  },
  floorInBase: function(n, base) {
  return base * Math.floor(n / base);
  },
  drawText: function(ctx, text, x, y, style) {
  if (!ctx.fillText) {
  ctx.drawText(text, x, y, style);
  return;
  }
 
  style = this._.extend({
  size: Flotr.defaultOptions.fontSize,
  color: '#000000',
  textAlign: 'left',
  textBaseline: 'bottom',
  weight: 1,
  angle: 0
  }, style);
 
  ctx.save();
  ctx.translate(x, y);
  ctx.rotate(style.angle);
  ctx.fillStyle = style.color;
  ctx.font = (style.weight > 1 ? "bold " : "") + (style.size*1.3) + "px sans-serif";
  ctx.textAlign = style.textAlign;
  ctx.textBaseline = style.textBaseline;
  ctx.fillText(text, 0, 0);
  ctx.restore();
  },
  getBestTextAlign: function(angle, style) {
  style = style || {textAlign: 'center', textBaseline: 'middle'};
  angle += Flotr.getTextAngleFromAlign(style);
 
  if (Math.abs(Math.cos(angle)) > 10e-3)
  style.textAlign = (Math.cos(angle) > 0 ? 'right' : 'left');
 
  if (Math.abs(Math.sin(angle)) > 10e-3)
  style.textBaseline = (Math.sin(angle) > 0 ? 'top' : 'bottom');
 
  return style;
  },
  alignTable: {
  'right middle' : 0,
  'right top' : Math.PI/4,
  'center top' : Math.PI/2,
  'left top' : 3*(Math.PI/4),
  'left middle' : Math.PI,
  'left bottom' : -3*(Math.PI/4),
  'center bottom': -Math.PI/2,
  'right bottom' : -Math.PI/4,
  'center middle': 0
  },
  getTextAngleFromAlign: function(style) {
  return Flotr.alignTable[style.textAlign+' '+style.textBaseline] || 0;
  },
  noConflict : function () {
  global.Flotr = previousFlotr;
  return this;
  }
  };
 
  global.Flotr = Flotr;
 
  })();
 
  /**
  * Flotr Defaults
  */
  Flotr.defaultOptions = {
  colors: ['#00A8F0', '#C0D800', '#CB4B4B', '#4DA74D', '#9440ED'], //=> The default colorscheme. When there are > 5 series, additional colors are generated.
  ieBackgroundColor: '#FFFFFF', // Background color for excanvas clipping
  title: null, // => The graph's title
  subtitle: null, // => The graph's subtitle
  shadowSize: 4, // => size of the 'fake' shadow
  defaultType: null, // => default series type
  HtmlText: true, // => wether to draw the text using HTML or on the canvas
  fontColor: '#545454', // => default font color
  fontSize: 7.5, // => canvas' text font size
  resolution: 1, // => resolution of the graph, to have printer-friendly graphs !
  parseFloat: true, // => whether to preprocess data for floats (ie. if input is string)
  preventDefault: true, // => preventDefault by default for mobile events. Turn off to enable scroll.
  xaxis: {
  ticks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  minorTicks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  showLabels: true, // => setting to true will show the axis ticks labels, hide otherwise
  showMinorLabels: false,// => true to show the axis minor ticks labels, false to hide
  labelsAngle: 0, // => labels' angle, in degrees
  title: null, // => axis title
  titleAngle: 0, // => axis title's angle, in degrees
  noTicks: 5, // => number of ticks for automagically generated ticks
  minorTickFreq: null, // => number of minor ticks between major ticks for autogenerated ticks
  tickFormatter: Flotr.defaultTickFormatter, // => fn: number, Object -> string
  tickDecimals: null, // => no. of decimals, null means auto
  min: null, // => min. value to show, null means set automatically
  max: null, // => max. value to show, null means set automatically
  autoscale: false, // => Turns autoscaling on with true
  autoscaleMargin: 0, // => margin in % to add if auto-setting min/max
  color: null, // => color of the ticks
  mode: 'normal', // => can be 'time' or 'normal'
  timeFormat: null,
  timeMode:'UTC', // => For UTC time ('local' for local time).
  timeUnit:'millisecond',// => Unit for time (millisecond, second, minute, hour, day, month, year)
  scaling: 'linear', // => Scaling, can be 'linear' or 'logarithmic'
  base: Math.E,
  titleAlign: 'center',
  margin: true // => Turn off margins with false
  },
  x2axis: {},
  yaxis: {
  ticks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  minorTicks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  showLabels: true, // => setting to true will show the axis ticks labels, hide otherwise
  showMinorLabels: false,// => true to show the axis minor ticks labels, false to hide
  labelsAngle: 0, // => labels' angle, in degrees
  title: null, // => axis title
  titleAngle: 90, // => axis title's angle, in degrees
  noTicks: 5, // => number of ticks for automagically generated ticks
  minorTickFreq: null, // => number of minor ticks between major ticks for autogenerated ticks
  tickFormatter: Flotr.defaultTickFormatter, // => fn: number, Object -> string
  tickDecimals: null, // => no. of decimals, null means auto
  min: null, // => min. value to show, null means set automatically
  max: null, // => max. value to show, null means set automatically
  autoscale: false, // => Turns autoscaling on with true
  autoscaleMargin: 0, // => margin in % to add if auto-setting min/max
  color: null, // => The color of the ticks
  scaling: 'linear', // => Scaling, can be 'linear' or 'logarithmic'
  base: Math.E,
  titleAlign: 'center',
  margin: true // => Turn off margins with false
  },
  y2axis: {
  titleAngle: 270
  },
  grid: {
  color: '#545454', // => primary color used for outline and labels
  backgroundColor: null, // => null for transparent, else color
  backgroundImage: null, // => background image. String or object with src, left and top
  watermarkAlpha: 0.4, // =>
  tickColor: '#DDDDDD', // => color used for the ticks
  labelMargin: 3, // => margin in pixels
  verticalLines: true, // => whether to show gridlines in vertical direction
  minorVerticalLines: null, // => whether to show gridlines for minor ticks in vertical dir.
  horizontalLines: true, // => whether to show gridlines in horizontal direction
  minorHorizontalLines: null, // => whether to show gridlines for minor ticks in horizontal dir.
  outlineWidth: 1, // => width of the grid outline/border in pixels
  outline : 'nsew', // => walls of the outline to display
  circular: false // => if set to true, the grid will be circular, must be used when radars are drawn
  },
  mouse: {
  track: false, // => true to track the mouse, no tracking otherwise
  trackAll: false,
  position: 'se', // => position of the value box (default south-east)
  relative: false, // => next to the mouse cursor
  trackFormatter: Flotr.defaultTrackFormatter, // => formats the values in the value box
  margin: 5, // => margin in pixels of the valuebox
  lineColor: '#FF3F19', // => line color of points that are drawn when mouse comes near a value of a series
  trackDecimals: 1, // => decimals for the track values
  sensibility: 2, // => the lower this number, the more precise you have to aim to show a value
  trackY: true, // => whether or not to track the mouse in the y axis
  radius: 3, // => radius of the track point
  fillColor: null, // => color to fill our select bar with only applies to bar and similar graphs (only bars for now)
  fillOpacity: 0.4 // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  }
  };
 
  /**
  * Flotr Color
  */
 
  (function () {
 
  var
  _ = Flotr._;
 
  // Constructor
  function Color (r, g, b, a) {
  this.rgba = ['r','g','b','a'];
  var x = 4;
  while(-1<--x){
  this[this.rgba[x]] = arguments[x] || ((x==3) ? 1.0 : 0);
  }
  this.normalize();
  }
 
  // Constants
  var COLOR_NAMES = {
  aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],
  brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],
  darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],
  darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],
  darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],
  khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],
  lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],
  maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],
  violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]
  };
 
  Color.prototype = {
  scale: function(rf, gf, bf, af){
  var x = 4;
  while (-1 < --x) {
  if (!_.isUndefined(arguments[x])) this[this.rgba[x]] *= arguments[x];
  }
  return this.normalize();
  },
  alpha: function(alpha) {
  if (!_.isUndefined(alpha) && !_.isNull(alpha)) {
  this.a = alpha;
  }
  return this.normalize();
  },
  clone: function(){
  return new Color(this.r, this.b, this.g, this.a);
  },
  limit: function(val,minVal,maxVal){
  return Math.max(Math.min(val, maxVal), minVal);
  },
  normalize: function(){
  var limit = this.limit;
  this.r = limit(parseInt(this.r, 10), 0, 255);
  this.g = limit(parseInt(this.g, 10), 0, 255);
  this.b = limit(parseInt(this.b, 10), 0, 255);
  this.a = limit(this.a, 0, 1);
  return this;
  },
  distance: function(color){
  if (!color) return;
  color = new Color.parse(color);
  var dist = 0, x = 3;
  while(-1<--x){
  dist += Math.abs(this[this.rgba[x]] - color[this.rgba[x]]);
  }
  return dist;
  },
  toString: function(){
  return (this.a >= 1.0) ? 'rgb('+[this.r,this.g,this.b].join(',')+')' : 'rgba('+[this.r,this.g,this.b,this.a].join(',')+')';
  },
  contrast: function () {
  var
  test = 1 - ( 0.299 * this.r + 0.587 * this.g + 0.114 * this.b) / 255;
  return (test < 0.5 ? '#000000' : '#ffffff');
  }
  };
 
  _.extend(Color, {
  /**
  * Parses a color string and returns a corresponding Color.
  * The different tests are in order of probability to improve speed.
  * @param {String, Color} str - string thats representing a color
  * @return {Color} returns a Color object or false
  */
  parse: function(color){
  if (color instanceof Color) return color;
 
  var result;
 
  // #a0b1c2
  if((result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color)))
  return new Color(parseInt(result[1], 16), parseInt(result[2], 16), parseInt(result[3], 16));
 
  // rgb(num,num,num)
  if((result = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color)))
  return new Color(parseInt(result[1], 10), parseInt(result[2], 10), parseInt(result[3], 10));
 
  // #fff
  if((result = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color)))
  return new Color(parseInt(result[1]+result[1],16), parseInt(result[2]+result[2],16), parseInt(result[3]+result[3],16));
 
  // rgba(num,num,num,num)
  if((result = /rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(color)))
  return new Color(parseInt(result[1], 10), parseInt(result[2], 10), parseInt(result[3], 10), parseFloat(result[4]));
 
  // rgb(num%,num%,num%)
  if((result = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color)))
  return new Color(parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55);
 
  // rgba(num%,num%,num%,num)
  if((result = /rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(color)))
  return new Color(parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55, parseFloat(result[4]));
 
  // Otherwise, we're most likely dealing with a named color.
  var name = (color+'').replace(/^\s*([\S\s]*?)\s*$/, '$1').toLowerCase();
  if(name == 'transparent'){
  return new Color(255, 255, 255, 0);
  }
  return (result = COLOR_NAMES[name]) ? new Color(result[0], result[1], result[2]) : new Color(0, 0, 0, 0);
  },
 
  /**
  * Process color and options into color style.
  */
  processColor: function(color, options) {
 
  var opacity = options.opacity;
  if (!color) return 'rgba(0, 0, 0, 0)';
  if (color instanceof Color) return color.alpha(opacity).toString();
  if (_.isString(color)) return Color.parse(color).alpha(opacity).toString();
 
  var grad = color.colors ? color : {colors: color};
 
  if (!options.ctx) {
  if (!_.isArray(grad.colors)) return 'rgba(0, 0, 0, 0)';
  return Color.parse(_.isArray(grad.colors[0]) ? grad.colors[0][1] : grad.colors[0]).alpha(opacity).toString();
  }
  grad = _.extend({start: 'top', end: 'bottom'}, grad);
 
  if (/top/i.test(grad.start)) options.x1 = 0;
  if (/left/i.test(grad.start)) options.y1 = 0;
  if (/bottom/i.test(grad.end)) options.x2 = 0;
  if (/right/i.test(grad.end)) options.y2 = 0;
 
  var i, c, stop, gradient = options.ctx.createLinearGradient(options.x1, options.y1, options.x2, options.y2);
  for (i = 0; i < grad.colors.length; i++) {
  c = grad.colors[i];
  if (_.isArray(c)) {
  stop = c[0];
  c = c[1];
  }
  else stop = i / (grad.colors.length-1);
  gradient.addColorStop(stop, Color.parse(c).alpha(opacity));
  }
  return gradient;
  }
  });
 
  Flotr.Color = Color;
 
  })();
 
  /**
  * Flotr Date
  */
  Flotr.Date = {
 
  set : function (date, name, mode, value) {
  mode = mode || 'UTC';
  name = 'set' + (mode === 'UTC' ? 'UTC' : '') + name;
  date[name](value);
  },
 
  get : function (date, name, mode) {
  mode = mode || 'UTC';
  name = 'get' + (mode === 'UTC' ? 'UTC' : '') + name;
  return date[name]();
  },
 
  format: function(d, format, mode) {
  if (!d) return;
 
  // We should maybe use an "official" date format spec, like PHP date() or ColdFusion
  // http://fr.php.net/manual/en/function.date.php
  // http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=functions_c-d_29.html
  var
  get = this.get,
  tokens = {
  h: get(d, 'Hours', mode).toString(),
  H: leftPad(get(d, 'Hours', mode)),
  M: leftPad(get(d, 'Minutes', mode)),
  S: leftPad(get(d, 'Seconds', mode)),
  s: get(d, 'Milliseconds', mode),
  d: get(d, 'Date', mode).toString(),
  m: (get(d, 'Month', mode) + 1).toString(),
  y: get(d, 'FullYear', mode).toString(),
  b: Flotr.Date.monthNames[get(d, 'Month', mode)]
  };
 
  function leftPad(n){
  n += '';
  return n.length == 1 ? "0" + n : n;
  }
 
  var r = [], c,
  escape = false;
 
  for (var i = 0; i < format.length; ++i) {
  c = format.charAt(i);
 
  if (escape) {
  r.push(tokens[c] || c);
  escape = false;
  }
  else if (c == "%")
  escape = true;
  else
  r.push(c);
  }
  return r.join('');
  },
  getFormat: function(time, span) {
  var tu = Flotr.Date.timeUnits;
  if (time < tu.second) return "%h:%M:%S.%s";
  else if (time < tu.minute) return "%h:%M:%S";
  else if (time < tu.day) return (span < 2 * tu.day) ? "%h:%M" : "%b %d %h:%M";
  else if (time < tu.month) return "%b %d";
  else if (time < tu.year) return (span < tu.year) ? "%b" : "%b %y";
  else return "%y";
  },
  formatter: function (v, axis) {
  var
  options = axis.options,
  scale = Flotr.Date.timeUnits[options.timeUnit],
  d = new Date(v * scale);
 
  // first check global format
  if (axis.options.timeFormat)
  return Flotr.Date.format(d, options.timeFormat, options.timeMode);
 
  var span = (axis.max - axis.min) * scale,
  t = axis.tickSize * Flotr.Date.timeUnits[axis.tickUnit];
 
  return Flotr.Date.format(d, Flotr.Date.getFormat(t, span), options.timeMode);
  },
  generator: function(axis) {
 
  var
  set = this.set,
  get = this.get,
  timeUnits = this.timeUnits,
  spec = this.spec,
  options = axis.options,
  mode = options.timeMode,
  scale = timeUnits[options.timeUnit],
  min = axis.min * scale,
  max = axis.max * scale,
  delta = (max - min) / options.noTicks,
  ticks = [],
  tickSize = axis.tickSize,
  tickUnit,
  formatter, i;
 
  // Use custom formatter or time tick formatter
  formatter = (options.tickFormatter === Flotr.defaultTickFormatter ?
  this.formatter : options.tickFormatter
  );
 
  for (i = 0; i < spec.length - 1; ++i) {
  var d = spec[i][0] * timeUnits[spec[i][1]];
  if (delta < (d + spec[i+1][0] * timeUnits[spec[i+1][1]]) / 2 && d >= tickSize)
  break;
  }
  tickSize = spec[i][0];
  tickUnit = spec[i][1];
 
  // special-case the possibility of several years
  if (tickUnit == "year") {
  tickSize = Flotr.getTickSize(options.noTicks*timeUnits.year, min, max, 0);
 
  // Fix for 0.5 year case
  if (tickSize == 0.5) {
  tickUnit = "month";
  tickSize = 6;
  }
  }
 
  axis.tickUnit = tickUnit;
  axis.tickSize = tickSize;
 
  var step = tickSize * timeUnits[tickUnit];
  d = new Date(min);
 
  function setTick (name) {
  set(d, name, mode, Flotr.floorInBase(
  get(d, name, mode), tickSize
  ));
  }
 
  switch (tickUnit) {
  case "millisecond": setTick('Milliseconds'); break;
  case "second": setTick('Seconds'); break;
  case "minute": setTick('Minutes'); break;
  case "hour": setTick('Hours'); break;
  case "month": setTick('Month'); break;
  case "year": setTick('FullYear'); break;
  }
 
  // reset smaller components
  if (step >= timeUnits.second) set(d, 'Milliseconds', mode, 0);
  if (step >= timeUnits.minute) set(d, 'Seconds', mode, 0);
  if (step >= timeUnits.hour) set(d, 'Minutes', mode, 0);
  if (step >= timeUnits.day) set(d, 'Hours', mode, 0);
  if (step >= timeUnits.day * 4) set(d, 'Date', mode, 1);
  if (step >= timeUnits.year) set(d, 'Month', mode, 0);
 
  var carry = 0, v = NaN, prev;
  do {
  prev = v;
  v = d.getTime();
  ticks.push({ v: v / scale, label: formatter(v / scale, axis) });
  if (tickUnit == "month") {
  if (tickSize < 1) {
  /* a bit complicated - we'll divide the month up but we need to take care of fractions
  so we don't end up in the middle of a day */
  set(d, 'Date', mode, 1);
  var start = d.getTime();
  set(d, 'Month', mode, get(d, 'Month', mode) + 1);
  var end = d.getTime();
  d.setTime(v + carry * timeUnits.hour + (end - start) * tickSize);
  carry = get(d, 'Hours', mode);
  set(d, 'Hours', mode, 0);
  }
  else
  set(d, 'Month', mode, get(d, 'Month', mode) + tickSize);
  }
  else if (tickUnit == "year") {
  set(d, 'FullYear', mode, get(d, 'FullYear', mode) + tickSize);
  }
  else
  d.setTime(v + step);
 
  } while (v < max && v != prev);
 
  return ticks;
  },
  timeUnits: {
  millisecond: 1,
  second: 1000,
  minute: 1000 * 60,
  hour: 1000 * 60 * 60,
  day: 1000 * 60 * 60 * 24,
  month: 1000 * 60 * 60 * 24 * 30,
  year: 1000 * 60 * 60 * 24 * 365.2425
  },
  // the allowed tick sizes, after 1 year we use an integer algorithm
  spec: [
  [1, "millisecond"], [20, "millisecond"], [50, "millisecond"], [100, "millisecond"], [200, "millisecond"], [500, "millisecond"],
  [1, "second"], [2, "second"], [5, "second"], [10, "second"], [30, "second"],
  [1, "minute"], [2, "minute"], [5, "minute"], [10, "minute"], [30, "minute"],
  [1, "hour"], [2, "hour"], [4, "hour"], [8, "hour"], [12, "hour"],
  [1, "day"], [2, "day"], [3, "day"],
  [0.25, "month"], [0.5, "month"], [1, "month"], [2, "month"], [3, "month"], [6, "month"],
  [1, "year"]
  ],
  monthNames: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
  };
 
  (function () {
 
  var _ = Flotr._;
 
  Flotr.DOM = {
  addClass: function(element, name){
  var classList = (element.className ? element.className : '');
  if (_.include(classList.split(/\s+/g), name)) return;
  element.className = (classList ? classList + ' ' : '') + name;
  },
  /**
  * Create an element.
  */
  create: function(tag){
  return document.createElement(tag);
  },
  node: function(html) {
  var div = Flotr.DOM.create('div'), n;
  div.innerHTML = html;
  n = div.children[0];
  div.innerHTML = '';
  return n;
  },
  /**
  * Remove all children.
  */
  empty: function(element){
  element.innerHTML = '';
  /*
  if (!element) return;
  _.each(element.childNodes, function (e) {
  Flotr.DOM.empty(e);
  element.removeChild(e);
  });
  */
  },
  hide: function(element){
  Flotr.DOM.setStyles(element, {display:'none'});
  },
  /**
  * Insert a child.
  * @param {Element} element
  * @param {Element|String} Element or string to be appended.
  */
  insert: function(element, child){
  if(_.isString(child))
  element.innerHTML += child;
  else if (_.isElement(child))
  element.appendChild(child);
  },
  // @TODO find xbrowser implementation
  opacity: function(element, opacity) {
  element.style.opacity = opacity;
  },
  position: function(element, p){
  if (!element.offsetParent)
  return {left: (element.offsetLeft || 0), top: (element.offsetTop || 0)};
 
  p = this.position(element.offsetParent);
  p.left += element.offsetLeft;
  p.top += element.offsetTop;
  return p;
  },
  removeClass: function(element, name) {
  var classList = (element.className ? element.className : '');
  element.className = _.filter(classList.split(/\s+/g), function (c) {
  if (c != name) return true; }
  ).join(' ');
  },
  setStyles: function(element, o) {
  _.each(o, function (value, key) {
  element.style[key] = value;
  });
  },
  show: function(element){
  Flotr.DOM.setStyles(element, {display:''});
  },
  /**
  * Return element size.
  */
  size: function(element){
  return {
  height : element.offsetHeight,
  width : element.offsetWidth };
  }
  };
 
  })();
 
  /**
  * Flotr Event Adapter
  */
  (function () {
  var
  F = Flotr,
  bean = F.bean;
  F.EventAdapter = {
  observe: function(object, name, callback) {
  bean.add(object, name, callback);
  return this;
  },
  fire: function(object, name, args) {
  bean.fire(object, name, args);
  if (typeof(Prototype) != 'undefined')
  Event.fire(object, name, args);
  // @TODO Someone who uses mootools, add mootools adapter for existing applciations.
  return this;
  },
  stopObserving: function(object, name, callback) {
  bean.remove(object, name, callback);
  return this;
  },
  eventPointer: function(e) {
  if (!F._.isUndefined(e.touches) && e.touches.length > 0) {
  return {
  x : e.touches[0].pageX,
  y : e.touches[0].pageY
  };
  } else if (!F._.isUndefined(e.changedTouches) && e.changedTouches.length > 0) {
  return {
  x : e.changedTouches[0].pageX,
  y : e.changedTouches[0].pageY
  };
  } else if (e.pageX || e.pageY) {
  return {
  x : e.pageX,
  y : e.pageY
  };
  } else if (e.clientX || e.clientY) {
  var
  d = document,
  b = d.body,
  de = d.documentElement;
  return {
  x: e.clientX + b.scrollLeft + de.scrollLeft,
  y: e.clientY + b.scrollTop + de.scrollTop
  };
  }
  }
  };
  })();
 
  /**
  * Text Utilities
  */
  (function () {
 
  var
  F = Flotr,
  D = F.DOM,
  _ = F._,
 
  Text = function (o) {
  this.o = o;
  };
 
  Text.prototype = {
 
  dimensions : function (text, canvasStyle, htmlStyle, className) {
 
  if (!text) return { width : 0, height : 0 };
 
  return (this.o.html) ?
  this.html(text, this.o.element, htmlStyle, className) :
  this.canvas(text, canvasStyle);
  },
 
  canvas : function (text, style) {
 
  if (!this.o.textEnabled) return;
  style = style || {};
 
  var
  metrics = this.measureText(text, style),
  width = metrics.width,
  height = style.size || F.defaultOptions.fontSize,
  angle = style.angle || 0,
  cosAngle = Math.cos(angle),
  sinAngle = Math.sin(angle),
  widthPadding = 2,
  heightPadding = 6,
  bounds;
 
  bounds = {
  width: Math.abs(cosAngle * width) + Math.abs(sinAngle * height) + widthPadding,
  height: Math.abs(sinAngle * width) + Math.abs(cosAngle * height) + heightPadding
  };
 
  return bounds;
  },
 
  html : function (text, element, style, className) {
 
  var div = D.create('div');
 
  D.setStyles(div, { 'position' : 'absolute', 'top' : '-10000px' });
  D.insert(div, '<div style="'+style+'" class="'+className+' flotr-dummy-div">' + text + '</div>');
  D.insert(this.o.element, div);
 
  return D.size(div);
  },
 
  measureText : function (text, style) {
 
  var
  context = this.o.ctx,
  metrics;
 
  if (!context.fillText || (F.isIphone && context.measure)) {
  return { width : context.measure(text, style)};
  }
 
  style = _.extend({
  size: F.defaultOptions.fontSize,
  weight: 1,
  angle: 0
  }, style);
 
  context.save();
  context.font = (style.weight > 1 ? "bold " : "") + (style.size*1.3) + "px sans-serif";
  metrics = context.measureText(text);
  context.restore();
 
  return metrics;
  }
  };
 
  Flotr.Text = Text;
 
  })();
 
  /**
  * Flotr Graph class that plots a graph on creation.
  */
  (function () {
 
  var
  D = Flotr.DOM,
  E = Flotr.EventAdapter,
  _ = Flotr._,
  flotr = Flotr;
  /**
  * Flotr Graph constructor.
  * @param {Element} el - element to insert the graph into
  * @param {Object} data - an array or object of dataseries
  * @param {Object} options - an object containing options
  */
  Graph = function(el, data, options){
  // Let's see if we can get away with out this [JS]
  // try {
  this._setEl(el);
  this._initMembers();
  this._initPlugins();
 
  E.fire(this.el, 'flotr:beforeinit', [this]);
 
  this.data = data;
  this.series = flotr.Series.getSeries(data);
  this._initOptions(options);
  this._initGraphTypes();
  this._initCanvas();
  this._text = new flotr.Text({
  element : this.el,
  ctx : this.ctx,
  html : this.options.HtmlText,
  textEnabled : this.textEnabled
  });
  E.fire(this.el, 'flotr:afterconstruct', [this]);
  this._initEvents();
 
  this.findDataRanges();
  this.calculateSpacing();
 
  this.draw(_.bind(function() {
  E.fire(this.el, 'flotr:afterinit', [this]);
  }, this));
  /*
  try {
  } catch (e) {
  try {
  console.error(e);
  } catch (e2) {}
  }*/
  };
 
  function observe (object, name, callback) {
  E.observe.apply(this, arguments);
  this._handles.push(arguments);
  return this;
  }
 
  Graph.prototype = {
 
  destroy: function () {
  E.fire(this.el, 'flotr:destroy');
  _.each(this._handles, function (handle) {
  E.stopObserving.apply(this, handle);
  });
  this._handles = [];
  this.el.graph = null;
  },
 
  observe : observe,
 
  /**
  * @deprecated
  */
  _observe : observe,
 
  processColor: function(color, options){
  var o = { x1: 0, y1: 0, x2: this.plotWidth, y2: this.plotHeight, opacity: 1, ctx: this.ctx };
  _.extend(o, options);
  return flotr.Color.processColor(color, o);
  },
  /**
  * Function determines the min and max values for the xaxis and yaxis.
  *
  * TODO logarithmic range validation (consideration of 0)
  */
  findDataRanges: function(){
  var a = this.axes,
  xaxis, yaxis, range;
 
  _.each(this.series, function (series) {
  range = series.getRange();
  if (range) {
  xaxis = series.xaxis;
  yaxis = series.yaxis;
  xaxis.datamin = Math.min(range.xmin, xaxis.datamin);
  xaxis.datamax = Math.max(range.xmax, xaxis.datamax);
  yaxis.datamin = Math.min(range.ymin, yaxis.datamin);
  yaxis.datamax = Math.max(range.ymax, yaxis.datamax);
  xaxis.used = (xaxis.used || range.xused);
  yaxis.used = (yaxis.used || range.yused);
  }
  }, this);
 
  // Check for empty data, no data case (none used)
  if (!a.x.used && !a.x2.used) a.x.used = true;
  if (!a.y.used && !a.y2.used) a.y.used = true;
 
  _.each(a, function (axis) {
  axis.calculateRange();
  });
 
  var
  types = _.keys(flotr.graphTypes),
  drawn = false;
 
  _.each(this.series, function (series) {
  if (series.hide) return;
  _.each(types, function (type) {
  if (series[type] && series[type].show) {
  this.extendRange(type, series);
  drawn = true;
  }
  }, this);
  if (!drawn) {
  this.extendRange(this.options.defaultType, series);
  }
  }, this);
  },
 
  extendRange : function (type, series) {
  if (this[type].extendRange) this[type].extendRange(series, series.data, series[type], this[type]);
  if (this[type].extendYRange) this[type].extendYRange(series.yaxis, series.data, series[type], this[type]);
  if (this[type].extendXRange) this[type].extendXRange(series.xaxis, series.data, series[type], this[type]);
  },
 
  /**
  * Calculates axis label sizes.
  */
  calculateSpacing: function(){
 
  var a = this.axes,
  options = this.options,
  series = this.series,
  margin = options.grid.labelMargin,
  T = this._text,
  x = a.x,
  x2 = a.x2,
  y = a.y,
  y2 = a.y2,
  maxOutset = options.grid.outlineWidth,
  i, j, l, dim;
 
  // TODO post refactor, fix this
  _.each(a, function (axis) {
  axis.calculateTicks();
  axis.calculateTextDimensions(T, options);
  });
 
  // Title height
  dim = T.dimensions(
  options.title,
  {size: options.fontSize*1.5},
  'font-size:1em;font-weight:bold;',
  'flotr-title'
  );
  this.titleHeight = dim.height;
 
  // Subtitle height
  dim = T.dimensions(
  options.subtitle,
  {size: options.fontSize},
  'font-size:smaller;',
  'flotr-subtitle'
  );
  this.subtitleHeight = dim.height;
 
  for(j = 0; j < options.length; ++j){
  if (series[j].points.show){
  maxOutset = Math.max(maxOutset, series[j].points.radius + series[j].points.lineWidth/2);
  }
  }
 
  var p = this.plotOffset;
  if (x.options.margin === false) {
  p.bottom = 0;
  p.top = 0;
  } else {
  p.bottom += (options.grid.circular ? 0 : (x.used && x.options.showLabels ? (x.maxLabel.height + margin) : 0)) +
  (x.used && x.options.title ? (x.titleSize.height + margin) : 0) + maxOutset;
 
  p.top += (options.grid.circular ? 0 : (x2.used && x2.options.showLabels ? (x2.maxLabel.height + margin) : 0)) +
  (x2.used && x2.options.title ? (x2.titleSize.height + margin) : 0) + this.subtitleHeight + this.titleHeight + maxOutset;
  }
  if (y.options.margin === false) {
  p.left = 0;
  p.right = 0;
  } else {
  p.left += (options.grid.circular ? 0 : (y.used && y.options.showLabels ? (y.maxLabel.width + margin) : 0)) +
  (y.used && y.options.title ? (y.titleSize.width + margin) : 0) + maxOutset;
 
  p.right += (options.grid.circular ? 0 : (y2.used && y2.options.showLabels ? (y2.maxLabel.width + margin) : 0)) +
  (y2.used && y2.options.title ? (y2.titleSize.width + margin) : 0) + maxOutset;
  }
 
  p.top = Math.floor(p.top); // In order the outline not to be blured
 
  this.plotWidth = this.canvasWidth - p.left - p.right;
  this.plotHeight = this.canvasHeight - p.bottom - p.top;
 
  // TODO post refactor, fix this
  x.length = x2.length = this.plotWidth;
  y.length = y2.length = this.plotHeight;
  y.offset = y2.offset = this.plotHeight;
  x.setScale();
  x2.setScale();
  y.setScale();
  y2.setScale();
  },
  /**
  * Draws grid, labels, series and outline.
  */
  draw: function(after) {
 
  var
  context = this.ctx,
  i;
 
  E.fire(this.el, 'flotr:beforedraw', [this.series, this]);
 
  if (this.series.length) {
 
  context.save();
  context.translate(this.plotOffset.left, this.plotOffset.top);
 
  for (i = 0; i < this.series.length; i++) {
  if (!this.series[i].hide) this.drawSeries(this.series[i]);
  }
 
  context.restore();
  this.clip();
  }
 
  E.fire(this.el, 'flotr:afterdraw', [this.series, this]);
  if (after) after();
  },
  /**
  * Actually draws the graph.
  * @param {Object} series - series to draw
  */
  drawSeries: function(series){
 
  function drawChart (series, typeKey) {
  var options = this.getOptions(series, typeKey);
  this[typeKey].draw(options);
  }
 
  var drawn = false;
  series = series || this.series;
 
  _.each(flotr.graphTypes, function (type, typeKey) {
  if (series[typeKey] && series[typeKey].show && this[typeKey]) {
  drawn = true;
  drawChart.call(this, series, typeKey);
  }
  }, this);
 
  if (!drawn) drawChart.call(this, series, this.options.defaultType);
  },
 
  getOptions : function (series, typeKey) {
  var
  type = series[typeKey],
  graphType = this[typeKey],
  xaxis = series.xaxis,
  yaxis = series.yaxis,
  options = {
  context : this.ctx,
  width : this.plotWidth,
  height : this.plotHeight,
  fontSize : this.options.fontSize,
  fontColor : this.options.fontColor,
  textEnabled : this.textEnabled,
  htmlText : this.options.HtmlText,
  text : this._text, // TODO Is this necessary?
  element : this.el,
  data : series.data,
  color : series.color,
  shadowSize : series.shadowSize,
  xScale : xaxis.d2p,
  yScale : yaxis.d2p,
  xInverse : xaxis.p2d,
  yInverse : yaxis.p2d
  };
 
  options = flotr.merge(type, options);
 
  // Fill
  options.fillStyle = this.processColor(
  type.fillColor || series.color,
  {opacity: type.fillOpacity}
  );
 
  return options;
  },
  /**
  * Calculates the coordinates from a mouse event object.
  * @param {Event} event - Mouse Event object.
  * @return {Object} Object with coordinates of the mouse.
  */
  getEventPosition: function (e){
 
  var
  d = document,
  b = d.body,
  de = d.documentElement,
  axes = this.axes,
  plotOffset = this.plotOffset,
  lastMousePos = this.lastMousePos,
  pointer = E.eventPointer(e),
  dx = pointer.x - lastMousePos.pageX,
  dy = pointer.y - lastMousePos.pageY,
  r, rx, ry;
 
  if ('ontouchstart' in this.el) {
  r = D.position(this.overlay);
  rx = pointer.x - r.left - plotOffset.left;
  ry = pointer.y - r.top - plotOffset.top;
  } else {
  r = this.overlay.getBoundingClientRect();
  rx = e.clientX - r.left - plotOffset.left - b.scrollLeft - de.scrollLeft;
  ry = e.clientY - r.top - plotOffset.top - b.scrollTop - de.scrollTop;
  }
 
  return {
  x: axes.x.p2d(rx),
  x2: axes.x2.p2d(rx),
  y: axes.y.p2d(ry),
  y2: axes.y2.p2d(ry),
  relX: rx,
  relY: ry,
  dX: dx,
  dY: dy,
  absX: pointer.x,
  absY: pointer.y,
  pageX: pointer.x,
  pageY: pointer.y
  };
  },
  /**
  * Observes the 'click' event and fires the 'flotr:click' event.
  * @param {Event} event - 'click' Event object.
  */
  clickHandler: function(event){
  if(this.ignoreClick){
  this.ignoreClick = false;
  return this.ignoreClick;
  }
  E.fire(this.el, 'flotr:click', [this.getEventPosition(event), this]);
  },
  /**
  * Observes mouse movement over the graph area. Fires the 'flotr:mousemove' event.
  * @param {Event} event - 'mousemove' Event object.
  */
  mouseMoveHandler: function(event){
  if (this.mouseDownMoveHandler) return;
  var pos = this.getEventPosition(event);
  E.fire(this.el, 'flotr:mousemove', [event, pos, this]);
  this.lastMousePos = pos;
  },
  /**
  * Observes the 'mousedown' event.
  * @param {Event} event - 'mousedown' Event object.
  */
  mouseDownHandler: function (event){
 
  /*
  // @TODO Context menu?
  if(event.isRightClick()) {
  event.stop();
 
  var overlay = this.overlay;
  overlay.hide();
 
  function cancelContextMenu () {
  overlay.show();
  E.stopObserving(document, 'mousemove', cancelContextMenu);
  }
  E.observe(document, 'mousemove', cancelContextMenu);
  return;
  }
  */
 
  if (this.mouseUpHandler) return;
  this.mouseUpHandler = _.bind(function (e) {
  E.stopObserving(document, 'mouseup', this.mouseUpHandler);
  E.stopObserving(document, 'mousemove', this.mouseDownMoveHandler);
  this.mouseDownMoveHandler = null;
  this.mouseUpHandler = null;
  // @TODO why?
  //e.stop();
  E.fire(this.el, 'flotr:mouseup', [e, this]);
  }, this);
  this.mouseDownMoveHandler = _.bind(function (e) {
  var pos = this.getEventPosition(e);
  E.fire(this.el, 'flotr:mousemove', [event, pos, this]);
  this.lastMousePos = pos;
  }, this);
  E.observe(document, 'mouseup', this.mouseUpHandler);
  E.observe(document, 'mousemove', this.mouseDownMoveHandler);
  E.fire(this.el, 'flotr:mousedown', [event, this]);
  this.ignoreClick = false;
  },
  drawTooltip: function(content, x, y, options) {
  var mt = this.getMouseTrack(),
  style = 'opacity:0.7;background-color:#000;color:#fff;display:none;position:absolute;padding:2px 8px;-moz-border-radius:4px;border-radius:4px;white-space:nowrap;',
  p = options.position,
  m = options.margin,
  plotOffset = this.plotOffset;
 
  if(x !== null && y !== null){
  if (!options.relative) { // absolute to the canvas
  if(p.charAt(0) == 'n') style += 'top:' + (m + plotOffset.top) + 'px;bottom:auto;';
  else if(p.charAt(0) == 's') style += 'bottom:' + (m + plotOffset.bottom) + 'px;top:auto;';
  if(p.charAt(1) == 'e') style += 'right:' + (m + plotOffset.right) + 'px;left:auto;';
  else if(p.charAt(1) == 'w') style += 'left:' + (m + plotOffset.left) + 'px;right:auto;';
  }
  else { // relative to the mouse
  if(p.charAt(0) == 'n') style += 'bottom:' + (m - plotOffset.top - y + this.canvasHeight) + 'px;top:auto;';
  else if(p.charAt(0) == 's') style += 'top:' + (m + plotOffset.top + y) + 'px;bottom:auto;';
  if(p.charAt(1) == 'e') style += 'left:' + (m + plotOffset.left + x) + 'px;right:auto;';
  else if(p.charAt(1) == 'w') style += 'right:' + (m - plotOffset.left - x + this.canvasWidth) + 'px;left:auto;';
  }
 
  mt.style.cssText = style;
  D.empty(mt);
  D.insert(mt, content);
  D.show(mt);
  }
  else {
  D.hide(mt);
  }
  },
 
  clip: function (ctx) {
 
  var
  o = this.plotOffset,
  w = this.canvasWidth,
  h = this.canvasHeight;
 
  ctx = ctx || this.ctx;
 
  if (flotr.isIE && flotr.isIE < 9) {
  // Clipping for excanvas :-(
  ctx.save();
  ctx.fillStyle = this.processColor(this.options.ieBackgroundColor);
  ctx.fillRect(0, 0, w, o.top);
  ctx.fillRect(0, 0, o.left, h);
  ctx.fillRect(0, h - o.bottom, w, o.bottom);
  ctx.fillRect(w - o.right, 0, o.right,h);
  ctx.restore();
  } else {
  ctx.clearRect(0, 0, w, o.top);
  ctx.clearRect(0, 0, o.left, h);
  ctx.clearRect(0, h - o.bottom, w, o.bottom);
  ctx.clearRect(w - o.right, 0, o.right,h);
  }
  },
 
  _initMembers: function() {
  this._handles = [];
  this.lastMousePos = {pageX: null, pageY: null };
  this.plotOffset = {left: 0, right: 0, top: 0, bottom: 0};
  this.ignoreClick = true;
  this.prevHit = null;
  },
 
  _initGraphTypes: function() {
  _.each(flotr.graphTypes, function(handler, graphType){
  this[graphType] = flotr.clone(handler);
  }, this);
  },
 
  _initEvents: function () {
 
  var
  el = this.el,
  touchendHandler, movement, touchend;
 
  if ('ontouchstart' in el) {
 
  touchendHandler = _.bind(function (e) {
  touchend = true;
  E.stopObserving(document, 'touchend', touchendHandler);
  E.fire(el, 'flotr:mouseup', [event, this]);
  this.multitouches = null;
 
  if (!movement) {
  this.clickHandler(e);
  }
  }, this);
 
  this.observe(this.overlay, 'touchstart', _.bind(function (e) {
  movement = false;
  touchend = false;
  this.ignoreClick = false;
 
  if (e.touches && e.touches.length > 1) {
  this.multitouches = e.touches;
  }
 
  E.fire(el, 'flotr:mousedown', [event, this]);
  this.observe(document, 'touchend', touchendHandler);
  }, this));
 
  this.observe(this.overlay, 'touchmove', _.bind(function (e) {
 
  var pos = this.getEventPosition(e);
 
  if (this.options.preventDefault) {
  e.preventDefault();
  }
 
  movement = true;
 
  if (this.multitouches || (e.touches && e.touches.length > 1)) {
  this.multitouches = e.touches;
  } else {
  if (!touchend) {
  E.fire(el, 'flotr:mousemove', [event, pos, this]);
  }
  }
  this.lastMousePos = pos;
  }, this));
 
  } else {
  this.
  observe(this.overlay, 'mousedown', _.bind(this.mouseDownHandler, this)).
  observe(el, 'mousemove', _.bind(this.mouseMoveHandler, this)).
  observe(this.overlay, 'click', _.bind(this.clickHandler, this)).
  observe(el, 'mouseout', function () {
  E.fire(el, 'flotr:mouseout');
  });
  }
  },
 
  /**
  * Initializes the canvas and it's overlay canvas element. When the browser is IE, this makes use
  * of excanvas. The overlay canvas is inserted for displaying interactions. After the canvas elements
  * are created, the elements are inserted into the container element.
  */
  _initCanvas: function(){
  var el = this.el,
  o = this.options,
  children = el.children,
  removedChildren = [],
  child, i,
  size, style;
 
  // Empty the el
  for (i = children.length; i--;) {
  child = children[i];
  if (!this.canvas && child.className === 'flotr-canvas') {
  this.canvas = child;
  } else if (!this.overlay && child.className === 'flotr-overlay') {
  this.overlay = child;
  } else {
  removedChildren.push(child);
  }
  }
  for (i = removedChildren.length; i--;) {
  el.removeChild(removedChildren[i]);
  }
 
  D.setStyles(el, {position: 'relative'}); // For positioning labels and overlay.
  size = {};
  size.width = el.clientWidth;
  size.height = el.clientHeight;
 
  if(size.width <= 0 || size.height <= 0 || o.resolution <= 0){
  throw 'Invalid dimensions for plot, width = ' + size.width + ', height = ' + size.height + ', resolution = ' + o.resolution;
  }
 
  // Main canvas for drawing graph types
  this.canvas = getCanvas(this.canvas, 'canvas');
  // Overlay canvas for interactive features
  this.overlay = getCanvas(this.overlay, 'overlay');
  this.ctx = getContext(this.canvas);
  this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height);
  this.octx = getContext(this.overlay);
  this.octx.clearRect(0, 0, this.overlay.width, this.overlay.height);
  this.canvasHeight = size.height;
  this.canvasWidth = size.width;
  this.textEnabled = !!this.ctx.drawText || !!this.ctx.fillText; // Enable text functions
 
  function getCanvas(canvas, name){
  if(!canvas){
  canvas = D.create('canvas');
  if (typeof FlashCanvas != "undefined" && typeof canvas.getContext === 'function') {
  FlashCanvas.initElement(canvas);
  }
  canvas.className = 'flotr-'+name;
  canvas.style.cssText = 'position:absolute;left:0px;top:0px;';
  D.insert(el, canvas);
  }
  _.each(size, function(size, attribute){
  D.show(canvas);
  if (name == 'canvas' && canvas.getAttribute(attribute) === size) {
  return;
  }
  canvas.setAttribute(attribute, size * o.resolution);
  canvas.style[attribute] = size + 'px';
  });
  canvas.context_ = null; // Reset the ExCanvas context
  return canvas;
  }
 
  function getContext(canvas){
  if(window.G_vmlCanvasManager) window.G_vmlCanvasManager.initElement(canvas); // For ExCanvas
  var context = canvas.getContext('2d');
  if(!window.G_vmlCanvasManager) context.scale(o.resolution, o.resolution);
  return context;
  }
  },
 
  _initPlugins: function(){
  // TODO Should be moved to flotr and mixed in.
  _.each(flotr.plugins, function(plugin, name){
  _.each(plugin.callbacks, function(fn, c){
  this.observe(this.el, c, _.bind(fn, this));
  }, this);
  this[name] = flotr.clone(plugin);
  _.each(this[name], function(fn, p){
  if (_.isFunction(fn))
  this[name][p] = _.bind(fn, this);
  }, this);
  }, this);
  },
 
  /**
  * Sets options and initializes some variables and color specific values, used by the constructor.
  * @param {Object} opts - options object
  */
  _initOptions: function(opts){
  var options = flotr.clone(flotr.defaultOptions);
  options.x2axis = _.extend(_.clone(options.xaxis), options.x2axis);
  options.y2axis = _.extend(_.clone(options.yaxis), options.y2axis);
  this.options = flotr.merge(opts || {}, options);
 
  if (this.options.grid.minorVerticalLines === null &&
  this.options.xaxis.scaling === 'logarithmic') {
  this.options.grid.minorVerticalLines = true;
  }
  if (this.options.grid.minorHorizontalLines === null &&
  this.options.yaxis.scaling === 'logarithmic') {
  this.options.grid.minorHorizontalLines = true;
  }
 
  E.fire(this.el, 'flotr:afterinitoptions', [this]);
 
  this.axes = flotr.Axis.getAxes(this.options);
 
  // Initialize some variables used throughout this function.
  var assignedColors = [],
  colors = [],
  ln = this.series.length,
  neededColors = this.series.length,
  oc = this.options.colors,
  usedColors = [],
  variation = 0,
  c, i, j, s;
 
  // Collect user-defined colors from series.
  for(i = neededColors - 1; i > -1; --i){
  c = this.series[i].color;
  if(c){
  --neededColors;
  if(_.isNumber(c)) assignedColors.push(c);
  else usedColors.push(flotr.Color.parse(c));
  }
  }
 
  // Calculate the number of colors that need to be generated.
  for(i = assignedColors.length - 1; i > -1; --i)
  neededColors = Math.max(neededColors, assignedColors[i] + 1);
 
  // Generate needed number of colors.
  for(i = 0; colors.length < neededColors;){
  c = (oc.length == i) ? new flotr.Color(100, 100, 100) : flotr.Color.parse(oc[i]);
 
  // Make sure each serie gets a different color.
  var sign = variation % 2 == 1 ? -1 : 1,
  factor = 1 + sign * Math.ceil(variation / 2) * 0.2;
  c.scale(factor, factor, factor);
 
  /**
  * @todo if we're getting too close to something else, we should probably skip this one
  */
  colors.push(c);
 
  if(++i >= oc.length){
  i = 0;
  ++variation;
  }
  }
 
  // Fill the options with the generated colors.
  for(i = 0, j = 0; i < ln; ++i){
  s = this.series[i];
 
  // Assign the color.
  if (!s.color){
  s.color = colors[j++].toString();
  }else if(_.isNumber(s.color)){
  s.color = colors[s.color].toString();
  }
 
  // Every series needs an axis
  if (!s.xaxis) s.xaxis = this.axes.x;
  if (s.xaxis == 1) s.xaxis = this.axes.x;
  else if (s.xaxis == 2) s.xaxis = this.axes.x2;
 
  if (!s.yaxis) s.yaxis = this.axes.y;
  if (s.yaxis == 1) s.yaxis = this.axes.y;
  else if (s.yaxis == 2) s.yaxis = this.axes.y2;
 
  // Apply missing options to the series.
  for (var t in flotr.graphTypes){
  s[t] = _.extend(_.clone(this.options[t]), s[t]);
  }
  s.mouse = _.extend(_.clone(this.options.mouse), s.mouse);
 
  if (_.isUndefined(s.shadowSize)) s.shadowSize = this.options.shadowSize;
  }
  },
 
  _setEl: function(el) {
  if (!el) throw 'The target container doesn\'t exist';
  else if (el.graph instanceof Graph) el.graph.destroy();
  else if (!el.clientWidth) throw 'The target container must be visible';
 
  el.graph = this;
  this.el = el;
  }
  };
 
  Flotr.Graph = Graph;
 
  })();
 
  /**
  * Flotr Axis Library
  */
 
  (function () {
 
  var
  _ = Flotr._,
  LOGARITHMIC = 'logarithmic';
 
  function Axis (o) {
 
  this.orientation = 1;
  this.offset = 0;
  this.datamin = Number.MAX_VALUE;
  this.datamax = -Number.MAX_VALUE;
 
  _.extend(this, o);
  }
 
 
  // Prototype
  Axis.prototype = {
 
  setScale : function () {
  var
  length = this.length,
  max = this.max,
  min = this.min,
  offset = this.offset,
  orientation = this.orientation,
  options = this.options,
  logarithmic = options.scaling === LOGARITHMIC,
  scale;
 
  if (logarithmic) {
  scale = length / (log(max, options.base) - log(min, options.base));
  } else {
  scale = length / (max - min);
  }
  this.scale = scale;
 
  // Logarithmic?
  if (logarithmic) {
  this.d2p = function (dataValue) {
  return offset + orientation * (log(dataValue, options.base) - log(min, options.base)) * scale;
  }
  this.p2d = function (pointValue) {
  return exp((offset + orientation * pointValue) / scale + log(min, options.base), options.base);
  }
  } else {
  this.d2p = function (dataValue) {
  return offset + orientation * (dataValue - min) * scale;
  }
  this.p2d = function (pointValue) {
  return (offset + orientation * pointValue) / scale + min;
  }
  }
  },
 
  calculateTicks : function () {
  var options = this.options;
 
  this.ticks = [];
  this.minorTicks = [];
 
  // User Ticks
  if(options.ticks){
  this._cleanUserTicks(options.ticks, this.ticks);
  this._cleanUserTicks(options.minorTicks || [], this.minorTicks);
  }
  else {
  if (options.mode == 'time') {
  this._calculateTimeTicks();
  } else if (options.scaling === 'logarithmic') {
  this._calculateLogTicks();
  } else {
  this._calculateTicks();
  }
  }
 
  // Ticks to strings
  _.each(this.ticks, function (tick) { tick.label += ''; });
  _.each(this.minorTicks, function (tick) { tick.label += ''; });
  },
 
  /**
  * Calculates the range of an axis to apply autoscaling.
  */
  calculateRange: function () {
 
  if (!this.used) return;
 
  var axis = this,
  o = axis.options,
  min = o.min !== null ? o.min : axis.datamin,
  max = o.max !== null ? o.max : axis.datamax,
  margin = o.autoscaleMargin;
 
  if (o.scaling == 'logarithmic') {
  if (min <= 0) min = axis.datamin;
 
  // Let it widen later on
  if (max <= 0) max = min;
  }
 
  if (max == min) {
  var widen = max ? 0.01 : 1.00;
  if (o.min === null) min -= widen;
  if (o.max === null) max += widen;
  }
 
  if (o.scaling === 'logarithmic') {
  if (min < 0) min = max / o.base; // Could be the result of widening
 
  var maxexp = Math.log(max);
  if (o.base != Math.E) maxexp /= Math.log(o.base);
  maxexp = Math.ceil(maxexp);
 
  var minexp = Math.log(min);
  if (o.base != Math.E) minexp /= Math.log(o.base);
  minexp = Math.ceil(minexp);
 
  axis.tickSize = Flotr.getTickSize(o.noTicks, minexp, maxexp, o.tickDecimals === null ? 0 : o.tickDecimals);
 
  // Try to determine a suitable amount of miniticks based on the length of a decade
  if (o.minorTickFreq === null) {
  if (maxexp - minexp > 10)
  o.minorTickFreq = 0;
  else if (maxexp - minexp > 5)
  o.minorTickFreq = 2;
  else
  o.minorTickFreq = 5;
  }
  } else {
  axis.tickSize = Flotr.getTickSize(o.noTicks, min, max, o.tickDecimals);
  }
 
  axis.min = min;
  axis.max = max; //extendRange may use axis.min or axis.max, so it should be set before it is caled
 
  // Autoscaling. @todo This probably fails with log scale. Find a testcase and fix it
  if(o.min === null && o.autoscale){
  axis.min -= axis.tickSize * margin;
  // Make sure we don't go below zero if all values are positive.
  if(axis.min < 0 && axis.datamin >= 0) axis.min = 0;
  axis.min = axis.tickSize * Math.floor(axis.min / axis.tickSize);
  }
 
  if(o.max === null && o.autoscale){
  axis.max += axis.tickSize * margin;
  if(axis.max > 0 && axis.datamax <= 0 && axis.datamax != axis.datamin) axis.max = 0;
  axis.max = axis.tickSize * Math.ceil(axis.max / axis.tickSize);
  }
 
  if (axis.min == axis.max) axis.max = axis.min + 1;
  },
 
  calculateTextDimensions : function (T, options) {
 
  var maxLabel = '',
  length,
  i;
 
  if (this.options.showLabels) {
  for (i = 0; i < this.ticks.length; ++i) {
  length = this.ticks[i].label.length;
  if (length > maxLabel.length){
  maxLabel = this.ticks[i].label;
  }
  }
  }
 
  this.maxLabel = T.dimensions(
  maxLabel,
  {size:options.fontSize, angle: Flotr.toRad(this.options.labelsAngle)},
  'font-size:smaller;',
  'flotr-grid-label'
  );
 
  this.titleSize = T.dimensions(
  this.options.title,
  {size:options.fontSize*1.2, angle: Flotr.toRad(this.options.titleAngle)},
  'font-weight:bold;',
  'flotr-axis-title'
  );
  },
 
  _cleanUserTicks : function (ticks, axisTicks) {
 
  var axis = this, options = this.options,
  v, i, label, tick;
 
  if(_.isFunction(ticks)) ticks = ticks({min : axis.min, max : axis.max});
 
  for(i = 0; i < ticks.length; ++i){
  tick = ticks[i];
  if(typeof(tick) === 'object'){
  v = tick[0];
  label = (tick.length > 1) ? tick[1] : options.tickFormatter(v, {min : axis.min, max : axis.max});
  } else {
  v = tick;
  label = options.tickFormatter(v, {min : this.min, max : this.max});
  }
  axisTicks[i] = { v: v, label: label };
  }
  },
 
  _calculateTimeTicks : function () {
  this.ticks = Flotr.Date.generator(this);
  },
 
  _calculateLogTicks : function () {
 
  var axis = this,
  o = axis.options,
  v,
  decadeStart;
 
  var max = Math.log(axis.max);
  if (o.base != Math.E) max /= Math.log(o.base);
  max = Math.ceil(max);
 
  var min = Math.log(axis.min);
  if (o.base != Math.E) min /= Math.log(o.base);
  min = Math.ceil(min);
 
  for (i = min; i < max; i += axis.tickSize) {
  decadeStart = (o.base == Math.E) ? Math.exp(i) : Math.pow(o.base, i);
  // Next decade begins here:
  var decadeEnd = decadeStart * ((o.base == Math.E) ? Math.exp(axis.tickSize) : Math.pow(o.base, axis.tickSize));
  var stepSize = (decadeEnd - decadeStart) / o.minorTickFreq;
 
  axis.ticks.push({v: decadeStart, label: o.tickFormatter(decadeStart, {min : axis.min, max : axis.max})});
  for (v = decadeStart + stepSize; v < decadeEnd; v += stepSize)
  axis.minorTicks.push({v: v, label: o.tickFormatter(v, {min : axis.min, max : axis.max})});
  }
 
  // Always show the value at the would-be start of next decade (end of this decade)
  decadeStart = (o.base == Math.E) ? Math.exp(i) : Math.pow(o.base, i);
  axis.ticks.push({v: decadeStart, label: o.tickFormatter(decadeStart, {min : axis.min, max : axis.max})});
  },
 
  _calculateTicks : function () {
 
  var axis = this,
  o = axis.options,
  tickSize = axis.tickSize,
  min = axis.min,
  max = axis.max,
  start = tickSize * Math.ceil(min / tickSize), // Round to nearest multiple of tick size.
  decimals,
  minorTickSize,
  v, v2,
  i, j;
 
  if (o.minorTickFreq)
  minorTickSize = tickSize / o.minorTickFreq;
 
  // Then store all possible ticks.
  for (i = 0; (v = v2 = start + i * tickSize) <= max; ++i){
 
  // Round (this is always needed to fix numerical instability).
  decimals = o.tickDecimals;
  if (decimals === null) decimals = 1 - Math.floor(Math.log(tickSize) / Math.LN10);
  if (decimals < 0) decimals = 0;
 
  v = v.toFixed(decimals);
  axis.ticks.push({ v: v, label: o.tickFormatter(v, {min : axis.min, max : axis.max}) });
 
  if (o.minorTickFreq) {
  for (j = 0; j < o.minorTickFreq && (i * tickSize + j * minorTickSize) < max; ++j) {
  v = v2 + j * minorTickSize;
  axis.minorTicks.push({ v: v, label: o.tickFormatter(v, {min : axis.min, max : axis.max}) });
  }
  }
  }
 
  }
  };
 
 
  // Static Methods
  _.extend(Axis, {
  getAxes : function (options) {
  return {
  x: new Axis({options: options.xaxis, n: 1, length: this.plotWidth}),
  x2: new Axis({options: options.x2axis, n: 2, length: this.plotWidth}),
  y: new Axis({options: options.yaxis, n: 1, length: this.plotHeight, offset: this.plotHeight, orientation: -1}),
  y2: new Axis({options: options.y2axis, n: 2, length: this.plotHeight, offset: this.plotHeight, orientation: -1})
  };
  }
  });
 
 
  // Helper Methods
 
 
  function log (value, base) {
  value = Math.log(Math.max(value, Number.MIN_VALUE));
  if (base !== Math.E)
  value /= Math.log(base);
  return value;
  }
 
  function exp (value, base) {
  return (base === Math.E) ? Math.exp(value) : Math.pow(base, value);
  }
 
  Flotr.Axis = Axis;
 
  })();
 
  /**
  * Flotr Series Library
  */
 
  (function () {
 
  var
  _ = Flotr._;
 
  function Series (o) {
  _.extend(this, o);
  }
 
  Series.prototype = {
 
  getRange: function () {
 
  var
  data = this.data,
  length = data.length,
  xmin = Number.MAX_VALUE,
  ymin = Number.MAX_VALUE,
  xmax = -Number.MAX_VALUE,
  ymax = -Number.MAX_VALUE,
  xused = false,
  yused = false,
  x, y, i;
 
  if (length < 0 || this.hide) return false;
 
  for (i = 0; i < length; i++) {
  x = data[i][0];
  y = data[i][1];
  if (x !== null) {
  if (x < xmin) { xmin = x; xused = true; }
  if (x > xmax) { xmax = x; xused = true; }
  }
  if (y !== null) {
  if (y < ymin) { ymin = y; yused = true; }
  if (y > ymax) { ymax = y; yused = true; }
  }
  }
 
  return {
  xmin : xmin,
  xmax : xmax,
  ymin : ymin,
  ymax : ymax,
  xused : xused,
  yused : yused
  };
  }
  };
 
  _.extend(Series, {
  /**
  * Collects dataseries from input and parses the series into the right format. It returns an Array
  * of Objects each having at least the 'data' key set.
  * @param {Array, Object} data - Object or array of dataseries
  * @return {Array} Array of Objects parsed into the right format ({(...,) data: [[x1,y1], [x2,y2], ...] (, ...)})
  */
  getSeries: function(data){
  return _.map(data, function(s){
  var series;
  if (s.data) {
  series = new Series();
  _.extend(series, s);
  } else {
  series = new Series({data:s});
  }
  return series;
  });
  }
  });
 
  Flotr.Series = Series;
 
  })();
 
  /** Lines **/
  Flotr.addType('lines', {
  options: {
  show: false, // => setting to true will show lines, false will hide
  lineWidth: 2, // => line width in pixels
  fill: false, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillBorder: false, // => draw a border around the fill
  fillColor: null, // => fill color
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  steps: false, // => draw steps
  stacked: false // => setting to true will show stacked lines, false will show normal lines
  },
 
  stack : {
  values : []
  },
 
  /**
  * Draws lines series in the canvas element.
  * @param {Object} options
  */
  draw : function (options) {
 
  var
  context = options.context,
  lineWidth = options.lineWidth,
  shadowSize = options.shadowSize,
  offset;
 
  context.save();
  context.lineJoin = 'round';
 
  if (shadowSize) {
 
  context.lineWidth = shadowSize / 2;
  offset = lineWidth / 2 + context.lineWidth / 2;
 
  // @TODO do this instead with a linear gradient
  context.strokeStyle = "rgba(0,0,0,0.1)";
  this.plot(options, offset + shadowSize / 2, false);
 
  context.strokeStyle = "rgba(0,0,0,0.2)";
  this.plot(options, offset, false);
  }
 
  context.lineWidth = lineWidth;
  context.strokeStyle = options.color;
 
  this.plot(options, 0, true);
 
  context.restore();
  },
 
  plot : function (options, shadowOffset, incStack) {
 
  var
  context = options.context,
  width = options.width,
  height = options.height,
  xScale = options.xScale,
  yScale = options.yScale,
  data = options.data,
  stack = options.stacked ? this.stack : false,
  length = data.length - 1,
  prevx = null,
  prevy = null,
  zero = yScale(0),
  start = null,
  x1, x2, y1, y2, stack1, stack2, i;
 
  if (length < 1) return;
 
  context.beginPath();
 
  for (i = 0; i < length; ++i) {
 
  // To allow empty values
  if (data[i][1] === null || data[i+1][1] === null) {
  if (options.fill) {
  if (i > 0 && data[i][1]) {
  context.stroke();
  fill();
  start = null;
  context.closePath();
  context.beginPath();
  }
  }
  continue;
  }
 
  // Zero is infinity for log scales
  // TODO handle zero for logarithmic
  // if (xa.options.scaling === 'logarithmic' && (data[i][0] <= 0 || data[i+1][0] <= 0)) continue;
  // if (ya.options.scaling === 'logarithmic' && (data[i][1] <= 0 || data[i+1][1] <= 0)) continue;
 
  x1 = xScale(data[i][0]);
  x2 = xScale(data[i+1][0]);
 
  if (start === null) start = data[i];
 
  if (stack) {
 
  stack1 = stack.values[data[i][0]] || 0;
  stack2 = stack.values[data[i+1][0]] || stack.values[data[i][0]] || 0;
 
  y1 = yScale(data[i][1] + stack1);
  y2 = yScale(data[i+1][1] + stack2);
 
  if(incStack){
  stack.values[data[i][0]] = data[i][1]+stack1;
 
  if(i == length-1)
  stack.values[data[i+1][0]] = data[i+1][1]+stack2;
  }
  }
  else{
  y1 = yScale(data[i][1]);
  y2 = yScale(data[i+1][1]);
  }
 
  if (
  (y1 > height && y2 > height) ||
  (y1 < 0 && y2 < 0) ||
  (x1 < 0 && x2 < 0) ||
  (x1 > width && x2 > width)
  ) continue;
 
  if((prevx != x1) || (prevy != y1 + shadowOffset))
  context.moveTo(x1, y1 + shadowOffset);
 
  prevx = x2;
  prevy = y2 + shadowOffset;
  if (options.steps) {
  context.lineTo(prevx + shadowOffset / 2, y1 + shadowOffset);
  context.lineTo(prevx + shadowOffset / 2, prevy);
  } else {
  context.lineTo(prevx, prevy);
  }
  }
 
  if (!options.fill || options.fill && !options.fillBorder) context.stroke();
 
  fill();
 
  function fill () {
  // TODO stacked lines
  if(!shadowOffset && options.fill && start){
  x1 = xScale(start[0]);
  context.fillStyle = options.fillStyle;
  context.lineTo(x2, zero);
  context.lineTo(x1, zero);
  context.lineTo(x1, yScale(start[1]));
  context.fill();
  if (options.fillBorder) {
  context.stroke();
  }
  }
  }
 
  context.closePath();
  },
 
  // Perform any pre-render precalculations (this should be run on data first)
  // - Pie chart total for calculating measures
  // - Stacks for lines and bars
  // precalculate : function () {
  // }
  //
  //
  // Get any bounds after pre calculation (axis can fetch this if does not have explicit min/max)
  // getBounds : function () {
  // }
  // getMin : function () {
  // }
  // getMax : function () {
  // }
  //
  //
  // Padding around rendered elements
  // getPadding : function () {
  // }
 
  extendYRange : function (axis, data, options, lines) {
 
  var o = axis.options;
 
  // If stacked and auto-min
  if (options.stacked && ((!o.max && o.max !== 0) || (!o.min && o.min !== 0))) {
 
  var
  newmax = axis.max,
  newmin = axis.min,
  positiveSums = lines.positiveSums || {},
  negativeSums = lines.negativeSums || {},
  x, j;
 
  for (j = 0; j < data.length; j++) {
 
  x = data[j][0] + '';
 
  // Positive
  if (data[j][1] > 0) {
  positiveSums[x] = (positiveSums[x] || 0) + data[j][1];
  newmax = Math.max(newmax, positiveSums[x]);
  }
 
  // Negative
  else {
  negativeSums[x] = (negativeSums[x] || 0) + data[j][1];
  newmin = Math.min(newmin, negativeSums[x]);
  }
  }
 
  lines.negativeSums = negativeSums;
  lines.positiveSums = positiveSums;
 
  axis.max = newmax;
  axis.min = newmin;
  }
 
  if (options.steps) {
 
  this.hit = function (options) {
  var
  data = options.data,
  args = options.args,
  yScale = options.yScale,
  mouse = args[0],
  length = data.length,
  n = args[1],
  x = options.xInverse(mouse.relX),
  relY = mouse.relY,
  i;
 
  for (i = 0; i < length - 1; i++) {
  if (x >= data[i][0] && x <= data[i+1][0]) {
  if (Math.abs(yScale(data[i][1]) - relY) < 8) {
  n.x = data[i][0];
  n.y = data[i][1];
  n.index = i;
  n.seriesIndex = options.index;
  }
  break;
  }
  }
  };
 
  this.drawHit = function (options) {
  var
  context = options.context,
  args = options.args,
  data = options.data,
  xScale = options.xScale,
  index = args.index,
  x = xScale(args.x),
  y = options.yScale(args.y),
  x2;
 
  if (data.length - 1 > index) {
  x2 = options.xScale(data[index + 1][0]);
  context.save();
  context.strokeStyle = options.color;
  context.lineWidth = options.lineWidth;
  context.beginPath();
  context.moveTo(x, y);
  context.lineTo(x2, y);
  context.stroke();
  context.closePath();
  context.restore();
  }
  };
 
  this.clearHit = function (options) {
  var
  context = options.context,
  args = options.args,
  data = options.data,
  xScale = options.xScale,
  width = options.lineWidth,
  index = args.index,
  x = xScale(args.x),
  y = options.yScale(args.y),
  x2;
 
  if (data.length - 1 > index) {
  x2 = options.xScale(data[index + 1][0]);
  context.clearRect(x - width, y - width, x2 - x + 2 * width, 2 * width);
  }
  };
  }
  }
 
  });
 
  /** Bars **/
  Flotr.addType('bars', {
 
  options: {
  show: false, // => setting to true will show bars, false will hide
  lineWidth: 2, // => in pixels
  barWidth: 1, // => in units of the x axis
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillColor: null, // => fill color
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  horizontal: false, // => horizontal bars (x and y inverted)
  stacked: false, // => stacked bar charts
  centered: true, // => center the bars to their x axis value
  topPadding: 0.1, // => top padding in percent
  grouped: false // => groups bars together which share x value, hit not supported.
  },
 
  stack : {
  positive : [],
  negative : [],
  _positive : [], // Shadow
  _negative : [] // Shadow
  },
 
  draw : function (options) {
  var
  context = options.context;
 
  this.current += 1;
 
  context.save();
  context.lineJoin = 'miter';
  // @TODO linewidth not interpreted the right way.
  context.lineWidth = options.lineWidth;
  context.strokeStyle = options.color;
  if (options.fill) context.fillStyle = options.fillStyle;
 
  this.plot(options);
 
  context.restore();
  },
 
  plot : function (options) {
 
  var
  data = options.data,
  context = options.context,
  shadowSize = options.shadowSize,
  i, geometry, left, top, width, height;
 
  if (data.length < 1) return;
 
  this.translate(context, options.horizontal);
 
  for (i = 0; i < data.length; i++) {
 
  geometry = this.getBarGeometry(data[i][0], data[i][1], options);
  if (geometry === null) continue;
 
  left = geometry.left;
  top = geometry.top;
  width = geometry.width;
  height = geometry.height;
 
  if (options.fill) context.fillRect(left, top, width, height);
  if (shadowSize) {
  context.save();
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.fillRect(left + shadowSize, top + shadowSize, width, height);
  context.restore();
  }
  if (options.lineWidth) {
  context.strokeRect(left, top, width, height);
  }
  }
  },
 
  translate : function (context, horizontal) {
  if (horizontal) {
  context.rotate(-Math.PI / 2);
  context.scale(-1, 1);
  }
  },
 
  getBarGeometry : function (x, y, options) {
 
  var
  horizontal = options.horizontal,
  barWidth = options.barWidth,
  centered = options.centered,
  stack = options.stacked ? this.stack : false,
  lineWidth = options.lineWidth,
  bisection = centered ? barWidth / 2 : 0,
  xScale = horizontal ? options.yScale : options.xScale,
  yScale = horizontal ? options.xScale : options.yScale,
  xValue = horizontal ? y : x,
  yValue = horizontal ? x : y,
  stackOffset = 0,
  stackValue, left, right, top, bottom;
 
  if (options.grouped) {
  this.current / this.groups;
  xValue = xValue - bisection;
  barWidth = barWidth / this.groups;
  bisection = barWidth / 2;
  xValue = xValue + barWidth * this.current - bisection;
  }
 
  // Stacked bars
  if (stack) {
  stackValue = yValue > 0 ? stack.positive : stack.negative;
  stackOffset = stackValue[xValue] || stackOffset;
  stackValue[xValue] = stackOffset + yValue;
  }
 
  left = xScale(xValue - bisection);
  right = xScale(xValue + barWidth - bisection);
  top = yScale(yValue + stackOffset);
  bottom = yScale(stackOffset);
 
  // TODO for test passing... probably looks better without this
  if (bottom < 0) bottom = 0;
 
  // TODO Skipping...
  // if (right < xa.min || left > xa.max || top < ya.min || bottom > ya.max) continue;
 
  return (x === null || y === null) ? null : {
  x : xValue,
  y : yValue,
  xScale : xScale,
  yScale : yScale,
  top : top,
  left : Math.min(left, right) - lineWidth / 2,
  width : Math.abs(right - left) - lineWidth,
  height : bottom - top
  };
  },
 
  hit : function (options) {
  var
  data = options.data,
  args = options.args,
  mouse = args[0],
  n = args[1],
  x = options.xInverse(mouse.relX),
  y = options.yInverse(mouse.relY),
  hitGeometry = this.getBarGeometry(x, y, options),
  width = hitGeometry.width / 2,
  left = hitGeometry.left,
  height = hitGeometry.y,
  geometry, i;
 
  for (i = data.length; i--;) {
  geometry = this.getBarGeometry(data[i][0], data[i][1], options);
  if (
  // Height:
  (
  // Positive Bars:
  (height > 0 && height < geometry.y) ||
  // Negative Bars:
  (height < 0 && height > geometry.y)
  ) &&
  // Width:
  (Math.abs(left - geometry.left) < width)
  ) {
  n.x = data[i][0];
  n.y = data[i][1];
  n.index = i;
  n.seriesIndex = options.index;
  }
  }
  },
 
  drawHit : function (options) {
  // TODO hits for stacked bars; implement using calculateStack option?
  var
  context = options.context,
  args = options.args,
  geometry = this.getBarGeometry(args.x, args.y, options),
  left = geometry.left,
  top = geometry.top,
  width = geometry.width,
  height = geometry.height;
 
  context.save();
  context.strokeStyle = options.color;
  context.lineWidth = options.lineWidth;
  this.translate(context, options.horizontal);
 
  // Draw highlight
  context.beginPath();
  context.moveTo(left, top + height);
  context.lineTo(left, top);
  context.lineTo(left + width, top);
  context.lineTo(left + width, top + height);
  if (options.fill) {
  context.fillStyle = options.fillStyle;
  context.fill();
  }
  context.stroke();
  context.closePath();
 
  context.restore();
  },
 
  clearHit: function (options) {
  var
  context = options.context,
  args = options.args,
  geometry = this.getBarGeometry(args.x, args.y, options),
  left = geometry.left,
  width = geometry.width,
  top = geometry.top,
  height = geometry.height,
  lineWidth = 2 * options.lineWidth;
 
  context.save();
  this.translate(context, options.horizontal);
  context.clearRect(
  left - lineWidth,
  Math.min(top, top + height) - lineWidth,
  width + 2 * lineWidth,
  Math.abs(height) + 2 * lineWidth
  );
  context.restore();
  },
 
  extendXRange : function (axis, data, options, bars) {
  this._extendRange(axis, data, options, bars);
  this.groups = (this.groups + 1) || 1;
  this.current = 0;
  },
 
  extendYRange : function (axis, data, options, bars) {
  this._extendRange(axis, data, options, bars);
  },
  _extendRange: function (axis, data, options, bars) {
 
  var
  max = axis.options.max;
 
  if (_.isNumber(max) || _.isString(max)) return;
 
  var
  newmin = axis.min,
  newmax = axis.max,
  horizontal = options.horizontal,
  orientation = axis.orientation,
  positiveSums = this.positiveSums || {},
  negativeSums = this.negativeSums || {},
  value, datum, index, j;
 
  // Sides of bars
  if ((orientation == 1 && !horizontal) || (orientation == -1 && horizontal)) {
  if (options.centered) {
  newmax = Math.max(axis.datamax + options.barWidth, newmax);
  newmin = Math.min(axis.datamin - options.barWidth, newmin);
  }
  }
 
  if (options.stacked &&
  ((orientation == 1 && horizontal) || (orientation == -1 && !horizontal))){
 
  for (j = data.length; j--;) {
  value = data[j][(orientation == 1 ? 1 : 0)]+'';
  datum = data[j][(orientation == 1 ? 0 : 1)];
 
  // Positive
  if (datum > 0) {
  positiveSums[value] = (positiveSums[value] || 0) + datum;
  newmax = Math.max(newmax, positiveSums[value]);
  }
 
  // Negative
  else {
  negativeSums[value] = (negativeSums[value] || 0) + datum;
  newmin = Math.min(newmin, negativeSums[value]);
  }
  }
  }
 
  // End of bars
  if ((orientation == 1 && horizontal) || (orientation == -1 && !horizontal)) {
  if (options.topPadding && (axis.max === axis.datamax || (options.stacked && this.stackMax !== newmax))) {
  newmax += options.topPadding * (newmax - newmin);
  }
  }
 
  this.stackMin = newmin;
  this.stackMax = newmax;
  this.negativeSums = negativeSums;
  this.positiveSums = positiveSums;
 
  axis.max = newmax;
  axis.min = newmin;
  }
 
  });
 
  /** Bubbles **/
  Flotr.addType('bubbles', {
  options: {
  show: false, // => setting to true will show radar chart, false will hide
  lineWidth: 2, // => line width in pixels
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  baseRadius: 2 // => ratio of the radar, against the plot size
  },
  draw : function (options) {
  var
  context = options.context,
  shadowSize = options.shadowSize;
 
  context.save();
  context.lineWidth = options.lineWidth;
 
  // Shadows
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.strokeStyle = 'rgba(0,0,0,0.05)';
  this.plot(options, shadowSize / 2);
  context.strokeStyle = 'rgba(0,0,0,0.1)';
  this.plot(options, shadowSize / 4);
 
  // Chart
  context.strokeStyle = options.color;
  context.fillStyle = options.fillStyle;
  this.plot(options);
 
  context.restore();
  },
  plot : function (options, offset) {
 
  var
  data = options.data,
  context = options.context,
  geometry,
  i, x, y, z;
 
  offset = offset || 0;
 
  for (i = 0; i < data.length; ++i){
 
  geometry = this.getGeometry(data[i], options);
 
  context.beginPath();
  context.arc(geometry.x + offset, geometry.y + offset, geometry.z, 0, 2 * Math.PI, true);
  context.stroke();
  if (options.fill) context.fill();
  context.closePath();
  }
  },
  getGeometry : function (point, options) {
  return {
  x : options.xScale(point[0]),
  y : options.yScale(point[1]),
  z : point[2] * options.baseRadius
  };
  },
  hit : function (options) {
  var
  data = options.data,
  args = options.args,
  mouse = args[0],
  n = args[1],
  relX = mouse.relX,
  relY = mouse.relY,
  distance,
  geometry,
  dx, dy;
 
  n.best = n.best || Number.MAX_VALUE;
 
  for (i = data.length; i--;) {
  geometry = this.getGeometry(data[i], options);
 
  dx = geometry.x - relX;
  dy = geometry.y - relY;
  distance = Math.sqrt(dx * dx + dy * dy);
 
  if (distance < geometry.z && geometry.z < n.best) {
  n.x = data[i][0];
  n.y = data[i][1];
  n.index = i;
  n.seriesIndex = options.index;
  n.best = geometry.z;
  }
  }
  },
  drawHit : function (options) {
 
  var
  context = options.context,
  geometry = this.getGeometry(options.data[options.args.index], options);
 
  context.save();
  context.lineWidth = options.lineWidth;
  context.fillStyle = options.fillStyle;
  context.strokeStyle = options.color;
  context.beginPath();
  context.arc(geometry.x, geometry.y, geometry.z, 0, 2 * Math.PI, true);
  context.fill();
  context.stroke();
  context.closePath();
  context.restore();
  },
  clearHit : function (options) {
 
  var
  context = options.context,
  geometry = this.getGeometry(options.data[options.args.index], options),
  offset = geometry.z + options.lineWidth;
 
  context.save();
  context.clearRect(
  geometry.x - offset,
  geometry.y - offset,
  2 * offset,
  2 * offset
  );
  context.restore();
  }
  // TODO Add a hit calculation method (like pie)
  });
 
  /** Candles **/
  Flotr.addType('candles', {
  options: {
  show: false, // => setting to true will show candle sticks, false will hide
  lineWidth: 1, // => in pixels
  wickLineWidth: 1, // => in pixels
  candleWidth: 0.6, // => in units of the x axis
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  upFillColor: '#00A8F0',// => up sticks fill color
  downFillColor: '#CB4B4B',// => down sticks fill color
  fillOpacity: 0.5, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  // TODO Test this barcharts option.
  barcharts: false // => draw as barcharts (not standard bars but financial barcharts)
  },
 
  draw : function (options) {
 
  var
  context = options.context;
 
  context.save();
  context.lineJoin = 'miter';
  context.lineCap = 'butt';
  // @TODO linewidth not interpreted the right way.
  context.lineWidth = options.wickLineWidth || options.lineWidth;
 
  this.plot(options);
 
  context.restore();
  },
 
  plot : function (options) {
 
  var
  data = options.data,
  context = options.context,
  xScale = options.xScale,
  yScale = options.yScale,
  width = options.candleWidth / 2,
  shadowSize = options.shadowSize,
  lineWidth = options.lineWidth,
  wickLineWidth = options.wickLineWidth,
  pixelOffset = (wickLineWidth % 2) / 2,
  color,
  datum, x, y,
  open, high, low, close,
  left, right, bottom, top, bottom2, top2,
  i;
 
  if (data.length < 1) return;
 
  for (i = 0; i < data.length; i++) {
  datum = data[i];
  x = datum[0];
  open = datum[1];
  high = datum[2];
  low = datum[3];
  close = datum[4];
  left = xScale(x - width);
  right = xScale(x + width);
  bottom = yScale(low);
  top = yScale(high);
  bottom2 = yScale(Math.min(open, close));
  top2 = yScale(Math.max(open, close));
 
  /*
  // TODO skipping
  if(right < xa.min || left > xa.max || top < ya.min || bottom > ya.max)
  continue;
  */
 
  color = options[open > close ? 'downFillColor' : 'upFillColor'];
 
  // Fill the candle.
  // TODO Test the barcharts option
  if (options.fill && !options.barcharts) {
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.fillRect(left + shadowSize, top2 + shadowSize, right - left, bottom2 - top2);
  context.save();
  context.globalAlpha = options.fillOpacity;
  context.fillStyle = color;
  context.fillRect(left, top2 + lineWidth, right - left, bottom2 - top2);
  context.restore();
  }
 
  // Draw candle outline/border, high, low.
  if (lineWidth || wickLineWidth) {
 
  x = Math.floor((left + right) / 2) + pixelOffset;
 
  context.strokeStyle = color;
  context.beginPath();
 
  // TODO Again with the bartcharts
  if (options.barcharts) {
 
  context.moveTo(x, Math.floor(top + width));
  context.lineTo(x, Math.floor(bottom + width));
 
  y = Math.floor(open + width) + 0.5;
  context.moveTo(Math.floor(left) + pixelOffset, y);
  context.lineTo(x, y);
 
  y = Math.floor(close + width) + 0.5;
  context.moveTo(Math.floor(right) + pixelOffset, y);
  context.lineTo(x, y);
  } else {
  context.strokeRect(left, top2 + lineWidth, right - left, bottom2 - top2);
 
  context.moveTo(x, Math.floor(top2 + lineWidth));
  context.lineTo(x, Math.floor(top + lineWidth));
  context.moveTo(x, Math.floor(bottom2 + lineWidth));
  context.lineTo(x, Math.floor(bottom + lineWidth));
  }
 
  context.closePath();
  context.stroke();
  }
  }
  },
  extendXRange: function (axis, data, options) {
  if (axis.options.max === null) {
  axis.max = Math.max(axis.datamax + 0.5, axis.max);
  axis.min = Math.min(axis.datamin - 0.5, axis.min);
  }
  }
  });
 
  /** Gantt
  * Base on data in form [s,y,d] where:
  * y - executor or simply y value
  * s - task start value
  * d - task duration
  * **/
  Flotr.addType('gantt', {
  options: {
  show: false, // => setting to true will show gantt, false will hide
  lineWidth: 2, // => in pixels
  barWidth: 1, // => in units of the x axis
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillColor: null, // => fill color
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  centered: true // => center the bars to their x axis value
  },
  /**
  * Draws gantt series in the canvas element.
  * @param {Object} series - Series with options.gantt.show = true.
  */
  draw: function(series) {
  var ctx = this.ctx,
  bw = series.gantt.barWidth,
  lw = Math.min(series.gantt.lineWidth, bw);
 
  ctx.save();
  ctx.translate(this.plotOffset.left, this.plotOffset.top);
  ctx.lineJoin = 'miter';
 
  /**
  * @todo linewidth not interpreted the right way.
  */
  ctx.lineWidth = lw;
  ctx.strokeStyle = series.color;
 
  ctx.save();
  this.gantt.plotShadows(series, bw, 0, series.gantt.fill);
  ctx.restore();
 
  if(series.gantt.fill){
  var color = series.gantt.fillColor || series.color;
  ctx.fillStyle = this.processColor(color, {opacity: series.gantt.fillOpacity});
  }
 
  this.gantt.plot(series, bw, 0, series.gantt.fill);
  ctx.restore();
  },
  plot: function(series, barWidth, offset, fill){
  var data = series.data;
  if(data.length < 1) return;
 
  var xa = series.xaxis,
  ya = series.yaxis,
  ctx = this.ctx, i;
 
  for(i = 0; i < data.length; i++){
  var y = data[i][0],
  s = data[i][1],
  d = data[i][2],
  drawLeft = true, drawTop = true, drawRight = true;
 
  if (s === null || d === null) continue;
 
  var left = s,
  right = s + d,
  bottom = y - (series.gantt.centered ? barWidth/2 : 0),
  top = y + barWidth - (series.gantt.centered ? barWidth/2 : 0);
 
  if(right < xa.min || left > xa.max || top < ya.min || bottom > ya.max)
  continue;
 
  if(left < xa.min){
  left = xa.min;
  drawLeft = false;
  }
 
  if(right > xa.max){
  right = xa.max;
  if (xa.lastSerie != series)
  drawTop = false;
  }
 
  if(bottom < ya.min)
  bottom = ya.min;
 
  if(top > ya.max){
  top = ya.max;
  if (ya.lastSerie != series)
  drawTop = false;
  }
 
  /**
  * Fill the bar.
  */
  if(fill){
  ctx.beginPath();
  ctx.moveTo(xa.d2p(left), ya.d2p(bottom) + offset);
  ctx.lineTo(xa.d2p(left), ya.d2p(top) + offset);
  ctx.lineTo(xa.d2p(right), ya.d2p(top) + offset);
  ctx.lineTo(xa.d2p(right), ya.d2p(bottom) + offset);
  ctx.fill();
  ctx.closePath();
  }
 
  /**
  * Draw bar outline/border.
  */
  if(series.gantt.lineWidth && (drawLeft || drawRight || drawTop)){
  ctx.beginPath();
  ctx.moveTo(xa.d2p(left), ya.d2p(bottom) + offset);
 
  ctx[drawLeft ?'lineTo':'moveTo'](xa.d2p(left), ya.d2p(top) + offset);
  ctx[drawTop ?'lineTo':'moveTo'](xa.d2p(right), ya.d2p(top) + offset);
  ctx[drawRight?'lineTo':'moveTo'](xa.d2p(right), ya.d2p(bottom) + offset);
 
  ctx.stroke();
  ctx.closePath();
  }
  }
  },
  plotShadows: function(series, barWidth, offset){
  var data = series.data;
  if(data.length < 1) return;
 
  var i, y, s, d,
  xa = series.xaxis,
  ya = series.yaxis,
  ctx = this.ctx,
  sw = this.options.shadowSize;
 
  for(i = 0; i < data.length; i++){
  y = data[i][0];
  s = data[i][1];
  d = data[i][2];
 
  if (s === null || d === null) continue;
 
  var left = s,
  right = s + d,
  bottom = y - (series.gantt.centered ? barWidth/2 : 0),
  top = y + barWidth - (series.gantt.centered ? barWidth/2 : 0);
 
  if(right < xa.min || left > xa.max || top < ya.min || bottom > ya.max)
  continue;
 
  if(left < xa.min) left = xa.min;
  if(right > xa.max) right = xa.max;
  if(bottom < ya.min) bottom = ya.min;
  if(top > ya.max) top = ya.max;
 
  var width = xa.d2p(right)-xa.d2p(left)-((xa.d2p(right)+sw <= this.plotWidth) ? 0 : sw);
  var height = ya.d2p(bottom)-ya.d2p(top)-((ya.d2p(bottom)+sw <= this.plotHeight) ? 0 : sw );
 
  ctx.fillStyle = 'rgba(0,0,0,0.05)';
  ctx.fillRect(Math.min(xa.d2p(left)+sw, this.plotWidth), Math.min(ya.d2p(top)+sw, this.plotHeight), width, height);
  }
  },
  extendXRange: function(axis) {
  if(axis.options.max === null){
  var newmin = axis.min,
  newmax = axis.max,
  i, j, x, s, g,
  stackedSumsPos = {},
  stackedSumsNeg = {},
  lastSerie = null;
 
  for(i = 0; i < this.series.length; ++i){
  s = this.series[i];
  g = s.gantt;
 
  if(g.show && s.xaxis == axis) {
  for (j = 0; j < s.data.length; j++) {
  if (g.show) {
  y = s.data[j][0]+'';
  stackedSumsPos[y] = Math.max((stackedSumsPos[y] || 0), s.data[j][1]+s.data[j][2]);
  lastSerie = s;
  }
  }
  for (j in stackedSumsPos) {
  newmax = Math.max(stackedSumsPos[j], newmax);
  }
  }
  }
  axis.lastSerie = lastSerie;
  axis.max = newmax;
  axis.min = newmin;
  }
  },
  extendYRange: function(axis){
  if(axis.options.max === null){
  var newmax = Number.MIN_VALUE,
  newmin = Number.MAX_VALUE,
  i, j, s, g,
  stackedSumsPos = {},
  stackedSumsNeg = {},
  lastSerie = null;
 
  for(i = 0; i < this.series.length; ++i){
  s = this.series[i];
  g = s.gantt;
 
  if (g.show && !s.hide && s.yaxis == axis) {
  var datamax = Number.MIN_VALUE, datamin = Number.MAX_VALUE;
  for(j=0; j < s.data.length; j++){
  datamax = Math.max(datamax,s.data[j][0]);
  datamin = Math.min(datamin,s.data[j][0]);
  }
 
  if (g.centered) {
  newmax = Math.max(datamax + 0.5, newmax);
  newmin = Math.min(datamin - 0.5, newmin);
  }
  else {
  newmax = Math.max(datamax + 1, newmax);
  newmin = Math.min(datamin, newmin);
  }
  // For normal horizontal bars
  if (g.barWidth + datamax > newmax){
  newmax = axis.max + g.barWidth;
  }
  }
  }
  axis.lastSerie = lastSerie;
  axis.max = newmax;
  axis.min = newmin;
  axis.tickSize = Flotr.getTickSize(axis.options.noTicks, newmin, newmax, axis.options.tickDecimals);
  }
  }
  });
 
  /** Markers **/
  /**
  * Formats the marker labels.
  * @param {Object} obj - Marker value Object {x:..,y:..}
  * @return {String} Formatted marker string
  */
  (function () {
 
  Flotr.defaultMarkerFormatter = function(obj){
  return (Math.round(obj.y*100)/100)+'';
  };
 
  Flotr.addType('markers', {
  options: {
  show: false, // => setting to true will show markers, false will hide
  lineWidth: 1, // => line width of the rectangle around the marker
  color: '#000000', // => text color
  fill: false, // => fill or not the marekers' rectangles
  fillColor: "#FFFFFF", // => fill color
  fillOpacity: 0.4, // => fill opacity
  stroke: false, // => draw the rectangle around the markers
  position: 'ct', // => the markers position (vertical align: b, m, t, horizontal align: l, c, r)
  verticalMargin: 0, // => the margin between the point and the text.
  labelFormatter: Flotr.defaultMarkerFormatter,
  fontSize: Flotr.defaultOptions.fontSize,
  stacked: false, // => true if markers should be stacked
  stackingType: 'b', // => define staching behavior, (b- bars like, a - area like) (see Issue 125 for details)
  horizontal: false // => true if markers should be horizontal (For now only in a case on horizontal stacked bars, stacks should be calculated horizontaly)
  },
 
  // TODO test stacked markers.
  stack : {
  positive : [],
  negative : [],
  values : []
  },
 
  draw : function (options) {
 
  var
  data = options.data,
  context = options.context,
  stack = options.stacked ? options.stack : false,
  stackType = options.stackingType,
  stackOffsetNeg,
  stackOffsetPos,
  stackOffset,
  i, x, y, label;
 
  context.save();
  context.lineJoin = 'round';
  context.lineWidth = options.lineWidth;
  context.strokeStyle = 'rgba(0,0,0,0.5)';
  context.fillStyle = options.fillStyle;
 
  function stackPos (a, b) {
  stackOffsetPos = stack.negative[a] || 0;
  stackOffsetNeg = stack.positive[a] || 0;
  if (b > 0) {
  stack.positive[a] = stackOffsetPos + b;
  return stackOffsetPos + b;
  } else {
  stack.negative[a] = stackOffsetNeg + b;
  return stackOffsetNeg + b;
  }
  }
 
  for (i = 0; i < data.length; ++i) {
 
  x = data[i][0];
  y = data[i][1];
 
  if (stack) {
  if (stackType == 'b') {
  if (options.horizontal) y = stackPos(y, x);
  else x = stackPos(x, y);
  } else if (stackType == 'a') {
  stackOffset = stack.values[x] || 0;
  stack.values[x] = stackOffset + y;
  y = stackOffset + y;
  }
  }
 
  label = options.labelFormatter({x: x, y: y, index: i, data : data});
  this.plot(options.xScale(x), options.yScale(y), label, options);
  }
  context.restore();
  },
  plot: function(x, y, label, options) {
  var context = options.context;
  if (isImage(label) && !label.complete) {
  throw 'Marker image not loaded.';
  } else {
  this._plot(x, y, label, options);
  }
  },
 
  _plot: function(x, y, label, options) {
  var context = options.context,
  margin = 2,
  left = x,
  top = y,
  dim;
 
  if (isImage(label))
  dim = {height : label.height, width: label.width};
  else
  dim = options.text.canvas(label);
 
  dim.width = Math.floor(dim.width+margin*2);
  dim.height = Math.floor(dim.height+margin*2);
 
  if (options.position.indexOf('c') != -1) left -= dim.width/2 + margin;
  else if (options.position.indexOf('l') != -1) left -= dim.width;
 
  if (options.position.indexOf('m') != -1) top -= dim.height/2 + margin;
  else if (options.position.indexOf('t') != -1) top -= dim.height + options.verticalMargin;
  else top += options.verticalMargin;
 
  left = Math.floor(left)+0.5;
  top = Math.floor(top)+0.5;
 
  if(options.fill)
  context.fillRect(left, top, dim.width, dim.height);
 
  if(options.stroke)
  context.strokeRect(left, top, dim.width, dim.height);
 
  if (isImage(label))
  context.drawImage(label, left+margin, top+margin);
  else
  Flotr.drawText(context, label, left+margin, top+margin, {textBaseline: 'top', textAlign: 'left', size: options.fontSize, color: options.color});
  }
  });
 
  function isImage (i) {
  return typeof i === 'object' && i.constructor && (Image ? true : i.constructor === Image);
  }
 
  })();
 
  /**
  * Pie
  *
  * Formats the pies labels.
  * @param {Object} slice - Slice object
  * @return {String} Formatted pie label string
  */
  (function () {
 
  var
  _ = Flotr._;
 
  Flotr.defaultPieLabelFormatter = function (total, value) {
  return (100 * value / total).toFixed(2)+'%';
  };
 
  Flotr.addType('pie', {
  options: {
  show: false, // => setting to true will show bars, false will hide
  lineWidth: 1, // => in pixels
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillColor: null, // => fill color
  fillOpacity: 0.6, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  explode: 6, // => the number of pixels the splices will be far from the center
  sizeRatio: 0.6, // => the size ratio of the pie relative to the plot
  startAngle: Math.PI/4, // => the first slice start angle
  labelFormatter: Flotr.defaultPieLabelFormatter,
  pie3D: false, // => whether to draw the pie in 3 dimenstions or not (ineffective)
  pie3DviewAngle: (Math.PI/2 * 0.8),
  pie3DspliceThickness: 20,
  epsilon: 0.1 // => how close do you have to get to hit empty slice
  },
 
  draw : function (options) {
 
  // TODO 3D charts what?
 
  var
  data = options.data,
  context = options.context,
  canvas = context.canvas,
  lineWidth = options.lineWidth,
  shadowSize = options.shadowSize,
  sizeRatio = options.sizeRatio,
  height = options.height,
  width = options.width,
  explode = options.explode,
  color = options.color,
  fill = options.fill,
  fillStyle = options.fillStyle,
  radius = Math.min(canvas.width, canvas.height) * sizeRatio / 2,
  value = data[0][1],
  html = [],
  vScale = 1,//Math.cos(series.pie.viewAngle);
  measure = Math.PI * 2 * value / this.total,
  startAngle = this.startAngle || (2 * Math.PI * options.startAngle), // TODO: this initial startAngle is already in radians (fixing will be test-unstable)
  endAngle = startAngle + measure,
  bisection = startAngle + measure / 2,
  label = options.labelFormatter(this.total, value),
  //plotTickness = Math.sin(series.pie.viewAngle)*series.pie.spliceThickness / vScale;
  explodeCoeff = explode + radius + 4,
  distX = Math.cos(bisection) * explodeCoeff,
  distY = Math.sin(bisection) * explodeCoeff,
  textAlign = distX < 0 ? 'right' : 'left',
  textBaseline = distY > 0 ? 'top' : 'bottom',
  style,
  x, y;
 
  context.save();
  context.translate(width / 2, height / 2);
  context.scale(1, vScale);
 
  x = Math.cos(bisection) * explode;
  y = Math.sin(bisection) * explode;
 
  // Shadows
  if (shadowSize > 0) {
  this.plotSlice(x + shadowSize, y + shadowSize, radius, startAngle, endAngle, context);
  if (fill) {
  context.fillStyle = 'rgba(0,0,0,0.1)';
  context.fill();
  }
  }
 
  this.plotSlice(x, y, radius, startAngle, endAngle, context);
  if (fill) {
  context.fillStyle = fillStyle;
  context.fill();
  }
  context.lineWidth = lineWidth;
  context.strokeStyle = color;
  context.stroke();
 
  style = {
  size : options.fontSize * 1.2,
  color : options.fontColor,
  weight : 1.5
  };
 
  if (label) {
  if (options.htmlText || !options.textEnabled) {
  divStyle = 'position:absolute;' + textBaseline + ':' + (height / 2 + (textBaseline === 'top' ? distY : -distY)) + 'px;';
  divStyle += textAlign + ':' + (width / 2 + (textAlign === 'right' ? -distX : distX)) + 'px;';
  html.push('<div style="', divStyle, '" class="flotr-grid-label">', label, '</div>');
  }
  else {
  style.textAlign = textAlign;
  style.textBaseline = textBaseline;
  Flotr.drawText(context, label, distX, distY, style);
  }
  }
 
  if (options.htmlText || !options.textEnabled) {
  var div = Flotr.DOM.node('<div style="color:' + options.fontColor + '" class="flotr-labels"></div>');
  Flotr.DOM.insert(div, html.join(''));
  Flotr.DOM.insert(options.element, div);
  }
 
  context.restore();
 
  // New start angle
  this.startAngle = endAngle;
  this.slices = this.slices || [];
  this.slices.push({
  radius : Math.min(canvas.width, canvas.height) * sizeRatio / 2,
  x : x,
  y : y,
  explode : explode,
  start : startAngle,
  end : endAngle
  });
  },
  plotSlice : function (x, y, radius, startAngle, endAngle, context) {
  context.beginPath();
  context.moveTo(x, y);
  context.arc(x, y, radius, startAngle, endAngle, false);
  context.lineTo(x, y);
  context.closePath();
  },
  hit : function (options) {
 
  var
  data = options.data[0],
  args = options.args,
  index = options.index,
  mouse = args[0],
  n = args[1],
  slice = this.slices[index],
  x = mouse.relX - options.width / 2,
  y = mouse.relY - options.height / 2,
  r = Math.sqrt(x * x + y * y),
  theta = Math.atan(y / x),
  circle = Math.PI * 2,
  explode = slice.explode || options.explode,
  start = slice.start % circle,
  end = slice.end % circle,
  epsilon = options.epsilon;
 
  if (x < 0) {
  theta += Math.PI;
  } else if (x > 0 && y < 0) {
  theta += circle;
  }
 
  if (r < slice.radius + explode && r > explode) {
  if (
  (theta > start && theta < end) || // Normal Slice
  (start > end && (theta < end || theta > start)) || // First slice
  // TODO: Document the two cases at the end:
  (start === end && ((slice.start === slice.end && Math.abs(theta - start) < epsilon) || (slice.start !== slice.end && Math.abs(theta-start) > epsilon)))
  ) {
 
  // TODO Decouple this from hit plugin (chart shouldn't know what n means)
  n.x = data[0];
  n.y = data[1];
  n.sAngle = start;
  n.eAngle = end;
  n.index = 0;
  n.seriesIndex = index;
  n.fraction = data[1] / this.total;
  }
  }
  },
  drawHit: function (options) {
  var
  context = options.context,
  slice = this.slices[options.args.seriesIndex];
 
  context.save();
  context.translate(options.width / 2, options.height / 2);
  this.plotSlice(slice.x, slice.y, slice.radius, slice.start, slice.end, context);
  context.stroke();
  context.restore();
  },
  clearHit : function (options) {
  var
  context = options.context,
  slice = this.slices[options.args.seriesIndex],
  padding = 2 * options.lineWidth,
  radius = slice.radius + padding;
 
  context.save();
  context.translate(options.width / 2, options.height / 2);
  context.clearRect(
  slice.x - radius,
  slice.y - radius,
  2 * radius + padding,
  2 * radius + padding
  );
  context.restore();
  },
  extendYRange : function (axis, data) {
  this.total = (this.total || 0) + data[0][1];
  }
  });
  })();
 
  /** Points **/
  Flotr.addType('points', {
  options: {
  show: false, // => setting to true will show points, false will hide
  radius: 3, // => point radius (pixels)
  lineWidth: 2, // => line width in pixels
  fill: true, // => true to fill the points with a color, false for (transparent) no fill
  fillColor: '#FFFFFF', // => fill color. Null to use series color.
  fillOpacity: 1, // => opacity of color inside the points
  hitRadius: null // => override for points hit radius
  },
 
  draw : function (options) {
  var
  context = options.context,
  lineWidth = options.lineWidth,
  shadowSize = options.shadowSize;
 
  context.save();
 
  if (shadowSize > 0) {
  context.lineWidth = shadowSize / 2;
 
  context.strokeStyle = 'rgba(0,0,0,0.1)';
  this.plot(options, shadowSize / 2 + context.lineWidth / 2);
 
  context.strokeStyle = 'rgba(0,0,0,0.2)';
  this.plot(options, context.lineWidth / 2);
  }
 
  context.lineWidth = options.lineWidth;
  context.strokeStyle = options.color;
  if (options.fill) context.fillStyle = options.fillStyle;
 
  this.plot(options);
  context.restore();
  },
 
  plot : function (options, offset) {
  var
  data = options.data,
  context = options.context,
  xScale = options.xScale,
  yScale = options.yScale,
  i, x, y;
 
  for (i = data.length - 1; i > -1; --i) {
  y = data[i][1];
  if (y === null) continue;
 
  x = xScale(data[i][0]);
  y = yScale(y);
 
  if (x < 0 || x > options.width || y < 0 || y > options.height) continue;
 
  context.beginPath();
  if (offset) {
  context.arc(x, y + offset, options.radius, 0, Math.PI, false);
  } else {
  context.arc(x, y, options.radius, 0, 2 * Math.PI, true);
  if (options.fill) context.fill();
  }
  context.stroke();
  context.closePath();
  }
  }
  });
 
  /** Radar **/
  Flotr.addType('radar', {
  options: {
  show: false, // => setting to true will show radar chart, false will hide
  lineWidth: 2, // => line width in pixels
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  radiusRatio: 0.90 // => ratio of the radar, against the plot size
  },
  draw : function (options) {
  var
  context = options.context,
  shadowSize = options.shadowSize;
 
  context.save();
  context.translate(options.width / 2, options.height / 2);
  context.lineWidth = options.lineWidth;
 
  // Shadow
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.strokeStyle = 'rgba(0,0,0,0.05)';
  this.plot(options, shadowSize / 2);
  context.strokeStyle = 'rgba(0,0,0,0.1)';
  this.plot(options, shadowSize / 4);
 
  // Chart
  context.strokeStyle = options.color;
  context.fillStyle = options.fillStyle;
  this.plot(options);
 
  context.restore();
  },
  plot : function (options, offset) {
  var
  data = options.data,
  context = options.context,
  radius = Math.min(options.height, options.width) * options.radiusRatio / 2,
  step = 2 * Math.PI / data.length,
  angle = -Math.PI / 2,
  i, ratio;
 
  offset = offset || 0;
 
  context.beginPath();
  for (i = 0; i < data.length; ++i) {
  ratio = data[i][1] / this.max;
 
  context[i === 0 ? 'moveTo' : 'lineTo'](
  Math.cos(i * step + angle) * radius * ratio + offset,
  Math.sin(i * step + angle) * radius * ratio + offset
  );
  }
  context.closePath();
  if (options.fill) context.fill();
  context.stroke();
  },
  extendYRange : function (axis, data) {
  this.max = Math.max(axis.max, this.max || -Number.MAX_VALUE);
  }
  });
 
  Flotr.addType('timeline', {
  options: {
  show: false,
  lineWidth: 1,
  barWidth: 0.2,
  fill: true,
  fillColor: null,
  fillOpacity: 0.4,
  centered: true
  },
 
  draw : function (options) {
 
  var
  context = options.context;
 
  context.save();
  context.lineJoin = 'miter';
  context.lineWidth = options.lineWidth;
  context.strokeStyle = options.color;
  context.fillStyle = options.fillStyle;
 
  this.plot(options);
 
  context.restore();
  },
 
  plot : function (options) {
 
  var
  data = options.data,
  context = options.context,
  xScale = options.xScale,
  yScale = options.yScale,
  barWidth = options.barWidth,
  lineWidth = options.lineWidth,
  i;
 
  Flotr._.each(data, function (timeline) {
 
  var
  x = timeline[0],
  y = timeline[1],
  w = timeline[2],
  h = barWidth,
 
  xt = Math.ceil(xScale(x)),
  wt = Math.ceil(xScale(x + w)) - xt,
  yt = Math.round(yScale(y)),
  ht = Math.round(yScale(y - h)) - yt,
 
  x0 = xt - lineWidth / 2,
  y0 = Math.round(yt - ht / 2) - lineWidth / 2;
 
  context.strokeRect(x0, y0, wt, ht);
  context.fillRect(x0, y0, wt, ht);
 
  });
  },
 
  extendRange : function (series) {
 
  var
  data = series.data,
  xa = series.xaxis,
  ya = series.yaxis,
  w = series.timeline.barWidth;
 
  if (xa.options.min === null)
  xa.min = xa.datamin - w / 2;
 
  if (xa.options.max === null) {
 
  var
  max = xa.max;
 
  Flotr._.each(data, function (timeline) {
  max = Math.max(max, timeline[0] + timeline[2]);
  }, this);
 
  xa.max = max + w / 2;
  }
 
  if (ya.options.min === null)
  ya.min = ya.datamin - w;
  if (ya.options.min === null)
  ya.max = ya.datamax + w;
  }
 
  });
 
  (function () {
 
  var D = Flotr.DOM;
 
  Flotr.addPlugin('crosshair', {
  options: {
  mode: null, // => one of null, 'x', 'y' or 'xy'
  color: '#FF0000', // => crosshair color
  hideCursor: true // => hide the cursor when the crosshair is shown
  },
  callbacks: {
  'flotr:mousemove': function(e, pos) {
  if (this.options.crosshair.mode) {
  this.crosshair.clearCrosshair();
  this.crosshair.drawCrosshair(pos);
  }
  }
  },
  /**
  * Draws the selection box.
  */
  drawCrosshair: function(pos) {
  var octx = this.octx,
  options = this.options.crosshair,
  plotOffset = this.plotOffset,
  x = plotOffset.left + Math.round(pos.relX) + 0.5,
  y = plotOffset.top + Math.round(pos.relY) + 0.5;
 
  if (pos.relX < 0 || pos.relY < 0 || pos.relX > this.plotWidth || pos.relY > this.plotHeight) {
  this.el.style.cursor = null;
  D.removeClass(this.el, 'flotr-crosshair');
  return;
  }
 
  if (options.hideCursor) {
  this.el.style.cursor = 'none';
  D.addClass(this.el, 'flotr-crosshair');
  }
 
  octx.save();
  octx.strokeStyle = options.color;
  octx.lineWidth = 1;
  octx.beginPath();
 
  if (options.mode.indexOf('x') != -1) {
  octx.moveTo(x, plotOffset.top);
  octx.lineTo(x, plotOffset.top + this.plotHeight);
  }
 
  if (options.mode.indexOf('y') != -1) {
  octx.moveTo(plotOffset.left, y);
  octx.lineTo(plotOffset.left + this.plotWidth, y);
  }
 
  octx.stroke();
  octx.restore();
  },
  /**
  * Removes the selection box from the overlay canvas.
  */
  clearCrosshair: function() {
 
  var
  plotOffset = this.plotOffset,
  position = this.lastMousePos,
  context = this.octx;
 
  if (position) {
  context.clearRect(
  Math.round(position.relX) + plotOffset.left,
  plotOffset.top,
  1,
  this.plotHeight + 1
  );
  context.clearRect(
  plotOffset.left,
  Math.round(position.relY) + plotOffset.top,
  this.plotWidth + 1,
  1
  );
  }
  }
  });
  })();
 
  (function() {
 
  var
  D = Flotr.DOM,
  _ = Flotr._;
 
  function getImage (type, canvas, width, height) {
 
  // TODO add scaling for w / h
  var
  mime = 'image/'+type,
  data = canvas.toDataURL(mime),
  image = new Image();
  image.src = data;
  return image;
  }
 
  Flotr.addPlugin('download', {
 
  saveImage: function (type, width, height, replaceCanvas) {
  var image = null;
  if (Flotr.isIE && Flotr.isIE < 9) {
  image = '<html><body>'+this.canvas.firstChild.innerHTML+'</body></html>';
  return window.open().document.write(image);
  }
 
  if (type !== 'jpeg' && type !== 'png') return;
 
  image = getImage(type, this.canvas, width, height);
 
  if (_.isElement(image) && replaceCanvas) {
  this.download.restoreCanvas();
  D.hide(this.canvas);
  D.hide(this.overlay);
  D.setStyles({position: 'absolute'});
  D.insert(this.el, image);
  this.saveImageElement = image;
  } else {
  return window.open(image.src);
  }
  },
 
  restoreCanvas: function() {
  D.show(this.canvas);
  D.show(this.overlay);
  if (this.saveImageElement) this.el.removeChild(this.saveImageElement);
  this.saveImageElement = null;
  }
  });
 
  })();
 
  (function () {
 
  var E = Flotr.EventAdapter,
  _ = Flotr._;
 
  Flotr.addPlugin('graphGrid', {
 
  callbacks: {
  'flotr:beforedraw' : function () {
  this.graphGrid.drawGrid();
  },
  'flotr:afterdraw' : function () {
  this.graphGrid.drawOutline();
  }
  },
 
  drawGrid: function(){
 
  var
  ctx = this.ctx,
  options = this.options,
  grid = options.grid,
  verticalLines = grid.verticalLines,
  horizontalLines = grid.horizontalLines,
  minorVerticalLines = grid.minorVerticalLines,
  minorHorizontalLines = grid.minorHorizontalLines,
  plotHeight = this.plotHeight,
  plotWidth = this.plotWidth,
  a, v, i, j;
 
  if(verticalLines || minorVerticalLines ||
  horizontalLines || minorHorizontalLines){
  E.fire(this.el, 'flotr:beforegrid', [this.axes.x, this.axes.y, options, this]);
  }
  ctx.save();
  ctx.lineWidth = 1;
  ctx.strokeStyle = grid.tickColor;
 
  function circularHorizontalTicks (ticks) {
  for(i = 0; i < ticks.length; ++i){
  var ratio = ticks[i].v / a.max;
  for(j = 0; j <= sides; ++j){
  ctx[j === 0 ? 'moveTo' : 'lineTo'](
  Math.cos(j*coeff+angle)*radius*ratio,
  Math.sin(j*coeff+angle)*radius*ratio
  );
  }
  }
  }
  function drawGridLines (ticks, callback) {
  _.each(_.pluck(ticks, 'v'), function(v){
  // Don't show lines on upper and lower bounds.
  if ((v <= a.min || v >= a.max) ||
  (v == a.min || v == a.max) && grid.outlineWidth)
  return;
  callback(Math.floor(a.d2p(v)) + ctx.lineWidth/2);
  });
  }
  function drawVerticalLines (x) {
  ctx.moveTo(x, 0);
  ctx.lineTo(x, plotHeight);
  }
  function drawHorizontalLines (y) {
  ctx.moveTo(0, y);
  ctx.lineTo(plotWidth, y);
  }
 
  if (grid.circular) {
  ctx.translate(this.plotOffset.left+plotWidth/2, this.plotOffset.top+plotHeight/2);
  var radius = Math.min(plotHeight, plotWidth)*options.radar.radiusRatio/2,
  sides = this.axes.x.ticks.length,
  coeff = 2*(Math.PI/sides),
  angle = -Math.PI/2;
 
  // Draw grid lines in vertical direction.
  ctx.beginPath();
 
  a = this.axes.y;
 
  if(horizontalLines){
  circularHorizontalTicks(a.ticks);
  }
  if(minorHorizontalLines){
  circularHorizontalTicks(a.minorTicks);
  }
 
  if(verticalLines){
  _.times(sides, function(i){
  ctx.moveTo(0, 0);
  ctx.lineTo(Math.cos(i*coeff+angle)*radius, Math.sin(i*coeff+angle)*radius);
  });
  }
  ctx.stroke();
  }
  else {
  ctx.translate(this.plotOffset.left, this.plotOffset.top);
 
  // Draw grid background, if present in options.
  if(grid.backgroundColor){
  ctx.fillStyle = this.processColor(grid.backgroundColor, {x1: 0, y1: 0, x2: plotWidth, y2: plotHeight});
  ctx.fillRect(0, 0, plotWidth, plotHeight);
  }
 
  ctx.beginPath();
 
  a = this.axes.x;
  if (verticalLines) drawGridLines(a.ticks, drawVerticalLines);
  if (minorVerticalLines) drawGridLines(a.minorTicks, drawVerticalLines);
 
  a = this.axes.y;
  if (horizontalLines) drawGridLines(a.ticks, drawHorizontalLines);
  if (minorHorizontalLines) drawGridLines(a.minorTicks, drawHorizontalLines);
 
  ctx.stroke();
  }
 
  ctx.restore();
  if(verticalLines || minorVerticalLines ||
  horizontalLines || minorHorizontalLines){
  E.fire(this.el, 'flotr:aftergrid', [this.axes.x, this.axes.y, options, this]);
  }
  },
 
  drawOutline: function(){
  var
  that = this,
  options = that.options,
  grid = options.grid,
  outline = grid.outline,
  ctx = that.ctx,
  backgroundImage = grid.backgroundImage,
  plotOffset = that.plotOffset,
  leftOffset = plotOffset.left,
  topOffset = plotOffset.top,
  plotWidth = that.plotWidth,
  plotHeight = that.plotHeight,
  v, img, src, left, top, globalAlpha;
 
  if (!grid.outlineWidth) return;
 
  ctx.save();
 
  if (grid.circular) {
  ctx.translate(leftOffset + plotWidth / 2, topOffset + plotHeight / 2);
  var radius = Math.min(plotHeight, plotWidth) * options.radar.radiusRatio / 2,
  sides = this.axes.x.ticks.length,
  coeff = 2*(Math.PI/sides),
  angle = -Math.PI/2;
 
  // Draw axis/grid border.
  ctx.beginPath();
  ctx.lineWidth = grid.outlineWidth;
  ctx.strokeStyle = grid.color;
  ctx.lineJoin = 'round';
 
  for(i = 0; i <= sides; ++i){
  ctx[i === 0 ? 'moveTo' : 'lineTo'](Math.cos(i*coeff+angle)*radius, Math.sin(i*coeff+angle)*radius);
  }
  //ctx.arc(0, 0, radius, 0, Math.PI*2, true);
 
  ctx.stroke();
  }
  else {
  ctx.translate(leftOffset, topOffset);
 
  // Draw axis/grid border.
  var lw = grid.outlineWidth,
  orig = 0.5-lw+((lw+1)%2/2),
  lineTo = 'lineTo',
  moveTo = 'moveTo';
  ctx.lineWidth = lw;
  ctx.strokeStyle = grid.color;
  ctx.lineJoin = 'miter';
  ctx.beginPath();
  ctx.moveTo(orig, orig);
  plotWidth = plotWidth - (lw / 2) % 1;
  plotHeight = plotHeight + lw / 2;
  ctx[outline.indexOf('n') !== -1 ? lineTo : moveTo](plotWidth, orig);
  ctx[outline.indexOf('e') !== -1 ? lineTo : moveTo](plotWidth, plotHeight);
  ctx[outline.indexOf('s') !== -1 ? lineTo : moveTo](orig, plotHeight);
  ctx[outline.indexOf('w') !== -1 ? lineTo : moveTo](orig, orig);
  ctx.stroke();
  ctx.closePath();
  }
 
  ctx.restore();
 
  if (backgroundImage) {
 
  src = backgroundImage.src || backgroundImage;
  left = (parseInt(backgroundImage.left, 10) || 0) + plotOffset.left;
  top = (parseInt(backgroundImage.top, 10) || 0) + plotOffset.top;
  img = new Image();
 
  img.onload = function() {
  ctx.save();
  if (backgroundImage.alpha) ctx.globalAlpha = backgroundImage.alpha;
  ctx.globalCompositeOperation = 'destination-over';
  ctx.drawImage(img, 0, 0, img.width, img.height, left, top, plotWidth, plotHeight);
  ctx.restore();
  };
 
  img.src = src;
  }
  }
  });
 
  })();
 
  (function () {
 
  var
  D = Flotr.DOM,
  _ = Flotr._,
  flotr = Flotr,
  S_MOUSETRACK = 'opacity:0.7;background-color:#000;color:#fff;display:none;position:absolute;padding:2px 8px;-moz-border-radius:4px;border-radius:4px;white-space:nowrap;';
 
  Flotr.addPlugin('hit', {
  callbacks: {
  'flotr:mousemove': function(e, pos) {
  this.hit.track(pos);
  },
  'flotr:click': function(pos) {
  var
  hit = this.hit.track(pos);
  _.defaults(pos, hit);
  },
  'flotr:mouseout': function() {
  this.hit.clearHit();
  },
  'flotr:destroy': function() {
  this.mouseTrack = null;
  }
  },
  track : function (pos) {
  if (this.options.mouse.track || _.any(this.series, function(s){return s.mouse && s.mouse.track;})) {
  return this.hit.hit(pos);
  }
  },
  /**
  * Try a method on a graph type. If the method exists, execute it.
  * @param {Object} series
  * @param {String} method Method name.
  * @param {Array} args Arguments applied to method.
  * @return executed successfully or failed.
  */
  executeOnType: function(s, method, args){
  var
  success = false,
  options;
 
  if (!_.isArray(s)) s = [s];
 
  function e(s, index) {
  _.each(_.keys(flotr.graphTypes), function (type) {
  if (s[type] && s[type].show && this[type][method]) {
  options = this.getOptions(s, type);
 
  options.fill = !!s.mouse.fillColor;
  options.fillStyle = this.processColor(s.mouse.fillColor || '#ffffff', {opacity: s.mouse.fillOpacity});
  options.color = s.mouse.lineColor;
  options.context = this.octx;
  options.index = index;
 
  if (args) options.args = args;
  this[type][method].call(this[type], options);
  success = true;
  }
  }, this);
  }
  _.each(s, e, this);
 
  return success;
  },
  /**
  * Updates the mouse tracking point on the overlay.
  */
  drawHit: function(n){
  var octx = this.octx,
  s = n.series;
 
  if (s.mouse.lineColor) {
  octx.save();
  octx.lineWidth = (s.points ? s.points.lineWidth : 1);
  octx.strokeStyle = s.mouse.lineColor;
  octx.fillStyle = this.processColor(s.mouse.fillColor || '#ffffff', {opacity: s.mouse.fillOpacity});
  octx.translate(this.plotOffset.left, this.plotOffset.top);
 
  if (!this.hit.executeOnType(s, 'drawHit', n)) {
  var
  xa = n.xaxis,
  ya = n.yaxis;
 
  octx.beginPath();
  // TODO fix this (points) should move to general testable graph mixin
  octx.arc(xa.d2p(n.x), ya.d2p(n.y), s.points.hitRadius || s.points.radius || s.mouse.radius, 0, 2 * Math.PI, true);
  octx.fill();
  octx.stroke();
  octx.closePath();
  }
  octx.restore();
  this.clip(octx);
  }
  this.prevHit = n;
  },
  /**
  * Removes the mouse tracking point from the overlay.
  */
  clearHit: function(){
  var prev = this.prevHit,
  octx = this.octx,
  plotOffset = this.plotOffset;
  octx.save();
  octx.translate(plotOffset.left, plotOffset.top);
  if (prev) {
  if (!this.hit.executeOnType(prev.series, 'clearHit', this.prevHit)) {
  // TODO fix this (points) should move to general testable graph mixin
  var
  s = prev.series,
  lw = (s.points ? s.points.lineWidth : 1);
  offset = (s.points.hitRadius || s.points.radius || s.mouse.radius) + lw;
  octx.clearRect(
  prev.xaxis.d2p(prev.x) - offset,
  prev.yaxis.d2p(prev.y) - offset,
  offset*2,
  offset*2
  );
  }
  D.hide(this.mouseTrack);
  this.prevHit = null;
  }
  octx.restore();
  },
  /**
  * Retrieves the nearest data point from the mouse cursor. If it's within
  * a certain range, draw a point on the overlay canvas and display the x and y
  * value of the data.
  * @param {Object} mouse - Object that holds the relative x and y coordinates of the cursor.
  */
  hit : function (mouse) {
 
  var
  options = this.options,
  prevHit = this.prevHit,
  closest, sensibility, dataIndex, seriesIndex, series, value, xaxis, yaxis, n;
 
  if (this.series.length === 0) return;
 
  // Nearest data element.
  // dist, x, y, relX, relY, absX, absY, sAngle, eAngle, fraction, mouse,
  // xaxis, yaxis, series, index, seriesIndex
  n = {
  relX : mouse.relX,
  relY : mouse.relY,
  absX : mouse.absX,
  absY : mouse.absY
  };
 
  if (options.mouse.trackY &&
  !options.mouse.trackAll &&
  this.hit.executeOnType(this.series, 'hit', [mouse, n]) &&
  !_.isUndefined(n.seriesIndex))
  {
  series = this.series[n.seriesIndex];
  n.series = series;
  n.mouse = series.mouse;
  n.xaxis = series.xaxis;
  n.yaxis = series.yaxis;
  } else {
 
  closest = this.hit.closest(mouse);
 
  if (closest) {
 
  closest = options.mouse.trackY ? closest.point : closest.x;
  seriesIndex = closest.seriesIndex;
  series = this.series[seriesIndex];
  xaxis = series.xaxis;
  yaxis = series.yaxis;
  sensibility = 2 * series.mouse.sensibility;
 
  if
  (options.mouse.trackAll ||
  (closest.distanceX < sensibility / xaxis.scale &&
  (!options.mouse.trackY || closest.distanceY < sensibility / yaxis.scale)))
  {
  n.series = series;
  n.xaxis = series.xaxis;
  n.yaxis = series.yaxis;
  n.mouse = series.mouse;
  n.x = closest.x;
  n.y = closest.y;
  n.dist = closest.distance;
  n.index = closest.dataIndex;
  n.seriesIndex = seriesIndex;
  }
  }
  }
 
  if (!prevHit || (prevHit.index !== n.index || prevHit.seriesIndex !== n.seriesIndex)) {
  this.hit.clearHit();
  if (n.series && n.mouse && n.mouse.track) {
  this.hit.drawMouseTrack(n);
  this.hit.drawHit(n);
  Flotr.EventAdapter.fire(this.el, 'flotr:hit', [n, this]);
  }
  }
 
  return n;
  },
 
  closest : function (mouse) {
 
  var
  series = this.series,
  options = this.options,
  relX = mouse.relX,
  relY = mouse.relY,
  compare = Number.MAX_VALUE,
  compareX = Number.MAX_VALUE,
  closest = {},
  closestX = {},
  check = false,
  serie, data,
  distance, distanceX, distanceY,
  mouseX, mouseY,
  x, y, i, j;
 
  function setClosest (o) {
  o.distance = distance;
  o.distanceX = distanceX;
  o.distanceY = distanceY;
  o.seriesIndex = i;
  o.dataIndex = j;
  o.x = x;
  o.y = y;
  check = true;
  }
 
  for (i = 0; i < series.length; i++) {
 
  serie = series[i];
  data = serie.data;
  mouseX = serie.xaxis.p2d(relX);
  mouseY = serie.yaxis.p2d(relY);
 
  for (j = data.length; j--;) {
 
  x = data[j][0];
  y = data[j][1];
 
  if (x === null || y === null) continue;
 
  // don't check if the point isn't visible in the current range
  if (x < serie.xaxis.min || x > serie.xaxis.max) continue;
 
  distanceX = Math.abs(x - mouseX);
  distanceY = Math.abs(y - mouseY);
 
  // Skip square root for speed
  distance = distanceX * distanceX + distanceY * distanceY;
 
  if (distance < compare) {
  compare = distance;
  setClosest(closest);
  }
 
  if (distanceX < compareX) {
  compareX = distanceX;
  setClosest(closestX);
  }
  }
  }
 
  return check ? {
  point : closest,
  x : closestX
  } : false;
  },
 
  drawMouseTrack : function (n) {
 
  var
  pos = '',
  s = n.series,
  p = n.mouse.position,
  m = n.mouse.margin,
  x = n.x,
  y = n.y,
  elStyle = S_MOUSETRACK,
  mouseTrack = this.mouseTrack,
  plotOffset = this.plotOffset,
  left = plotOffset.left,
  right = plotOffset.right,
  bottom = plotOffset.bottom,
  top = plotOffset.top,
  decimals = n.mouse.trackDecimals,
  options = this.options;
 
  // Create
  if (!mouseTrack) {
  mouseTrack = D.node('<div class="flotr-mouse-value"></div>');
  this.mouseTrack = mouseTrack;
  D.insert(this.el, mouseTrack);
  }
 
  if (!n.mouse.relative) { // absolute to the canvas
 
  if (p.charAt(0) == 'n') pos += 'top:' + (m + top) + 'px;bottom:auto;';
  else if (p.charAt(0) == 's') pos += 'bottom:' + (m + bottom) + 'px;top:auto;';
  if (p.charAt(1) == 'e') pos += 'right:' + (m + right) + 'px;left:auto;';
  else if (p.charAt(1) == 'w') pos += 'left:' + (m + left) + 'px;right:auto;';
 
  // Pie
  } else if (s.pie && s.pie.show) {
  var center = {
  x: (this.plotWidth)/2,
  y: (this.plotHeight)/2
  },
  radius = (Math.min(this.canvasWidth, this.canvasHeight) * s.pie.sizeRatio) / 2,
  bisection = n.sAngle<n.eAngle ? (n.sAngle + n.eAngle) / 2: (n.sAngle + n.eAngle + 2* Math.PI) / 2;
 
  pos += 'bottom:' + (m - top - center.y - Math.sin(bisection) * radius/2 + this.canvasHeight) + 'px;top:auto;';
  pos += 'left:' + (m + left + center.x + Math.cos(bisection) * radius/2) + 'px;right:auto;';
 
  // Default
  } else {
  if (/n/.test(p)) pos += 'bottom:' + (m - top - n.yaxis.d2p(n.y) + this.canvasHeight) + 'px;top:auto;';
  else pos += 'top:' + (m + top + n.yaxis.d2p(n.y)) + 'px;bottom:auto;';
  if (/w/.test(p)) pos += 'right:' + (m - left - n.xaxis.d2p(n.x) + this.canvasWidth) + 'px;left:auto;';
  else pos += 'left:' + (m + left + n.xaxis.d2p(n.x)) + 'px;right:auto;';
  }
 
  elStyle += pos;
  mouseTrack.style.cssText = elStyle;
  if (!decimals || decimals < 0) decimals = 0;
 
  if (x && x.toFixed) x = x.toFixed(decimals);
 
  if (y && y.toFixed) y = y.toFixed(decimals);
 
  mouseTrack.innerHTML = n.mouse.trackFormatter({
  x: x ,
  y: y,
  series: n.series,
  index: n.index,
  nearest: n,
  fraction: n.fraction
  });
 
  D.show(mouseTrack);
 
  if (n.mouse.relative) {
  if (!/[ew]/.test(p)) {
  // Center Horizontally
  mouseTrack.style.left =
  (left + n.xaxis.d2p(n.x) - D.size(mouseTrack).width / 2) + 'px';
  } else
  if (!/[ns]/.test(p)) {
  // Center Vertically
  mouseTrack.style.top =
  (top + n.yaxis.d2p(n.y) - D.size(mouseTrack).height / 2) + 'px';
  }
  }
  }
 
  });
  })();
 
  /**
  * Selection Handles Plugin
  *
  *
  * Options
  * show - True enables the handles plugin.
  * drag - Left and Right drag handles
  * scroll - Scrolling handle
  */
  (function () {
 
  function isLeftClick (e, type) {
  return (e.which ? (e.which === 1) : (e.button === 0 || e.button === 1));
  }
 
  function boundX(x, graph) {
  return Math.min(Math.max(0, x), graph.plotWidth - 1);
  }
 
  function boundY(y, graph) {
  return Math.min(Math.max(0, y), graph.plotHeight);
  }
 
  var
  D = Flotr.DOM,
  E = Flotr.EventAdapter,
  _ = Flotr._;
 
 
  Flotr.addPlugin('selection', {
 
  options: {
  pinchOnly: null, // Only select on pinch
  mode: null, // => one of null, 'x', 'y' or 'xy'
  color: '#B6D9FF', // => selection box color
  fps: 20 // => frames-per-second
  },
 
  callbacks: {
  'flotr:mouseup' : function (event) {
 
  var
  options = this.options.selection,
  selection = this.selection,
  pointer = this.getEventPosition(event);
 
  if (!options || !options.mode) return;
  if (selection.interval) clearInterval(selection.interval);
 
  if (this.multitouches) {
  selection.updateSelection();
  } else
  if (!options.pinchOnly) {
  selection.setSelectionPos(selection.selection.second, pointer);
  }
  selection.clearSelection();
 
  if(selection.selecting && selection.selectionIsSane()){
  selection.drawSelection();
  selection.fireSelectEvent();
  this.ignoreClick = true;
  }
  },
  'flotr:mousedown' : function (event) {
 
  var
  options = this.options.selection,
  selection = this.selection,
  pointer = this.getEventPosition(event);
 
  if (!options || !options.mode) return;
  if (!options.mode || (!isLeftClick(event) && _.isUndefined(event.touches))) return;
  if (!options.pinchOnly) selection.setSelectionPos(selection.selection.first, pointer);
  if (selection.interval) clearInterval(selection.interval);
 
  this.lastMousePos.pageX = null;
  selection.selecting = false;
  selection.interval = setInterval(
  _.bind(selection.updateSelection, this),
  1000 / options.fps
  );
  },
  'flotr:destroy' : function (event) {
  clearInterval(this.selection.interval);
  }
  },
 
  // TODO This isn't used. Maybe it belongs in the draw area and fire select event methods?
  getArea: function() {
 
  var
  s = this.selection.selection,
  a = this.axes,
  first = s.first,
  second = s.second,
  x1, x2, y1, y2;
 
  x1 = a.x.p2d(s.first.x);
  x2 = a.x.p2d(s.second.x);
  y1 = a.y.p2d(s.first.y);
  y2 = a.y.p2d(s.second.y);
 
  return {
  x1 : Math.min(x1, x2),
  y1 : Math.min(y1, y2),
  x2 : Math.max(x1, x2),
  y2 : Math.max(y1, y2),
  xfirst : x1,
  xsecond : x2,
  yfirst : y1,
  ysecond : y2
  };
  },
 
  selection: {first: {x: -1, y: -1}, second: {x: -1, y: -1}},
  prevSelection: null,
  interval: null,
 
  /**
  * Fires the 'flotr:select' event when the user made a selection.
  */
  fireSelectEvent: function(name){
  var
  area = this.selection.getArea();
  name = name || 'select';
  area.selection = this.selection.selection;
  E.fire(this.el, 'flotr:'+name, [area, this]);
  },
 
  /**
  * Allows the user the manually select an area.
  * @param {Object} area - Object with coordinates to select.
  */
  setSelection: function(area, preventEvent){
  var options = this.options,
  xa = this.axes.x,
  ya = this.axes.y,
  vertScale = ya.scale,
  hozScale = xa.scale,
  selX = options.selection.mode.indexOf('x') != -1,
  selY = options.selection.mode.indexOf('y') != -1,
  s = this.selection.selection;
 
  this.selection.clearSelection();
 
  s.first.y = boundY((selX && !selY) ? 0 : (ya.max - area.y1) * vertScale, this);
  s.second.y = boundY((selX && !selY) ? this.plotHeight - 1: (ya.max - area.y2) * vertScale, this);
  s.first.x = boundX((selY && !selX) ? 0 : (area.x1 - xa.min) * hozScale, this);
  s.second.x = boundX((selY && !selX) ? this.plotWidth : (area.x2 - xa.min) * hozScale, this);
 
  this.selection.drawSelection();
  if (!preventEvent)
  this.selection.fireSelectEvent();
  },
 
  /**
  * Calculates the position of the selection.
  * @param {Object} pos - Position object.
  * @param {Event} event - Event object.
  */
  setSelectionPos: function(pos, pointer) {
  var mode = this.options.selection.mode,
  selection = this.selection.selection;
 
  if(mode.indexOf('x') == -1) {
  pos.x = (pos == selection.first) ? 0 : this.plotWidth;
  }else{
  pos.x = boundX(pointer.relX, this);
  }
 
  if (mode.indexOf('y') == -1) {
  pos.y = (pos == selection.first) ? 0 : this.plotHeight - 1;
  }else{
  pos.y = boundY(pointer.relY, this);
  }
  },
  /**
  * Draws the selection box.
  */
  drawSelection: function() {
 
  this.selection.fireSelectEvent('selecting');
 
  var s = this.selection.selection,
  octx = this.octx,
  options = this.options,
  plotOffset = this.plotOffset,
  prevSelection = this.selection.prevSelection;
 
  if (prevSelection &&
  s.first.x == prevSelection.first.x &&
  s.first.y == prevSelection.first.y &&
  s.second.x == prevSelection.second.x &&
  s.second.y == prevSelection.second.y) {
  return;
  }
 
  octx.save();
  octx.strokeStyle = this.processColor(options.selection.color, {opacity: 0.8});
  octx.lineWidth = 1;
  octx.lineJoin = 'miter';
  octx.fillStyle = this.processColor(options.selection.color, {opacity: 0.4});
 
  this.selection.prevSelection = {
  first: { x: s.first.x, y: s.first.y },
  second: { x: s.second.x, y: s.second.y }
  };
 
  var x = Math.min(s.first.x, s.second.x),
  y = Math.min(s.first.y, s.second.y),
  w = Math.abs(s.second.x - s.first.x),
  h = Math.abs(s.second.y - s.first.y);
 
  octx.fillRect(x + plotOffset.left+0.5, y + plotOffset.top+0.5, w, h);
  octx.strokeRect(x + plotOffset.left+0.5, y + plotOffset.top+0.5, w, h);
  octx.restore();
  },
 
  /**
  * Updates (draws) the selection box.
  */
  updateSelection: function(){
  if (!this.lastMousePos.pageX) return;
 
  this.selection.selecting = true;
 
  if (this.multitouches) {
  this.selection.setSelectionPos(this.selection.selection.first, this.getEventPosition(this.multitouches[0]));
  this.selection.setSelectionPos(this.selection.selection.second, this.getEventPosition(this.multitouches[1]));
  } else
  if (this.options.selection.pinchOnly) {
  return;
  } else {
  this.selection.setSelectionPos(this.selection.selection.second, this.lastMousePos);
  }
 
  this.selection.clearSelection();
 
  if(this.selection.selectionIsSane()) {
  this.selection.drawSelection();
  }
  },
 
  /**
  * Removes the selection box from the overlay canvas.
  */
  clearSelection: function() {
  if (!this.selection.prevSelection) return;
 
  var prevSelection = this.selection.prevSelection,
  lw = 1,
  plotOffset = this.plotOffset,
  x = Math.min(prevSelection.first.x, prevSelection.second.x),
  y = Math.min(prevSelection.first.y, prevSelection.second.y),
  w = Math.abs(prevSelection.second.x - prevSelection.first.x),
  h = Math.abs(prevSelection.second.y - prevSelection.first.y);
 
  this.octx.clearRect(x + plotOffset.left - lw + 0.5,
  y + plotOffset.top - lw,
  w + 2 * lw + 0.5,
  h + 2 * lw + 0.5);
 
  this.selection.prevSelection = null;
  },
  /**
  * Determines whether or not the selection is sane and should be drawn.
  * @return {Boolean} - True when sane, false otherwise.
  */
  selectionIsSane: function(){
  var s = this.selection.selection;
  return Math.abs(s.second.x - s.first.x) >= 5 ||
  Math.abs(s.second.y - s.first.y) >= 5;
  }
 
  });
 
  })();
 
  (function () {
 
  var D = Flotr.DOM;
 
  Flotr.addPlugin('labels', {
 
  callbacks : {
  'flotr:afterdraw' : function () {
  this.labels.draw();
  }
  },
 
  draw: function(){
  // Construct fixed width label boxes, which can be styled easily.
  var
  axis, tick, left, top, xBoxWidth,
  radius, sides, coeff, angle,
  div, i, html = '',
  noLabels = 0,
  options = this.options,
  ctx = this.ctx,
  a = this.axes,
  style = { size: options.fontSize };
 
  for (i = 0; i < a.x.ticks.length; ++i){
  if (a.x.ticks[i].label) { ++noLabels; }
  }
  xBoxWidth = this.plotWidth / noLabels;
 
  if (options.grid.circular) {
  ctx.save();
  ctx.translate(this.plotOffset.left + this.plotWidth / 2,
  this.plotOffset.top + this.plotHeight / 2);
 
  radius = this.plotHeight * options.radar.radiusRatio / 2 + options.fontSize;
  sides = this.axes.x.ticks.length;
  coeff = 2 * (Math.PI / sides);
  angle = -Math.PI / 2;
 
  drawLabelCircular(this, a.x, false);
  drawLabelCircular(this, a.x, true);
  drawLabelCircular(this, a.y, false);
  drawLabelCircular(this, a.y, true);
  ctx.restore();
  }
 
  if (!options.HtmlText && this.textEnabled) {
  drawLabelNoHtmlText(this, a.x, 'center', 'top');
  drawLabelNoHtmlText(this, a.x2, 'center', 'bottom');
  drawLabelNoHtmlText(this, a.y, 'right', 'middle');
  drawLabelNoHtmlText(this, a.y2, 'left', 'middle');
 
  } else if ((
  a.x.options.showLabels ||
  a.x2.options.showLabels ||
  a.y.options.showLabels ||
  a.y2.options.showLabels) &&
  !options.grid.circular
  ) {
 
  html = '';
 
  drawLabelHtml(this, a.x);
  drawLabelHtml(this, a.x2);
  drawLabelHtml(this, a.y);
  drawLabelHtml(this, a.y2);
 
  ctx.stroke();
  ctx.restore();
  div = D.create('div');
  D.setStyles(div, {
  fontSize: 'smaller',
  color: options.grid.color
  });
  div.className = 'flotr-labels';
  D.insert(this.el, div);
  D.insert(div, html);
  }
 
  function drawLabelCircular (graph, axis, minorTicks) {
  var
  ticks = minorTicks ? axis.minorTicks : axis.ticks,
  isX = axis.orientation === 1,
  isFirst = axis.n === 1,
  style, offset;
 
  style = {
  color : axis.options.color || options.grid.color,
  angle : Flotr.toRad(axis.options.labelsAngle),
  textBaseline : 'middle'
  };
 
  for (i = 0; i < ticks.length &&
  (minorTicks ? axis.options.showMinorLabels : axis.options.showLabels); ++i){
  tick = ticks[i];
  tick.label += '';
  if (!tick.label || !tick.label.length) { continue; }
 
  x = Math.cos(i * coeff + angle) * radius;
  y = Math.sin(i * coeff + angle) * radius;
 
  style.textAlign = isX ? (Math.abs(x) < 0.1 ? 'center' : (x < 0 ? 'right' : 'left')) : 'left';
 
  Flotr.drawText(
  ctx, tick.label,
  isX ? x : 3,
  isX ? y : -(axis.ticks[i].v / axis.max) * (radius - options.fontSize),
  style
  );
  }
  }
 
  function drawLabelNoHtmlText (graph, axis, textAlign, textBaseline) {
  var
  isX = axis.orientation === 1,
  isFirst = axis.n === 1,
  style, offset;
 
  style = {
  color : axis.options.color || options.grid.color,
  textAlign : textAlign,
  textBaseline : textBaseline,
  angle : Flotr.toRad(axis.options.labelsAngle)
  };
  style = Flotr.getBestTextAlign(style.angle, style);
 
  for (i = 0; i < axis.ticks.length && continueShowingLabels(axis); ++i) {
 
  tick = axis.ticks[i];
  if (!tick.label || !tick.label.length) { continue; }
 
  offset = axis.d2p(tick.v);
  if (offset < 0 ||
  offset > (isX ? graph.plotWidth : graph.plotHeight)) { continue; }
 
  Flotr.drawText(
  ctx, tick.label,
  leftOffset(graph, isX, isFirst, offset),
  topOffset(graph, isX, isFirst, offset),
  style
  );
 
  // Only draw on axis y2
  if (!isX && !isFirst) {
  ctx.save();
  ctx.strokeStyle = style.color;
  ctx.beginPath();
  ctx.moveTo(graph.plotOffset.left + graph.plotWidth - 8, graph.plotOffset.top + axis.d2p(tick.v));
  ctx.lineTo(graph.plotOffset.left + graph.plotWidth, graph.plotOffset.top + axis.d2p(tick.v));
  ctx.stroke();
  ctx.restore();
  }
  }
 
  function continueShowingLabels (axis) {
  return axis.options.showLabels && axis.used;
  }
  function leftOffset (graph, isX, isFirst, offset) {
  return graph.plotOffset.left +
  (isX ? offset :
  (isFirst ?
  -options.grid.labelMargin :
  options.grid.labelMargin + graph.plotWidth));
  }
  function topOffset (graph, isX, isFirst, offset) {
  return graph.plotOffset.top +
  (isX ? options.grid.labelMargin : offset) +
  ((isX && isFirst) ? graph.plotHeight : 0);
  }
  }
 
  function drawLabelHtml (graph, axis) {
  var
  isX = axis.orientation === 1,
  isFirst = axis.n === 1,
  name = '',
  left, style, top,
  offset = graph.plotOffset;
 
  if (!isX && !isFirst) {
  ctx.save();
  ctx.strokeStyle = axis.options.color || options.grid.color;
  ctx.beginPath();
  }
 
  if (axis.options.showLabels && (isFirst ? true : axis.used)) {
  for (i = 0; i < axis.ticks.length; ++i) {
  tick = axis.ticks[i];
  if (!tick.label || !tick.label.length ||
  ((isX ? offset.left : offset.top) + axis.d2p(tick.v) < 0) ||
  ((isX ? offset.left : offset.top) + axis.d2p(tick.v) > (isX ? graph.canvasWidth : graph.canvasHeight))) {
  continue;
  }
  top = offset.top +
  (isX ?
  ((isFirst ? 1 : -1 ) * (graph.plotHeight + options.grid.labelMargin)) :
  axis.d2p(tick.v) - axis.maxLabel.height / 2);
  left = isX ? (offset.left + axis.d2p(tick.v) - xBoxWidth / 2) : 0;
 
  name = '';
  if (i === 0) {
  name = ' first';
  } else if (i === axis.ticks.length - 1) {
  name = ' last';
  }
  name += isX ? ' flotr-grid-label-x' : ' flotr-grid-label-y';
 
  html += [
  '<div style="position:absolute; text-align:' + (isX ? 'center' : 'right') + '; ',
  'top:' + top + 'px; ',
  ((!isX && !isFirst) ? 'right:' : 'left:') + left + 'px; ',
  'width:' + (isX ? xBoxWidth : ((isFirst ? offset.left : offset.right) - options.grid.labelMargin)) + 'px; ',
  axis.options.color ? ('color:' + axis.options.color + '; ') : ' ',
  '" class="flotr-grid-label' + name + '">' + tick.label + '</div>'
  ].join(' ');
 
  if (!isX && !isFirst) {
  ctx.moveTo(offset.left + graph.plotWidth - 8, offset.top + axis.d2p(tick.v));
  ctx.lineTo(offset.left + graph.plotWidth, offset.top + axis.d2p(tick.v));
  }
  }
  }
  }
  }
 
  });
  })();
 
  (function () {
 
  var
  D = Flotr.DOM,
  _ = Flotr._;
 
  Flotr.addPlugin('legend', {
  options: {
  show: true, // => setting to true will show the legend, hide otherwise
  noColumns: 1, // => number of colums in legend table // @todo: doesn't work for HtmlText = false
  labelFormatter: function(v){return v;}, // => fn: string -> string
  labelBoxBorderColor: '#CCCCCC', // => border color for the little label boxes
  labelBoxWidth: 14,
  labelBoxHeight: 10,
  labelBoxMargin: 5,
  container: null, // => container (as jQuery object) to put legend in, null means default on top of graph
  position: 'nw', // => position of default legend container within plot
  margin: 5, // => distance from grid edge to default legend container within plot
  backgroundColor: '#F0F0F0', // => Legend background color.
  backgroundOpacity: 0.85// => set to 0 to avoid background, set to 1 for a solid background
  },
  callbacks: {
  'flotr:afterinit': function() {
  this.legend.insertLegend();
  }
  },
  /**
  * Adds a legend div to the canvas container or draws it on the canvas.
  */
  insertLegend: function(){
 
  if(!this.options.legend.show)
  return;
 
  var series = this.series,
  plotOffset = this.plotOffset,
  options = this.options,
  legend = options.legend,
  fragments = [],
  rowStarted = false,
  ctx = this.ctx,
  itemCount = _.filter(series, function(s) {return (s.label && !s.hide);}).length,
  p = legend.position,
  m = legend.margin,
  opacity = legend.backgroundOpacity,
  i, label, color;
 
  if (itemCount) {
 
  var lbw = legend.labelBoxWidth,
  lbh = legend.labelBoxHeight,
  lbm = legend.labelBoxMargin,
  offsetX = plotOffset.left + m,
  offsetY = plotOffset.top + m,
  labelMaxWidth = 0,
  style = {
  size: options.fontSize*1.1,
  color: options.grid.color
  };
 
  // We calculate the labels' max width
  for(i = series.length - 1; i > -1; --i){
  if(!series[i].label || series[i].hide) continue;
  label = legend.labelFormatter(series[i].label);
  labelMaxWidth = Math.max(labelMaxWidth, this._text.measureText(label, style).width);
  }
 
  var legendWidth = Math.round(lbw + lbm*3 + labelMaxWidth),
  legendHeight = Math.round(itemCount*(lbm+lbh) + lbm);
 
  // Default Opacity
  if (!opacity && opacity !== 0) {
  opacity = 0.1;
  }
 
  if (!options.HtmlText && this.textEnabled && !legend.container) {
 
  if(p.charAt(0) == 's') offsetY = plotOffset.top + this.plotHeight - (m + legendHeight);
  if(p.charAt(0) == 'c') offsetY = plotOffset.top + (this.plotHeight/2) - (m + (legendHeight/2));
  if(p.charAt(1) == 'e') offsetX = plotOffset.left + this.plotWidth - (m + legendWidth);
 
  // Legend box
  color = this.processColor(legend.backgroundColor, { opacity : opacity });
 
  ctx.fillStyle = color;
  ctx.fillRect(offsetX, offsetY, legendWidth, legendHeight);
  ctx.strokeStyle = legend.labelBoxBorderColor;
  ctx.strokeRect(Flotr.toPixel(offsetX), Flotr.toPixel(offsetY), legendWidth, legendHeight);
 
  // Legend labels
  var x = offsetX + lbm;
  var y = offsetY + lbm;
  for(i = 0; i < series.length; i++){
  if(!series[i].label || series[i].hide) continue;
  label = legend.labelFormatter(series[i].label);
 
  ctx.fillStyle = series[i].color;
  ctx.fillRect(x, y, lbw-1, lbh-1);
 
  ctx.strokeStyle = legend.labelBoxBorderColor;
  ctx.lineWidth = 1;
  ctx.strokeRect(Math.ceil(x)-1.5, Math.ceil(y)-1.5, lbw+2, lbh+2);
 
  // Legend text
  Flotr.drawText(ctx, label, x + lbw + lbm, y + lbh, style);
 
  y += lbh + lbm;
  }
  }
  else {
  for(i = 0; i < series.length; ++i){
  if(!series[i].label || series[i].hide) continue;
 
  if(i % legend.noColumns === 0){
  fragments.push(rowStarted ? '</tr><tr>' : '<tr>');
  rowStarted = true;
  }
 
  var s = series[i],
  boxWidth = legend.labelBoxWidth,
  boxHeight = legend.labelBoxHeight;
 
  label = legend.labelFormatter(s.label);
  color = 'background-color:' + ((s.bars && s.bars.show && s.bars.fillColor && s.bars.fill) ? s.bars.fillColor : s.color) + ';';
 
  fragments.push(
  '<td class="flotr-legend-color-box">',
  '<div style="border:1px solid ', legend.labelBoxBorderColor, ';padding:1px">',
  '<div style="width:', (boxWidth-1), 'px;height:', (boxHeight-1), 'px;border:1px solid ', series[i].color, '">', // Border
  '<div style="width:', boxWidth, 'px;height:', boxHeight, 'px;', color, '"></div>', // Background
  '</div>',
  '</div>',
  '</td>',
  '<td class="flotr-legend-label">', label, '</td>'
  );
  }
  if(rowStarted) fragments.push('</tr>');
 
  if(fragments.length > 0){
  var table = '<table style="font-size:smaller;color:' + options.grid.color + '">' + fragments.join('') + '</table>';
  if(legend.container){
  D.empty(legend.container);
  D.insert(legend.container, table);
  }
  else {
  var styles = {position: 'absolute', 'zIndex': '2', 'border' : '1px solid ' + legend.labelBoxBorderColor};
 
  if(p.charAt(0) == 'n') { styles.top = (m + plotOffset.top) + 'px'; styles.bottom = 'auto'; }
  else if(p.charAt(0) == 'c') { styles.top = (m + (this.plotHeight - legendHeight) / 2) + 'px'; styles.bottom = 'auto'; }
  else if(p.charAt(0) == 's') { styles.bottom = (m + plotOffset.bottom) + 'px'; styles.top = 'auto'; }
  if(p.charAt(1) == 'e') { styles.right = (m + plotOffset.right) + 'px'; styles.left = 'auto'; }
  else if(p.charAt(1) == 'w') { styles.left = (m + plotOffset.left) + 'px'; styles.right = 'auto'; }
 
  var div = D.create('div'), size;
  div.className = 'flotr-legend';
  D.setStyles(div, styles);
  D.insert(div, table);
  D.insert(this.el, div);
 
  if (!opacity) return;
 
  var c = legend.backgroundColor || options.grid.backgroundColor || '#ffffff';
 
  _.extend(styles, D.size(div), {
  'backgroundColor': c,
  'zIndex' : '',
  'border' : ''
  });
  styles.width += 'px';
  styles.height += 'px';
 
  // Put in the transparent background separately to avoid blended labels and
  div = D.create('div');
  div.className = 'flotr-legend-bg';
  D.setStyles(div, styles);
  D.opacity(div, opacity);
  D.insert(div, ' ');
  D.insert(this.el, div);
  }
  }
  }
  }
  }
  });
  })();
 
  /** Spreadsheet **/
  (function() {
 
  function getRowLabel(value){
  if (this.options.spreadsheet.tickFormatter){
  //TODO maybe pass the xaxis formatter to the custom tick formatter as an opt-out?
  return this.options.spreadsheet.tickFormatter(value);
  }
  else {
  var t = _.find(this.axes.x.ticks, function(t){return t.v == value;});
  if (t) {
  return t.label;
  }
  return value;
  }
  }
 
  var
  D = Flotr.DOM,
  _ = Flotr._;
 
  Flotr.addPlugin('spreadsheet', {
  options: {
  show: false, // => show the data grid using two tabs
  tabGraphLabel: 'Graph',
  tabDataLabel: 'Data',
  toolbarDownload: 'Download CSV', // @todo: add better language support
  toolbarSelectAll: 'Select all',
  csvFileSeparator: ',',
  decimalSeparator: '.',
  tickFormatter: null,
  initialTab: 'graph'
  },
  /**
  * Builds the tabs in the DOM
  */
  callbacks: {
  'flotr:afterconstruct': function(){
  // @TODO necessary?
  //this.el.select('.flotr-tabs-group,.flotr-datagrid-container').invoke('remove');
 
  if (!this.options.spreadsheet.show) return;
 
  var ss = this.spreadsheet,
  container = D.node('<div class="flotr-tabs-group" style="position:absolute;left:0px;width:'+this.canvasWidth+'px"></div>'),
  graph = D.node('<div style="float:left" class="flotr-tab selected">'+this.options.spreadsheet.tabGraphLabel+'</div>'),
  data = D.node('<div style="float:left" class="flotr-tab">'+this.options.spreadsheet.tabDataLabel+'</div>'),
  offset;
 
  ss.tabsContainer = container;
  ss.tabs = { graph : graph, data : data };
 
  D.insert(container, graph);
  D.insert(container, data);
  D.insert(this.el, container);
 
  offset = D.size(data).height + 2;
  this.plotOffset.bottom += offset;
 
  D.setStyles(container, {top: this.canvasHeight-offset+'px'});
 
  this.
  observe(graph, 'click', function(){ss.showTab('graph');}).
  observe(data, 'click', function(){ss.showTab('data');});
  if (this.options.spreadsheet.initialTab !== 'graph'){
  ss.showTab(this.options.spreadsheet.initialTab);
  }
  }
  },
  /**
  * Builds a matrix of the data to make the correspondance between the x values and the y values :
  * X value => Y values from the axes
  * @return {Array} The data grid
  */
  loadDataGrid: function(){
  if (this.seriesData) return this.seriesData;
 
  var s = this.series,
  rows = {};
 
  /* The data grid is a 2 dimensions array. There is a row for each X value.
  * Each row contains the x value and the corresponding y value for each serie ('undefined' if there isn't one)
  **/
  _.each(s, function(serie, i){
  _.each(serie.data, function (v) {
  var x = v[0],
  y = v[1],
  r = rows[x];
  if (r) {
  r[i+1] = y;
  } else {
  var newRow = [];
  newRow[0] = x;
  newRow[i+1] = y;
  rows[x] = newRow;
  }
  });
  });
 
  // The data grid is sorted by x value
  this.seriesData = _.sortBy(rows, function(row, x){
  return parseInt(x, 10);
  });
  return this.seriesData;
  },
  /**
  * Constructs the data table for the spreadsheet
  * @todo make a spreadsheet manager (Flotr.Spreadsheet)
  * @return {Element} The resulting table element
  */
  constructDataGrid: function(){
  // If the data grid has already been built, nothing to do here
  if (this.spreadsheet.datagrid) return this.spreadsheet.datagrid;
 
  var s = this.series,
  datagrid = this.spreadsheet.loadDataGrid(),
  colgroup = ['<colgroup><col />'],
  buttonDownload, buttonSelect, t;
 
  // First row : series' labels
  var html = ['<table class="flotr-datagrid"><tr class="first-row">'];
  html.push('<th>&nbsp;</th>');
  _.each(s, function(serie,i){
  html.push('<th scope="col">'+(serie.label || String.fromCharCode(65+i))+'</th>');
  colgroup.push('<col />');
  });
  html.push('</tr>');
  // Data rows
  _.each(datagrid, function(row){
  html.push('<tr>');
  _.times(s.length+1, function(i){
  var tag = 'td',
  value = row[i],
  // TODO: do we really want to handle problems with floating point
  // precision here?
  content = (!_.isUndefined(value) ? Math.round(value*100000)/100000 : '');
  if (i === 0) {
  tag = 'th';
  var label = getRowLabel.call(this, content);
  if (label) content = label;
  }
 
  html.push('<'+tag+(tag=='th'?' scope="row"':'')+'>'+content+'</'+tag+'>');
  }, this);
  html.push('</tr>');
  }, this);
  colgroup.push('</colgroup>');
  t = D.node(html.join(''));
 
  /**
  * @TODO disabled this
  if (!Flotr.isIE || Flotr.isIE == 9) {
  function handleMouseout(){
  t.select('colgroup col.hover, th.hover').invoke('removeClassName', 'hover');
  }
  function handleMouseover(e){
  var td = e.element(),
  siblings = td.previousSiblings();
  t.select('th[scope=col]')[siblings.length-1].addClassName('hover');
  t.select('colgroup col')[siblings.length].addClassName('hover');
  }
  _.each(t.select('td'), function(td) {
  Flotr.EventAdapter.
  observe(td, 'mouseover', handleMouseover).
  observe(td, 'mouseout', handleMouseout);
  });
  }
  */
 
  buttonDownload = D.node(
  '<button type="button" class="flotr-datagrid-toolbar-button">' +
  this.options.spreadsheet.toolbarDownload +
  '</button>');
 
  buttonSelect = D.node(
  '<button type="button" class="flotr-datagrid-toolbar-button">' +
  this.options.spreadsheet.toolbarSelectAll+
  '</button>');
 
  this.
  observe(buttonDownload, 'click', _.bind(this.spreadsheet.downloadCSV, this)).
  observe(buttonSelect, 'click', _.bind(this.spreadsheet.selectAllData, this));
 
  var toolbar = D.node('<div class="flotr-datagrid-toolbar"></div>');
  D.insert(toolbar, buttonDownload);
  D.insert(toolbar, buttonSelect);
 
  var containerHeight =this.canvasHeight - D.size(this.spreadsheet.tabsContainer).height-2,
  container = D.node('<div class="flotr-datagrid-container" style="position:absolute;left:0px;top:0px;width:'+
  this.canvasWidth+'px;height:'+containerHeight+'px;overflow:auto;z-index:10"></div>');
 
  D.insert(container, toolbar);
  D.insert(container, t);
  D.insert(this.el, container);
  this.spreadsheet.datagrid = t;
  this.spreadsheet.container = container;
 
  return t;
  },
  /**
  * Shows the specified tab, by its name
  * @todo make a tab manager (Flotr.Tabs)
  * @param {String} tabName - The tab name
  */
  showTab: function(tabName){
  if (this.spreadsheet.activeTab === tabName){
  return;
  }
  switch(tabName) {
  case 'graph':
  D.hide(this.spreadsheet.container);
  D.removeClass(this.spreadsheet.tabs.data, 'selected');
  D.addClass(this.spreadsheet.tabs.graph, 'selected');
  break;
  case 'data':
  if (!this.spreadsheet.datagrid)
  this.spreadsheet.constructDataGrid();
  D.show(this.spreadsheet.container);
  D.addClass(this.spreadsheet.tabs.data, 'selected');
  D.removeClass(this.spreadsheet.tabs.graph, 'selected');
  break;
  default:
  throw 'Illegal tab name: ' + tabName;
  }
  this.spreadsheet.activeTab = tabName;
  },
  /**
  * Selects the data table in the DOM for copy/paste
  */
  selectAllData: function(){
  if (this.spreadsheet.tabs) {
  var selection, range, doc, win, node = this.spreadsheet.constructDataGrid();
 
  this.spreadsheet.showTab('data');
 
  // deferred to be able to select the table
  setTimeout(function () {
  if ((doc = node.ownerDocument) && (win = doc.defaultView) &&
  win.getSelection && doc.createRange &&
  (selection = window.getSelection()) &&
  selection.removeAllRanges) {
  range = doc.createRange();
  range.selectNode(node);
  selection.removeAllRanges();
  selection.addRange(range);
  }
  else if (document.body && document.body.createTextRange &&
  (range = document.body.createTextRange())) {
  range.moveToElementText(node);
  range.select();
  }
  }, 0);
  return true;
  }
  else return false;
  },
  /**
  * Converts the data into CSV in order to download a file
  */
  downloadCSV: function(){
  var csv = '',
  series = this.series,
  options = this.options,
  dg = this.spreadsheet.loadDataGrid(),
  separator = encodeURIComponent(options.spreadsheet.csvFileSeparator);
 
  if (options.spreadsheet.decimalSeparator === options.spreadsheet.csvFileSeparator) {
  throw "The decimal separator is the same as the column separator ("+options.spreadsheet.decimalSeparator+")";
  }
 
  // The first row
  _.each(series, function(serie, i){
  csv += separator+'"'+(serie.label || String.fromCharCode(65+i)).replace(/\"/g, '\\"')+'"';
  });
 
  csv += "%0D%0A"; // \r\n
 
  // For each row
  csv += _.reduce(dg, function(memo, row){
  var rowLabel = getRowLabel.call(this, row[0]) || '';
  rowLabel = '"'+(rowLabel+'').replace(/\"/g, '\\"')+'"';
  var numbers = row.slice(1).join(separator);
  if (options.spreadsheet.decimalSeparator !== '.') {
  numbers = numbers.replace(/\./g, options.spreadsheet.decimalSeparator);
  }
  return memo + rowLabel+separator+numbers+"%0D%0A"; // \t and \r\n
  }, '', this);
 
  if (Flotr.isIE && Flotr.isIE < 9) {
  csv = csv.replace(new RegExp(separator, 'g'), decodeURIComponent(separator)).replace(/%0A/g, '\n').replace(/%0D/g, '\r');
  window.open().document.write(csv);
  }
  else window.open('data:text/csv,'+csv);
  }
  });
  })();
 
  (function () {
 
  var D = Flotr.DOM;
 
  Flotr.addPlugin('titles', {
  callbacks: {
  'flotr:afterdraw': function() {
  this.titles.drawTitles();
  }
  },
  /**
  * Draws the title and the subtitle
  */
  drawTitles : function () {
  var html,
  options = this.options,
  margin = options.grid.labelMargin,
  ctx = this.ctx,
  a = this.axes;
 
  if (!options.HtmlText && this.textEnabled) {
  var style = {
  size: options.fontSize,
  color: options.grid.color,
  textAlign: 'center'
  };
 
  // Add subtitle
  if (options.subtitle){
  Flotr.drawText(
  ctx, options.subtitle,
  this.plotOffset.left + this.plotWidth/2,
  this.titleHeight + this.subtitleHeight - 2,
  style
  );
  }
 
  style.weight = 1.5;
  style.size *= 1.5;
 
  // Add title
  if (options.title){
  Flotr.drawText(
  ctx, options.title,
  this.plotOffset.left + this.plotWidth/2,
  this.titleHeight - 2,
  style
  );
  }
 
  style.weight = 1.8;
  style.size *= 0.8;
 
  // Add x axis title
  if (a.x.options.title && a.x.used){
  style.textAlign = a.x.options.titleAlign || 'center';
  style.textBaseline = 'top';
  style.angle = Flotr.toRad(a.x.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.x.options.title,
  this.plotOffset.left + this.plotWidth/2,
  this.plotOffset.top + a.x.maxLabel.height + this.plotHeight + 2 * margin,
  style
  );
  }
 
  // Add x2 axis title
  if (a.x2.options.title && a.x2.used){
  style.textAlign = a.x2.options.titleAlign || 'center';
  style.textBaseline = 'bottom';
  style.angle = Flotr.toRad(a.x2.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.x2.options.title,
  this.plotOffset.left + this.plotWidth/2,
  this.plotOffset.top - a.x2.maxLabel.height - 2 * margin,
  style
  );
  }
 
  // Add y axis title
  if (a.y.options.title && a.y.used){
  style.textAlign = a.y.options.titleAlign || 'right';
  style.textBaseline = 'middle';
  style.angle = Flotr.toRad(a.y.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.y.options.title,
  this.plotOffset.left - a.y.maxLabel.width - 2 * margin,
  this.plotOffset.top + this.plotHeight / 2,
  style
  );
  }
 
  // Add y2 axis title
  if (a.y2.options.title && a.y2.used){
  style.textAlign = a.y2.options.titleAlign || 'left';
  style.textBaseline = 'middle';
  style.angle = Flotr.toRad(a.y2.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.y2.options.title,
  this.plotOffset.left + this.plotWidth + a.y2.maxLabel.width + 2 * margin,
  this.plotOffset.top + this.plotHeight / 2,
  style
  );
  }
  }
  else {
  html = [];
 
  // Add title
  if (options.title)
  html.push(
  '<div style="position:absolute;top:0;left:',
  this.plotOffset.left, 'px;font-size:1em;font-weight:bold;text-align:center;width:',
  this.plotWidth,'px;" class="flotr-title">', options.title, '</div>'
  );
 
  // Add subtitle
  if (options.subtitle)
  html.push(
  '<div style="position:absolute;top:', this.titleHeight, 'px;left:',
  this.plotOffset.left, 'px;font-size:smaller;text-align:center;width:',
  this.plotWidth, 'px;" class="flotr-subtitle">', options.subtitle, '</div>'
  );
 
  html.push('</div>');
 
  html.push('<div class="flotr-axis-title" style="font-weight:bold;">');
 
  // Add x axis title
  if (a.x.options.title && a.x.used)
  html.push(
  '<div style="position:absolute;top:',
  (this.plotOffset.top + this.plotHeight + options.grid.labelMargin + a.x.titleSize.height),
  'px;left:', this.plotOffset.left, 'px;width:', this.plotWidth,
  'px;text-align:', a.x.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-x1">', a.x.options.title, '</div>'
  );
 
  // Add x2 axis title
  if (a.x2.options.title && a.x2.used)
  html.push(
  '<div style="position:absolute;top:0;left:', this.plotOffset.left, 'px;width:',
  this.plotWidth, 'px;text-align:', a.x2.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-x2">', a.x2.options.title, '</div>'
  );
 
  // Add y axis title
  if (a.y.options.title && a.y.used)
  html.push(
  '<div style="position:absolute;top:',
  (this.plotOffset.top + this.plotHeight/2 - a.y.titleSize.height/2),
  'px;left:0;text-align:', a.y.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-y1">', a.y.options.title, '</div>'
  );
 
  // Add y2 axis title
  if (a.y2.options.title && a.y2.used)
  html.push(
  '<div style="position:absolute;top:',
  (this.plotOffset.top + this.plotHeight/2 - a.y.titleSize.height/2),
  'px;right:0;text-align:', a.y2.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-y2">', a.y2.options.title, '</div>'
  );
 
  html = html.join('');
 
  var div = D.create('div');
  D.setStyles({
  color: options.grid.color
  });
  div.className = 'flotr-titles';
  D.insert(this.el, div);
  D.insert(div, html);
  }
  }
  });
  })();
 
  return Flotr;
 
  }));
 
  (function(){var a=Flotr.EventAdapter,b=Flotr._,c="click",d="example",e="mouseenter",f="mouseleave",g=".",h="flotr-examples",i="flotr-examples-container",j="flotr-examples-reset",k="flotr-examples-thumbs",l="flotr-examples-thumb",m="flotr-examples-collapsed",n="flotr-examples-highlight",o="flotr-examples-large",p="flotr-examples-medium",q="flotr-examples-small",r="flotr-examples-mobile",s='<div class="'+l+'"></div>',t='<div class="'+h+'">'+'<div class="'+j+'">View All</div>'+'<div class="'+k+'"></div>'+'<div class="'+i+'"></div>'+"</div>";Examples=function(a){if(b.isUndefined(Flotr.ExampleList))throw"Flotr.ExampleList not defined.";this.options=a,this.list=Flotr.ExampleList,this.current=null,this.single=!1,this._initNodes(),this._example=new Flotr.Examples.Example({node:this._exampleNode}),this._initExamples()},Examples.prototype={examples:function(){function f(b){var c=$(b.currentTarget),e=c.data("example"),f=b.data.orientation;f^c.hasClass(n)&&(c.toggleClass(n).css(a),d._example.executeCallback(e,c))}var a={cursor:"pointer"},b=this._thumbsNode,c=this.list.get(),d=this,e=["basic","basic-axis","basic-bars","basic-bars-horizontal","basic-bar-stacked","basic-stacked-horizontal","basic-pie","basic-radar","basic-bubble","basic-candle","basic-legend","mouse-tracking","mouse-zoom","mouse-drag","basic-time","negative-values","click-example","download-image","download-data","advanced-titles","color-gradients","basic-timeline","advanced-markers"];(function h(){var a=e.shift(),f=c[a];if(f.type==="profile"||f.type==="test")return;var g=$(s);g.data("example",f),b.append(g),d._example.executeCallback(f,g),g.click(function(){d._loadExample(f)}),e.length&&setTimeout(h,20)})(),b.delegate(g+l,"mouseenter",{orientation:!0},f),b.delegate(g+l,"mouseleave",{orientation:!1},f),$(window).hashchange&&$(window).hashchange(function(){d._loadHash()})},_loadExample:function(a){if(a){if(this._currentExample!==a)this._currentExample=a;else return;window.location.hash="!"+(this.single?"single/":"")+a.key,u||(this._thumbsNode.css({position:"absolute",height:"0px",overflow:"hidden",width:"0px"}),this._resetNode.css({top:"16px"})),this._examplesNode.addClass(m),this._exampleNode.show(),this._example.setExample(a),this._resize(),$(document).scrollTop(0)}},_reset:function(){window.location.hash="",u||this._thumbsNode.css({position:"",height:"",overflow:"",width:""}),this._examplesNode.removeClass(m),this._thumbsNode.height(""),this._exampleNode.hide()},_initNodes:function(){var a=$(this.options.node),b=this,c=$(t);b._resetNode=c.find(g+j),b._exampleNode=c.find(g+i),b._thumbsNode=c.find(g+k),b._examplesNode=c,b._resetNode.click(function(){b._reset()}),a.append(c),this._initResizer()},_initResizer:function(){function e(){var b=c.height()-(a.options.thumbPadding||0),e=c.width(),f;e>1760?(f=o,a._thumbsNode.height(b)):e>1140?(f=p,a._thumbsNode.height(b)):(f=q,a._thumbsNode.height("")),d!==f&&(d&&a._examplesNode.removeClass(d),a._examplesNode.addClass(f),d=f)}var a=this,b=a._examplesNode,c=$(window),d;$(window).resize(e),e(),this._resize=e},_initExamples:function(){var a=window.location.hash,b,c;a=a.substring(2),c=a.split("/"),c.length==1?(this.examples(),a&&this._loadHash()):c[0]=="single"&&(this.single=!0,b=this.list.get(c[1]))},_loadHash:function(){var a=window.location.hash,b;a=a.substring(2),a?(b=this.list.get(a),this._loadExample(b)):this._reset()}};var u=function(){var a=!!(navigator.userAgent.match(/Android/i)||navigator.userAgent.match(/webOS/i)||navigator.userAgent.match(/iPhone/i)||navigator.userAgent.match(/iPod/i)),b=!!$.browser.mozilla;return!a||b}();Flotr.Examples=Examples})(),function(){var a=Flotr._,b=".",c="flotr-example",d="flotr-example-label",e="flotr-example-title",f="flotr-example-description",g="flotr-example-editor",h="flotr-example-graph",i='<div class="'+c+'">'+'<div class="'+d+" "+e+'"></div>'+'<div class="'+f+'"></div>'+'<div class="'+g+'"></div>'+"</div>",j=function(a){this.options=a,this.example=null,this._initNodes()};j.prototype={setExample:function(a){var b=this.getSource(a),c=this._editorNode;this.example=a,Math.seedrandom(a.key),this._exampleNode.css({display:"block"}),this._titleNode.html(a.name||""),this._markupNode.html(a.description||""),this._editor?this._editor.setExample(b,a.args):this._editor=new Flotr.Examples.Editor(c,{args:a.args,example:b,teardown:function(){Flotr.EventAdapter.stopObserving($(c).find(".render")[0]),$(c).find("canvas").each(function(a,b){Flotr.EventAdapter.stopObserving(b)})}})},getSource:function(a){var b=a.callback.toString();return navigator.userAgent.search(/firefox/i)!==-1&&(b=js_beautify(b)),b},executeCallback:function(b,c){a.isElement(c)||(c=c[0]);var d=b.args?[c].concat(b.args):[c];return Math.seedrandom(b.key),b.callback.apply(this,d)},_initNodes:function(){var a=this.options.node,c=$(i);this._titleNode=c.find(b+e),this._markupNode=c.find(b+f),this._editorNode=c.find(b+g),this._exampleNode=c,a.append(c)}},Flotr.Examples.Example=j}(),function(){function Editor(a,b){function o(){i.hide(),f&&f.call(),m.render({example:d,render:h})}function p(a,b,c){var d=!1,e='<span class="error">Error: </span>',f,g;e+='<span class="message">'+a+"</span>",typeof c!="undefined"&&(e+='<span class="position">',e+='Line <span class="line">'+c+"</span>",console.log(b),b&&(e+=" of ",b==window.location?(e+='<span class="url">script</span>',!d):e+='<span class="url">'+b+"</span>"),e+=".</span>"),i.show(),i.html(e)}var c=b.type||"javascript",d=b.example||"",e=b.noRun||!1,f=b.teardown||!1,g=$(T_CONTROLS),h=$(T_RENDER),i=$(T_ERRORS),j=$(T_SOURCE),k=$(T_EDITOR),l="editor-render-"+COUNT,m,h,n;m=new TYPES[c]({onerror:p});if(!m)throw"Invalid type: API not found for type `"+c+"`.";h.attr("id",l),i.hide(),k.append(h).append(g).append(j).addClass(c).addClass(e?"no-run":""),a=$(a),a.append(k),j.append(i),d=m.example({args:b.args,example:d,render:h}),n=CodeMirror(j[0],{value:d,readOnly:e,lineNumbers:!0,mode:m.codeMirrorType}),e||(g.delegate(".run","click",function(){d=n.getValue(),o()}),o()),window.onerror=function(a,b,c){return p(a,b,c),console.log(a),ONERROR&&$.isFunction(ONERROR)?ONERROR(a,b,c):!1},COUNT++,this.setExample=function(a,b){d=m.example({args:b,example:a,render:h}),n.setValue(d),n.refresh(),o()}}var ONERROR=window.onerror,COUNT=0,TYPES={},T_CONTROLS='<div class="controls"><button class="run btn large primary">Run</button></div>',T_EDITOR='<div class="editor"></div>',T_SOURCE='<div class="source"></div>',T_ERRORS='<div class="errors"></div>',T_RENDER='<div class="render"></div>',T_IFRAME="<iframe></iframe>";TYPES.javascript=function(b){this.onerror=b.onerror},TYPES.javascript.prototype={codeMirrorType:"javascript",example:function(a){var b=a.example,c=a.render,d=$(c).attr("id"),e=a.args?","+a.args.toString():"";return"("+b+')(document.getElementById("'+d+'")'+e+");"},render:function(o){eval(o.example)}},TYPES.html=function(b){this.onerror=b.onerror},TYPES.html.prototype={codeMirrorType:"htmlmixed",example:function(a){return $.trim(a.example)},render:function(a){var b=a.example,c=a.render,d=$(T_IFRAME),e=this,f,g;c.html(d),f=d[0].contentWindow,g=f.document,g.open(),f.onerror=d.onerror=function(){e.onerror.apply(null,arguments)},g.write(b),g.close()}},typeof Flotr.Examples=="undefined"&&(Flotr.Examples={}),Flotr.Examples.Editor=Editor}(),function(){var a=Flotr.DOM,b=Flotr.EventAdapter,c=Flotr._,d="click",e="example-profile",f="examples",g=function(a){if(c.isUndefined(Flotr.ExampleList))throw"Flotr.ExampleList not defined.";this.editMode="off",this.list=Flotr.ExampleList,this.current=null,this.single=!1,this.init()};g.prototype=c.extend({},Flotr.Examples.prototype,{examples:function(){var e=document.getElementById(f),g=a.node("<ul></ul>"),h;c.each(this.list.getType("profile"),function(e){h=a.node("<li>"+e.name+"</li>"),a.insert(g,h),b.observe(h,d,c.bind(function(){this.example(e)},this))},this),a.insert(e,g)},example:function(a){this._renderSource(a),this.profileStart(a),setTimeout(c.bind(function(){this._renderGraph(a),this.profileEnd()},this),50)},profileStart:function(a){var b=document.getElementById(e);this._startTime=new Date,b.innerHTML='<div>Profile started for "'+a.name+'"...</div>'},profileEnd:function(a){var b=document.getElementById(e);profileTime=new Date-this._startTime,this._startTime=null,b.innerHTML+="<div>Profile complete: "+profileTime+"ms<div>"}}),Flotr.Profile=g}()
  (function () {
 
  var ExampleList = function () {
 
  // Map of examples.
  this.examples = {};
 
  };
 
  ExampleList.prototype = {
 
  add : function (example) {
  this.examples[example.key] = example;
  },
 
  get : function (key) {
  return key ? (this.examples[key] || null) : this.examples;
  },
 
  getType : function (type) {
  return Flotr._.select(this.examples, function (example) {
  return (example.type === type);
  });
  }
  }
 
  Flotr.ExampleList = new ExampleList();
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic',
  name : 'Basic',
  callback : basic
  });
 
  function basic (container) {
 
  var
  d1 = [[0, 3], [4, 8], [8, 5], [9, 13]], // First data series
  d2 = [], // Second data series
  i, graph;
 
  // Generate first data set
  for (i = 0; i < 14; i += 0.5) {
  d2.push([i, Math.sin(i)]);
  }
 
  // Draw Graph
  graph = Flotr.draw(container, [ d1, d2 ], {
  xaxis: {
  minorTickFreq: 4
  },
  grid: {
  minorVerticalLines: true
  }
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-stacked',
  name : 'Basic Stacked',
  callback : basic_stacked,
  type : 'test'
  });
 
  function basic_stacked (container) {
 
  var
  d1 = [[0, 3], [4, 8], [8, 2], [9, 3]], // First data series
  d2 = [[0, 2], [4, 3], [8, 8], [9, 4]], // Second data series
  i, graph;
 
  // Draw Graph
  graph = Flotr.draw(container, [ d1, d2 ], {
  lines: {
  show : true,
  stacked: true
  },
  xaxis: {
  minorTickFreq: 4
  },
  grid: {
  minorVerticalLines: true
  }
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-stepped',
  name : 'Basic Stepped',
  callback : basic_stepped,
  type : 'test'
  });
 
  function basic_stepped (container) {
 
  var
  d1 = [[0, 3], [4, 8], [8, 5], [9, 13]], // First data series
  d2 = [], // Second data series
  i, graph;
 
  // Generate first data set
  for (i = 0; i < 14; i += 0.5) {
  d2.push([i, Math.sin(i)]);
  }
 
  // Draw Graph
  graph = Flotr.draw(container, [ d1, d2 ], {
  lines: {
  steps : true,
  show : true
  },
  xaxis: {
  minorTickFreq: 4
  },
  yaxis: {
  autoscale: true
  },
  grid: {
  minorVerticalLines: true
  },
  mouse : {
  track : true,
  relative : true
  }
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-axis',
  name : 'Basic Axis',
  callback : basic_axis
  });
 
  function basic_axis (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  d4 = [],
  d5 = [], // Data
  ticks = [[ 0, "Lower"], 10, 20, 30, [40, "Upper"]], // Ticks for the Y-Axis
  graph;
 
  for(var i = 0; i <= 10; i += 0.1){
  d1.push([i, 4 + Math.pow(i,1.5)]);
  d2.push([i, Math.pow(i,3)]);
  d3.push([i, i*5+3*Math.sin(i*4)]);
  d4.push([i, i]);
  if( i.toFixed(1)%1 == 0 ){
  d5.push([i, 2*i]);
  }
  }
 
  d3[30][1] = null;
  d3[31][1] = null;
 
  function ticksFn (n) { return '('+n+')'; }
 
  graph = Flotr.draw(container, [
  { data : d1, label : 'y = 4 + x^(1.5)', lines : { fill : true } },
  { data : d2, label : 'y = x^3'},
  { data : d3, label : 'y = 5x + 3sin(4x)'},
  { data : d4, label : 'y = x'},
  { data : d5, label : 'y = 2x', lines : { show : true }, points : { show : true } }
  ], {
  xaxis : {
  noTicks : 7, // Display 7 ticks.
  tickFormatter : ticksFn, // Displays tick values between brackets.
  min : 1, // Part of the series is not displayed.
  max : 7.5 // Part of the series is not displayed.
  },
  yaxis : {
  ticks : ticks, // Set Y-Axis ticks
  max : 40 // Maximum value along Y-Axis
  },
  grid : {
  verticalLines : false,
  backgroundColor : {
  colors : [[0,'#fff'], [1,'#ccc']],
  start : 'top',
  end : 'bottom'
  }
  },
  legend : {
  position : 'nw'
  },
  title : 'Basic Axis example',
  subtitle : 'This is a subtitle'
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-bars',
  name : 'Basic Bars',
  callback : basic_bars
  });
 
  Flotr.ExampleList.add({
  key : 'basic-bars-horizontal',
  name : 'Horizontal Bars',
  args : [true],
  callback : basic_bars,
  tolerance : 5
  });
 
  function basic_bars (container, horizontal) {
 
  var
  horizontal = (horizontal ? true : false), // Show horizontal bars
  d1 = [], // First data series
  d2 = [], // Second data series
  point, // Data point variable declaration
  i;
 
  for (i = 0; i < 4; i++) {
 
  if (horizontal) {
  point = [Math.ceil(Math.random()*10), i];
  } else {
  point = [i, Math.ceil(Math.random()*10)];
  }
 
  d1.push(point);
 
  if (horizontal) {
  point = [Math.ceil(Math.random()*10), i+0.5];
  } else {
  point = [i+0.5, Math.ceil(Math.random()*10)];
  }
 
  d2.push(point);
  };
 
  // Draw the graph
  Flotr.draw(
  container,
  [d1, d2],
  {
  bars : {
  show : true,
  horizontal : horizontal,
  shadowSize : 0,
  barWidth : 0.5
  },
  mouse : {
  track : true,
  relative : true
  },
  yaxis : {
  min : 0,
  autoscaleMargin : 1
  }
  }
  );
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-bar-stacked',
  name : 'Stacked Bars',
  callback : bars_stacked
  });
 
  Flotr.ExampleList.add({
  key : 'basic-stacked-horizontal',
  name : 'Stacked Horizontal Bars',
  args : [true],
  callback : bars_stacked,
  tolerance : 5
  });
 
  function bars_stacked (container, horizontal) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  graph, i;
 
  for (i = -10; i < 10; i++) {
  if (horizontal) {
  d1.push([Math.random(), i]);
  d2.push([Math.random(), i]);
  d3.push([Math.random(), i]);
  } else {
  d1.push([i, Math.random()]);
  d2.push([i, Math.random()]);
  d3.push([i, Math.random()]);
  }
  }
 
  graph = Flotr.draw(container,[
  { data : d1, label : 'Serie 1' },
  { data : d2, label : 'Serie 2' },
  { data : d3, label : 'Serie 3' }
  ], {
  legend : {
  backgroundColor : '#D2E8FF' // Light blue
  },
  bars : {
  show : true,
  stacked : true,
  horizontal : horizontal,
  barWidth : 0.6,
  lineWidth : 1,
  shadowSize : 0
  },
  grid : {
  verticalLines : horizontal,
  horizontalLines : !horizontal
  }
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-pie',
  name : 'Basic Pie',
  callback : basic_pie
  });
 
  function basic_pie (container) {
 
  var
  d1 = [[0, 4]],
  d2 = [[0, 3]],
  d3 = [[0, 1.03]],
  d4 = [[0, 3.5]],
  graph;
 
  graph = Flotr.draw(container, [
  { data : d1, label : 'Comedy' },
  { data : d2, label : 'Action' },
  { data : d3, label : 'Romance',
  pie : {
  explode : 50
  }
  },
  { data : d4, label : 'Drama' }
  ], {
  HtmlText : false,
  grid : {
  verticalLines : false,
  horizontalLines : false
  },
  xaxis : { showLabels : false },
  yaxis : { showLabels : false },
  pie : {
  show : true,
  explode : 6
  },
  mouse : { track : true },
  legend : {
  position : 'se',
  backgroundColor : '#D2E8FF'
  }
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-radar',
  name : 'Basic Radar',
  callback : basic_radar
  });
 
  function basic_radar (container) {
 
  // Fill series s1 and s2.
  var
  s1 = { label : 'Actual', data : [[0, 3], [1, 8], [2, 5], [3, 5], [4, 3], [5, 9]] },
  s2 = { label : 'Target', data : [[0, 8], [1, 7], [2, 8], [3, 2], [4, 4], [5, 7]] },
  graph, ticks;
 
  // Radar Labels
  ticks = [
  [0, "Statutory"],
  [1, "External"],
  [2, "Videos"],
  [3, "Yippy"],
  [4, "Management"],
  [5, "oops"]
  ];
 
  // Draw the graph.
  graph = Flotr.draw(container, [ s1, s2 ], {
  radar : { show : true},
  grid : { circular : true, minorHorizontalLines : true},
  yaxis : { min : 0, max : 10, minorTickFreq : 2},
  xaxis : { ticks : ticks}
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-bubble',
  name : 'Basic Bubble',
  callback : basic_bubble
  });
 
  function basic_bubble (container) {
 
  var
  d1 = [],
  d2 = [],
  point, graph, i;
 
  for (i = 0; i < 10; i++ ){
  point = [i, Math.ceil(Math.random()*10), Math.ceil(Math.random()*10)];
  d1.push(point);
 
  point = [i, Math.ceil(Math.random()*10), Math.ceil(Math.random()*10)];
  d2.push(point);
  }
 
  // Draw the graph
  graph = Flotr.draw(container, [d1, d2], {
  bubbles : { show : true, baseRadius : 5 },
  xaxis : { min : -4, max : 14 },
  yaxis : { min : -4, max : 14 }
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-candle',
  name : 'Basic Candle',
  callback : basic_candle
  });
 
  function basic_candle (container) {
 
  var
  d1 = [],
  price = 3.206,
  graph,
  i, a, b, c;
 
  for (i = 0; i < 50; i++) {
  a = Math.random();
  b = Math.random();
  c = (Math.random() * (a + b)) - b;
  d1.push([i, price, price + a, price - b, price + c]);
  price = price + c;
  }
 
  // Graph
  graph = Flotr.draw(container, [ d1 ], {
  candles : { show : true, candleWidth : 0.6 },
  xaxis : { noTicks : 10 }
  });
  }
 
  })();
 
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-legend',
  name : 'Basic Legend',
  callback : basic_legend
  });
 
  function basic_legend (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  data,
  graph, i;
 
  // Data Generation
  for (i = 0; i < 15; i += 0.5) {
  d1.push([i, i + Math.sin(i+Math.PI)]);
  d2.push([i, i]);
  d3.push([i, 15-Math.cos(i)]);
  }
 
  data = [
  { data : d1, label :'x + sin(x+&pi;)' },
  { data : d2, label :'x' },
  { data : d3, label :'15 - cos(x)' }
  ];
 
 
  // This function prepend each label with 'y = '
  function labelFn (label) {
  return 'y = ' + label;
  }
 
  // Draw graph
  graph = Flotr.draw(container, data, {
  legend : {
  position : 'se', // Position the legend 'south-east'.
  labelFormatter : labelFn, // Format the labels.
  backgroundColor : '#D2E8FF' // A light blue background color.
  },
  HtmlText : false
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'mouse-tracking',
  name : 'Mouse Tracking',
  callback : mouse_tracking
  });
 
  function mouse_tracking (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  graph, i;
 
  for (i = 0; i < 20; i += 0.5) {
  d1.push([i, 2*i]);
  d2.push([i, i*1.5+1.5*Math.sin(i)]);
  d3.push([i, 3*Math.cos(i)+10]);
  }
 
  graph = Flotr.draw(
  container,
  [
  {
  data : d1,
  mouse : { track : false } // Disable mouse tracking for d1
  },
  d2,
  d3
  ],
  {
  mouse : {
  track : true, // Enable mouse tracking
  lineColor : 'purple',
  relative : true,
  position : 'ne',
  sensibility : 1,
  trackDecimals : 2,
  trackFormatter : function (o) { return 'x = ' + o.x +', y = ' + o.y; }
  },
  crosshair : {
  mode : 'xy'
  }
  }
  );
 
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'mouse-zoom',
  name : 'Mouse Zoom',
  callback : mouse_zoom,
  description : "<p>Select an area of the graph to zoom. Click to reset the chart.</p>"
  });
 
  function mouse_zoom (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  options,
  graph,
  i;
 
  for (i = 0; i < 40; i += 0.5) {
  d1.push([i, Math.sin(i)+3*Math.cos(i)]);
  d2.push([i, Math.pow(1.1, i)]);
  d3.push([i, 40 - i+Math.random()*10]);
  }
 
  options = {
  selection : { mode : 'x', fps : 30 },
  title : 'Mouse Zoom'
  };
 
  // Draw graph with default options, overwriting with passed options
  function drawGraph (opts) {
 
  // Clone the options, so the 'options' variable always keeps intact.
  var o = Flotr._.extend(Flotr._.clone(options), opts || {});
 
  // Return a new graph.
  return Flotr.draw(
  container,
  [ d1, d2, d3 ],
  o
  );
  }
 
  // Actually draw the graph.
  graph = drawGraph();
 
  // Hook into the 'flotr:select' event.
  Flotr.EventAdapter.observe(container, 'flotr:select', function (area) {
 
  // Draw graph with new area
  graph = drawGraph({
  xaxis: {min:area.x1, max:area.x2},
  yaxis: {min:area.y1, max:area.y2}
  });
  });
 
  // When graph is clicked, draw the graph with default area.
  Flotr.EventAdapter.observe(container, 'flotr:click', function () { drawGraph(); });
  };
 
  })();
 
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'mouse-drag',
  name : 'Mouse Drag',
  callback : mouse_drag
  });
 
  function mouse_drag (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  options,
  graph,
  start,
  i;
 
  for (i = -40; i < 40; i += 0.5) {
  d1.push([i, Math.sin(i)+3*Math.cos(i)]);
  d2.push([i, Math.pow(1.1, i)]);
  d3.push([i, 40 - i+Math.random()*10]);
  }
 
  options = {
  xaxis: {min: 0, max: 20},
  title : 'Mouse Drag'
  };
 
  // Draw graph with default options, overwriting with passed options
  function drawGraph (opts) {
 
  // Clone the options, so the 'options' variable always keeps intact.
  var o = Flotr._.extend(Flotr._.clone(options), opts || {});
 
  // Return a new graph.
  return Flotr.draw(
  container,
  [ d1, d2, d3 ],
  o
  );
  }
 
  graph = drawGraph();
 
  function initializeDrag (e) {
  start = graph.getEventPosition(e);
  Flotr.EventAdapter.observe(document, 'mousemove', move);
  Flotr.EventAdapter.observe(document, 'mouseup', stopDrag);
  }
 
  function move (e) {
  var
  end = graph.getEventPosition(e),
  xaxis = graph.axes.x,
  offset = start.x - end.x;
 
  graph = drawGraph({
  xaxis : {
  min : xaxis.min + offset,
  max : xaxis.max + offset
  }
  });
  // @todo: refector initEvents in order not to remove other observed events
  Flotr.EventAdapter.observe(graph.overlay, 'mousedown', initializeDrag);
  }
 
  function stopDrag () {
  Flotr.EventAdapter.stopObserving(document, 'mousemove', move);
  }
 
  Flotr.EventAdapter.observe(graph.overlay, 'mousedown', initializeDrag);
 
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-time',
  name : 'Basic Time',
  callback : basic_time,
  description : "<p>Select an area of the graph to zoom. Click to reset the chart.</p>"
  });
 
  function basic_time (container) {
 
  var
  d1 = [],
  start = new Date("2009/01/01 01:00").getTime(),
  options,
  graph,
  i, x, o;
 
  for (i = 0; i < 100; i++) {
  x = start+(i*1000*3600*24*36.5);
  d1.push([x, i+Math.random()*30+Math.sin(i/20+Math.random()*2)*20+Math.sin(i/10+Math.random())*10]);
  }
 
  options = {
  xaxis : {
  mode : 'time',
  labelsAngle : 45
  },
  selection : {
  mode : 'x'
  },
  HtmlText : false,
  title : 'Time'
  };
 
  // Draw graph with default options, overwriting with passed options
  function drawGraph (opts) {
 
  // Clone the options, so the 'options' variable always keeps intact.
  o = Flotr._.extend(Flotr._.clone(options), opts || {});
 
  // Return a new graph.
  return Flotr.draw(
  container,
  [ d1 ],
  o
  );
  }
 
  graph = drawGraph();
 
  Flotr.EventAdapter.observe(container, 'flotr:select', function(area){
  // Draw selected area
  graph = drawGraph({
  xaxis : { min : area.x1, max : area.x2, mode : 'time', labelsAngle : 45 },
  yaxis : { min : area.y1, max : area.y2 }
  });
  });
 
  // When graph is clicked, draw the graph with default area.
  Flotr.EventAdapter.observe(container, 'flotr:click', function () { graph = drawGraph(); });
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'negative-values',
  name : 'Negative Values',
  callback : negative_values
  });
 
  function negative_values (container) {
 
  var
  d0 = [], // Line through y = 0
  d1 = [], // Random data presented as a scatter plot.
  d2 = [], // A regression line for the scatter.
  sx = 0,
  sy = 0,
  sxy = 0,
  sxsq = 0,
  xmean,
  ymean,
  alpha,
  beta,
  n, x, y;
 
  for (n = 0; n < 20; n++){
 
  x = n;
  y = x + Math.random()*8 - 15;
 
  d0.push([x, 0]);
  d1.push([x, y]);
 
  // Computations used for regression line
  sx += x;
  sy += y;
  sxy += x*y;
  sxsq += Math.pow(x,2);
  }
 
  xmean = sx/n;
  ymean = sy/n;
  beta = ((n*sxy) - (sx*sy))/((n*sxsq)-(Math.pow(sx,2)));
  alpha = ymean - (beta * xmean);
 
  // Compute the regression line.
  for (n = 0; n < 20; n++){
  d2.push([n, alpha + beta*n])
  }
 
  // Draw the graph
  graph = Flotr.draw(
  container, [
  { data : d0, shadowSize : 0, color : '#545454' }, // Horizontal
  { data : d1, label : 'y = x + (Math.random() * 8) - 15', points : { show : true } }, // Scatter
  { data : d2, label : 'y = ' + alpha.toFixed(2) + ' + ' + beta.toFixed(2) + '*x' } // Regression
  ],
  {
  legend : { position : 'se', backgroundColor : '#D2E8FF' },
  title : 'Negative Values'
  }
  );
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'click-example',
  name : 'Click Example',
  callback : click_example
  });
 
  function click_example (container) {
 
  var
  d1 = [[0,0]], // Point at origin
  options,
  graph;
 
  options = {
  xaxis: {min: 0, max: 15},
  yaxis: {min: 0, max: 15},
  lines: {show: true},
  points: {show: true},
  mouse: {track:true},
  title: 'Click Example'
  };
 
  graph = Flotr.draw(container, [d1], options);
 
  // Add a point to the series and redraw the graph
  Flotr.EventAdapter.observe(container, 'flotr:click', function(position){
 
  // Add a point to the series at the location of the click
  d1.push([position.x, position.y]);
 
  // Sort the series.
  d1 = d1.sort(function (a, b) { return a[0] - b[0]; });
 
  // Redraw the graph, with the new series.
  graph = Flotr.draw(container, [d1], options);
  });
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'download-image',
  name : 'Download Image',
  callback : download_image,
  description : '' +
  '<form name="image-download" id="image-download" action="" onsubmit="return false">' +
  '<label><input type="radio" name="format" value="png" checked="checked" /> PNG</label>' +
  '<label><input type="radio" name="format" value="jpeg" /> JPEG</label>' +
 
  '<button name="to-image" onclick="CurrentExample(\'to-image\')">To Image</button>' +
  '<button name="download" onclick="CurrentExample(\'download\')">Download</button>' +
  '<button name="reset" onclick="CurrentExample(\'reset\')">Reset</button>' +
  '</form>'
  });
 
  function download_image (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  d4 = [],
  d5 = [],
  graph,
  i;
 
  for (i = 0; i <= 10; i += 0.1) {
  d1.push([i, 4 + Math.pow(i,1.5)]);
  d2.push([i, Math.pow(i,3)]);
  d3.push([i, i*5+3*Math.sin(i*4)]);
  d4.push([i, i]);
  if( i.toFixed(1)%1 == 0 ){
  d5.push([i, 2*i]);
  }
  }
 
  // Draw the graph
  graph = Flotr.draw(
  container,[
  {data:d1, label:'y = 4 + x^(1.5)', lines:{fill:true}},
  {data:d2, label:'y = x^3', yaxis:2},
  {data:d3, label:'y = 5x + 3sin(4x)'},
  {data:d4, label:'y = x'},
  {data:d5, label:'y = 2x', lines: {show: true}, points: {show: true}}
  ],{
  title: 'Download Image Example',
  subtitle: 'You can save me as an image',
  xaxis:{
  noTicks: 7, // Display 7 ticks.
  tickFormatter: function(n){ return '('+n+')'; }, // => displays tick values between brackets.
  min: 1, // => part of the series is not displayed.
  max: 7.5, // => part of the series is not displayed.
  labelsAngle: 45,
  title: 'x Axis'
  },
  yaxis:{
  ticks: [[0, "Lower"], 10, 20, 30, [40, "Upper"]],
  max: 40,
  title: 'y = f(x)'
  },
  y2axis:{color:'#FF0000', max: 500, title: 'y = x^3'},
  grid:{
  verticalLines: false,
  backgroundColor: 'white'
  },
  HtmlText: false,
  legend: {
  position: 'nw'
  }
  });
 
  this.CurrentExample = function (operation) {
 
  var
  format = $('#image-download input:radio[name=format]:checked').val();
  if (Flotr.isIE && Flotr.isIE < 9) {
  alert(
  "Your browser doesn't allow you to get a bitmap image from the plot, " +
  "you can only get a VML image that you can use in Microsoft Office.<br />"
  );
  }
 
  if (operation == 'to-image') {
  graph.download.saveImage(format, null, null, true)
  } else if (operation == 'download') {
  graph.download.saveImage(format);
  } else if (operation == 'reset') {
  graph.download.restoreCanvas();
  }
  };
 
  return graph;
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'download-data',
  name : 'Download Data',
  callback : download_data
  });
 
  function download_data (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  d4 = [],
  d5 = [],
  graph,
  i,x;
 
  for (i = 0; i <= 100; i += 1) {
  x = i / 10;
  d1.push([x, 4 + Math.pow(x,1.5)]);
  d2.push([x, Math.pow(x,3)]);
  d3.push([x, i*5+3*Math.sin(x*4)]);
  d4.push([x, x]);
  if(x%1 === 0 ){
  d5.push([x, 2*x]);
  }
  }
 
  // Draw the graph.
  graph = Flotr.draw(
  container, [
  { data : d1, label : 'y = 4 + x^(1.5)', lines : { fill : true } },
  { data : d2, label : 'y = x^3' },
  { data : d3, label : 'y = 5x + 3sin(4x)' },
  { data : d4, label : 'y = x' },
  { data : d5, label : 'y = 2x', lines : { show : true }, points : { show : true } }
  ],{
  xaxis : {
  noTicks : 7,
  tickFormatter : function (n) { return '('+n+')'; },
  min: 1, // Part of the series is not displayed.
  max: 7.5
  },
  yaxis : {
  ticks : [[ 0, "Lower"], 10, 20, 30, [40, "Upper"]],
  max : 40
  },
  grid : {
  verticalLines : false,
  backgroundColor : 'white'
  },
  legend : {
  position : 'nw'
  },
  spreadsheet : {
  show : true,
  tickFormatter : function (e) { return e+''; }
  }
  });
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'advanced-titles',
  name : 'Advanced Titles',
  callback : advanced_titles
  });
 
  function advanced_titles (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  d4 = [],
  d5 = [],
  graph,
  i;
 
  for (i = 0; i <= 10; i += 0.1) {
  d1.push([i, 4 + Math.pow(i,1.5)]);
  d2.push([i, Math.pow(i,3)]);
  d3.push([i, i*5+3*Math.sin(i*4)]);
  d4.push([i, i]);
  if (i.toFixed(1)%1 == 0) {
  d5.push([i, 2*i]);
  }
  }
 
  // Draw the graph.
  graph = Flotr.draw(
  container,[
  { data : d1, label : 'y = 4 + x^(1.5)', lines : { fill : true } },
  { data : d2, label : 'y = x^3', yaxis : 2 },
  { data : d3, label : 'y = 5x + 3sin(4x)' },
  { data : d4, label : 'y = x' },
  { data : d5, label : 'y = 2x', lines : { show : true }, points : { show : true } }
  ], {
  title : 'Advanced Titles Example',
  subtitle : 'You can save me as an image',
  xaxis : {
  noTicks : 7,
  tickFormatter : function (n) { return '('+n+')'; },
  min : 1,
  max : 7.5,
  labelsAngle : 45,
  title : 'x Axis'
  },
  yaxis : {
  ticks : [[0, "Lower"], 10, 20, 30, [40, "Upper"]],
  max : 40,
  title : 'y = f(x)'
  },
  y2axis : { color : '#FF0000', max : 500, title : 'y = x^3' },
  grid : {
  verticalLines : false,
  backgroundColor : 'white'
  },
  HtmlText : false,
  legend : {
  position : 'nw'
  }
  });
  };
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'color-gradients',
  name : 'Color Gradients',
  callback : color_gradients
  });
 
  function color_gradients (container) {
 
  var
  bars = {
  data: [],
  bars: {
  show: true,
  barWidth: 0.8,
  lineWidth: 0,
  fillColor: {
  colors: ['#CB4B4B', '#fff'],
  start: 'top',
  end: 'bottom'
  },
  fillOpacity: 0.8
  }
  }, markers = {
  data: [],
  markers: {
  show: true,
  position: 'ct'
  }
  }, lines = {
  data: [],
  lines: {
  show: true,
  fillColor: ['#00A8F0', '#fff'],
  fill: true,
  fillOpacity: 1
  }
  },
  point,
  graph,
  i;
 
  for (i = 0; i < 8; i++) {
  point = [i, Math.ceil(Math.random() * 10)];
  bars.data.push(point);
  markers.data.push(point);
  }
 
  for (i = -1; i < 9; i += 0.01){
  lines.data.push([i, i*i/8+2]);
  }
 
  graph = Flotr.draw(
  container,
  [lines, bars, markers], {
  yaxis: {
  min: 0,
  max: 11
  },
  xaxis: {
  min: -0.5,
  max: 7.5
  },
  grid: {
  verticalLines: false,
  backgroundColor: ['#fff', '#ccc']
  }
  }
  );
  };
 
  })();
 
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'profile-bars',
  name : 'Profile Bars',
  type : 'profile',
  callback : profile_bars
  });
 
  /*
  Flotr.ExampleList.add({
  key : 'basic-bars-horizontal',
  name : 'Horizontal Bars',
  args : [true],
  callback : basic_bars
  });
  */
 
  function profile_bars (container, horizontal) {
 
  var
  horizontal = (horizontal ? true : false), // Show horizontal bars
  d1 = [], // First data series
  d2 = [], // Second data series
  point, // Data point variable declaration
  i;
 
  for (i = 0; i < 5000; i++) {
 
  if (horizontal) {
  point = [Math.ceil(Math.random()*10), i];
  } else {
  point = [i, Math.ceil(Math.random()*10)];
  }
 
  d1.push(point);
 
  if (horizontal) {
  point = [Math.ceil(Math.random()*10), i+0.5];
  } else {
  point = [i+0.5, Math.ceil(Math.random()*10)];
  }
 
  d2.push(point);
  };
 
  // Draw the graph
  Flotr.draw(
  container,
  [d1, d2],
  {
  bars : {
  show : true,
  horizontal : horizontal,
  barWidth : 0.5
  },
  mouse : {
  track : true,
  relative : true
  },
  yaxis : {
  min : 0,
  autoscaleMargin : 1
  }
  }
  );
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'basic-timeline',
  name : 'Basic Timeline',
  callback : basic_timeline
  });
 
  function basic_timeline (container) {
 
  var
  d1 = [[1, 4, 5]],
  d2 = [[3.2, 3, 4]],
  d3 = [[1.9, 2, 2], [5, 2, 3.3]],
  d4 = [[1.55, 1, 9]],
  d5 = [[5, 0, 2.3]],
  data = [],
  timeline = { show : true, barWidth : .5 },
  markers = [],
  labels = ['Obama', 'Bush', 'Clinton', 'Palin', 'McCain'],
  i, graph, point;
 
  // Timeline
  Flotr._.each([d1, d2, d3, d4, d5], function (d) {
  data.push({
  data : d,
  timeline : Flotr._.clone(timeline)
  });
  });
 
  // Markers
  Flotr._.each([d1, d2, d3, d4, d5], function (d) {
  point = d[0];
  markers.push([point[0], point[1]]);
  });
  data.push({
  data: markers,
  markers: {
  show: true,
  position: 'rm',
  fontSize: 11,
  labelFormatter : function (o) { return labels[o.index]; }
  }
  });
 
  // Draw Graph
  graph = Flotr.draw(container, data, {
  xaxis: {
  noTicks: 3,
  tickFormatter: function (x) {
  var
  x = parseInt(x),
  months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];
  return months[(x-1)%12];
  }
  },
  yaxis: {
  showLabels : false
  },
  grid: {
  horizontalLines : false
  }
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'advanced-markers',
  name : 'Advanced Markers',
  callback : advanced_markers,
  timeout : 150
  });
 
  function advanced_markers (container) {
 
  var
  xmark = new Image(),
  checkmark = new Image(),
  bars = {
  data: [],
  bars: {
  show: true,
  barWidth: 0.6,
  lineWidth: 0,
  fillOpacity: 0.8
  }
  }, markers = {
  data: [],
  markers: {
  show: true,
  position: 'ct',
  labelFormatter: function (o) {
  return (o.y >= 5) ? checkmark : xmark;
  }
  }
  },
  flotr = Flotr,
  point,
  graph,
  i;
 
 
  for (i = 0; i < 8; i++) {
  point = [i, Math.ceil(Math.random() * 10)];
  bars.data.push(point);
  markers.data.push(point);
  }
 
  var runner = function () {
  if (!xmark.complete || !checkmark.complete) {
  setTimeout(runner, 50);
  return;
  }
 
  graph = flotr.draw(
  container,
  [bars, markers], {
  yaxis: {
  min: 0,
  max: 11
  },
  xaxis: {
  min: -0.5,
  max: 7.5
  },
  grid: {
  verticalLines: false
  }
  }
  );
  }
 
  xmark.onload = runner;
  xmark.src = 'images/xmark.png';
  checkmark.src = 'images/checkmark.png';
  };
 
  })();
 
 
  // Copyright 2006 Google Inc.
  //
  // Licensed under the Apache License, Version 2.0 (the "License");
  // you may not use this file except in compliance with the License.
  // You may obtain a copy of the License at
  //
  // http://www.apache.org/licenses/LICENSE-2.0
  //
  // Unless required by applicable law or agreed to in writing, software
  // distributed under the License is distributed on an "AS IS" BASIS,
  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  // See the License for the specific language governing permissions and
  // limitations under the License.
  // Known Issues:
  //
  // * Patterns only support repeat.
  // * Radial gradient are not implemented. The VML version of these look very
  // different from the canvas one.
  // * Clipping paths are not implemented.
  // * Coordsize. The width and height attribute have higher priority than the
  // width and height style values which isn't correct.
  // * Painting mode isn't implemented.
  // * Canvas width/height should is using content-box by default. IE in
  // Quirks mode will draw the canvas using border-box. Either change your
  // doctype to HTML5
  // (http://www.whatwg.org/specs/web-apps/current-work/#the-doctype)
  // or use Box Sizing Behavior from WebFX
  // (http://webfx.eae.net/dhtml/boxsizing/boxsizing.html)
  // * Non uniform scaling does not correctly scale strokes.
  // * Optimize. There is always room for speed improvements.
  // Only add this code if we do not already have a canvas implementation
 
  document.createElement("canvas").getContext||function(){function j(){return this.context_||(this.context_=new N(this))}function l(a,b,c){var d=k.call(arguments,2);return function(){return a.apply(b,d.concat(k.call(arguments)))}}function m(a){return String(a).replace(/&/g,"&amp;").replace(/"/g,"&quot;")}function n(a,b,c){a.namespaces[b]||a.namespaces.add(b,c,"#default#VML")}function o(a){n(a,"g_vml_","urn:schemas-microsoft-com:vml"),n(a,"g_o_","urn:schemas-microsoft-com:office:office");if(!a.styleSheets.ex_canvas_){var b=a.createStyleSheet();b.owningElement.id="ex_canvas_",b.cssText="canvas{display:inline-block;overflow:hidden;text-align:left;width:300px;height:150px}"}}function q(a){var b=a.srcElement;switch(a.propertyName){case"width":b.getContext().clearRect(),b.style.width=b.attributes.width.nodeValue+"px",b.firstChild&&(b.firstChild.style.width=b.clientWidth+"px");break;case"height":b.getContext().clearRect(),b.style.height=b.attributes.height.nodeValue+"px",b.firstChild&&(b.firstChild.style.height=b.clientHeight+"px")}}function r(a){var b=a.srcElement;b.firstChild&&(b.firstChild.style.width=b.clientWidth+"px",b.firstChild.style.height=b.clientHeight+"px")}function v(){return[[1,0,0],[0,1,0],[0,0,1]]}function w(a,b){var c=v();for(var d=0;d<3;d++)for(var e=0;e<3;e++){var f=0;for(var g=0;g<3;g++)f+=a[d][g]*b[g][e];c[d][e]=f}return c}function x(a,b){b.fillStyle=a.fillStyle,b.lineCap=a.lineCap,b.lineJoin=a.lineJoin,b.lineWidth=a.lineWidth,b.miterLimit=a.miterLimit,b.shadowBlur=a.shadowBlur,b.shadowColor=a.shadowColor,b.shadowOffsetX=a.shadowOffsetX,b.shadowOffsetY=a.shadowOffsetY,b.strokeStyle=a.strokeStyle,b.globalAlpha=a.globalAlpha,b.font=a.font,b.textAlign=a.textAlign,b.textBaseline=a.textBaseline,b.arcScaleX_=a.arcScaleX_,b.arcScaleY_=a.arcScaleY_,b.lineScale_=a.lineScale_}function z(a){var b=a.indexOf("(",3),c=a.indexOf(")",b+1),d=a.substring(b+1,c).split(",");if(d.length!=4||a.charAt(3)!="a")d[3]=1;return d}function A(a){return parseFloat(a)/100}function B(a,b,c){return Math.min(c,Math.max(b,a))}function C(a){var b,c,d,e,f,g;e=parseFloat(a[0])/360%360,e<0&&e++,f=B(A(a[1]),0,1),g=B(A(a[2]),0,1);if(f==0)b=c=d=g;else{var h=g<.5?g*(1+f):g+f-g*f,i=2*g-h;b=D(i,h,e+1/3),c=D(i,h,e),d=D(i,h,e-1/3)}return"#"+s[Math.floor(b*255)]+s[Math.floor(c*255)]+s[Math.floor(d*255)]}function D(a,b,c){return c<0&&c++,c>1&&c--,6*c<1?a+(b-a)*6*c:2*c<1?b:3*c<2?a+(b-a)*(2/3-c)*6:a}function F(a){if(a in E)return E[a];var b,c=1;a=String(a);if(a.charAt(0)=="#")b=a;else if(/^rgb/.test(a)){var d=z(a),b="#",e;for(var f=0;f<3;f++)d[f].indexOf("%")!=-1?e=Math.floor(A(d[f])*255):e=+d[f],b+=s[B(e,0,255)];c=+d[3]}else if(/^hsl/.test(a)){var d=z(a);b=C(d),c=d[3]}else b=y[a]||a;return E[a]={color:b,alpha:c}}function I(a){if(H[a])return H[a];var b=document.createElement("div"),c=b.style;try{c.font=a}catch(d){}return H[a]={style:c.fontStyle||G.style,variant:c.fontVariant||G.variant,weight:c.fontWeight||G.weight,size:c.fontSize||G.size,family:c.fontFamily||G.family}}function J(a,b){var c={};for(var d in a)c[d]=a[d];var e=parseFloat(b.currentStyle.fontSize),f=parseFloat(a.size);return typeof a.size=="number"?c.size=a.size:a.size.indexOf("px")!=-1?c.size=f:a.size.indexOf("em")!=-1?c.size=e*f:a.size.indexOf("%")!=-1?c.size=e/100*f:a.size.indexOf("pt")!=-1?c.size=f/.75:c.size=e,c}function K(a){return a.style+" "+a.variant+" "+a.weight+" "+a.size+"px "+a.family}function M(a){return L[a]||"square"}function N(a){this.m_=v(),this.mStack_=[],this.aStack_=[],this.currentPath_=[],this.strokeStyle="#000",this.fillStyle="#000",this.lineWidth=1,this.lineJoin="miter",this.lineCap="butt",this.miterLimit=g*1,this.globalAlpha=1,this.font="10px sans-serif",this.textAlign="left",this.textBaseline="alphabetic",this.canvas=a;var b="width:"+a.clientWidth+"px;height:"+a.clientHeight+"px;overflow:hidden;position:absolute",c=a.ownerDocument.createElement("div");c.style.cssText=b,a.appendChild(c);var d=c.cloneNode(!1);d.style.backgroundColor="red",d.style.filter="alpha(opacity=0)",a.appendChild(d),this.element_=c,this.arcScaleX_=1,this.arcScaleY_=1,this.lineScale_=1}function P(a,b,c,d){a.currentPath_.push({type:"bezierCurveTo",cp1x:b.x,cp1y:b.y,cp2x:c.x,cp2y:c.y,x:d.x,y:d.y}),a.currentX_=d.x,a.currentY_=d.y}function Q(a,b){var c=F(a.strokeStyle),d=c.color,e=c.alpha*a.globalAlpha,f=a.lineScale_*a.lineWidth;f<1&&(e*=f),b.push("<g_vml_:stroke",' opacity="',e,'"',' joinstyle="',a.lineJoin,'"',' miterlimit="',a.miterLimit,'"',' endcap="',M(a.lineCap),'"',' weight="',f,'px"',' color="',d,'" />')}function R(b,c,d,e){var f=b.fillStyle,h=b.arcScaleX_,i=b.arcScaleY_,j=e.x-d.x,k=e.y-d.y;if(f instanceof V){var l=0,m={x:0,y:0},n=0,o=1;if(f.type_=="gradient"){var p=f.x0_/h,q=f.y0_/i,r=f.x1_/h,s=f.y1_/i,t=S(b,p,q),u=S(b,r,s),v=u.x-t.x,w=u.y-t.y;l=Math.atan2(v,w)*180/Math.PI,l<0&&(l+=360),l<1e-6&&(l=0)}else{var t=S(b,f.x0_,f.y0_);m={x:(t.x-d.x)/j,y:(t.y-d.y)/k},j/=h*g,k/=i*g;var x=a.max(j,k);n=2*f.r0_/x,o=2*f.r1_/x-n}var y=f.colors_;y.sort(function(a,b){return a.offset-b.offset});var z=y.length,A=y[0].color,B=y[z-1].color,C=y[0].alpha*b.globalAlpha,D=y[z-1].alpha*b.globalAlpha,E=[];for(var G=0;G<z;G++){var H=y[G];E.push(H.offset*o+n+" "+H.color)}c.push('<g_vml_:fill type="',f.type_,'"',' method="none" focus="100%"',' color="',A,'"',' color2="',B,'"',' colors="',E.join(","),'"',' opacity="',D,'"',' g_o_:opacity2="',C,'"',' angle="',l,'"',' focusposition="',m.x,",",m.y,'" />')}else if(f instanceof W){if(j&&k){var I=-d.x,J=-d.y;c.push("<g_vml_:fill",' position="',I/j*h*h,",",J/k*i*i,'"',' type="tile"',' src="',f.src_,'" />')}}else{var K=F(b.fillStyle),L=K.color,M=K.alpha*b.globalAlpha;c.push('<g_vml_:fill color="',L,'" opacity="',M,'" />')}}function S(a,b,c){var d=a.m_;return{x:g*(b*d[0][0]+c*d[1][0]+d[2][0])-h,y:g*(b*d[0][1]+c*d[1][1]+d[2][1])-h}}function T(a){return isFinite(a[0][0])&&isFinite(a[0][1])&&isFinite(a[1][0])&&isFinite(a[1][1])&&isFinite(a[2][0])&&isFinite(a[2][1])}function U(a,b,c){if(!T(b))return;a.m_=b;if(c){var d=b[0][0]*b[1][1]-b[0][1]*b[1][0];a.lineScale_=f(e(d))}}function V(a){this.type_=a,this.x0_=0,this.y0_=0,this.r0_=0,this.x1_=0,this.y1_=0,this.r1_=0,this.colors_=[]}function W(a,b){Y(a);switch(b){case"repeat":case null:case"":this.repetition_="repeat";break;case"repeat-x":case"repeat-y":case"no-repeat":this.repetition_=b;break;default:X("SYNTAX_ERR")}this.src_=a.src,this.width_=a.width,this.height_=a.height}function X(a){throw new Z(a)}function Y(a){(!a||a.nodeType!=1||a.tagName!="IMG")&&X("TYPE_MISMATCH_ERR"),a.readyState!="complete"&&X("INVALID_STATE_ERR")}function Z(a){this.code=this[a],this.message=a+": DOM Exception "+this.code}var a=Math,b=a.round,c=a.sin,d=a.cos,e=a.abs,f=a.sqrt,g=10,h=g/2,i=+navigator.userAgent.match(/MSIE ([\d.]+)?/)[1],k=Array.prototype.slice;o(document);var p={init:function(a){var b=a||document;b.createElement("canvas"),b.attachEvent("onreadystatechange",l(this.init_,this,b))},init_:function(a){var b=a.getElementsByTagName("canvas");for(var c=0;c<b.length;c++)this.initElement(b[c])},initElement:function(a){if(!a.getContext){a.getContext=j,o(a.ownerDocument),a.innerHTML="",a.attachEvent("onpropertychange",q),a.attachEvent("onresize",r);var b=a.attributes;b.width&&b.width.specified?a.style.width=b.width.nodeValue+"px":a.width=a.clientWidth,b.height&&b.height.specified?a.style.height=b.height.nodeValue+"px":a.height=a.clientHeight}return a}};p.init();var s=[];for(var t=0;t<16;t++)for(var u=0;u<16;u++)s[t*16+u]=t.toString(16)+u.toString(16);var y={aliceblue:"#F0F8FF",antiquewhite:"#FAEBD7",aquamarine:"#7FFFD4",azure:"#F0FFFF",beige:"#F5F5DC",bisque:"#FFE4C4",black:"#000000",blanchedalmond:"#FFEBCD",blueviolet:"#8A2BE2",brown:"#A52A2A",burlywood:"#DEB887",cadetblue:"#5F9EA0",chartreuse:"#7FFF00",chocolate:"#D2691E",coral:"#FF7F50",cornflowerblue:"#6495ED",cornsilk:"#FFF8DC",crimson:"#DC143C",cyan:"#00FFFF",darkblue:"#00008B",darkcyan:"#008B8B",darkgoldenrod:"#B8860B",darkgray:"#A9A9A9",darkgreen:"#006400",darkgrey:"#A9A9A9",darkkhaki:"#BDB76B",darkmagenta:"#8B008B",darkolivegreen:"#556B2F",darkorange:"#FF8C00",darkorchid:"#9932CC",darkred:"#8B0000",darksalmon:"#E9967A",darkseagreen:"#8FBC8F",darkslateblue:"#483D8B",darkslategray:"#2F4F4F",darkslategrey:"#2F4F4F",darkturquoise:"#00CED1",darkviolet:"#9400D3",deeppink:"#FF1493",deepskyblue:"#00BFFF",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1E90FF",firebrick:"#B22222",floralwhite:"#FFFAF0",forestgreen:"#228B22",gainsboro:"#DCDCDC",ghostwhite:"#F8F8FF",gold:"#FFD700",goldenrod:"#DAA520",grey:"#808080",greenyellow:"#ADFF2F",honeydew:"#F0FFF0",hotpink:"#FF69B4",indianred:"#CD5C5C",indigo:"#4B0082",ivory:"#FFFFF0",khaki:"#F0E68C",lavender:"#E6E6FA",lavenderblush:"#FFF0F5",lawngreen:"#7CFC00",lemonchiffon:"#FFFACD",lightblue:"#ADD8E6",lightcoral:"#F08080",lightcyan:"#E0FFFF",lightgoldenrodyellow:"#FAFAD2",lightgreen:"#90EE90",lightgrey:"#D3D3D3",lightpink:"#FFB6C1",lightsalmon:"#FFA07A",lightseagreen:"#20B2AA",lightskyblue:"#87CEFA",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#B0C4DE",lightyellow:"#FFFFE0",limegreen:"#32CD32",linen:"#FAF0E6",magenta:"#FF00FF",mediumaquamarine:"#66CDAA",mediumblue:"#0000CD",mediumorchid:"#BA55D3",mediumpurple:"#9370DB",mediumseagreen:"#3CB371",mediumslateblue:"#7B68EE",mediumspringgreen:"#00FA9A",mediumturquoise:"#48D1CC",mediumvioletred:"#C71585",midnightblue:"#191970",mintcream:"#F5FFFA",mistyrose:"#FFE4E1",moccasin:"#FFE4B5",navajowhite:"#FFDEAD",oldlace:"#FDF5E6",olivedrab:"#6B8E23",orange:"#FFA500",orangered:"#FF4500",orchid:"#DA70D6",palegoldenrod:"#EEE8AA",palegreen:"#98FB98",paleturquoise:"#AFEEEE",palevioletred:"#DB7093",papayawhip:"#FFEFD5",peachpuff:"#FFDAB9",peru:"#CD853F",pink:"#FFC0CB",plum:"#DDA0DD",powderblue:"#B0E0E6",rosybrown:"#BC8F8F",royalblue:"#4169E1",saddlebrown:"#8B4513",salmon:"#FA8072",sandybrown:"#F4A460",seagreen:"#2E8B57",seashell:"#FFF5EE",sienna:"#A0522D",skyblue:"#87CEEB",slateblue:"#6A5ACD",slategray:"#708090",slategrey:"#708090",snow:"#FFFAFA",springgreen:"#00FF7F",steelblue:"#4682B4",tan:"#D2B48C",thistle:"#D8BFD8",tomato:"#FF6347",turquoise:"#40E0D0",violet:"#EE82EE",wheat:"#F5DEB3",whitesmoke:"#F5F5F5",yellowgreen:"#9ACD32"},E={},G={style:"normal",variant:"normal",weight:"normal",size:10,family:"sans-serif"},H={},L={butt:"flat",round:"round"},O=N.prototype;O.clearRect=function(){this.textMeasureEl_&&(this.textMeasureEl_.removeNode(!0),this.textMeasureEl_=null),this.element_.innerHTML=""},O.beginPath=function(){this.currentPath_=[]},O.moveTo=function(a,b){var c=S(this,a,b);this.currentPath_.push({type:"moveTo",x:c.x,y:c.y}),this.currentX_=c.x,this.currentY_=c.y},O.lineTo=function(a,b){var c=S(this,a,b);this.currentPath_.push({type:"lineTo",x:c.x,y:c.y}),this.currentX_=c.x,this.currentY_=c.y},O.bezierCurveTo=function(a,b,c,d,e,f){var g=S(this,e,f),h=S(this,a,b),i=S(this,c,d);P(this,h,i,g)},O.quadraticCurveTo=function(a,b,c,d){var e=S(this,a,b),f=S(this,c,d),g={x:this.currentX_+2/3*(e.x-this.currentX_),y:this.currentY_+2/3*(e.y-this.currentY_)},h={x:g.x+(f.x-this.currentX_)/3,y:g.y+(f.y-this.currentY_)/3};P(this,g,h,f)},O.arc=function(a,b,f,i,j,k){f*=g;var l=k?"at":"wa",m=a+d(i)*f-h,n=b+c(i)*f-h,o=a+d(j)*f-h,p=b+c(j)*f-h;e(m-o)<1e-7&&!k&&(m+=.125),e(n-p)<1e-7&&k&&(n-=.125);var q=S(this,a,b),r=S(this,m,n),s=S(this,o,p);this.currentPath_.push({type:l,x:q.x,y:q.y,radius:f,xStart:r.x,yStart:r.y,xEnd:s.x,yEnd:s.y})},O.rect=function(a,b,c,d){this.moveTo(a,b),this.lineTo(a+c,b),this.lineTo(a+c,b+d),this.lineTo(a,b+d),this.closePath()},O.strokeRect=function(a,b,c,d){var e=this.currentPath_;this.beginPath(),this.moveTo(a,b),this.lineTo(a+c,b),this.lineTo(a+c,b+d),this.lineTo(a,b+d),this.closePath(),this.stroke(),this.currentPath_=e},O.fillRect=function(a,b,c,d){var e=this.currentPath_;this.beginPath(),this.moveTo(a,b),this.lineTo(a+c,b),this.lineTo(a+c,b+d),this.lineTo(a,b+d),this.closePath(),this.fill(),this.currentPath_=e},O.createLinearGradient=function(a,b,c,d){var e=new V("gradient");return e.x0_=a,e.y0_=b,e.x1_=c,e.y1_=d,e},O.createRadialGradient=function(a,b,c,d,e,f){var g=new V("gradientradial");return g.x0_=a,g.y0_=b,g.r0_=c,g.x1_=d,g.y1_=e,g.r1_=f,g},O.drawImage=function(c,d){var e,f,h,i,j,k,l,m,n=c.runtimeStyle.width,o=c.runtimeStyle.height;c.runtimeStyle.width="auto",c.runtimeStyle.height="auto";var p=c.width,q=c.height;c.runtimeStyle.width=n,c.runtimeStyle.height=o;if(arguments.length==3)e=arguments[1],f=arguments[2],j=k=0,l=h=p,m=i=q;else if(arguments.length==5)e=arguments[1],f=arguments[2],h=arguments[3],i=arguments[4],j=k=0,l=p,m=q;else{if(arguments.length!=9)throw Error("Invalid number of arguments");j=arguments[1],k=arguments[2],l=arguments[3],m=arguments[4],e=arguments[5],f=arguments[6],h=arguments[7],i=arguments[8]}var r=S(this,e,f),s=l/2,t=m/2,u=[],v=10,w=10;u.push(" <g_vml_:group",' coordsize="',g*v,",",g*w,'"',' coordorigin="0,0"',' style="width:',v,"px;height:",w,"px;position:absolute;");if(this.m_[0][0]!=1||this.m_[0][1]||this.m_[1][1]!=1||this.m_[1][0]){var x=[];x.push("M11=",this.m_[0][0],",","M12=",this.m_[1][0],",","M21=",this.m_[0][1],",","M22=",this.m_[1][1],",","Dx=",b(r.x/g),",","Dy=",b(r.y/g),"");var y=r,z=S(this,e+h,f),A=S(this,e,f+i),B=S(this,e+h,f+i);y.x=a.max(y.x,z.x,A.x,B.x),y.y=a.max(y.y,z.y,A.y,B.y),u.push("padding:0 ",b(y.x/g),"px ",b(y.y/g),"px 0;filter:progid:DXImageTransform.Microsoft.Matrix(",x.join(""),", sizingmethod='clip');")}else u.push("top:",b(r.y/g),"px;left:",b(r.x/g),"px;");u.push(' ">','<g_vml_:image src="',c.src,'"',' style="width:',g*h,"px;"," height:",g*i,'px"',' cropleft="',j/p,'"',' croptop="',k/q,'"',' cropright="',(p-j-l)/p,'"',' cropbottom="',(q-k-m)/q,'"'," />","</g_vml_:group>"),this.element_.insertAdjacentHTML("BeforeEnd",u.join(""))},O.stroke=function(a){var c=[],d=!1,e=10,f=10;c.push("<g_vml_:shape",' filled="',!!a,'"',' style="position:absolute;width:',e,"px;height:",f,'px;"',' coordorigin="0,0"',' coordsize="',g*e,",",g*f,'"',' stroked="',!a,'"',' path="');var h=!1,i={x:null,y:null},j={x:null,y:null};for(var k=0;k<this.currentPath_.length;k++){var l=this.currentPath_[k],m;switch(l.type){case"moveTo":m=l,c.push(" m ",b(l.x),",",b(l.y));break;case"lineTo":c.push(" l ",b(l.x),",",b(l.y));break;case"close":c.push(" x "),l=null;break;case"bezierCurveTo":c.push(" c ",b(l.cp1x),",",b(l.cp1y),",",b(l.cp2x),",",b(l.cp2y),",",b(l.x),",",b(l.y));break;case"at":case"wa":c.push(" ",l.type," ",b(l.x-this.arcScaleX_*l.radius),",",b(l.y-this.arcScaleY_*l.radius)," ",b(l.x+this.arcScaleX_*l.radius),",",b(l.y+this.arcScaleY_*l.radius)," ",b(l.xStart),",",b(l.yStart)," ",b(l.xEnd),",",b(l.yEnd))}if(l){if(i.x==null||l.x<i.x)i.x=l.x;if(j.x==null||l.x>j.x)j.x=l.x;if(i.y==null||l.y<i.y)i.y=l.y;if(j.y==null||l.y>j.y)j.y=l.y}}c.push(' ">'),a?R(this,c,i,j):Q(this,c),c.push("</g_vml_:shape>"),this.element_.insertAdjacentHTML("beforeEnd",c.join(""))},O.fill=function(){this.stroke(!0)},O.closePath=function(){this.currentPath_.push({type:"close"})},O.save=function(){var a={};x(this,a),this.aStack_.push(a),this.mStack_.push(this.m_),this.m_=w(v(),this.m_)},O.restore=function(){this.aStack_.length&&(x(this.aStack_.pop(),this),this.m_=this.mStack_.pop())},O.translate=function(a,b){var c=[[1,0,0],[0,1,0],[a,b,1]];U(this,w(c,this.m_),!1)},O.rotate=function(a){var b=d(a),e=c(a),f=[[b,e,0],[-e,b,0],[0,0,1]];U(this,w(f,this.m_),!1)},O.scale=function(a,b){this.arcScaleX_*=a,this.arcScaleY_*=b;var c=[[a,0,0],[0,b,0],[0,0,1]];U(this,w(c,this.m_),!0)},O.transform=function(a,b,c,d,e,f){var g=[[a,b,0],[c,d,0],[e,f,1]];U(this,w(g,this.m_),!0)},O.setTransform=function(a,b,c,d,e,f){var g=[[a,b,0],[c,d,0],[e,f,1]];U(this,g,!0)},O.drawText_=function(a,c,d,e,f){var h=this.m_,i=1e3,j=0,k=i,l={x:0,y:0},n=[],o=J(I(this.font),this.element_),p=K(o),q=this.element_.currentStyle,r=this.textAlign.toLowerCase();switch(r){case"left":case"center":case"right":break;case"end":r=q.direction=="ltr"?"right":"left";break;case"start":r=q.direction=="rtl"?"right":"left";break;default:r="left"}switch(this.textBaseline){case"hanging":case"top":l.y=o.size/1.75;break;case"middle":break;default:case null:case"alphabetic":case"ideographic":case"bottom":l.y=-o.size/2.25}switch(r){case"right":j=i,k=.05;break;case"center":j=k=i/2}var s=S(this,c+l.x,d+l.y);n.push('<g_vml_:line from="',-j,' 0" to="',k,' 0.05" ',' coordsize="100 100" coordorigin="0 0"',' filled="',!f,'" stroked="',!!f,'" style="position:absolute;width:1px;height:1px;">'),f?Q(this,n):R(this,n,{x:-j,y:0},{x:k,y:o.size});var t=h[0][0].toFixed(3)+","+h[1][0].toFixed(3)+","+h[0][1].toFixed(3)+","+h[1][1].toFixed(3)+",0,0",u=b(s.x/g)+","+b(s.y/g);n.push('<g_vml_:skew on="t" matrix="',t,'" ',' offset="',u,'" origin="',j,' 0" />','<g_vml_:path textpathok="true" />','<g_vml_:textpath on="true" string="',m(a),'" style="v-text-align:',r,";font:",m(p),'" /></g_vml_:line>'),this.element_.insertAdjacentHTML("beforeEnd",n.join(""))},O.fillText=function(a,b,c,d){this.drawText_(a,b,c,d,!1)},O.strokeText=function(a,b,c,d){this.drawText_(a,b,c,d,!0)},O.measureText=function(a){if(!this.textMeasureEl_){var b='<span style="position:absolute;top:-20000px;left:0;padding:0;margin:0;border:none;white-space:pre;"></span>';this.element_.insertAdjacentHTML("beforeEnd",b),this.textMeasureEl_=this.element_.lastChild}var c=this.element_.ownerDocument;return this.textMeasureEl_.innerHTML="",this.textMeasureEl_.style.font=this.font,this.textMeasureEl_.appendChild(c.createTextNode(a)),{width:this.textMeasureEl_.offsetWidth}},O.clip=function(){},O.arcTo=function(){},O.createPattern=function(a,b){return new W(a,b)},V.prototype.addColorStop=function(a,b){b=F(b),this.colors_.push({offset:a,color:b.color,alpha:b.alpha})};var $=Z.prototype=new Error;$.INDEX_SIZE_ERR=1,$.DOMSTRING_SIZE_ERR=2,$.HIERARCHY_REQUEST_ERR=3,$.WRONG_DOCUMENT_ERR=4,$.INVALID_CHARACTER_ERR=5,$.NO_DATA_ALLOWED_ERR=6,$.NO_MODIFICATION_ALLOWED_ERR=7,$.NOT_FOUND_ERR=8,$.NOT_SUPPORTED_ERR=9,$.INUSE_ATTRIBUTE_ERR=10,$.INVALID_STATE_ERR=11,$.SYNTAX_ERR=12,$.INVALID_MODIFICATION_ERR=13,$.NAMESPACE_ERR=14,$.INVALID_ACCESS_ERR=15,$.VALIDATION_ERR=16,$.TYPE_MISMATCH_ERR=17,G_vmlCanvasManager=p,CanvasRenderingContext2D=N,CanvasGradient=V,CanvasPattern=W,DOMException=Z}(),function(){function c(b){var c,d,e,f,g,h;e=b.length,d=0,c="";while(d<e){f=b.charCodeAt(d++)&255;if(d==e){c+=a.charAt(f>>2),c+=a.charAt((f&3)<<4),c+="==";break}g=b.charCodeAt(d++);if(d==e){c+=a.charAt(f>>2),c+=a.charAt((f&3)<<4|(g&240)>>4),c+=a.charAt((g&15)<<2),c+="=";break}h=b.charCodeAt(d++),c+=a.charAt(f>>2),c+=a.charAt((f&3)<<4|(g&240)>>4),c+=a.charAt((g&15)<<2|(h&192)>>6),c+=a.charAt(h&63)}return c}function d(a){var c,d,e,f,g,h,i;h=a.length,g=0,i="";while(g<h){do c=b[a.charCodeAt(g++)&255];while(g<h&&c==-1);if(c==-1)break;do d=b[a.charCodeAt(g++)&255];while(g<h&&d==-1);if(d==-1)break;i+=String.fromCharCode(c<<2|(d&48)>>4);do{e=a.charCodeAt(g++)&255;if(e==61)return i;e=b[e]}while(g<h&&e==-1);if(e==-1)break;i+=String.fromCharCode((d&15)<<4|(e&60)>>2);do{f=a.charCodeAt(g++)&255;if(f==61)return i;f=b[f]}while(g<h&&f==-1);if(f==-1)break;i+=String.fromCharCode((e&3)<<6|f)}return i}var a="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",b=[-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,62,-1,-1,-1,63,52,53,54,55,56,57,58,59,60,61,-1,-1,-1,-1,-1,-1,-1,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,-1,-1,-1,-1,-1,-1,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,-1,-1,-1,-1,-1];window.btoa||(window.btoa=c),window.atob||(window.atob=d)}();var CanvasText={letters:{"\n":{width:-1,points:[]}," ":{width:10,points:[]},"!":{width:10,points:[[5,21],[5,7],null,[5,2],[4,1],[5,0],[6,1],[5,2]]},'"':{width:16,points:[[4,21],[4,14],null,[12,21],[12,14]]},"#":{width:21,points:[[11,25],[4,-7],null,[17,25],[10,-7],null,[4,12],[18,12],null,[3,6],[17,6]]},$:{width:20,points:[[8,25],[8,-4],null,[12,25],[12,-4],null,[17,18],[15,20],[12,21],[8,21],[5,20],[3,18],[3,16],[4,14],[5,13],[7,12],[13,10],[15,9],[16,8],[17,6],[17,3],[15,1],[12,0],[8,0],[5,1],[3,3]]},"%":{width:24,points:[[21,21],[3,0],null,[8,21],[10,19],[10,17],[9,15],[7,14],[5,14],[3,16],[3,18],[4,20],[6,21],[8,21],null,[17,7],[15,6],[14,4],[14,2],[16,0],[18,0],[20,1],[21,3],[21,5],[19,7],[17,7]]},"&":{width:26,points:[[23,12],[23,13],[22,14],[21,14],[20,13],[19,11],[17,6],[15,3],[13,1],[11,0],[7,0],[5,1],[4,2],[3,4],[3,6],[4,8],[5,9],[12,13],[13,14],[14,16],[14,18],[13,20],[11,21],[9,20],[8,18],[8,16],[9,13],[11,10],[16,3],[18,1],[20,0],[22,0],[23,1],[23,2]]},"'":{width:10,points:[[5,19],[4,20],[5,21],[6,20],[6,18],[5,16],[4,15]]},"(":{width:14,points:[[11,25],[9,23],[7,20],[5,16],[4,11],[4,7],[5,2],[7,-2],[9,-5],[11,-7]]},")":{width:14,points:[[3,25],[5,23],[7,20],[9,16],[10,11],[10,7],[9,2],[7,-2],[5,-5],[3,-7]]},"*":{width:16,points:[[8,21],[8,9],null,[3,18],[13,12],null,[13,18],[3,12]]},"+":{width:26,points:[[13,18],[13,0],null,[4,9],[22,9]]},",":{width:10,points:[[6,1],[5,0],[4,1],[5,2],[6,1],[6,-1],[5,-3],[4,-4]]},"-":{width:26,points:[[4,9],[22,9]]},".":{width:10,points:[[5,2],[4,1],[5,0],[6,1],[5,2]]},"/":{width:22,points:[[20,25],[2,-7]]},0:{width:20,points:[[9,21],[6,20],[4,17],[3,12],[3,9],[4,4],[6,1],[9,0],[11,0],[14,1],[16,4],[17,9],[17,12],[16,17],[14,20],[11,21],[9,21]]},1:{width:20,points:[[6,17],[8,18],[11,21],[11,0]]},2:{width:20,points:[[4,16],[4,17],[5,19],[6,20],[8,21],[12,21],[14,20],[15,19],[16,17],[16,15],[15,13],[13,10],[3,0],[17,0]]},3:{width:20,points:[[5,21],[16,21],[10,13],[13,13],[15,12],[16,11],[17,8],[17,6],[16,3],[14,1],[11,0],[8,0],[5,1],[4,2],[3,4]]},4:{width:20,points:[[13,21],[3,7],[18,7],null,[13,21],[13,0]]},5:{width:20,points:[[15,21],[5,21],[4,12],[5,13],[8,14],[11,14],[14,13],[16,11],[17,8],[17,6],[16,3],[14,1],[11,0],[8,0],[5,1],[4,2],[3,4]]},6:{width:20,points:[[16,18],[15,20],[12,21],[10,21],[7,20],[5,17],[4,12],[4,7],[5,3],[7,1],[10,0],[11,0],[14,1],[16,3],[17,6],[17,7],[16,10],[14,12],[11,13],[10,13],[7,12],[5,10],[4,7]]},7:{width:20,points:[[17,21],[7,0],null,[3,21],[17,21]]},8:{width:20,points:[[8,21],[5,20],[4,18],[4,16],[5,14],[7,13],[11,12],[14,11],[16,9],[17,7],[17,4],[16,2],[15,1],[12,0],[8,0],[5,1],[4,2],[3,4],[3,7],[4,9],[6,11],[9,12],[13,13],[15,14],[16,16],[16,18],[15,20],[12,21],[8,21]]},9:{width:20,points:[[16,14],[15,11],[13,9],[10,8],[9,8],[6,9],[4,11],[3,14],[3,15],[4,18],[6,20],[9,21],[10,21],[13,20],[15,18],[16,14],[16,9],[15,4],[13,1],[10,0],[8,0],[5,1],[4,3]]},":":{width:10,points:[[5,14],[4,13],[5,12],[6,13],[5,14],null,[5,2],[4,1],[5,0],[6,1],[5,2]]},";":{width:10,points:[[5,14],[4,13],[5,12],[6,13],[5,14],null,[6,1],[5,0],[4,1],[5,2],[6,1],[6,-1],[5,-3],[4,-4]]},"<":{width:24,points:[[20,18],[4,9],[20,0]]},"=":{width:26,points:[[4,12],[22,12],null,[4,6],[22,6]]},">":{width:24,points:[[4,18],[20,9],[4,0]]},"?":{width:18,points:[[3,16],[3,17],[4,19],[5,20],[7,21],[11,21],[13,20],[14,19],[15,17],[15,15],[14,13],[13,12],[9,10],[9,7],null,[9,2],[8,1],[9,0],[10,1],[9,2]]},"@":{width:27,points:[[18,13],[17,15],[15,16],[12,16],[10,15],[9,14],[8,11],[8,8],[9,6],[11,5],[14,5],[16,6],[17,8],null,[12,16],[10,14],[9,11],[9,8],[10,6],[11,5],null,[18,16],[17,8],[17,6],[19,5],[21,5],[23,7],[24,10],[24,12],[23,15],[22,17],[20,19],[18,20],[15,21],[12,21],[9,20],[7,19],[5,17],[4,15],[3,12],[3,9],[4,6],[5,4],[7,2],[9,1],[12,0],[15,0],[18,1],[20,2],[21,3],null,[19,16],[18,8],[18,6],[19,5]]},A:{width:18,points:[[9,21],[1,0],null,[9,21],[17,0],null,[4,7],[14,7]]},B:{width:21,points:[[4,21],[4,0],null,[4,21],[13,21],[16,20],[17,19],[18,17],[18,15],[17,13],[16,12],[13,11],null,[4,11],[13,11],[16,10],[17,9],[18,7],[18,4],[17,2],[16,1],[13,0],[4,0]]},C:{width:21,points:[[18,16],[17,18],[15,20],[13,21],[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5]]},D:{width:21,points:[[4,21],[4,0],null,[4,21],[11,21],[14,20],[16,18],[17,16],[18,13],[18,8],[17,5],[16,3],[14,1],[11,0],[4,0]]},E:{width:19,points:[[4,21],[4,0],null,[4,21],[17,21],null,[4,11],[12,11],null,[4,0],[17,0]]},F:{width:18,points:[[4,21],[4,0],null,[4,21],[17,21],null,[4,11],[12,11]]},G:{width:21,points:[[18,16],[17,18],[15,20],[13,21],[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5],[18,8],null,[13,8],[18,8]]},H:{width:22,points:[[4,21],[4,0],null,[18,21],[18,0],null,[4,11],[18,11]]},I:{width:8,points:[[4,21],[4,0]]},J:{width:16,points:[[12,21],[12,5],[11,2],[10,1],[8,0],[6,0],[4,1],[3,2],[2,5],[2,7]]},K:{width:21,points:[[4,21],[4,0],null,[18,21],[4,7],null,[9,12],[18,0]]},L:{width:17,points:[[4,21],[4,0],null,[4,0],[16,0]]},M:{width:24,points:[[4,21],[4,0],null,[4,21],[12,0],null,[20,21],[12,0],null,[20,21],[20,0]]},N:{width:22,points:[[4,21],[4,0],null,[4,21],[18,0],null,[18,21],[18,0]]},O:{width:22,points:[[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5],[19,8],[19,13],[18,16],[17,18],[15,20],[13,21],[9,21]]},P:{width:21,points:[[4,21],[4,0],null,[4,21],[13,21],[16,20],[17,19],[18,17],[18,14],[17,12],[16,11],[13,10],[4,10]]},Q:{width:22,points:[[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5],[19,8],[19,13],[18,16],[17,18],[15,20],[13,21],[9,21],null,[12,4],[18,-2]]},R:{width:21,points:[[4,21],[4,0],null,[4,21],[13,21],[16,20],[17,19],[18,17],[18,15],[17,13],[16,12],[13,11],[4,11],null,[11,11],[18,0]]},S:{width:20,points:[[17,18],[15,20],[12,21],[8,21],[5,20],[3,18],[3,16],[4,14],[5,13],[7,12],[13,10],[15,9],[16,8],[17,6],[17,3],[15,1],[12,0],[8,0],[5,1],[3,3]]},T:{width:16,points:[[8,21],[8,0],null,[1,21],[15,21]]},U:{width:22,points:[[4,21],[4,6],[5,3],[7,1],[10,0],[12,0],[15,1],[17,3],[18,6],[18,21]]},V:{width:18,points:[[1,21],[9,0],null,[17,21],[9,0]]},W:{width:24,points:[[2,21],[7,0],null,[12,21],[7,0],null,[12,21],[17,0],null,[22,21],[17,0]]},X:{width:20,points:[[3,21],[17,0],null,[17,21],[3,0]]},Y:{width:18,points:[[1,21],[9,11],[9,0],null,[17,21],[9,11]]},Z:{width:20,points:[[17,21],[3,0],null,[3,21],[17,21],null,[3,0],[17,0]]},"[":{width:14,points:[[4,25],[4,-7],null,[5,25],[5,-7],null,[4,25],[11,25],null,[4,-7],[11,-7]]},"\\":{width:14,points:[[0,21],[14,-3]]},"]":{width:14,points:[[9,25],[9,-7],null,[10,25],[10,-7],null,[3,25],[10,25],null,[3,-7],[10,-7]]},"^":{width:14,points:[[3,10],[8,18],[13,10]]},_:{width:16,points:[[0,-2],[16,-2]]},"`":{width:10,points:[[6,21],[5,20],[4,18],[4,16],[5,15],[6,16],[5,17]]},a:{width:19,points:[[15,14],[15,0],null,[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]]},b:{width:19,points:[[4,21],[4,0],null,[4,11],[6,13],[8,14],[11,14],[13,13],[15,11],[16,8],[16,6],[15,3],[13,1],[11,0],[8,0],[6,1],[4,3]]},c:{width:18,points:[[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]]},d:{width:19,points:[[15,21],[15,0],null,[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]]},e:{width:18,points:[[3,8],[15,8],[15,10],[14,12],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]]},f:{width:12,points:[[10,21],[8,21],[6,20],[5,17],[5,0],null,[2,14],[9,14]]},g:{width:19,points:[[15,14],[15,-2],[14,-5],[13,-6],[11,-7],[8,-7],[6,-6],null,[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]]},h:{width:19,points:[[4,21],[4,0],null,[4,10],[7,13],[9,14],[12,14],[14,13],[15,10],[15,0]]},i:{width:8,points:[[3,21],[4,20],[5,21],[4,22],[3,21],null,[4,14],[4,0]]},j:{width:10,points:[[5,21],[6,20],[7,21],[6,22],[5,21],null,[6,14],[6,-3],[5,-6],[3,-7],[1,-7]]},k:{width:17,points:[[4,21],[4,0],null,[14,14],[4,4],null,[8,8],[15,0]]},l:{width:8,points:[[4,21],[4,0]]},m:{width:30,points:[[4,14],[4,0],null,[4,10],[7,13],[9,14],[12,14],[14,13],[15,10],[15,0],null,[15,10],[18,13],[20,14],[23,14],[25,13],[26,10],[26,0]]},n:{width:19,points:[[4,14],[4,0],null,[4,10],[7,13],[9,14],[12,14],[14,13],[15,10],[15,0]]},o:{width:19,points:[[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3],[16,6],[16,8],[15,11],[13,13],[11,14],[8,14]]},p:{width:19,points:[[4,14],[4,-7],null,[4,11],[6,13],[8,14],[11,14],[13,13],[15,11],[16,8],[16,6],[15,3],[13,1],[11,0],[8,0],[6,1],[4,3]]},q:{width:19,points:[[15,14],[15,-7],null,[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]]},r:{width:13,points:[[4,14],[4,0],null,[4,8],[5,11],[7,13],[9,14],[12,14]]},s:{width:17,points:[[14,11],[13,13],[10,14],[7,14],[4,13],[3,11],[4,9],[6,8],[11,7],[13,6],[14,4],[14,3],[13,1],[10,0],[7,0],[4,1],[3,3]]},t:{width:12,points:[[5,21],[5,4],[6,1],[8,0],[10,0],null,[2,14],[9,14]]},u:{width:19,points:[[4,14],[4,4],[5,1],[7,0],[10,0],[12,1],[15,4],null,[15,14],[15,0]]},v:{width:16,points:[[2,14],[8,0],null,[14,14],[8,0]]},w:{width:22,points:[[3,14],[7,0],null,[11,14],[7,0],null,[11,14],[15,0],null,[19,14],[15,0]]},x:{width:17,points:[[3,14],[14,0],null,[14,14],[3,0]]},y:{width:16,points:[[2,14],[8,0],null,[14,14],[8,0],[6,-4],[4,-6],[2,-7],[1,-7]]},z:{width:17,points:[[14,14],[3,0],null,[3,14],[14,14],null,[3,0],[14,0]]},"{":{width:14,points:[[9,25],[7,24],[6,23],[5,21],[5,19],[6,17],[7,16],[8,14],[8,12],[6,10],null,[7,24],[6,22],[6,20],[7,18],[8,17],[9,15],[9,13],[8,11],[4,9],[8,7],[9,5],[9,3],[8,1],[7,0],[6,-2],[6,-4],[7,-6],null,[6,8],[8,6],[8,4],[7,2],[6,1],[5,-1],[5,-3],[6,-5],[7,-6],[9,-7]]},"|":{width:8,points:[[4,25],[4,-7]]},"}":{width:14,points:[[5,25],[7,24],[8,23],[9,21],[9,19],[8,17],[7,16],[6,14],[6,12],[8,10],null,[7,24],[8,22],[8,20],[7,18],[6,17],[5,15],[5,13],[6,11],[10,9],[6,7],[5,5],[5,3],[6,1],[7,0],[8,-2],[8,-4],[7,-6],null,[8,8],[6,6],[6,4],[7,2],[8,1],[9,-1],[9,-3],[8,-5],[7,-6],[5,-7]]},"~":{width:24,points:[[3,6],[3,8],[4,11],[6,12],[8,12],[10,11],[14,8],[16,7],[18,7],[20,8],[21,10],null,[3,8],[4,10],[6,11],[8,11],[10,10],[14,7],[16,6],[18,6],[20,7],[21,10],[21,12]]},"�":{diacritic:"`",letter:"a"},"�":{diacritic:"�",letter:"a"},"�":{diacritic:"^",letter:"a"},"�":{diacritic:"�",letter:"a"},"�":{diacritic:"~",letter:"a"},"�":{diacritic:"`",letter:"e"},"�":{diacritic:"�",letter:"e"},"�":{diacritic:"^",letter:"e"},"�":{diacritic:"�",letter:"e"},"�":{diacritic:"`",letter:"i"},"�":{diacritic:"�",letter:"i"},"�":{diacritic:"^",letter:"i"},"�":{diacritic:"�",letter:"i"},"�":{diacritic:"`",letter:"o"},"�":{diacritic:"�",letter:"o"},"�":{diacritic:"^",letter:"o"},"�":{diacritic:"�",letter:"o"},"�":{diacritic:"~",letter:"o"},"�":{diacritic:"`",letter:"u"},"�":{diacritic:"�",letter:"u"},"�":{diacritic:"^",letter:"u"},"�":{diacritic:"�",letter:"u"},"�":{diacritic:"�",letter:"y"},"�":{diacritic:"�",letter:"y"},"�":{diacritic:"�",letter:"c"},"�":{diacritic:"~",letter:"n"},"�":{diacritic:"`",letter:"A"},"�":{diacritic:"�",letter:"A"},"�":{diacritic:"^",letter:"A"},"�":{diacritic:"�",letter:"A"},"�":{diacritic:"~",letter:"A"},"�":{diacritic:"`",letter:"E"},"�":{diacritic:"�",letter:"E"},"�":{diacritic:"^",letter:"E"},"�":{diacritic:"�",letter:"E"},"�":{diacritic:"`",letter:"I"},"�":{diacritic:"�",letter:"I"},"�":{diacritic:"^",letter:"I"},"�":{diacritic:"�",letter:"I"},"�":{diacritic:"`",letter:"O"},"�":{diacritic:"�",letter:"O"},"�":{diacritic:"^",letter:"O"},"�":{diacritic:"�",letter:"O"},"�":{diacritic:"~",letter:"O"},"�":{diacritic:"`",letter:"U"},"�":{diacritic:"�",letter:"U"},"�":{diacritic:"^",letter:"U"},"�":{diacritic:"�",letter:"U"},"�":{diacritic:"�",letter:"Y"},"�":{diacritic:"�",letter:"C"},"�":{diacritic:"~",letter:"N"}},specialchars:{pi:{width:19,points:[[6,14],[6,0],null,[14,14],[14,0],null,[2,13],[6,16],[13,13],[17,16]]}},diacritics:{"�":{entity:"cedil",points:[[6,-4],[4,-6],[2,-7],[1,-7]]},"�":{entity:"acute",points:[[8,19],[13,22]]},"`":{entity:"grave",points:[[7,22],[12,19]]},"^":{entity:"circ",points:[[5.5,19],[9.5,23],[12.5,19]]},"�":{entity:"trema",points:[[5,21],[6,20],[7,21],[6,22],[5,21],null,[12,21],[13,20],[14,21],[13,22],[12,21]]},"~":{entity:"tilde",points:[[4,18],[7,22],[10,18],[13,22]]}},style:{size:8,font:null,color:"#000000",weight:1,textAlign:"left",textBaseline:"bottom",adjustAlign:!1,angle:0,tracking:1,boundingBoxColor:"#ff0000",originPointColor:"#000000"},debug:!1,_bufferLexemes:{},extend:function(a,b){for(var c in b){if(c in a)continue;a[c]=b[c]}return a},letter:function(a){return CanvasText.letters[a]},parseLexemes:function(a){if(CanvasText._bufferLexemes[a])return CanvasText._bufferLexemes[a];var b,c,d=a.match(/&[A-Za-z]{2,5};|\s|./g),e=[],f=[];for(b=0;b<d.length;b++){c=d[b];if(c.length==1)f.push(c);else{var g=c.substring(1,c.length-1);CanvasText.specialchars[g]?f.push(g):f=f.concat(c.toArray())}}for(b=0;b<f.length;b++)c=f[b],(c=CanvasText.letters[c]||CanvasText.specialchars[c])&&e.push(c);for(b=0;b<e.length;b++)(e===null||typeof e=="undefined")&&delete e[b];return CanvasText._bufferLexemes[a]=e},ascent:function(a){return a=a||CanvasText.style,a.size||CanvasText.style.size},descent:function(a){return a=a||CanvasText.style,7*(a.size||CanvasText.style.size)/25},measure:function(a,b){if(!a)return;b=b||CanvasText.style;var d,e,f=CanvasText.parseLexemes(a),g=0;for(d=f.length-1;d>-1;--d)c=f[d],e=c.diacritic?CanvasText.letter(c.letter).width:c.width,g+=e*(b.tracking||CanvasText.style.tracking)*(b.size||CanvasText.style.size)/25;return g},getDimensions:function(a,b){b=b||CanvasText.style;var c=CanvasText.measure(a,b),d=b.size||CanvasText.style.size,e=b.angle||CanvasText.style.angle;return b.angle==0?{width:c,height:d}:{width:Math.abs(Math.cos(e)*c)+Math.abs(Math.sin(e)*d),height:Math.abs(Math.sin(e)*c)+Math.abs(Math.cos(e)*d)}},drawPoints:function(a,b,c,d,e,f){var g,h,i=!0,j=0;f=f||{x:0,y:0},a.beginPath();for(g=0;g<b.length;g++){h=b[g];if(!h){i=!0;continue}i?(a.moveTo(c+h[0]*e+f.x,d-h[1]*e+f.y),i=!1):a.lineTo(c+h[0]*e+f.x,d-h[1]*e+f.y)}a.stroke(),a.closePath()},draw:function(a,b,c,d){if(!a)return;CanvasText.extend(d,CanvasText.style);var e,f,g=0,h=d.size/25,i=0,j=0,k=CanvasText.parseLexemes(a),l={x:0,y:0},m=CanvasText.measure(a,d),n;d.adjustAlign&&(n=CanvasText.getBestAlign(d.angle,d),CanvasText.extend(d,n));switch(d.textAlign){case"left":break;case"center":l.x=-m/2;break;case"right":l.x=-m}switch(d.textBaseline){case"bottom":break;case"middle":l.y=d.size/2;break;case"top":l.y=d.size}this.save(),this.translate(b,c),this.rotate(d.angle),this.lineCap="round",this.lineWidth=2*h*(d.weight||CanvasText.style.weight),this.strokeStyle=d.color||CanvasText.style.color;for(e=0;e<k.length;e++){f=k[e];if(f.width==-1){i=0,j=d.size*1.4;continue}var o=f.points,p=f.width;if(f.diacritic){var q=CanvasText.diacritics[f.diacritic],r=CanvasText.letter(f.letter);CanvasText.drawPoints(this,q.points,i,j-(f.letter.toUpperCase()==f.letter?3:0),h,l),o=r.points,p=r.width}CanvasText.drawPoints(this,o,i,j,h,l),CanvasText.debug&&(this.save(),this.lineJoin="miter",this.lineWidth=.5,this.strokeStyle=d.boundingBoxColor||CanvasText.style.boundingBoxColor,this.strokeRect(i+l.x,j+l.y,p*h,-d.size),this.fillStyle=d.originPointColor||CanvasText.style.originPointColor,this.beginPath(),this.arc(0,0,1.5,0,Math.PI*2,!0),this.fill(),this.closePath(),this.restore()),i+=p*h*(d.tracking||CanvasText.style.tracking)}return this.restore(),g}};CanvasText.proto=window.CanvasRenderingContext2D?window.CanvasRenderingContext2D.prototype:document.createElement("canvas").getContext("2d").__proto__,CanvasText.proto&&(CanvasText.proto.drawText=CanvasText.draw,CanvasText.proto.measure=CanvasText.measure,CanvasText.proto.getTextBounds=CanvasText.getDimensions,CanvasText.proto.fontAscent=CanvasText.ascent,CanvasText.proto.fontDescent=CanvasText.descent)
  /*!
  * bean.js - copyright Jacob Thornton 2011
  * https://github.com/fat/bean
  * MIT License
  * special thanks to:
  * dean edwards: http://dean.edwards.name/
  * dperini: https://github.com/dperini/nwevents
  * the entire mootools team: github.com/mootools/mootools-core
  */
  /*global module:true, define:true*/
  !function (name, context, definition) {
  if (typeof module !== 'undefined') module.exports = definition(name, context);
  else if (typeof define === 'function' && typeof define.amd === 'object') define(definition);
  else context[name] = definition(name, context);
  }('bean', this, function (name, context) {
  var win = window
  , old = context[name]
  , overOut = /over|out/
  , namespaceRegex = /[^\.]*(?=\..*)\.|.*/
  , nameRegex = /\..*/
  , addEvent = 'addEventListener'
  , attachEvent = 'attachEvent'
  , removeEvent = 'removeEventListener'
  , detachEvent = 'detachEvent'
  , doc = document || {}
  , root = doc.documentElement || {}
  , W3C_MODEL = root[addEvent]
  , eventSupport = W3C_MODEL ? addEvent : attachEvent
  , slice = Array.prototype.slice
  , mouseTypeRegex = /click|mouse|menu|drag|drop/i
  , touchTypeRegex = /^touch|^gesture/i
  , ONE = { one: 1 } // singleton for quick matching making add() do one()
 
  , nativeEvents = (function (hash, events, i) {
  for (i = 0; i < events.length; i++)
  hash[events[i]] = 1
  return hash
  })({}, (
  'click dblclick mouseup mousedown contextmenu ' + // mouse buttons
  'mousewheel DOMMouseScroll ' + // mouse wheel
  'mouseover mouseout mousemove selectstart selectend ' + // mouse movement
  'keydown keypress keyup ' + // keyboard
  'orientationchange ' + // mobile
  'focus blur change reset select submit ' + // form elements
  'load unload beforeunload resize move DOMContentLoaded readystatechange ' + // window
  'error abort scroll ' + // misc
  (W3C_MODEL ? // element.fireEvent('onXYZ'... is not forgiving if we try to fire an event
  // that doesn't actually exist, so make sure we only do these on newer browsers
  'show ' + // mouse buttons
  'input invalid ' + // form elements
  'touchstart touchmove touchend touchcancel ' + // touch
  'gesturestart gesturechange gestureend ' + // gesture
  'message readystatechange pageshow pagehide popstate ' + // window
  'hashchange offline online ' + // window
  'afterprint beforeprint ' + // printing
  'dragstart dragenter dragover dragleave drag drop dragend ' + // dnd
  'loadstart progress suspend emptied stalled loadmetadata ' + // media
  'loadeddata canplay canplaythrough playing waiting seeking ' + // media
  'seeked ended durationchange timeupdate play pause ratechange ' + // media
  'volumechange cuechange ' + // media
  'checking noupdate downloading cached updateready obsolete ' + // appcache
  '' : '')
  ).split(' ')
  )
 
  , customEvents = (function () {
  function isDescendant(parent, node) {
  while ((node = node.parentNode) !== null) {
  if (node === parent) return true
  }
  return false
  }
 
  function check(event) {
  var related = event.relatedTarget
  if (!related) return related === null
  return (related !== this && related.prefix !== 'xul' && !/document/.test(this.toString()) && !isDescendant(this, related))
  }
 
  return {
  mouseenter: { base: 'mouseover', condition: check }
  , mouseleave: { base: 'mouseout', condition: check }
  , mousewheel: { base: /Firefox/.test(navigator.userAgent) ? 'DOMMouseScroll' : 'mousewheel' }
  }
  })()
 
  , fixEvent = (function () {
  var commonProps = 'altKey attrChange attrName bubbles cancelable ctrlKey currentTarget detail eventPhase getModifierState isTrusted metaKey relatedNode relatedTarget shiftKey srcElement target timeStamp type view which'.split(' ')
  , mouseProps = commonProps.concat('button buttons clientX clientY dataTransfer fromElement offsetX offsetY pageX pageY screenX screenY toElement'.split(' '))
  , keyProps = commonProps.concat('char charCode key keyCode'.split(' '))
  , touchProps = commonProps.concat('touches targetTouches changedTouches scale rotation'.split(' '))
  , preventDefault = 'preventDefault'
  , createPreventDefault = function (event) {
  return function () {
  if (event[preventDefault])
  event[preventDefault]()
  else
  event.returnValue = false
  }
  }
  , stopPropagation = 'stopPropagation'
  , createStopPropagation = function (event) {
  return function () {
  if (event[stopPropagation])
  event[stopPropagation]()
  else
  event.cancelBubble = true
  }
  }
  , createStop = function (synEvent) {
  return function () {
  synEvent[preventDefault]()
  synEvent[stopPropagation]()
  synEvent.stopped = true
  }
  }
  , copyProps = function (event, result, props) {
  var i, p
  for (i = props.length; i--;) {
  p = props[i]
  if (!(p in result) && p in event) result[p] = event[p]
  }
  }
 
  return function (event, isNative) {
  var result = { originalEvent: event, isNative: isNative }
  if (!event)
  return result
 
  var props
  , type = event.type
  , target = event.target || event.srcElement
 
  result[preventDefault] = createPreventDefault(event)
  result[stopPropagation] = createStopPropagation(event)
  result.stop = createStop(result)
  result.target = target && target.nodeType === 3 ? target.parentNode : target
 
  if (isNative) { // we only need basic augmentation on custom events, the rest is too expensive
  if (type.indexOf('key') !== -1) {
  props = keyProps
  result.keyCode = event.which || event.keyCode
  } else if (mouseTypeRegex.test(type)) {
  props = mouseProps
  result.rightClick = event.which === 3 || event.button === 2
  result.pos = { x: 0, y: 0 }
  if (event.pageX || event.pageY) {
  result.clientX = event.pageX
  result.clientY = event.pageY
  } else if (event.clientX || event.clientY) {
  result.clientX = event.clientX + doc.body.scrollLeft + root.scrollLeft
  result.clientY = event.clientY + doc.body.scrollTop + root.scrollTop
  }
  if (overOut.test(type))
  result.relatedTarget = event.relatedTarget || event[(type === 'mouseover' ? 'from' : 'to') + 'Element']
  } else if (touchTypeRegex.test(type)) {
  props = touchProps
  }
  copyProps(event, result, props || commonProps)
  }
  return result
  }
  })()
 
  // if we're in old IE we can't do onpropertychange on doc or win so we use doc.documentElement for both
  , targetElement = function (element, isNative) {
  return !W3C_MODEL && !isNative && (element === doc || element === win) ? root : element
  }
 
  // we use one of these per listener, of any type
  , RegEntry = (function () {
  function entry(element, type, handler, original, namespaces) {
  this.element = element
  this.type = type
  this.handler = handler
  this.original = original
  this.namespaces = namespaces
  this.custom = customEvents[type]
  this.isNative = nativeEvents[type] && element[eventSupport]
  this.eventType = W3C_MODEL || this.isNative ? type : 'propertychange'
  this.customType = !W3C_MODEL && !this.isNative && type
  this.target = targetElement(element, this.isNative)
  this.eventSupport = this.target[eventSupport]
  }
 
  entry.prototype = {
  // given a list of namespaces, is our entry in any of them?
  inNamespaces: function (checkNamespaces) {
  var i, j
  if (!checkNamespaces)
  return true
  if (!this.namespaces)
  return false
  for (i = checkNamespaces.length; i--;) {
  for (j = this.namespaces.length; j--;) {
  if (checkNamespaces[i] === this.namespaces[j])
  return true
  }
  }
  return false
  }
 
  // match by element, original fn (opt), handler fn (opt)
  , matches: function (checkElement, checkOriginal, checkHandler) {
  return this.element === checkElement &&
  (!checkOriginal || this.original === checkOriginal) &&
  (!checkHandler || this.handler === checkHandler)
  }
  }
 
  return entry
  })()
 
  , registry = (function () {
  // our map stores arrays by event type, just because it's better than storing
  // everything in a single array. uses '$' as a prefix for the keys for safety
  var map = {}
 
  // generic functional search of our registry for matching listeners,
  // `fn` returns false to break out of the loop
  , forAll = function (element, type, original, handler, fn) {
  if (!type || type === '*') {
  // search the whole registry
  for (var t in map) {
  if (t.charAt(0) === '$')
  forAll(element, t.substr(1), original, handler, fn)
  }
  } else {
  var i = 0, l, list = map['$' + type], all = element === '*'
  if (!list)
  return
  for (l = list.length; i < l; i++) {
  if (all || list[i].matches(element, original, handler))
  if (!fn(list[i], list, i, type))
  return
  }
  }
  }
 
  , has = function (element, type, original) {
  // we're not using forAll here simply because it's a bit slower and this
  // needs to be fast
  var i, list = map['$' + type]
  if (list) {
  for (i = list.length; i--;) {
  if (list[i].matches(element, original, null))
  return true
  }
  }
  return false
  }
 
  , get = function (element, type, original) {
  var entries = []
  forAll(element, type, original, null, function (entry) { return entries.push(entry) })
  return entries
  }
 
  , put = function (entry) {
  (map['$' + entry.type] || (map['$' + entry.type] = [])).push(entry)
  return entry
  }
 
  , del = function (entry) {
  forAll(entry.element, entry.type, null, entry.handler, function (entry, list, i) {
  list.splice(i, 1)
  if (list.length === 0)
  delete map['$' + entry.type]
  return false
  })
  }
 
  // dump all entries, used for onunload
  , entries = function () {
  var t, entries = []
  for (t in map) {
  if (t.charAt(0) === '$')
  entries = entries.concat(map[t])
  }
  return entries
  }
 
  return { has: has, get: get, put: put, del: del, entries: entries }
  })()
 
  // add and remove listeners to DOM elements
  , listener = W3C_MODEL ? function (element, type, fn, add) {
  element[add ? addEvent : removeEvent](type, fn, false)
  } : function (element, type, fn, add, custom) {
  if (custom && add && element['_on' + custom] === null)
  element['_on' + custom] = 0
  element[add ? attachEvent : detachEvent]('on' + type, fn)
  }
 
  , nativeHandler = function (element, fn, args) {
  return function (event) {
  event = fixEvent(event || ((this.ownerDocument || this.document || this).parentWindow || win).event, true)
  return fn.apply(element, [event].concat(args))
  }
  }
 
  , customHandler = function (element, fn, type, condition, args, isNative) {
  return function (event) {
  if (condition ? condition.apply(this, arguments) : W3C_MODEL ? true : event && event.propertyName === '_on' + type || !event) {
  if (event)
  event = fixEvent(event || ((this.ownerDocument || this.document || this).parentWindow || win).event, isNative)
  fn.apply(element, event && (!args || args.length === 0) ? arguments : slice.call(arguments, event ? 0 : 1).concat(args))
  }
  }
  }
 
  , once = function (rm, element, type, fn, originalFn) {
  // wrap the handler in a handler that does a remove as well
  return function () {
  rm(element, type, originalFn)
  fn.apply(this, arguments)
  }
  }
 
  , removeListener = function (element, orgType, handler, namespaces) {
  var i, l, entry
  , type = (orgType && orgType.replace(nameRegex, ''))
  , handlers = registry.get(element, type, handler)
 
  for (i = 0, l = handlers.length; i < l; i++) {
  if (handlers[i].inNamespaces(namespaces)) {
  if ((entry = handlers[i]).eventSupport)
  listener(entry.target, entry.eventType, entry.handler, false, entry.type)
  // TODO: this is problematic, we have a registry.get() and registry.del() that
  // both do registry searches so we waste cycles doing this. Needs to be rolled into
  // a single registry.forAll(fn) that removes while finding, but the catch is that
  // we'll be splicing the arrays that we're iterating over. Needs extra tests to
  // make sure we don't screw it up. @rvagg
  registry.del(entry)
  }
  }
  }
 
  , addListener = function (element, orgType, fn, originalFn, args) {
  var entry
  , type = orgType.replace(nameRegex, '')
  , namespaces = orgType.replace(namespaceRegex, '').split('.')
 
  if (registry.has(element, type, fn))
  return element // no dupe
  if (type === 'unload')
  fn = once(removeListener, element, type, fn, originalFn) // self clean-up
  if (customEvents[type]) {
  if (customEvents[type].condition)
  fn = customHandler(element, fn, type, customEvents[type].condition, true)
  type = customEvents[type].base || type
  }
  entry = registry.put(new RegEntry(element, type, fn, originalFn, namespaces[0] && namespaces))
  entry.handler = entry.isNative ?
  nativeHandler(element, entry.handler, args) :
  customHandler(element, entry.handler, type, false, args, false)
  if (entry.eventSupport)
  listener(entry.target, entry.eventType, entry.handler, true, entry.customType)
  }
 
  , del = function (selector, fn, $) {
  return function (e) {
  var target, i, array = typeof selector === 'string' ? $(selector, this) : selector
  for (target = e.target; target && target !== this; target = target.parentNode) {
  for (i = array.length; i--;) {
  if (array[i] === target) {
  return fn.apply(target, arguments)
  }
  }
  }
  }
  }
 
  , remove = function (element, typeSpec, fn) {
  var k, m, type, namespaces, i
  , rm = removeListener
  , isString = typeSpec && typeof typeSpec === 'string'
 
  if (isString && typeSpec.indexOf(' ') > 0) {
  // remove(el, 't1 t2 t3', fn) or remove(el, 't1 t2 t3')
  typeSpec = typeSpec.split(' ')
  for (i = typeSpec.length; i--;)
  remove(element, typeSpec[i], fn)
  return element
  }
  type = isString && typeSpec.replace(nameRegex, '')
  if (type && customEvents[type])
  type = customEvents[type].type
  if (!typeSpec || isString) {
  // remove(el) or remove(el, t1.ns) or remove(el, .ns) or remove(el, .ns1.ns2.ns3)
  if (namespaces = isString && typeSpec.replace(namespaceRegex, ''))
  namespaces = namespaces.split('.')
  rm(element, type, fn, namespaces)
  } else if (typeof typeSpec === 'function') {
  // remove(el, fn)
  rm(element, null, typeSpec)
  } else {
  // remove(el, { t1: fn1, t2, fn2 })
  for (k in typeSpec) {
  if (typeSpec.hasOwnProperty(k))
  remove(element, k, typeSpec[k])
  }
  }
  return element
  }
 
  , add = function (element, events, fn, delfn, $) {
  var type, types, i, args
  , originalFn = fn
  , isDel = fn && typeof fn === 'string'
 
  if (events && !fn && typeof events === 'object') {
  for (type in events) {
  if (events.hasOwnProperty(type))
  add.apply(this, [ element, type, events[type] ])
  }
  } else {
  args = arguments.length > 3 ? slice.call(arguments, 3) : []
  types = (isDel ? fn : events).split(' ')
  isDel && (fn = del(events, (originalFn = delfn), $)) && (args = slice.call(args, 1))
  // special case for one()
  this === ONE && (fn = once(remove, element, events, fn, originalFn))
  for (i = types.length; i--;) addListener(element, types[i], fn, originalFn, args)
  }
  return element
  }
 
  , one = function () {
  return add.apply(ONE, arguments)
  }
 
  , fireListener = W3C_MODEL ? function (isNative, type, element) {
  var evt = doc.createEvent(isNative ? 'HTMLEvents' : 'UIEvents')
  evt[isNative ? 'initEvent' : 'initUIEvent'](type, true, true, win, 1)
  element.dispatchEvent(evt)
  } : function (isNative, type, element) {
  element = targetElement(element, isNative)
  // if not-native then we're using onpropertychange so we just increment a custom property
  isNative ? element.fireEvent('on' + type, doc.createEventObject()) : element['_on' + type]++
  }
 
  , fire = function (element, type, args) {
  var i, j, l, names, handlers
  , types = type.split(' ')
 
  for (i = types.length; i--;) {
  type = types[i].replace(nameRegex, '')
  if (names = types[i].replace(namespaceRegex, ''))
  names = names.split('.')
  if (!names && !args && element[eventSupport]) {
  fireListener(nativeEvents[type], type, element)
  } else {
  // non-native event, either because of a namespace, arguments or a non DOM element
  // iterate over all listeners and manually 'fire'
  handlers = registry.get(element, type)
  args = [false].concat(args)
  for (j = 0, l = handlers.length; j < l; j++) {
  if (handlers[j].inNamespaces(names))
  handlers[j].handler.apply(element, args)
  }
  }
  }
  return element
  }
 
  , clone = function (element, from, type) {
  var i = 0
  , handlers = registry.get(from, type)
  , l = handlers.length
 
  for (;i < l; i++)
  handlers[i].original && add(element, handlers[i].type, handlers[i].original)
  return element
  }
 
  , bean = {
  add: add
  , one: one
  , remove: remove
  , clone: clone
  , fire: fire
  , noConflict: function () {
  context[name] = old
  return this
  }
  }
 
  if (win[attachEvent]) {
  // for IE, clean up on unload to avoid leaks
  var cleanup = function () {
  var i, entries = registry.entries()
  for (i in entries) {
  if (entries[i].type && entries[i].type !== 'unload')
  remove(entries[i].element, entries[i].type)
  }
  win[detachEvent]('onunload', cleanup)
  win.CollectGarbage && win.CollectGarbage()
  }
  win[attachEvent]('onunload', cleanup)
  }
 
  return bean
  });
  // Underscore.js 1.1.7
  // (c) 2011 Jeremy Ashkenas, DocumentCloud Inc.
  // Underscore is freely distributable under the MIT license.
  // Portions of Underscore are inspired or borrowed from Prototype,
  // Oliver Steele's Functional, and John Resig's Micro-Templating.
  // For all details and documentation:
  // http://documentcloud.github.com/underscore
 
  (function() {
 
  // Baseline setup
  // --------------
 
  // Establish the root object, `window` in the browser, or `global` on the server.
  var root = this;
 
  // Save the previous value of the `_` variable.
  var previousUnderscore = root._;
 
  // Establish the object that gets returned to break out of a loop iteration.
  var breaker = {};
 
  // Save bytes in the minified (but not gzipped) version:
  var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype;
 
  // Create quick reference variables for speed access to core prototypes.
  var slice = ArrayProto.slice,
  unshift = ArrayProto.unshift,
  toString = ObjProto.toString,
  hasOwnProperty = ObjProto.hasOwnProperty;
 
  // All **ECMAScript 5** native function implementations that we hope to use
  // are declared here.
  var
  nativeForEach = ArrayProto.forEach,
  nativeMap = ArrayProto.map,
  nativeReduce = ArrayProto.reduce,
  nativeReduceRight = ArrayProto.reduceRight,
  nativeFilter = ArrayProto.filter,
  nativeEvery = ArrayProto.every,
  nativeSome = ArrayProto.some,
  nativeIndexOf = ArrayProto.indexOf,
  nativeLastIndexOf = ArrayProto.lastIndexOf,
  nativeIsArray = Array.isArray,
  nativeKeys = Object.keys,
  nativeBind = FuncProto.bind;
 
  // Create a safe reference to the Underscore object for use below.
  var _ = function(obj) { return new wrapper(obj); };
 
  // Export the Underscore object for **CommonJS**, with backwards-compatibility
  // for the old `require()` API. If we're not in CommonJS, add `_` to the
  // global object.
  if (typeof module !== 'undefined' && module.exports) {
  module.exports = _;
  _._ = _;
  } else {
  // Exported as a string, for Closure Compiler "advanced" mode.
  root['_'] = _;
  }
 
  // Current version.
  _.VERSION = '1.1.7';
 
  // Collection Functions
  // --------------------
 
  // The cornerstone, an `each` implementation, aka `forEach`.
  // Handles objects with the built-in `forEach`, arrays, and raw objects.
  // Delegates to **ECMAScript 5**'s native `forEach` if available.
  var each = _.each = _.forEach = function(obj, iterator, context) {
  if (obj == null) return;
  if (nativeForEach && obj.forEach === nativeForEach) {
  obj.forEach(iterator, context);
  } else if (obj.length === +obj.length) {
  for (var i = 0, l = obj.length; i < l; i++) {
  if (i in obj && iterator.call(context, obj[i], i, obj) === breaker) return;
  }
  } else {
  for (var key in obj) {
  if (hasOwnProperty.call(obj, key)) {
  if (iterator.call(context, obj[key], key, obj) === breaker) return;
  }
  }
  }
  };
 
  // Return the results of applying the iterator to each element.
  // Delegates to **ECMAScript 5**'s native `map` if available.
  _.map = function(obj, iterator, context) {
  var results = [];
  if (obj == null) return results;
  if (nativeMap && obj.map === nativeMap) return obj.map(iterator, context);
  each(obj, function(value, index, list) {
  results[results.length] = iterator.call(context, value, index, list);
  });
  return results;
  };
 
  // **Reduce** builds up a single result from a list of values, aka `inject`,
  // or `foldl`. Delegates to **ECMAScript 5**'s native `reduce` if available.
  _.reduce = _.foldl = _.inject = function(obj, iterator, memo, context) {
  var initial = memo !== void 0;
  if (obj == null) obj = [];
  if (nativeReduce && obj.reduce === nativeReduce) {
  if (context) iterator = _.bind(iterator, context);
  return initial ? obj.reduce(iterator, memo) : obj.reduce(iterator);
  }
  each(obj, function(value, index, list) {
  if (!initial) {
  memo = value;
  initial = true;
  } else {
  memo = iterator.call(context, memo, value, index, list);
  }
  });
  if (!initial) throw new TypeError("Reduce of empty array with no initial value");
  return memo;
  };
 
  // The right-associative version of reduce, also known as `foldr`.
  // Delegates to **ECMAScript 5**'s native `reduceRight` if available.
  _.reduceRight = _.foldr = function(obj, iterator, memo, context) {
  if (obj == null) obj = [];
  if (nativeReduceRight && obj.reduceRight === nativeReduceRight) {
  if (context) iterator = _.bind(iterator, context);
  return memo !== void 0 ? obj.reduceRight(iterator, memo) : obj.reduceRight(iterator);
  }
  var reversed = (_.isArray(obj) ? obj.slice() : _.toArray(obj)).reverse();
  return _.reduce(reversed, iterator, memo, context);
  };
 
  // Return the first value which passes a truth test. Aliased as `detect`.
  _.find = _.detect = function(obj, iterator, context) {
  var result;
  any(obj, function(value, index, list) {
  if (iterator.call(context, value, index, list)) {
  result = value;
  return true;
  }
  });
  return result;
  };
 
  // Return all the elements that pass a truth test.
  // Delegates to **ECMAScript 5**'s native `filter` if available.
  // Aliased as `select`.
  _.filter = _.select = function(obj, iterator, context) {
  var results = [];
  if (obj == null) return results;
  if (nativeFilter && obj.filter === nativeFilter) return obj.filter(iterator, context);
  each(obj, function(value, index, list) {
  if (iterator.call(context, value, index, list)) results[results.length] = value;
  });
  return results;
  };
 
  // Return all the elements for which a truth test fails.
  _.reject = function(obj, iterator, context) {
  var results = [];
  if (obj == null) return results;
  each(obj, function(value, index, list) {
  if (!iterator.call(context, value, index, list)) results[results.length] = value;
  });
  return results;
  };
 
  // Determine whether all of the elements match a truth test.
  // Delegates to **ECMAScript 5**'s native `every` if available.
  // Aliased as `all`.
  _.every = _.all = function(obj, iterator, context) {
  var result = true;
  if (obj == null) return result;
  if (nativeEvery && obj.every === nativeEvery) return obj.every(iterator, context);
  each(obj, function(value, index, list) {
  if (!(result = result && iterator.call(context, value, index, list))) return breaker;
  });
  return result;
  };
 
  // Determine if at least one element in the object matches a truth test.
  // Delegates to **ECMAScript 5**'s native `some` if available.
  // Aliased as `any`.
  var any = _.some = _.any = function(obj, iterator, context) {
  iterator = iterator || _.identity;
  var result = false;
  if (obj == null) return result;
  if (nativeSome && obj.some === nativeSome) return obj.some(iterator, context);
  each(obj, function(value, index, list) {
  if (result |= iterator.call(context, value, index, list)) return breaker;
  });
  return !!result;
  };
 
  // Determine if a given value is included in the array or object using `===`.
  // Aliased as `contains`.
  _.include = _.contains = function(obj, target) {
  var found = false;
  if (obj == null) return found;
  if (nativeIndexOf && obj.indexOf === nativeIndexOf) return obj.indexOf(target) != -1;
  any(obj, function(value) {
  if (found = value === target) return true;
  });
  return found;
  };
 
  // Invoke a method (with arguments) on every item in a collection.
  _.invoke = function(obj, method) {
  var args = slice.call(arguments, 2);
  return _.map(obj, function(value) {
  return (method.call ? method || value : value[method]).apply(value, args);
  });
  };
 
  // Convenience version of a common use case of `map`: fetching a property.
  _.pluck = function(obj, key) {
  return _.map(obj, function(value){ return value[key]; });
  };
 
  // Return the maximum element or (element-based computation).
  _.max = function(obj, iterator, context) {
  if (!iterator && _.isArray(obj)) return Math.max.apply(Math, obj);
  var result = {computed : -Infinity};
  each(obj, function(value, index, list) {
  var computed = iterator ? iterator.call(context, value, index, list) : value;
  computed >= result.computed && (result = {value : value, computed : computed});
  });
  return result.value;
  };
 
  // Return the minimum element (or element-based computation).
  _.min = function(obj, iterator, context) {
  if (!iterator && _.isArray(obj)) return Math.min.apply(Math, obj);
  var result = {computed : Infinity};
  each(obj, function(value, index, list) {
  var computed = iterator ? iterator.call(context, value, index, list) : value;
  computed < result.computed && (result = {value : value, computed : computed});
  });
  return result.value;
  };
 
  // Sort the object's values by a criterion produced by an iterator.
  _.sortBy = function(obj, iterator, context) {
  return _.pluck(_.map(obj, function(value, index, list) {
  return {
  value : value,
  criteria : iterator.call(context, value, index, list)
  };
  }).sort(function(left, right) {
  var a = left.criteria, b = right.criteria;
  return a < b ? -1 : a > b ? 1 : 0;
  }), 'value');
  };
 
  // Groups the object's values by a criterion produced by an iterator
  _.groupBy = function(obj, iterator) {
  var result = {};
  each(obj, function(value, index) {
  var key = iterator(value, index);
  (result[key] || (result[key] = [])).push(value);
  });
  return result;
  };
 
  // Use a comparator function to figure out at what index an object should
  // be inserted so as to maintain order. Uses binary search.
  _.sortedIndex = function(array, obj, iterator) {
  iterator || (iterator = _.identity);
  var low = 0, high = array.length;
  while (low < high) {
  var mid = (low + high) >> 1;
  iterator(array[mid]) < iterator(obj) ? low = mid + 1 : high = mid;
  }
  return low;
  };
 
  // Safely convert anything iterable into a real, live array.
  _.toArray = function(iterable) {
  if (!iterable) return [];
  if (iterable.toArray) return iterable.toArray();
  if (_.isArray(iterable)) return slice.call(iterable);
  if (_.isArguments(iterable)) return slice.call(iterable);
  return _.values(iterable);
  };
 
  // Return the number of elements in an object.
  _.size = function(obj) {
  return _.toArray(obj).length;
  };
 
  // Array Functions
  // ---------------
 
  // Get the first element of an array. Passing **n** will return the first N
  // values in the array. Aliased as `head`. The **guard** check allows it to work
  // with `_.map`.
  _.first = _.head = function(array, n, guard) {
  return (n != null) && !guard ? slice.call(array, 0, n) : array[0];
  };
 
  // Returns everything but the first entry of the array. Aliased as `tail`.
  // Especially useful on the arguments object. Passing an **index** will return
  // the rest of the values in the array from that index onward. The **guard**
  // check allows it to work with `_.map`.
  _.rest = _.tail = function(array, index, guard) {
  return slice.call(array, (index == null) || guard ? 1 : index);
  };
 
  // Get the last element of an array.
  _.last = function(array) {
  return array[array.length - 1];
  };
 
  // Trim out all falsy values from an array.
  _.compact = function(array) {
  return _.filter(array, function(value){ return !!value; });
  };
 
  // Return a completely flattened version of an array.
  _.flatten = function(array) {
  return _.reduce(array, function(memo, value) {
  if (_.isArray(value)) return memo.concat(_.flatten(value));
  memo[memo.length] = value;
  return memo;
  }, []);
  };
 
  // Return a version of the array that does not contain the specified value(s).
  _.without = function(array) {
  return _.difference(array, slice.call(arguments, 1));
  };
 
  // Produce a duplicate-free version of the array. If the array has already
  // been sorted, you have the option of using a faster algorithm.
  // Aliased as `unique`.
  _.uniq = _.unique = function(array, isSorted) {
  return _.reduce(array, function(memo, el, i) {
  if (0 == i || (isSorted === true ? _.last(memo) != el : !_.include(memo, el))) memo[memo.length] = el;
  return memo;
  }, []);
  };
 
  // Produce an array that contains the union: each distinct element from all of
  // the passed-in arrays.
  _.union = function() {
  return _.uniq(_.flatten(arguments));
  };
 
  // Produce an array that contains every item shared between all the
  // passed-in arrays. (Aliased as "intersect" for back-compat.)
  _.intersection = _.intersect = function(array) {
  var rest = slice.call(arguments, 1);
  return _.filter(_.uniq(array), function(item) {
  return _.every(rest, function(other) {
  return _.indexOf(other, item) >= 0;
  });
  });
  };
 
  // Take the difference between one array and another.
  // Only the elements present in just the first array will remain.
  _.difference = function(array, other) {
  return _.filter(array, function(value){ return !_.include(other, value); });
  };
 
  // Zip together multiple lists into a single array -- elements that share
  // an index go together.
  _.zip = function() {
  var args = slice.call(arguments);
  var length = _.max(_.pluck(args, 'length'));
  var results = new Array(length);
  for (var i = 0; i < length; i++) results[i] = _.pluck(args, "" + i);
  return results;
  };
 
  // If the browser doesn't supply us with indexOf (I'm looking at you, **MSIE**),
  // we need this function. Return the position of the first occurrence of an
  // item in an array, or -1 if the item is not included in the array.
  // Delegates to **ECMAScript 5**'s native `indexOf` if available.
  // If the array is large and already in sort order, pass `true`
  // for **isSorted** to use binary search.
  _.indexOf = function(array, item, isSorted) {
  if (array == null) return -1;
  var i, l;
  if (isSorted) {
  i = _.sortedIndex(array, item);
  return array[i] === item ? i : -1;
  }
  if (nativeIndexOf && array.indexOf === nativeIndexOf) return array.indexOf(item);
  for (i = 0, l = array.length; i < l; i++) if (array[i] === item) return i;
  return -1;
  };
 
 
  // Delegates to **ECMAScript 5**'s native `lastIndexOf` if available.
  _.lastIndexOf = function(array, item) {
  if (array == null) return -1;
  if (nativeLastIndexOf && array.lastIndexOf === nativeLastIndexOf) return array.lastIndexOf(item);
  var i = array.length;
  while (i--) if (array[i] === item) return i;
  return -1;
  };
 
  // Generate an integer Array containing an arithmetic progression. A port of
  // the native Python `range()` function. See
  // [the Python documentation](http://docs.python.org/library/functions.html#range).
  _.range = function(start, stop, step) {
  if (arguments.length <= 1) {
  stop = start || 0;
  start = 0;
  }
  step = arguments[2] || 1;
 
  var len = Math.max(Math.ceil((stop - start) / step), 0);
  var idx = 0;
  var range = new Array(len);
 
  while(idx < len) {
  range[idx++] = start;
  start += step;
  }
 
  return range;
  };
 
  // Function (ahem) Functions
  // ------------------
 
  // Create a function bound to a given object (assigning `this`, and arguments,
  // optionally). Binding with arguments is also known as `curry`.
  // Delegates to **ECMAScript 5**'s native `Function.bind` if available.
  // We check for `func.bind` first, to fail fast when `func` is undefined.
  _.bind = function(func, obj) {
  if (func.bind === nativeBind && nativeBind) return nativeBind.apply(func, slice.call(arguments, 1));
  var args = slice.call(arguments, 2);
  return function() {
  return func.apply(obj, args.concat(slice.call(arguments)));
  };
  };
 
  // Bind all of an object's methods to that object. Useful for ensuring that
  // all callbacks defined on an object belong to it.
  _.bindAll = function(obj) {
  var funcs = slice.call(arguments, 1);
  if (funcs.length == 0) funcs = _.functions(obj);
  each(funcs, function(f) { obj[f] = _.bind(obj[f], obj); });
  return obj;
  };
 
  // Memoize an expensive function by storing its results.
  _.memoize = function(func, hasher) {
  var memo = {};
  hasher || (hasher = _.identity);
  return function() {
  var key = hasher.apply(this, arguments);
  return hasOwnProperty.call(memo, key) ? memo[key] : (memo[key] = func.apply(this, arguments));
  };
  };
 
  // Delays a function for the given number of milliseconds, and then calls
  // it with the arguments supplied.
  _.delay = function(func, wait) {
  var args = slice.call(arguments, 2);
  return setTimeout(function(){ return func.apply(func, args); }, wait);
  };
 
  // Defers a function, scheduling it to run after the current call stack has
  // cleared.
  _.defer = function(func) {
  return _.delay.apply(_, [func, 1].concat(slice.call(arguments, 1)));
  };
 
  // Internal function used to implement `_.throttle` and `_.debounce`.
  var limit = function(func, wait, debounce) {
  var timeout;
  return function() {
  var context = this, args = arguments;
  var throttler = function() {
  timeout = null;
  func.apply(context, args);
  };
  if (debounce) clearTimeout(timeout);
  if (debounce || !timeout) timeout = setTimeout(throttler, wait);
  };
  };
 
  // Returns a function, that, when invoked, will only be triggered at most once
  // during a given window of time.
  _.throttle = function(func, wait) {
  return limit(func, wait, false);
  };
 
  // Returns a function, that, as long as it continues to be invoked, will not
  // be triggered. The function will be called after it stops being called for
  // N milliseconds.
  _.debounce = function(func, wait) {
  return limit(func, wait, true);
  };
 
  // Returns a function that will be executed at most one time, no matter how
  // often you call it. Useful for lazy initialization.
  _.once = function(func) {
  var ran = false, memo;
  return function() {
  if (ran) return memo;
  ran = true;
  return memo = func.apply(this, arguments);
  };
  };
 
  // Returns the first function passed as an argument to the second,
  // allowing you to adjust arguments, run code before and after, and
  // conditionally execute the original function.
  _.wrap = function(func, wrapper) {
  return function() {
  var args = [func].concat(slice.call(arguments));
  return wrapper.apply(this, args);
  };
  };
 
  // Returns a function that is the composition of a list of functions, each
  // consuming the return value of the function that follows.
  _.compose = function() {
  var funcs = slice.call(arguments);
  return function() {
  var args = slice.call(arguments);
  for (var i = funcs.length - 1; i >= 0; i--) {
  args = [funcs[i].apply(this, args)];
  }
  return args[0];
  };
  };
 
  // Returns a function that will only be executed after being called N times.
  _.after = function(times, func) {
  return function() {
  if (--times < 1) { return func.apply(this, arguments); }
  };
  };
 
 
  // Object Functions
  // ----------------
 
  // Retrieve the names of an object's properties.
  // Delegates to **ECMAScript 5**'s native `Object.keys`
  _.keys = nativeKeys || function(obj) {
  if (obj !== Object(obj)) throw new TypeError('Invalid object');
  var keys = [];
  for (var key in obj) if (hasOwnProperty.call(obj, key)) keys[keys.length] = key;
  return keys;
  };
 
  // Retrieve the values of an object's properties.
  _.values = function(obj) {
  return _.map(obj, _.identity);
  };
 
  // Return a sorted list of the function names available on the object.
  // Aliased as `methods`
  _.functions = _.methods = function(obj) {
  var names = [];
  for (var key in obj) {
  if (_.isFunction(obj[key])) names.push(key);
  }
  return names.sort();
  };
 
  // Extend a given object with all the properties in passed-in object(s).
  _.extend = function(obj) {
  each(slice.call(arguments, 1), function(source) {
  for (var prop in source) {
  if (source[prop] !== void 0) obj[prop] = source[prop];
  }
  });
  return obj;
  };
 
  // Fill in a given object with default properties.
  _.defaults = function(obj) {
  each(slice.call(arguments, 1), function(source) {
  for (var prop in source) {
  if (obj[prop] == null) obj[prop] = source[prop];
  }
  });
  return obj;
  };
 
  // Create a (shallow-cloned) duplicate of an object.
  _.clone = function(obj) {
  return _.isArray(obj) ? obj.slice() : _.extend({}, obj);
  };
 
  // Invokes interceptor with the obj, and then returns obj.
  // The primary purpose of this method is to "tap into" a method chain, in
  // order to perform operations on intermediate results within the chain.
  _.tap = function(obj, interceptor) {
  interceptor(obj);
  return obj;
  };
 
  // Perform a deep comparison to check if two objects are equal.
  _.isEqual = function(a, b) {
  // Check object identity.
  if (a === b) return true;
  // Different types?
  var atype = typeof(a), btype = typeof(b);
  if (atype != btype) return false;
  // Basic equality test (watch out for coercions).
  if (a == b) return true;
  // One is falsy and the other truthy.
  if ((!a && b) || (a && !b)) return false;
  // Unwrap any wrapped objects.
  if (a._chain) a = a._wrapped;
  if (b._chain) b = b._wrapped;
  // One of them implements an isEqual()?
  if (a.isEqual) return a.isEqual(b);
  if (b.isEqual) return b.isEqual(a);
  // Check dates' integer values.
  if (_.isDate(a) && _.isDate(b)) return a.getTime() === b.getTime();
  // Both are NaN?
  if (_.isNaN(a) && _.isNaN(b)) return false;
  // Compare regular expressions.
  if (_.isRegExp(a) && _.isRegExp(b))
  return a.source === b.source &&
  a.global === b.global &&
  a.ignoreCase === b.ignoreCase &&
  a.multiline === b.multiline;
  // If a is not an object by this point, we can't handle it.
  if (atype !== 'object') return false;
  // Check for different array lengths before comparing contents.
  if (a.length && (a.length !== b.length)) return false;
  // Nothing else worked, deep compare the contents.
  var aKeys = _.keys(a), bKeys = _.keys(b);
  // Different object sizes?
  if (aKeys.length != bKeys.length) return false;
  // Recursive comparison of contents.
  for (var key in a) if (!(key in b) || !_.isEqual(a[key], b[key])) return false;
  return true;
  };
 
  // Is a given array or object empty?
  _.isEmpty = function(obj) {
  if (_.isArray(obj) || _.isString(obj)) return obj.length === 0;
  for (var key in obj) if (hasOwnProperty.call(obj, key)) return false;
  return true;
  };
 
  // Is a given value a DOM element?
  _.isElement = function(obj) {
  return !!(obj && obj.nodeType == 1);
  };
 
  // Is a given value an array?
  // Delegates to ECMA5's native Array.isArray
  _.isArray = nativeIsArray || function(obj) {
  return toString.call(obj) === '[object Array]';
  };
 
  // Is a given variable an object?
  _.isObject = function(obj) {
  return obj === Object(obj);
  };
 
  // Is a given variable an arguments object?
  _.isArguments = function(obj) {
  return !!(obj && hasOwnProperty.call(obj, 'callee'));
  };
 
  // Is a given value a function?
  _.isFunction = function(obj) {
  return !!(obj && obj.constructor && obj.call && obj.apply);
  };
 
  // Is a given value a string?
  _.isString = function(obj) {
  return !!(obj === '' || (obj && obj.charCodeAt && obj.substr));
  };
 
  // Is a given value a number?
  _.isNumber = function(obj) {
  return !!(obj === 0 || (obj && obj.toExponential && obj.toFixed));
  };
 
  // Is the given value `NaN`? `NaN` happens to be the only value in JavaScript
  // that does not equal itself.
  _.isNaN = function(obj) {
  return obj !== obj;
  };
 
  // Is a given value a boolean?
  _.isBoolean = function(obj) {
  return obj === true || obj === false;
  };
 
  // Is a given value a date?
  _.isDate = function(obj) {
  return !!(obj && obj.getTimezoneOffset && obj.setUTCFullYear);
  };
 
  // Is the given value a regular expression?
  _.isRegExp = function(obj) {
  return !!(obj && obj.test && obj.exec && (obj.ignoreCase || obj.ignoreCase === false));
  };
 
  // Is a given value equal to null?
  _.isNull = function(obj) {
  return obj === null;
  };
 
  // Is a given variable undefined?
  _.isUndefined = function(obj) {
  return obj === void 0;
  };
 
  // Utility Functions
  // -----------------
 
  // Run Underscore.js in *noConflict* mode, returning the `_` variable to its
  // previous owner. Returns a reference to the Underscore object.
  _.noConflict = function() {
  root._ = previousUnderscore;
  return this;
  };
 
  // Keep the identity function around for default iterators.
  _.identity = function(value) {
  return value;
  };
 
  // Run a function **n** times.
  _.times = function (n, iterator, context) {
  for (var i = 0; i < n; i++) iterator.call(context, i);
  };
 
  // Add your own custom functions to the Underscore object, ensuring that
  // they're correctly added to the OOP wrapper as well.
  _.mixin = function(obj) {
  each(_.functions(obj), function(name){
  addToWrapper(name, _[name] = obj[name]);
  });
  };
 
  // Generate a unique integer id (unique within the entire client session).
  // Useful for temporary DOM ids.
  var idCounter = 0;
  _.uniqueId = function(prefix) {
  var id = idCounter++;
  return prefix ? prefix + id : id;
  };
 
  // By default, Underscore uses ERB-style template delimiters, change the
  // following template settings to use alternative delimiters.
  _.templateSettings = {
  evaluate : /<%([\s\S]+?)%>/g,
  interpolate : /<%=([\s\S]+?)%>/g
  };
 
  // JavaScript micro-templating, similar to John Resig's implementation.
  // Underscore templating handles arbitrary delimiters, preserves whitespace,
  // and correctly escapes quotes within interpolated code.
  _.template = function(str, data) {
  var c = _.templateSettings;
  var tmpl = 'var __p=[],print=function(){__p.push.apply(__p,arguments);};' +
  'with(obj||{}){__p.push(\'' +
  str.replace(/\\/g, '\\\\')
  .replace(/'/g, "\\'")
  .replace(c.interpolate, function(match, code) {
  return "'," + code.replace(/\\'/g, "'") + ",'";
  })
  .replace(c.evaluate || null, function(match, code) {
  return "');" + code.replace(/\\'/g, "'")
  .replace(/[\r\n\t]/g, ' ') + "__p.push('";
  })
  .replace(/\r/g, '\\r')
  .replace(/\n/g, '\\n')
  .replace(/\t/g, '\\t')
  + "');}return __p.join('');";
  var func = new Function('obj', tmpl);
  return data ? func(data) : func;
  };
 
  // The OOP Wrapper
  // ---------------
 
  // If Underscore is called as a function, it returns a wrapped object that
  // can be used OO-style. This wrapper holds altered versions of all the
  // underscore functions. Wrapped objects may be chained.
  var wrapper = function(obj) { this._wrapped = obj; };
 
  // Expose `wrapper.prototype` as `_.prototype`
  _.prototype = wrapper.prototype;
 
  // Helper function to continue chaining intermediate results.
  var result = function(obj, chain) {
  return chain ? _(obj).chain() : obj;
  };
 
  // A method to easily add functions to the OOP wrapper.
  var addToWrapper = function(name, func) {
  wrapper.prototype[name] = function() {
  var args = slice.call(arguments);
  unshift.call(args, this._wrapped);
  return result(func.apply(_, args), this._chain);
  };
  };
 
  // Add all of the Underscore functions to the wrapper object.
  _.mixin(_);
 
  // Add all mutator Array functions to the wrapper.
  each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {
  var method = ArrayProto[name];
  wrapper.prototype[name] = function() {
  method.apply(this._wrapped, arguments);
  return result(this._wrapped, this._chain);
  };
  });
 
  // Add all accessor Array functions to the wrapper.
  each(['concat', 'join', 'slice'], function(name) {
  var method = ArrayProto[name];
  wrapper.prototype[name] = function() {
  return result(method.apply(this._wrapped, arguments), this._chain);
  };
  });
 
  // Start chaining a wrapped Underscore object.
  wrapper.prototype.chain = function() {
  this._chain = true;
  return this;
  };
 
  // Extracts the result from a wrapped and chained object.
  wrapper.prototype.value = function() {
  return this._wrapped;
  };
 
  })();
  /**
  * Flotr2 (c) 2012 Carl Sutherland
  * MIT License
  * Special thanks to:
  * Flotr: http://code.google.com/p/flotr/ (fork)
  * Flot: https://github.com/flot/flot (original fork)
  */
  (function () {
 
  var
  global = this,
  previousFlotr = this.Flotr,
  Flotr;
 
  Flotr = {
  _: _,
  bean: bean,
  isIphone: /iphone/i.test(navigator.userAgent),
  isIE: (navigator.appVersion.indexOf("MSIE") != -1 ? parseFloat(navigator.appVersion.split("MSIE")[1]) : false),
 
  /**
  * An object of the registered graph types. Use Flotr.addType(type, object)
  * to add your own type.
  */
  graphTypes: {},
 
  /**
  * The list of the registered plugins
  */
  plugins: {},
 
  /**
  * Can be used to add your own chart type.
  * @param {String} name - Type of chart, like 'pies', 'bars' etc.
  * @param {String} graphType - The object containing the basic drawing functions (draw, etc)
  */
  addType: function(name, graphType){
  Flotr.graphTypes[name] = graphType;
  Flotr.defaultOptions[name] = graphType.options || {};
  Flotr.defaultOptions.defaultType = Flotr.defaultOptions.defaultType || name;
  },
 
  /**
  * Can be used to add a plugin
  * @param {String} name - The name of the plugin
  * @param {String} plugin - The object containing the plugin's data (callbacks, options, function1, function2, ...)
  */
  addPlugin: function(name, plugin){
  Flotr.plugins[name] = plugin;
  Flotr.defaultOptions[name] = plugin.options || {};
  },
 
  /**
  * Draws the graph. This function is here for backwards compatibility with Flotr version 0.1.0alpha.
  * You could also draw graphs by directly calling Flotr.Graph(element, data, options).
  * @param {Element} el - element to insert the graph into
  * @param {Object} data - an array or object of dataseries
  * @param {Object} options - an object containing options
  * @param {Class} _GraphKlass_ - (optional) Class to pass the arguments to, defaults to Flotr.Graph
  * @return {Object} returns a new graph object and of course draws the graph.
  */
  draw: function(el, data, options, GraphKlass){
  GraphKlass = GraphKlass || Flotr.Graph;
  return new GraphKlass(el, data, options);
  },
 
  /**
  * Recursively merges two objects.
  * @param {Object} src - source object (likely the object with the least properties)
  * @param {Object} dest - destination object (optional, object with the most properties)
  * @return {Object} recursively merged Object
  * @TODO See if we can't remove this.
  */
  merge: function(src, dest){
  var i, v, result = dest || {};
 
  for (i in src) {
  v = src[i];
  if (v && typeof(v) === 'object') {
  if (v.constructor === Array) {
  result[i] = this._.clone(v);
  } else if (
  v.constructor !== RegExp &&
  !this._.isElement(v) &&
  !v.jquery
  ) {
  result[i] = Flotr.merge(v, (dest ? dest[i] : undefined));
  } else {
  result[i] = v;
  }
  } else {
  result[i] = v;
  }
  }
 
  return result;
  },
 
  /**
  * Recursively clones an object.
  * @param {Object} object - The object to clone
  * @return {Object} the clone
  * @TODO See if we can't remove this.
  */
  clone: function(object){
  return Flotr.merge(object, {});
  },
 
  /**
  * Function calculates the ticksize and returns it.
  * @param {Integer} noTicks - number of ticks
  * @param {Integer} min - lower bound integer value for the current axis
  * @param {Integer} max - upper bound integer value for the current axis
  * @param {Integer} decimals - number of decimals for the ticks
  * @return {Integer} returns the ticksize in pixels
  */
  getTickSize: function(noTicks, min, max, decimals){
  var delta = (max - min) / noTicks,
  magn = Flotr.getMagnitude(delta),
  tickSize = 10,
  norm = delta / magn; // Norm is between 1.0 and 10.0.
 
  if(norm < 1.5) tickSize = 1;
  else if(norm < 2.25) tickSize = 2;
  else if(norm < 3) tickSize = ((decimals === 0) ? 2 : 2.5);
  else if(norm < 7.5) tickSize = 5;
 
  return tickSize * magn;
  },
 
  /**
  * Default tick formatter.
  * @param {String, Integer} val - tick value integer
  * @param {Object} axisOpts - the axis' options
  * @return {String} formatted tick string
  */
  defaultTickFormatter: function(val, axisOpts){
  return val+'';
  },
 
  /**
  * Formats the mouse tracker values.
  * @param {Object} obj - Track value Object {x:..,y:..}
  * @return {String} Formatted track string
  */
  defaultTrackFormatter: function(obj){
  return '('+obj.x+', '+obj.y+')';
  },
 
  /**
  * Utility function to convert file size values in bytes to kB, MB, ...
  * @param value {Number} - The value to convert
  * @param precision {Number} - The number of digits after the comma (default: 2)
  * @param base {Number} - The base (default: 1000)
  */
  engineeringNotation: function(value, precision, base){
  var sizes = ['Y','Z','E','P','T','G','M','k',''],
  fractionSizes = ['y','z','a','f','p','n','µ','m',''],
  total = sizes.length;
 
  base = base || 1000;
  precision = Math.pow(10, precision || 2);
 
  if (value === 0) return 0;
 
  if (value > 1) {
  while (total-- && (value >= base)) value /= base;
  }
  else {
  sizes = fractionSizes;
  total = sizes.length;
  while (total-- && (value < 1)) value *= base;
  }
 
  return (Math.round(value * precision) / precision) + sizes[total];
  },
 
  /**
  * Returns the magnitude of the input value.
  * @param {Integer, Float} x - integer or float value
  * @return {Integer, Float} returns the magnitude of the input value
  */
  getMagnitude: function(x){
  return Math.pow(10, Math.floor(Math.log(x) / Math.LN10));
  },
  toPixel: function(val){
  return Math.floor(val)+0.5;//((val-Math.round(val) < 0.4) ? (Math.floor(val)-0.5) : val);
  },
  toRad: function(angle){
  return -angle * (Math.PI/180);
  },
  floorInBase: function(n, base) {
  return base * Math.floor(n / base);
  },
  drawText: function(ctx, text, x, y, style) {
  if (!ctx.fillText) {
  ctx.drawText(text, x, y, style);
  return;
  }
 
  style = this._.extend({
  size: Flotr.defaultOptions.fontSize,
  color: '#000000',
  textAlign: 'left',
  textBaseline: 'bottom',
  weight: 1,
  angle: 0
  }, style);
 
  ctx.save();
  ctx.translate(x, y);
  ctx.rotate(style.angle);
  ctx.fillStyle = style.color;
  ctx.font = (style.weight > 1 ? "bold " : "") + (style.size*1.3) + "px sans-serif";
  ctx.textAlign = style.textAlign;
  ctx.textBaseline = style.textBaseline;
  ctx.fillText(text, 0, 0);
  ctx.restore();
  },
  getBestTextAlign: function(angle, style) {
  style = style || {textAlign: 'center', textBaseline: 'middle'};
  angle += Flotr.getTextAngleFromAlign(style);
 
  if (Math.abs(Math.cos(angle)) > 10e-3)
  style.textAlign = (Math.cos(angle) > 0 ? 'right' : 'left');
 
  if (Math.abs(Math.sin(angle)) > 10e-3)
  style.textBaseline = (Math.sin(angle) > 0 ? 'top' : 'bottom');
 
  return style;
  },
  alignTable: {
  'right middle' : 0,
  'right top' : Math.PI/4,
  'center top' : Math.PI/2,
  'left top' : 3*(Math.PI/4),
  'left middle' : Math.PI,
  'left bottom' : -3*(Math.PI/4),
  'center bottom': -Math.PI/2,
  'right bottom' : -Math.PI/4,
  'center middle': 0
  },
  getTextAngleFromAlign: function(style) {
  return Flotr.alignTable[style.textAlign+' '+style.textBaseline] || 0;
  },
  noConflict : function () {
  global.Flotr = previousFlotr;
  return this;
  }
  };
 
  global.Flotr = Flotr;
 
  })();
 
  /**
  * Flotr Defaults
  */
  Flotr.defaultOptions = {
  colors: ['#00A8F0', '#C0D800', '#CB4B4B', '#4DA74D', '#9440ED'], //=> The default colorscheme. When there are > 5 series, additional colors are generated.
  ieBackgroundColor: '#FFFFFF', // Background color for excanvas clipping
  title: null, // => The graph's title
  subtitle: null, // => The graph's subtitle
  shadowSize: 4, // => size of the 'fake' shadow
  defaultType: null, // => default series type
  HtmlText: true, // => wether to draw the text using HTML or on the canvas
  fontColor: '#545454', // => default font color
  fontSize: 7.5, // => canvas' text font size
  resolution: 1, // => resolution of the graph, to have printer-friendly graphs !
  parseFloat: true, // => whether to preprocess data for floats (ie. if input is string)
  preventDefault: true, // => preventDefault by default for mobile events. Turn off to enable scroll.
  xaxis: {
  ticks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  minorTicks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  showLabels: true, // => setting to true will show the axis ticks labels, hide otherwise
  showMinorLabels: false,// => true to show the axis minor ticks labels, false to hide
  labelsAngle: 0, // => labels' angle, in degrees
  title: null, // => axis title
  titleAngle: 0, // => axis title's angle, in degrees
  noTicks: 5, // => number of ticks for automagically generated ticks
  minorTickFreq: null, // => number of minor ticks between major ticks for autogenerated ticks
  tickFormatter: Flotr.defaultTickFormatter, // => fn: number, Object -> string
  tickDecimals: null, // => no. of decimals, null means auto
  min: null, // => min. value to show, null means set automatically
  max: null, // => max. value to show, null means set automatically
  autoscale: false, // => Turns autoscaling on with true
  autoscaleMargin: 0, // => margin in % to add if auto-setting min/max
  color: null, // => color of the ticks
  mode: 'normal', // => can be 'time' or 'normal'
  timeFormat: null,
  timeMode:'UTC', // => For UTC time ('local' for local time).
  timeUnit:'millisecond',// => Unit for time (millisecond, second, minute, hour, day, month, year)
  scaling: 'linear', // => Scaling, can be 'linear' or 'logarithmic'
  base: Math.E,
  titleAlign: 'center',
  margin: true // => Turn off margins with false
  },
  x2axis: {},
  yaxis: {
  ticks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  minorTicks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  showLabels: true, // => setting to true will show the axis ticks labels, hide otherwise
  showMinorLabels: false,// => true to show the axis minor ticks labels, false to hide
  labelsAngle: 0, // => labels' angle, in degrees
  title: null, // => axis title
  titleAngle: 90, // => axis title's angle, in degrees
  noTicks: 5, // => number of ticks for automagically generated ticks
  minorTickFreq: null, // => number of minor ticks between major ticks for autogenerated ticks
  tickFormatter: Flotr.defaultTickFormatter, // => fn: number, Object -> string
  tickDecimals: null, // => no. of decimals, null means auto
  min: null, // => min. value to show, null means set automatically
  max: null, // => max. value to show, null means set automatically
  autoscale: false, // => Turns autoscaling on with true
  autoscaleMargin: 0, // => margin in % to add if auto-setting min/max
  color: null, // => The color of the ticks
  scaling: 'linear', // => Scaling, can be 'linear' or 'logarithmic'
  base: Math.E,
  titleAlign: 'center',
  margin: true // => Turn off margins with false
  },
  y2axis: {
  titleAngle: 270
  },
  grid: {
  color: '#545454', // => primary color used for outline and labels
  backgroundColor: null, // => null for transparent, else color
  backgroundImage: null, // => background image. String or object with src, left and top
  watermarkAlpha: 0.4, // =>
  tickColor: '#DDDDDD', // => color used for the ticks
  labelMargin: 3, // => margin in pixels
  verticalLines: true, // => whether to show gridlines in vertical direction
  minorVerticalLines: null, // => whether to show gridlines for minor ticks in vertical dir.
  horizontalLines: true, // => whether to show gridlines in horizontal direction
  minorHorizontalLines: null, // => whether to show gridlines for minor ticks in horizontal dir.
  outlineWidth: 1, // => width of the grid outline/border in pixels
  outline : 'nsew', // => walls of the outline to display
  circular: false // => if set to true, the grid will be circular, must be used when radars are drawn
  },
  mouse: {
  track: false, // => true to track the mouse, no tracking otherwise
  trackAll: false,
  position: 'se', // => position of the value box (default south-east)
  relative: false, // => next to the mouse cursor
  trackFormatter: Flotr.defaultTrackFormatter, // => formats the values in the value box
  margin: 5, // => margin in pixels of the valuebox
  lineColor: '#FF3F19', // => line color of points that are drawn when mouse comes near a value of a series
  trackDecimals: 1, // => decimals for the track values
  sensibility: 2, // => the lower this number, the more precise you have to aim to show a value
  trackY: true, // => whether or not to track the mouse in the y axis
  radius: 3, // => radius of the track point
  fillColor: null, // => color to fill our select bar with only applies to bar and similar graphs (only bars for now)
  fillOpacity: 0.4 // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  }
  };
 
  /**
  * Flotr Color
  */
 
  (function () {
 
  var
  _ = Flotr._;
 
  // Constructor
  function Color (r, g, b, a) {
  this.rgba = ['r','g','b','a'];
  var x = 4;
  while(-1<--x){
  this[this.rgba[x]] = arguments[x] || ((x==3) ? 1.0 : 0);
  }
  this.normalize();
  }
 
  // Constants
  var COLOR_NAMES = {
  aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],
  brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],
  darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],
  darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],
  darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],
  khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],
  lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],
  maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],
  violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]
  };
 
  Color.prototype = {
  scale: function(rf, gf, bf, af){
  var x = 4;
  while (-1 < --x) {
  if (!_.isUndefined(arguments[x])) this[this.rgba[x]] *= arguments[x];
  }
  return this.normalize();
  },
  alpha: function(alpha) {
  if (!_.isUndefined(alpha) && !_.isNull(alpha)) {
  this.a = alpha;
  }
  return this.normalize();
  },
  clone: function(){
  return new Color(this.r, this.b, this.g, this.a);
  },
  limit: function(val,minVal,maxVal){
  return Math.max(Math.min(val, maxVal), minVal);
  },
  normalize: function(){
  var limit = this.limit;
  this.r = limit(parseInt(this.r, 10), 0, 255);
  this.g = limit(parseInt(this.g, 10), 0, 255);
  this.b = limit(parseInt(this.b, 10), 0, 255);
  this.a = limit(this.a, 0, 1);
  return this;
  },
  distance: function(color){
  if (!color) return;
  color = new Color.parse(color);
  var dist = 0, x = 3;
  while(-1<--x){
  dist += Math.abs(this[this.rgba[x]] - color[this.rgba[x]]);
  }
  return dist;
  },
  toString: function(){
  return (this.a >= 1.0) ? 'rgb('+[this.r,this.g,this.b].join(',')+')' : 'rgba('+[this.r,this.g,this.b,this.a].join(',')+')';
  },
  contrast: function () {
  var
  test = 1 - ( 0.299 * this.r + 0.587 * this.g + 0.114 * this.b) / 255;
  return (test < 0.5 ? '#000000' : '#ffffff');
  }
  };
 
  _.extend(Color, {
  /**
  * Parses a color string and returns a corresponding Color.
  * The different tests are in order of probability to improve speed.
  * @param {String, Color} str - string thats representing a color
  * @return {Color} returns a Color object or false
  */
  parse: function(color){
  if (color instanceof Color) return color;
 
  var result;
 
  // #a0b1c2
  if((result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color)))
  return new Color(parseInt(result[1], 16), parseInt(result[2], 16), parseInt(result[3], 16));
 
  // rgb(num,num,num)
  if((result = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color)))
  return new Color(parseInt(result[1], 10), parseInt(result[2], 10), parseInt(result[3], 10));
 
  // #fff
  if((result = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color)))
  return new Color(parseInt(result[1]+result[1],16), parseInt(result[2]+result[2],16), parseInt(result[3]+result[3],16));
 
  // rgba(num,num,num,num)
  if((result = /rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(color)))
  return new Color(parseInt(result[1], 10), parseInt(result[2], 10), parseInt(result[3], 10), parseFloat(result[4]));
 
  // rgb(num%,num%,num%)
  if((result = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color)))
  return new Color(parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55);
 
  // rgba(num%,num%,num%,num)
  if((result = /rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(color)))
  return new Color(parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55, parseFloat(result[4]));
 
  // Otherwise, we're most likely dealing with a named color.
  var name = (color+'').replace(/^\s*([\S\s]*?)\s*$/, '$1').toLowerCase();
  if(name == 'transparent'){
  return new Color(255, 255, 255, 0);
  }
  return (result = COLOR_NAMES[name]) ? new Color(result[0], result[1], result[2]) : new Color(0, 0, 0, 0);
  },
 
  /**
  * Process color and options into color style.
  */
  processColor: function(color, options) {
 
  var opacity = options.opacity;
  if (!color) return 'rgba(0, 0, 0, 0)';
  if (color instanceof Color) return color.alpha(opacity).toString();
  if (_.isString(color)) return Color.parse(color).alpha(opacity).toString();
 
  var grad = color.colors ? color : {colors: color};
 
  if (!options.ctx) {
  if (!_.isArray(grad.colors)) return 'rgba(0, 0, 0, 0)';
  return Color.parse(_.isArray(grad.colors[0]) ? grad.colors[0][1] : grad.colors[0]).alpha(opacity).toString();
  }
  grad = _.extend({start: 'top', end: 'bottom'}, grad);
 
  if (/top/i.test(grad.start)) options.x1 = 0;
  if (/left/i.test(grad.start)) options.y1 = 0;
  if (/bottom/i.test(grad.end)) options.x2 = 0;
  if (/right/i.test(grad.end)) options.y2 = 0;
 
  var i, c, stop, gradient = options.ctx.createLinearGradient(options.x1, options.y1, options.x2, options.y2);
  for (i = 0; i < grad.colors.length; i++) {
  c = grad.colors[i];
  if (_.isArray(c)) {
  stop = c[0];
  c = c[1];
  }
  else stop = i / (grad.colors.length-1);
  gradient.addColorStop(stop, Color.parse(c).alpha(opacity));
  }
  return gradient;
  }
  });
 
  Flotr.Color = Color;
 
  })();
 
  /**
  * Flotr Date
  */
  Flotr.Date = {
 
  set : function (date, name, mode, value) {
  mode = mode || 'UTC';
  name = 'set' + (mode === 'UTC' ? 'UTC' : '') + name;
  date[name](value);
  },
 
  get : function (date, name, mode) {
  mode = mode || 'UTC';
  name = 'get' + (mode === 'UTC' ? 'UTC' : '') + name;
  return date[name]();
  },
 
  format: function(d, format, mode) {
  if (!d) return;
 
  // We should maybe use an "official" date format spec, like PHP date() or ColdFusion
  // http://fr.php.net/manual/en/function.date.php
  // http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=functions_c-d_29.html
  var
  get = this.get,
  tokens = {
  h: get(d, 'Hours', mode).toString(),
  H: leftPad(get(d, 'Hours', mode)),
  M: leftPad(get(d, 'Minutes', mode)),
  S: leftPad(get(d, 'Seconds', mode)),
  s: get(d, 'Milliseconds', mode),
  d: get(d, 'Date', mode).toString(),
  m: (get(d, 'Month', mode) + 1).toString(),
  y: get(d, 'FullYear', mode).toString(),
  b: Flotr.Date.monthNames[get(d, 'Month', mode)]
  };
 
  function leftPad(n){
  n += '';
  return n.length == 1 ? "0" + n : n;
  }
 
  var r = [], c,
  escape = false;
 
  for (var i = 0; i < format.length; ++i) {
  c = format.charAt(i);
 
  if (escape) {
  r.push(tokens[c] || c);
  escape = false;
  }
  else if (c == "%")
  escape = true;
  else
  r.push(c);
  }
  return r.join('');
  },
  getFormat: function(time, span) {
  var tu = Flotr.Date.timeUnits;
  if (time < tu.second) return "%h:%M:%S.%s";
  else if (time < tu.minute) return "%h:%M:%S";
  else if (time < tu.day) return (span < 2 * tu.day) ? "%h:%M" : "%b %d %h:%M";
  else if (time < tu.month) return "%b %d";
  else if (time < tu.year) return (span < tu.year) ? "%b" : "%b %y";
  else return "%y";
  },
  formatter: function (v, axis) {
  var
  options = axis.options,
  scale = Flotr.Date.timeUnits[options.timeUnit],
  d = new Date(v * scale);
 
  // first check global format
  if (axis.options.timeFormat)
  return Flotr.Date.format(d, options.timeFormat, options.timeMode);
 
  var span = (axis.max - axis.min) * scale,
  t = axis.tickSize * Flotr.Date.timeUnits[axis.tickUnit];
 
  return Flotr.Date.format(d, Flotr.Date.getFormat(t, span), options.timeMode);
  },
  generator: function(axis) {
 
  var
  set = this.set,
  get = this.get,
  timeUnits = this.timeUnits,
  spec = this.spec,
  options = axis.options,
  mode = options.timeMode,
  scale = timeUnits[options.timeUnit],
  min = axis.min * scale,
  max = axis.max * scale,
  delta = (max - min) / options.noTicks,
  ticks = [],
  tickSize = axis.tickSize,
  tickUnit,
  formatter, i;
 
  // Use custom formatter or time tick formatter
  formatter = (options.tickFormatter === Flotr.defaultTickFormatter ?
  this.formatter : options.tickFormatter
  );
 
  for (i = 0; i < spec.length - 1; ++i) {
  var d = spec[i][0] * timeUnits[spec[i][1]];
  if (delta < (d + spec[i+1][0] * timeUnits[spec[i+1][1]]) / 2 && d >= tickSize)
  break;
  }
  tickSize = spec[i][0];
  tickUnit = spec[i][1];
 
  // special-case the possibility of several years
  if (tickUnit == "year") {
  tickSize = Flotr.getTickSize(options.noTicks*timeUnits.year, min, max, 0);
 
  // Fix for 0.5 year case
  if (tickSize == 0.5) {
  tickUnit = "month";
  tickSize = 6;
  }
  }
 
  axis.tickUnit = tickUnit;
  axis.tickSize = tickSize;
 
  var step = tickSize * timeUnits[tickUnit];
  d = new Date(min);
 
  function setTick (name) {
  set(d, name, mode, Flotr.floorInBase(
  get(d, name, mode), tickSize
  ));
  }
 
  switch (tickUnit) {
  case "millisecond": setTick('Milliseconds'); break;
  case "second": setTick('Seconds'); break;
  case "minute": setTick('Minutes'); break;
  case "hour": setTick('Hours'); break;
  case "month": setTick('Month'); break;
  case "year": setTick('FullYear'); break;
  }
 
  // reset smaller components
  if (step >= timeUnits.second) set(d, 'Milliseconds', mode, 0);
  if (step >= timeUnits.minute) set(d, 'Seconds', mode, 0);
  if (step >= timeUnits.hour) set(d, 'Minutes', mode, 0);
  if (step >= timeUnits.day) set(d, 'Hours', mode, 0);
  if (step >= timeUnits.day * 4) set(d, 'Date', mode, 1);
  if (step >= timeUnits.year) set(d, 'Month', mode, 0);
 
  var carry = 0, v = NaN, prev;
  do {
  prev = v;
  v = d.getTime();
  ticks.push({ v: v / scale, label: formatter(v / scale, axis) });
  if (tickUnit == "month") {
  if (tickSize < 1) {
  /* a bit complicated - we'll divide the month up but we need to take care of fractions
  so we don't end up in the middle of a day */
  set(d, 'Date', mode, 1);
  var start = d.getTime();
  set(d, 'Month', mode, get(d, 'Month', mode) + 1);
  var end = d.getTime();
  d.setTime(v + carry * timeUnits.hour + (end - start) * tickSize);
  carry = get(d, 'Hours', mode);
  set(d, 'Hours', mode, 0);
  }
  else
  set(d, 'Month', mode, get(d, 'Month', mode) + tickSize);
  }
  else if (tickUnit == "year") {
  set(d, 'FullYear', mode, get(d, 'FullYear', mode) + tickSize);
  }
  else
  d.setTime(v + step);
 
  } while (v < max && v != prev);
 
  return ticks;
  },
  timeUnits: {
  millisecond: 1,
  second: 1000,
  minute: 1000 * 60,
  hour: 1000 * 60 * 60,
  day: 1000 * 60 * 60 * 24,
  month: 1000 * 60 * 60 * 24 * 30,
  year: 1000 * 60 * 60 * 24 * 365.2425
  },
  // the allowed tick sizes, after 1 year we use an integer algorithm
  spec: [
  [1, "millisecond"], [20, "millisecond"], [50, "millisecond"], [100, "millisecond"], [200, "millisecond"], [500, "millisecond"],
  [1, "second"], [2, "second"], [5, "second"], [10, "second"], [30, "second"],
  [1, "minute"], [2, "minute"], [5, "minute"], [10, "minute"], [30, "minute"],
  [1, "hour"], [2, "hour"], [4, "hour"], [8, "hour"], [12, "hour"],
  [1, "day"], [2, "day"], [3, "day"],
  [0.25, "month"], [0.5, "month"], [1, "month"], [2, "month"], [3, "month"], [6, "month"],
  [1, "year"]
  ],
  monthNames: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
  };
 
  (function () {
 
  var _ = Flotr._;
 
  function getEl (el) {
  return (el && el.jquery) ? el[0] : el;
  }
 
  Flotr.DOM = {
  addClass: function(element, name){
  element = getEl(element);
  var classList = (element.className ? element.className : '');
  if (_.include(classList.split(/\s+/g), name)) return;
  element.className = (classList ? classList + ' ' : '') + name;
  },
  /**
  * Create an element.
  */
  create: function(tag){
  return document.createElement(tag);
  },
  node: function(html) {
  var div = Flotr.DOM.create('div'), n;
  div.innerHTML = html;
  n = div.children[0];
  div.innerHTML = '';
  return n;
  },
  /**
  * Remove all children.
  */
  empty: function(element){
  element = getEl(element);
  element.innerHTML = '';
  /*
  if (!element) return;
  _.each(element.childNodes, function (e) {
  Flotr.DOM.empty(e);
  element.removeChild(e);
  });
  */
  },
  remove: function (element) {
  element = getEl(element);
  element.parentNode.removeChild(element);
  },
  hide: function(element){
  element = getEl(element);
  Flotr.DOM.setStyles(element, {display:'none'});
  },
  /**
  * Insert a child.
  * @param {Element} element
  * @param {Element|String} Element or string to be appended.
  */
  insert: function(element, child){
  element = getEl(element);
  if(_.isString(child))
  element.innerHTML += child;
  else if (_.isElement(child))
  element.appendChild(child);
  },
  // @TODO find xbrowser implementation
  opacity: function(element, opacity) {
  element = getEl(element);
  element.style.opacity = opacity;
  },
  position: function(element, p){
  element = getEl(element);
  if (!element.offsetParent)
  return {left: (element.offsetLeft || 0), top: (element.offsetTop || 0)};
 
  p = this.position(element.offsetParent);
  p.left += element.offsetLeft;
  p.top += element.offsetTop;
  return p;
  },
  removeClass: function(element, name) {
  var classList = (element.className ? element.className : '');
  element = getEl(element);
  element.className = _.filter(classList.split(/\s+/g), function (c) {
  if (c != name) return true; }
  ).join(' ');
  },
  setStyles: function(element, o) {
  element = getEl(element);
  _.each(o, function (value, key) {
  element.style[key] = value;
  });
  },
  show: function(element){
  element = getEl(element);
  Flotr.DOM.setStyles(element, {display:''});
  },
  /**
  * Return element size.
  */
  size: function(element){
  element = getEl(element);
  return {
  height : element.offsetHeight,
  width : element.offsetWidth };
  }
  };
 
  })();
 
  /**
  * Flotr Event Adapter
  */
  (function () {
  var
  F = Flotr,
  bean = F.bean;
  F.EventAdapter = {
  observe: function(object, name, callback) {
  bean.add(object, name, callback);
  return this;
  },
  fire: function(object, name, args) {
  bean.fire(object, name, args);
  if (typeof(Prototype) != 'undefined')
  Event.fire(object, name, args);
  // @TODO Someone who uses mootools, add mootools adapter for existing applciations.
  return this;
  },
  stopObserving: function(object, name, callback) {
  bean.remove(object, name, callback);
  return this;
  },
  eventPointer: function(e) {
  if (!F._.isUndefined(e.touches) && e.touches.length > 0) {
  return {
  x : e.touches[0].pageX,
  y : e.touches[0].pageY
  };
  } else if (!F._.isUndefined(e.changedTouches) && e.changedTouches.length > 0) {
  return {
  x : e.changedTouches[0].pageX,
  y : e.changedTouches[0].pageY
  };
  } else if (e.pageX || e.pageY) {
  return {
  x : e.pageX,
  y : e.pageY
  };
  } else if (e.clientX || e.clientY) {
  var
  d = document,
  b = d.body,
  de = d.documentElement;
  return {
  x: e.clientX + b.scrollLeft + de.scrollLeft,
  y: e.clientY + b.scrollTop + de.scrollTop
  };
  }
  }
  };
  })();
 
  /**
  * Text Utilities
  */
  (function () {
 
  var
  F = Flotr,
  D = F.DOM,
  _ = F._,
 
  Text = function (o) {
  this.o = o;
  };
 
  Text.prototype = {
 
  dimensions : function (text, canvasStyle, htmlStyle, className) {
 
  if (!text) return { width : 0, height : 0 };
 
  return (this.o.html) ?
  this.html(text, this.o.element, htmlStyle, className) :
  this.canvas(text, canvasStyle);
  },
 
  canvas : function (text, style) {
 
  if (!this.o.textEnabled) return;
  style = style || {};
 
  var
  metrics = this.measureText(text, style),
  width = metrics.width,
  height = style.size || F.defaultOptions.fontSize,
  angle = style.angle || 0,
  cosAngle = Math.cos(angle),
  sinAngle = Math.sin(angle),
  widthPadding = 2,
  heightPadding = 6,
  bounds;
 
  bounds = {
  width: Math.abs(cosAngle * width) + Math.abs(sinAngle * height) + widthPadding,
  height: Math.abs(sinAngle * width) + Math.abs(cosAngle * height) + heightPadding
  };
 
  return bounds;
  },
 
  html : function (text, element, style, className) {
 
  var div = D.create('div');
 
  D.setStyles(div, { 'position' : 'absolute', 'top' : '-10000px' });
  D.insert(div, '<div style="'+style+'" class="'+className+' flotr-dummy-div">' + text + '</div>');
  D.insert(this.o.element, div);
 
  return D.size(div);
  },
 
  measureText : function (text, style) {
 
  var
  context = this.o.ctx,
  metrics;
 
  if (!context.fillText || (F.isIphone && context.measure)) {
  return { width : context.measure(text, style)};
  }
 
  style = _.extend({
  size: F.defaultOptions.fontSize,
  weight: 1,
  angle: 0
  }, style);
 
  context.save();
  context.font = (style.weight > 1 ? "bold " : "") + (style.size*1.3) + "px sans-serif";
  metrics = context.measureText(text);
  context.restore();
 
  return metrics;
  }
  };
 
  Flotr.Text = Text;
 
  })();
 
  /**
  * Flotr Graph class that plots a graph on creation.
  */
  (function () {
 
  var
  D = Flotr.DOM,
  E = Flotr.EventAdapter,
  _ = Flotr._,
  flotr = Flotr;
  /**
  * Flotr Graph constructor.
  * @param {Element} el - element to insert the graph into
  * @param {Object} data - an array or object of dataseries
  * @param {Object} options - an object containing options
  */
  Graph = function(el, data, options){
  // Let's see if we can get away with out this [JS]
  // try {
  this._setEl(el);
  this._initMembers();
  this._initPlugins();
 
  E.fire(this.el, 'flotr:beforeinit', [this]);
 
  this.data = data;
  this.series = flotr.Series.getSeries(data);
  this._initOptions(options);
  this._initGraphTypes();
  this._initCanvas();
  this._text = new flotr.Text({
  element : this.el,
  ctx : this.ctx,
  html : this.options.HtmlText,
  textEnabled : this.textEnabled
  });
  E.fire(this.el, 'flotr:afterconstruct', [this]);
  this._initEvents();
 
  this.findDataRanges();
  this.calculateSpacing();
 
  this.draw(_.bind(function() {
  E.fire(this.el, 'flotr:afterinit', [this]);
  }, this));
  /*
  try {
  } catch (e) {
  try {
  console.error(e);
  } catch (e2) {}
  }*/
  };
 
  function observe (object, name, callback) {
  E.observe.apply(this, arguments);
  this._handles.push(arguments);
  return this;
  }
 
  Graph.prototype = {
 
  destroy: function () {
  E.fire(this.el, 'flotr:destroy');
  _.each(this._handles, function (handle) {
  E.stopObserving.apply(this, handle);
  });
  this._handles = [];
  this.el.graph = null;
  },
 
  observe : observe,
 
  /**
  * @deprecated
  */
  _observe : observe,
 
  processColor: function(color, options){
  var o = { x1: 0, y1: 0, x2: this.plotWidth, y2: this.plotHeight, opacity: 1, ctx: this.ctx };
  _.extend(o, options);
  return flotr.Color.processColor(color, o);
  },
  /**
  * Function determines the min and max values for the xaxis and yaxis.
  *
  * TODO logarithmic range validation (consideration of 0)
  */
  findDataRanges: function(){
  var a = this.axes,
  xaxis, yaxis, range;
 
  _.each(this.series, function (series) {
  range = series.getRange();
  if (range) {
  xaxis = series.xaxis;
  yaxis = series.yaxis;
  xaxis.datamin = Math.min(range.xmin, xaxis.datamin);
  xaxis.datamax = Math.max(range.xmax, xaxis.datamax);
  yaxis.datamin = Math.min(range.ymin, yaxis.datamin);
  yaxis.datamax = Math.max(range.ymax, yaxis.datamax);
  xaxis.used = (xaxis.used || range.xused);
  yaxis.used = (yaxis.used || range.yused);
  }
  }, this);
 
  // Check for empty data, no data case (none used)
  if (!a.x.used && !a.x2.used) a.x.used = true;
  if (!a.y.used && !a.y2.used) a.y.used = true;
 
  _.each(a, function (axis) {
  axis.calculateRange();
  });
 
  var
  types = _.keys(flotr.graphTypes),
  drawn = false;
 
  _.each(this.series, function (series) {
  if (series.hide) return;
  _.each(types, function (type) {
  if (series[type] && series[type].show) {
  this.extendRange(type, series);
  drawn = true;
  }
  }, this);
  if (!drawn) {
  this.extendRange(this.options.defaultType, series);
  }
  }, this);
  },
 
  extendRange : function (type, series) {
  if (this[type].extendRange) this[type].extendRange(series, series.data, series[type], this[type]);
  if (this[type].extendYRange) this[type].extendYRange(series.yaxis, series.data, series[type], this[type]);
  if (this[type].extendXRange) this[type].extendXRange(series.xaxis, series.data, series[type], this[type]);
  },
 
  /**
  * Calculates axis label sizes.
  */
  calculateSpacing: function(){
 
  var a = this.axes,
  options = this.options,
  series = this.series,
  margin = options.grid.labelMargin,
  T = this._text,
  x = a.x,
  x2 = a.x2,
  y = a.y,
  y2 = a.y2,
  maxOutset = options.grid.outlineWidth,
  i, j, l, dim;
 
  // TODO post refactor, fix this
  _.each(a, function (axis) {
  axis.calculateTicks();
  axis.calculateTextDimensions(T, options);
  });
 
  // Title height
  dim = T.dimensions(
  options.title,
  {size: options.fontSize*1.5},
  'font-size:1em;font-weight:bold;',
  'flotr-title'
  );
  this.titleHeight = dim.height;
 
  // Subtitle height
  dim = T.dimensions(
  options.subtitle,
  {size: options.fontSize},
  'font-size:smaller;',
  'flotr-subtitle'
  );
  this.subtitleHeight = dim.height;
 
  for(j = 0; j < options.length; ++j){
  if (series[j].points.show){
  maxOutset = Math.max(maxOutset, series[j].points.radius + series[j].points.lineWidth/2);
  }
  }
 
  var p = this.plotOffset;
  if (x.options.margin === false) {
  p.bottom = 0;
  p.top = 0;
  } else {
  p.bottom += (options.grid.circular ? 0 : (x.used && x.options.showLabels ? (x.maxLabel.height + margin) : 0)) +
  (x.used && x.options.title ? (x.titleSize.height + margin) : 0) + maxOutset;
 
  p.top += (options.grid.circular ? 0 : (x2.used && x2.options.showLabels ? (x2.maxLabel.height + margin) : 0)) +
  (x2.used && x2.options.title ? (x2.titleSize.height + margin) : 0) + this.subtitleHeight + this.titleHeight + maxOutset;
  }
  if (y.options.margin === false) {
  p.left = 0;
  p.right = 0;
  } else {
  p.left += (options.grid.circular ? 0 : (y.used && y.options.showLabels ? (y.maxLabel.width + margin) : 0)) +
  (y.used && y.options.title ? (y.titleSize.width + margin) : 0) + maxOutset;
 
  p.right += (options.grid.circular ? 0 : (y2.used && y2.options.showLabels ? (y2.maxLabel.width + margin) : 0)) +
  (y2.used && y2.options.title ? (y2.titleSize.width + margin) : 0) + maxOutset;
  }
 
  p.top = Math.floor(p.top); // In order the outline not to be blured
 
  this.plotWidth = this.canvasWidth - p.left - p.right;
  this.plotHeight = this.canvasHeight - p.bottom - p.top;
 
  // TODO post refactor, fix this
  x.length = x2.length = this.plotWidth;
  y.length = y2.length = this.plotHeight;
  y.offset = y2.offset = this.plotHeight;
  x.setScale();
  x2.setScale();
  y.setScale();
  y2.setScale();
  },
  /**
  * Draws grid, labels, series and outline.
  */
  draw: function(after) {
 
  var
  context = this.ctx,
  i;
 
  E.fire(this.el, 'flotr:beforedraw', [this.series, this]);
 
  if (this.series.length) {
 
  context.save();
  context.translate(this.plotOffset.left, this.plotOffset.top);
 
  for (i = 0; i < this.series.length; i++) {
  if (!this.series[i].hide) this.drawSeries(this.series[i]);
  }
 
  context.restore();
  this.clip();
  }
 
  E.fire(this.el, 'flotr:afterdraw', [this.series, this]);
  if (after) after();
  },
  /**
  * Actually draws the graph.
  * @param {Object} series - series to draw
  */
  drawSeries: function(series){
 
  function drawChart (series, typeKey) {
  var options = this.getOptions(series, typeKey);
  this[typeKey].draw(options);
  }
 
  var drawn = false;
  series = series || this.series;
 
  _.each(flotr.graphTypes, function (type, typeKey) {
  if (series[typeKey] && series[typeKey].show && this[typeKey]) {
  drawn = true;
  drawChart.call(this, series, typeKey);
  }
  }, this);
 
  if (!drawn) drawChart.call(this, series, this.options.defaultType);
  },
 
  getOptions : function (series, typeKey) {
  var
  type = series[typeKey],
  graphType = this[typeKey],
  xaxis = series.xaxis,
  yaxis = series.yaxis,
  options = {
  context : this.ctx,
  width : this.plotWidth,
  height : this.plotHeight,
  fontSize : this.options.fontSize,
  fontColor : this.options.fontColor,
  textEnabled : this.textEnabled,
  htmlText : this.options.HtmlText,
  text : this._text, // TODO Is this necessary?
  element : this.el,
  data : series.data,
  color : series.color,
  shadowSize : series.shadowSize,
  xScale : xaxis.d2p,
  yScale : yaxis.d2p,
  xInverse : xaxis.p2d,
  yInverse : yaxis.p2d
  };
 
  options = flotr.merge(type, options);
 
  // Fill
  options.fillStyle = this.processColor(
  type.fillColor || series.color,
  {opacity: type.fillOpacity}
  );
 
  return options;
  },
  /**
  * Calculates the coordinates from a mouse event object.
  * @param {Event} event - Mouse Event object.
  * @return {Object} Object with coordinates of the mouse.
  */
  getEventPosition: function (e){
 
  var
  d = document,
  b = d.body,
  de = d.documentElement,
  axes = this.axes,
  plotOffset = this.plotOffset,
  lastMousePos = this.lastMousePos,
  pointer = E.eventPointer(e),
  dx = pointer.x - lastMousePos.pageX,
  dy = pointer.y - lastMousePos.pageY,
  r, rx, ry;
 
  if ('ontouchstart' in this.el) {
  r = D.position(this.overlay);
  rx = pointer.x - r.left - plotOffset.left;
  ry = pointer.y - r.top - plotOffset.top;
  } else {
  r = this.overlay.getBoundingClientRect();
  rx = e.clientX - r.left - plotOffset.left - b.scrollLeft - de.scrollLeft;
  ry = e.clientY - r.top - plotOffset.top - b.scrollTop - de.scrollTop;
  }
 
  return {
  x: axes.x.p2d(rx),
  x2: axes.x2.p2d(rx),
  y: axes.y.p2d(ry),
  y2: axes.y2.p2d(ry),
  relX: rx,
  relY: ry,
  dX: dx,
  dY: dy,
  absX: pointer.x,
  absY: pointer.y,
  pageX: pointer.x,
  pageY: pointer.y
  };
  },
  /**
  * Observes the 'click' event and fires the 'flotr:click' event.
  * @param {Event} event - 'click' Event object.
  */
  clickHandler: function(event){
  if(this.ignoreClick){
  this.ignoreClick = false;
  return this.ignoreClick;
  }
  E.fire(this.el, 'flotr:click', [this.getEventPosition(event), this]);
  },
  /**
  * Observes mouse movement over the graph area. Fires the 'flotr:mousemove' event.
  * @param {Event} event - 'mousemove' Event object.
  */
  mouseMoveHandler: function(event){
  if (this.mouseDownMoveHandler) return;
  var pos = this.getEventPosition(event);
  E.fire(this.el, 'flotr:mousemove', [event, pos, this]);
  this.lastMousePos = pos;
  },
  /**
  * Observes the 'mousedown' event.
  * @param {Event} event - 'mousedown' Event object.
  */
  mouseDownHandler: function (event){
 
  /*
  // @TODO Context menu?
  if(event.isRightClick()) {
  event.stop();
 
  var overlay = this.overlay;
  overlay.hide();
 
  function cancelContextMenu () {
  overlay.show();
  E.stopObserving(document, 'mousemove', cancelContextMenu);
  }
  E.observe(document, 'mousemove', cancelContextMenu);
  return;
  }
  */
 
  if (this.mouseUpHandler) return;
  this.mouseUpHandler = _.bind(function (e) {
  E.stopObserving(document, 'mouseup', this.mouseUpHandler);
  E.stopObserving(document, 'mousemove', this.mouseDownMoveHandler);
  this.mouseDownMoveHandler = null;
  this.mouseUpHandler = null;
  // @TODO why?
  //e.stop();
  E.fire(this.el, 'flotr:mouseup', [e, this]);
  }, this);
  this.mouseDownMoveHandler = _.bind(function (e) {
  var pos = this.getEventPosition(e);
  E.fire(this.el, 'flotr:mousemove', [event, pos, this]);
  this.lastMousePos = pos;
  }, this);
  E.observe(document, 'mouseup', this.mouseUpHandler);
  E.observe(document, 'mousemove', this.mouseDownMoveHandler);
  E.fire(this.el, 'flotr:mousedown', [event, this]);
  this.ignoreClick = false;
  },
  drawTooltip: function(content, x, y, options) {
  var mt = this.getMouseTrack(),
  style = 'opacity:0.7;background-color:#000;color:#fff;display:none;position:absolute;padding:2px 8px;-moz-border-radius:4px;border-radius:4px;white-space:nowrap;',
  p = options.position,
  m = options.margin,
  plotOffset = this.plotOffset;
 
  if(x !== null && y !== null){
  if (!options.relative) { // absolute to the canvas
  if(p.charAt(0) == 'n') style += 'top:' + (m + plotOffset.top) + 'px;bottom:auto;';
  else if(p.charAt(0) == 's') style += 'bottom:' + (m + plotOffset.bottom) + 'px;top:auto;';
  if(p.charAt(1) == 'e') style += 'right:' + (m + plotOffset.right) + 'px;left:auto;';
  else if(p.charAt(1) == 'w') style += 'left:' + (m + plotOffset.left) + 'px;right:auto;';
  }
  else { // relative to the mouse
  if(p.charAt(0) == 'n') style += 'bottom:' + (m - plotOffset.top - y + this.canvasHeight) + 'px;top:auto;';
  else if(p.charAt(0) == 's') style += 'top:' + (m + plotOffset.top + y) + 'px;bottom:auto;';
  if(p.charAt(1) == 'e') style += 'left:' + (m + plotOffset.left + x) + 'px;right:auto;';
  else if(p.charAt(1) == 'w') style += 'right:' + (m - plotOffset.left - x + this.canvasWidth) + 'px;left:auto;';
  }
 
  mt.style.cssText = style;
  D.empty(mt);
  D.insert(mt, content);
  D.show(mt);
  }
  else {
  D.hide(mt);
  }
  },
 
  clip: function (ctx) {
 
  var
  o = this.plotOffset,
  w = this.canvasWidth,
  h = this.canvasHeight;
 
  ctx = ctx || this.ctx;
 
  if (flotr.isIE && flotr.isIE < 9) {
  // Clipping for excanvas :-(
  ctx.save();
  ctx.fillStyle = this.processColor(this.options.ieBackgroundColor);
  ctx.fillRect(0, 0, w, o.top);
  ctx.fillRect(0, 0, o.left, h);
  ctx.fillRect(0, h - o.bottom, w, o.bottom);
  ctx.fillRect(w - o.right, 0, o.right,h);
  ctx.restore();
  } else {
  ctx.clearRect(0, 0, w, o.top);
  ctx.clearRect(0, 0, o.left, h);
  ctx.clearRect(0, h - o.bottom, w, o.bottom);
  ctx.clearRect(w - o.right, 0, o.right,h);
  }
  },
 
  _initMembers: function() {
  this._handles = [];
  this.lastMousePos = {pageX: null, pageY: null };
  this.plotOffset = {left: 0, right: 0, top: 0, bottom: 0};
  this.ignoreClick = true;
  this.prevHit = null;
  },
 
  _initGraphTypes: function() {
  _.each(flotr.graphTypes, function(handler, graphType){
  this[graphType] = flotr.clone(handler);
  }, this);
  },
 
  _initEvents: function () {
 
  var
  el = this.el,
  touchendHandler, movement, touchend;
 
  if ('ontouchstart' in el) {
 
  touchendHandler = _.bind(function (e) {
  touchend = true;
  E.stopObserving(document, 'touchend', touchendHandler);
  E.fire(el, 'flotr:mouseup', [event, this]);
  this.multitouches = null;
 
  if (!movement) {
  this.clickHandler(e);
  }
  }, this);
 
  this.observe(this.overlay, 'touchstart', _.bind(function (e) {
  movement = false;
  touchend = false;
  this.ignoreClick = false;
 
  if (e.touches && e.touches.length > 1) {
  this.multitouches = e.touches;
  }
 
  E.fire(el, 'flotr:mousedown', [event, this]);
  this.observe(document, 'touchend', touchendHandler);
  }, this));
 
  this.observe(this.overlay, 'touchmove', _.bind(function (e) {
 
  var pos = this.getEventPosition(e);
 
  if (this.options.preventDefault) {
  e.preventDefault();
  }
 
  movement = true;
 
  if (this.multitouches || (e.touches && e.touches.length > 1)) {
  this.multitouches = e.touches;
  } else {
  if (!touchend) {
  E.fire(el, 'flotr:mousemove', [event, pos, this]);
  }
  }
  this.lastMousePos = pos;
  }, this));
 
  } else {
  this.
  observe(this.overlay, 'mousedown', _.bind(this.mouseDownHandler, this)).
  observe(el, 'mousemove', _.bind(this.mouseMoveHandler, this)).
  observe(this.overlay, 'click', _.bind(this.clickHandler, this)).
  observe(el, 'mouseout', function () {
  E.fire(el, 'flotr:mouseout');
  });
  }
  },
 
  /**
  * Initializes the canvas and it's overlay canvas element. When the browser is IE, this makes use
  * of excanvas. The overlay canvas is inserted for displaying interactions. After the canvas elements
  * are created, the elements are inserted into the container element.
  */
  _initCanvas: function(){
  var el = this.el,
  o = this.options,
  children = el.children,
  removedChildren = [],
  child, i,
  size, style;
 
  // Empty the el
  for (i = children.length; i--;) {
  child = children[i];
  if (!this.canvas && child.className === 'flotr-canvas') {
  this.canvas = child;
  } else if (!this.overlay && child.className === 'flotr-overlay') {
  this.overlay = child;
  } else {
  removedChildren.push(child);
  }
  }
  for (i = removedChildren.length; i--;) {
  el.removeChild(removedChildren[i]);
  }
 
  D.setStyles(el, {position: 'relative'}); // For positioning labels and overlay.
  size = {};
  size.width = el.clientWidth;
  size.height = el.clientHeight;
 
  if(size.width <= 0 || size.height <= 0 || o.resolution <= 0){
  throw 'Invalid dimensions for plot, width = ' + size.width + ', height = ' + size.height + ', resolution = ' + o.resolution;
  }
 
  // Main canvas for drawing graph types
  this.canvas = getCanvas(this.canvas, 'canvas');
  // Overlay canvas for interactive features
  this.overlay = getCanvas(this.overlay, 'overlay');
  this.ctx = getContext(this.canvas);
  this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height);
  this.octx = getContext(this.overlay);
  this.octx.clearRect(0, 0, this.overlay.width, this.overlay.height);
  this.canvasHeight = size.height;
  this.canvasWidth = size.width;
  this.textEnabled = !!this.ctx.drawText || !!this.ctx.fillText; // Enable text functions
 
  function getCanvas(canvas, name){
  if(!canvas){
  canvas = D.create('canvas');
  if (typeof FlashCanvas != "undefined" && typeof canvas.getContext === 'function') {
  FlashCanvas.initElement(canvas);
  }
  canvas.className = 'flotr-'+name;
  canvas.style.cssText = 'position:absolute;left:0px;top:0px;';
  D.insert(el, canvas);
  }
  _.each(size, function(size, attribute){
  D.show(canvas);
  if (name == 'canvas' && canvas.getAttribute(attribute) === size) {
  return;
  }
  canvas.setAttribute(attribute, size * o.resolution);
  canvas.style[attribute] = size + 'px';
  });
  canvas.context_ = null; // Reset the ExCanvas context
  return canvas;
  }
 
  function getContext(canvas){
  if(window.G_vmlCanvasManager) window.G_vmlCanvasManager.initElement(canvas); // For ExCanvas
  var context = canvas.getContext('2d');
  if(!window.G_vmlCanvasManager) context.scale(o.resolution, o.resolution);
  return context;
  }
  },
 
  _initPlugins: function(){
  // TODO Should be moved to flotr and mixed in.
  _.each(flotr.plugins, function(plugin, name){
  _.each(plugin.callbacks, function(fn, c){
  this.observe(this.el, c, _.bind(fn, this));
  }, this);
  this[name] = flotr.clone(plugin);
  _.each(this[name], function(fn, p){
  if (_.isFunction(fn))
  this[name][p] = _.bind(fn, this);
  }, this);
  }, this);
  },
 
  /**
  * Sets options and initializes some variables and color specific values, used by the constructor.
  * @param {Object} opts - options object
  */
  _initOptions: function(opts){
  var options = flotr.clone(flotr.defaultOptions);
  options.x2axis = _.extend(_.clone(options.xaxis), options.x2axis);
  options.y2axis = _.extend(_.clone(options.yaxis), options.y2axis);
  this.options = flotr.merge(opts || {}, options);
 
  if (this.options.grid.minorVerticalLines === null &&
  this.options.xaxis.scaling === 'logarithmic') {
  this.options.grid.minorVerticalLines = true;
  }
  if (this.options.grid.minorHorizontalLines === null &&
  this.options.yaxis.scaling === 'logarithmic') {
  this.options.grid.minorHorizontalLines = true;
  }
 
  E.fire(this.el, 'flotr:afterinitoptions', [this]);
 
  this.axes = flotr.Axis.getAxes(this.options);
 
  // Initialize some variables used throughout this function.
  var assignedColors = [],
  colors = [],
  ln = this.series.length,
  neededColors = this.series.length,
  oc = this.options.colors,
  usedColors = [],
  variation = 0,
  c, i, j, s;
 
  // Collect user-defined colors from series.
  for(i = neededColors - 1; i > -1; --i){
  c = this.series[i].color;
  if(c){
  --neededColors;
  if(_.isNumber(c)) assignedColors.push(c);
  else usedColors.push(flotr.Color.parse(c));
  }
  }
 
  // Calculate the number of colors that need to be generated.
  for(i = assignedColors.length - 1; i > -1; --i)
  neededColors = Math.max(neededColors, assignedColors[i] + 1);
 
  // Generate needed number of colors.
  for(i = 0; colors.length < neededColors;){
  c = (oc.length == i) ? new flotr.Color(100, 100, 100) : flotr.Color.parse(oc[i]);
 
  // Make sure each serie gets a different color.
  var sign = variation % 2 == 1 ? -1 : 1,
  factor = 1 + sign * Math.ceil(variation / 2) * 0.2;
  c.scale(factor, factor, factor);
 
  /**
  * @todo if we're getting too close to something else, we should probably skip this one
  */
  colors.push(c);
 
  if(++i >= oc.length){
  i = 0;
  ++variation;
  }
  }
 
  // Fill the options with the generated colors.
  for(i = 0, j = 0; i < ln; ++i){
  s = this.series[i];
 
  // Assign the color.
  if (!s.color){
  s.color = colors[j++].toString();
  }else if(_.isNumber(s.color)){
  s.color = colors[s.color].toString();
  }
 
  // Every series needs an axis
  if (!s.xaxis) s.xaxis = this.axes.x;
  if (s.xaxis == 1) s.xaxis = this.axes.x;
  else if (s.xaxis == 2) s.xaxis = this.axes.x2;
 
  if (!s.yaxis) s.yaxis = this.axes.y;
  if (s.yaxis == 1) s.yaxis = this.axes.y;
  else if (s.yaxis == 2) s.yaxis = this.axes.y2;
 
  // Apply missing options to the series.
  for (var t in flotr.graphTypes){
  s[t] = _.extend(_.clone(this.options[t]), s[t]);
  }
  s.mouse = _.extend(_.clone(this.options.mouse), s.mouse);
 
  if (_.isUndefined(s.shadowSize)) s.shadowSize = this.options.shadowSize;
  }
  },
 
  _setEl: function(el) {
  if (!el) throw 'The target container doesn\'t exist';
  else if (el.graph instanceof Graph) el.graph.destroy();
  else if (!el.clientWidth) throw 'The target container must be visible';
 
  el.graph = this;
  this.el = el;
  }
  };
 
  Flotr.Graph = Graph;
 
  })();
 
  /**
  * Flotr Axis Library
  */
 
  (function () {
 
  var
  _ = Flotr._,
  LOGARITHMIC = 'logarithmic';
 
  function Axis (o) {
 
  this.orientation = 1;
  this.offset = 0;
  this.datamin = Number.MAX_VALUE;
  this.datamax = -Number.MAX_VALUE;
 
  _.extend(this, o);
  }
 
 
  // Prototype
  Axis.prototype = {
 
  setScale : function () {
  var
  length = this.length,
  max = this.max,
  min = this.min,
  offset = this.offset,
  orientation = this.orientation,
  options = this.options,
  logarithmic = options.scaling === LOGARITHMIC,
  scale;
 
  if (logarithmic) {
  scale = length / (log(max, options.base) - log(min, options.base));
  } else {
  scale = length / (max - min);
  }
  this.scale = scale;
 
  // Logarithmic?
  if (logarithmic) {
  this.d2p = function (dataValue) {
  return offset + orientation * (log(dataValue, options.base) - log(min, options.base)) * scale;
  };
  this.p2d = function (pointValue) {
  return exp((offset + orientation * pointValue) / scale + log(min, options.base), options.base);
  };
  } else {
  this.d2p = function (dataValue) {
  return offset + orientation * (dataValue - min) * scale;
  };
  this.p2d = function (pointValue) {
  return (offset + orientation * pointValue) / scale + min;
  };
  }
  },
 
  calculateTicks : function () {
  var options = this.options;
 
  this.ticks = [];
  this.minorTicks = [];
 
  // User Ticks
  if(options.ticks){
  this._cleanUserTicks(options.ticks, this.ticks);
  this._cleanUserTicks(options.minorTicks || [], this.minorTicks);
  }
  else {
  if (options.mode == 'time') {
  this._calculateTimeTicks();
  } else if (options.scaling === 'logarithmic') {
  this._calculateLogTicks();
  } else {
  this._calculateTicks();
  }
  }
 
  // Ticks to strings
  _.each(this.ticks, function (tick) { tick.label += ''; });
  _.each(this.minorTicks, function (tick) { tick.label += ''; });
  },
 
  /**
  * Calculates the range of an axis to apply autoscaling.
  */
  calculateRange: function () {
 
  if (!this.used) return;
 
  var axis = this,
  o = axis.options,
  min = o.min !== null ? o.min : axis.datamin,
  max = o.max !== null ? o.max : axis.datamax,
  margin = o.autoscaleMargin;
 
  if (o.scaling == 'logarithmic') {
  if (min <= 0) min = axis.datamin;
 
  // Let it widen later on
  if (max <= 0) max = min;
  }
 
  if (max == min) {
  var widen = max ? 0.01 : 1.00;
  if (o.min === null) min -= widen;
  if (o.max === null) max += widen;
  }
 
  if (o.scaling === 'logarithmic') {
  if (min < 0) min = max / o.base; // Could be the result of widening
 
  var maxexp = Math.log(max);
  if (o.base != Math.E) maxexp /= Math.log(o.base);
  maxexp = Math.ceil(maxexp);
 
  var minexp = Math.log(min);
  if (o.base != Math.E) minexp /= Math.log(o.base);
  minexp = Math.ceil(minexp);
 
  axis.tickSize = Flotr.getTickSize(o.noTicks, minexp, maxexp, o.tickDecimals === null ? 0 : o.tickDecimals);
 
  // Try to determine a suitable amount of miniticks based on the length of a decade
  if (o.minorTickFreq === null) {
  if (maxexp - minexp > 10)
  o.minorTickFreq = 0;
  else if (maxexp - minexp > 5)
  o.minorTickFreq = 2;
  else
  o.minorTickFreq = 5;
  }
  } else {
  axis.tickSize = Flotr.getTickSize(o.noTicks, min, max, o.tickDecimals);
  }
 
  axis.min = min;
  axis.max = max; //extendRange may use axis.min or axis.max, so it should be set before it is caled
 
  // Autoscaling. @todo This probably fails with log scale. Find a testcase and fix it
  if(o.min === null && o.autoscale){
  axis.min -= axis.tickSize * margin;
  // Make sure we don't go below zero if all values are positive.
  if(axis.min < 0 && axis.datamin >= 0) axis.min = 0;
  axis.min = axis.tickSize * Math.floor(axis.min / axis.tickSize);
  }
 
  if(o.max === null && o.autoscale){
  axis.max += axis.tickSize * margin;
  if(axis.max > 0 && axis.datamax <= 0 && axis.datamax != axis.datamin) axis.max = 0;
  axis.max = axis.tickSize * Math.ceil(axis.max / axis.tickSize);
  }
 
  if (axis.min == axis.max) axis.max = axis.min + 1;
  },
 
  calculateTextDimensions : function (T, options) {
 
  var maxLabel = '',
  length,
  i;
 
  if (this.options.showLabels) {
  for (i = 0; i < this.ticks.length; ++i) {
  length = this.ticks[i].label.length;
  if (length > maxLabel.length){
  maxLabel = this.ticks[i].label;
  }
  }
  }
 
  this.maxLabel = T.dimensions(
  maxLabel,
  {size:options.fontSize, angle: Flotr.toRad(this.options.labelsAngle)},
  'font-size:smaller;',
  'flotr-grid-label'
  );
 
  this.titleSize = T.dimensions(
  this.options.title,
  {size:options.fontSize*1.2, angle: Flotr.toRad(this.options.titleAngle)},
  'font-weight:bold;',
  'flotr-axis-title'
  );
  },
 
  _cleanUserTicks : function (ticks, axisTicks) {
 
  var axis = this, options = this.options,
  v, i, label, tick;
 
  if(_.isFunction(ticks)) ticks = ticks({min : axis.min, max : axis.max});
 
  for(i = 0; i < ticks.length; ++i){
  tick = ticks[i];
  if(typeof(tick) === 'object'){
  v = tick[0];
  label = (tick.length > 1) ? tick[1] : options.tickFormatter(v, {min : axis.min, max : axis.max});
  } else {
  v = tick;
  label = options.tickFormatter(v, {min : this.min, max : this.max});
  }
  axisTicks[i] = { v: v, label: label };
  }
  },
 
  _calculateTimeTicks : function () {
  this.ticks = Flotr.Date.generator(this);
  },
 
  _calculateLogTicks : function () {
 
  var axis = this,
  o = axis.options,
  v,
  decadeStart;
 
  var max = Math.log(axis.max);
  if (o.base != Math.E) max /= Math.log(o.base);
  max = Math.ceil(max);
 
  var min = Math.log(axis.min);
  if (o.base != Math.E) min /= Math.log(o.base);
  min = Math.ceil(min);
 
  for (i = min; i < max; i += axis.tickSize) {
  decadeStart = (o.base == Math.E) ? Math.exp(i) : Math.pow(o.base, i);
  // Next decade begins here:
  var decadeEnd = decadeStart * ((o.base == Math.E) ? Math.exp(axis.tickSize) : Math.pow(o.base, axis.tickSize));
  var stepSize = (decadeEnd - decadeStart) / o.minorTickFreq;
 
  axis.ticks.push({v: decadeStart, label: o.tickFormatter(decadeStart, {min : axis.min, max : axis.max})});
  for (v = decadeStart + stepSize; v < decadeEnd; v += stepSize)
  axis.minorTicks.push({v: v, label: o.tickFormatter(v, {min : axis.min, max : axis.max})});
  }
 
  // Always show the value at the would-be start of next decade (end of this decade)
  decadeStart = (o.base == Math.E) ? Math.exp(i) : Math.pow(o.base, i);
  axis.ticks.push({v: decadeStart, label: o.tickFormatter(decadeStart, {min : axis.min, max : axis.max})});
  },
 
  _calculateTicks : function () {
 
  var axis = this,
  o = axis.options,
  tickSize = axis.tickSize,
  min = axis.min,
  max = axis.max,
  start = tickSize * Math.ceil(min / tickSize), // Round to nearest multiple of tick size.
  decimals,
  minorTickSize,
  v, v2,
  i, j;
 
  if (o.minorTickFreq)
  minorTickSize = tickSize / o.minorTickFreq;
 
  // Then store all possible ticks.
  for (i = 0; (v = v2 = start + i * tickSize) <= max; ++i){
 
  // Round (this is always needed to fix numerical instability).
  decimals = o.tickDecimals;
  if (decimals === null) decimals = 1 - Math.floor(Math.log(tickSize) / Math.LN10);
  if (decimals < 0) decimals = 0;
 
  v = v.toFixed(decimals);
  axis.ticks.push({ v: v, label: o.tickFormatter(v, {min : axis.min, max : axis.max}) });
 
  if (o.minorTickFreq) {
  for (j = 0; j < o.minorTickFreq && (i * tickSize + j * minorTickSize) < max; ++j) {
  v = v2 + j * minorTickSize;
  axis.minorTicks.push({ v: v, label: o.tickFormatter(v, {min : axis.min, max : axis.max}) });
  }
  }
  }
 
  }
  };
 
 
  // Static Methods
  _.extend(Axis, {
  getAxes : function (options) {
  return {
  x: new Axis({options: options.xaxis, n: 1, length: this.plotWidth}),
  x2: new Axis({options: options.x2axis, n: 2, length: this.plotWidth}),
  y: new Axis({options: options.yaxis, n: 1, length: this.plotHeight, offset: this.plotHeight, orientation: -1}),
  y2: new Axis({options: options.y2axis, n: 2, length: this.plotHeight, offset: this.plotHeight, orientation: -1})
  };
  }
  });
 
 
  // Helper Methods
 
 
  function log (value, base) {
  value = Math.log(Math.max(value, Number.MIN_VALUE));
  if (base !== Math.E)
  value /= Math.log(base);
  return value;
  }
 
  function exp (value, base) {
  return (base === Math.E) ? Math.exp(value) : Math.pow(base, value);
  }
 
  Flotr.Axis = Axis;
 
  })();
 
  /**
  * Flotr Series Library
  */
 
  (function () {
 
  var
  _ = Flotr._;
 
  function Series (o) {
  _.extend(this, o);
  }
 
  Series.prototype = {
 
  getRange: function () {
 
  var
  data = this.data,
  length = data.length,
  xmin = Number.MAX_VALUE,
  ymin = Number.MAX_VALUE,
  xmax = -Number.MAX_VALUE,
  ymax = -Number.MAX_VALUE,
  xused = false,
  yused = false,
  x, y, i;
 
  if (length < 0 || this.hide) return false;
 
  for (i = 0; i < length; i++) {
  x = data[i][0];
  y = data[i][1];
  if (x !== null) {
  if (x < xmin) { xmin = x; xused = true; }
  if (x > xmax) { xmax = x; xused = true; }
  }
  if (y !== null) {
  if (y < ymin) { ymin = y; yused = true; }
  if (y > ymax) { ymax = y; yused = true; }
  }
  }
 
  return {
  xmin : xmin,
  xmax : xmax,
  ymin : ymin,
  ymax : ymax,
  xused : xused,
  yused : yused
  };
  }
  };
 
  _.extend(Series, {
  /**
  * Collects dataseries from input and parses the series into the right format. It returns an Array
  * of Objects each having at least the 'data' key set.
  * @param {Array, Object} data - Object or array of dataseries
  * @return {Array} Array of Objects parsed into the right format ({(...,) data: [[x1,y1], [x2,y2], ...] (, ...)})
  */
  getSeries: function(data){
  return _.map(data, function(s){
  var series;
  if (s.data) {
  series = new Series();
  _.extend(series, s);
  } else {
  series = new Series({data:s});
  }
  return series;
  });
  }
  });
 
  Flotr.Series = Series;
 
  })();
 
  /** Lines **/
  Flotr.addType('lines', {
  options: {
  show: false, // => setting to true will show lines, false will hide
  lineWidth: 2, // => line width in pixels
  fill: false, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillBorder: false, // => draw a border around the fill
  fillColor: null, // => fill color
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  steps: false, // => draw steps
  stacked: false // => setting to true will show stacked lines, false will show normal lines
  },
 
  stack : {
  values : []
  },
 
  /**
  * Draws lines series in the canvas element.
  * @param {Object} options
  */
  draw : function (options) {
 
  var
  context = options.context,
  lineWidth = options.lineWidth,
  shadowSize = options.shadowSize,
  offset;
 
  context.save();
  context.lineJoin = 'round';
 
  if (shadowSize) {
 
  context.lineWidth = shadowSize / 2;
  offset = lineWidth / 2 + context.lineWidth / 2;
 
  // @TODO do this instead with a linear gradient
  context.strokeStyle = "rgba(0,0,0,0.1)";
  this.plot(options, offset + shadowSize / 2, false);
 
  context.strokeStyle = "rgba(0,0,0,0.2)";
  this.plot(options, offset, false);
  }
 
  context.lineWidth = lineWidth;
  context.strokeStyle = options.color;
 
  this.plot(options, 0, true);
 
  context.restore();
  },
 
  plot : function (options, shadowOffset, incStack) {
 
  var
  context = options.context,
  width = options.width,
  height = options.height,
  xScale = options.xScale,
  yScale = options.yScale,
  data = options.data,
  stack = options.stacked ? this.stack : false,
  length = data.length - 1,
  prevx = null,
  prevy = null,
  zero = yScale(0),
  start = null,
  x1, x2, y1, y2, stack1, stack2, i;
 
  if (length < 1) return;
 
  context.beginPath();
 
  for (i = 0; i < length; ++i) {
 
  // To allow empty values
  if (data[i][1] === null || data[i+1][1] === null) {
  if (options.fill) {
  if (i > 0 && data[i][1]) {
  context.stroke();
  fill();
  start = null;
  context.closePath();
  context.beginPath();
  }
  }
  continue;
  }
 
  // Zero is infinity for log scales
  // TODO handle zero for logarithmic
  // if (xa.options.scaling === 'logarithmic' && (data[i][0] <= 0 || data[i+1][0] <= 0)) continue;
  // if (ya.options.scaling === 'logarithmic' && (data[i][1] <= 0 || data[i+1][1] <= 0)) continue;
 
  x1 = xScale(data[i][0]);
  x2 = xScale(data[i+1][0]);
 
  if (start === null) start = data[i];
 
  if (stack) {
 
  stack1 = stack.values[data[i][0]] || 0;
  stack2 = stack.values[data[i+1][0]] || stack.values[data[i][0]] || 0;
 
  y1 = yScale(data[i][1] + stack1);
  y2 = yScale(data[i+1][1] + stack2);
 
  if(incStack){
  stack.values[data[i][0]] = data[i][1]+stack1;
 
  if(i == length-1)
  stack.values[data[i+1][0]] = data[i+1][1]+stack2;
  }
  }
  else{
  y1 = yScale(data[i][1]);
  y2 = yScale(data[i+1][1]);
  }
 
  if (
  (y1 > height && y2 > height) ||
  (y1 < 0 && y2 < 0) ||
  (x1 < 0 && x2 < 0) ||
  (x1 > width && x2 > width)
  ) continue;
 
  if((prevx != x1) || (prevy != y1 + shadowOffset))
  context.moveTo(x1, y1 + shadowOffset);
 
  prevx = x2;
  prevy = y2 + shadowOffset;
  if (options.steps) {
  context.lineTo(prevx + shadowOffset / 2, y1 + shadowOffset);
  context.lineTo(prevx + shadowOffset / 2, prevy);
  } else {
  context.lineTo(prevx, prevy);
  }
  }
 
  if (!options.fill || options.fill && !options.fillBorder) context.stroke();
 
  fill();
 
  function fill () {
  // TODO stacked lines
  if(!shadowOffset && options.fill && start){
  x1 = xScale(start[0]);
  context.fillStyle = options.fillStyle;
  context.lineTo(x2, zero);
  context.lineTo(x1, zero);
  context.lineTo(x1, yScale(start[1]));
  context.fill();
  if (options.fillBorder) {
  context.stroke();
  }
  }
  }
 
  context.closePath();
  },
 
  // Perform any pre-render precalculations (this should be run on data first)
  // - Pie chart total for calculating measures
  // - Stacks for lines and bars
  // precalculate : function () {
  // }
  //
  //
  // Get any bounds after pre calculation (axis can fetch this if does not have explicit min/max)
  // getBounds : function () {
  // }
  // getMin : function () {
  // }
  // getMax : function () {
  // }
  //
  //
  // Padding around rendered elements
  // getPadding : function () {
  // }
 
  extendYRange : function (axis, data, options, lines) {
 
  var o = axis.options;
 
  // If stacked and auto-min
  if (options.stacked && ((!o.max && o.max !== 0) || (!o.min && o.min !== 0))) {
 
  var
  newmax = axis.max,
  newmin = axis.min,
  positiveSums = lines.positiveSums || {},
  negativeSums = lines.negativeSums || {},
  x, j;
 
  for (j = 0; j < data.length; j++) {
 
  x = data[j][0] + '';
 
  // Positive
  if (data[j][1] > 0) {
  positiveSums[x] = (positiveSums[x] || 0) + data[j][1];
  newmax = Math.max(newmax, positiveSums[x]);
  }
 
  // Negative
  else {
  negativeSums[x] = (negativeSums[x] || 0) + data[j][1];
  newmin = Math.min(newmin, negativeSums[x]);
  }
  }
 
  lines.negativeSums = negativeSums;
  lines.positiveSums = positiveSums;
 
  axis.max = newmax;
  axis.min = newmin;
  }
 
  if (options.steps) {
 
  this.hit = function (options) {
  var
  data = options.data,
  args = options.args,
  yScale = options.yScale,
  mouse = args[0],
  length = data.length,
  n = args[1],
  x = options.xInverse(mouse.relX),
  relY = mouse.relY,
  i;
 
  for (i = 0; i < length - 1; i++) {
  if (x >= data[i][0] && x <= data[i+1][0]) {
  if (Math.abs(yScale(data[i][1]) - relY) < 8) {
  n.x = data[i][0];
  n.y = data[i][1];
  n.index = i;
  n.seriesIndex = options.index;
  }
  break;
  }
  }
  };
 
  this.drawHit = function (options) {
  var
  context = options.context,
  args = options.args,
  data = options.data,
  xScale = options.xScale,
  index = args.index,
  x = xScale(args.x),
  y = options.yScale(args.y),
  x2;
 
  if (data.length - 1 > index) {
  x2 = options.xScale(data[index + 1][0]);
  context.save();
  context.strokeStyle = options.color;
  context.lineWidth = options.lineWidth;
  context.beginPath();
  context.moveTo(x, y);
  context.lineTo(x2, y);
  context.stroke();
  context.closePath();
  context.restore();
  }
  };
 
  this.clearHit = function (options) {
  var
  context = options.context,
  args = options.args,
  data = options.data,
  xScale = options.xScale,
  width = options.lineWidth,
  index = args.index,
  x = xScale(args.x),
  y = options.yScale(args.y),
  x2;
 
  if (data.length - 1 > index) {
  x2 = options.xScale(data[index + 1][0]);
  context.clearRect(x - width, y - width, x2 - x + 2 * width, 2 * width);
  }
  };
  }
  }
 
  });
 
  /** Bars **/
  Flotr.addType('bars', {
 
  options: {
  show: false, // => setting to true will show bars, false will hide
  lineWidth: 2, // => in pixels
  barWidth: 1, // => in units of the x axis
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillColor: null, // => fill color
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  horizontal: false, // => horizontal bars (x and y inverted)
  stacked: false, // => stacked bar charts
  centered: true, // => center the bars to their x axis value
  topPadding: 0.1, // => top padding in percent
  grouped: false // => groups bars together which share x value, hit not supported.
  },
 
  stack : {
  positive : [],
  negative : [],
  _positive : [], // Shadow
  _negative : [] // Shadow
  },
 
  draw : function (options) {
  var
  context = options.context;
 
  this.current += 1;
 
  context.save();
  context.lineJoin = 'miter';
  // @TODO linewidth not interpreted the right way.
  context.lineWidth = options.lineWidth;
  context.strokeStyle = options.color;
  if (options.fill) context.fillStyle = options.fillStyle;
 
  this.plot(options);
 
  context.restore();
  },
 
  plot : function (options) {
 
  var
  data = options.data,
  context = options.context,
  shadowSize = options.shadowSize,
  i, geometry, left, top, width, height;
 
  if (data.length < 1) return;
 
  this.translate(context, options.horizontal);
 
  for (i = 0; i < data.length; i++) {
 
  geometry = this.getBarGeometry(data[i][0], data[i][1], options);
  if (geometry === null) continue;
 
  left = geometry.left;
  top = geometry.top;
  width = geometry.width;
  height = geometry.height;
 
  if (options.fill) context.fillRect(left, top, width, height);
  if (shadowSize) {
  context.save();
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.fillRect(left + shadowSize, top + shadowSize, width, height);
  context.restore();
  }
  if (options.lineWidth) {
  context.strokeRect(left, top, width, height);
  }
  }
  },
 
  translate : function (context, horizontal) {
  if (horizontal) {
  context.rotate(-Math.PI / 2);
  context.scale(-1, 1);
  }
  },
 
  getBarGeometry : function (x, y, options) {
 
  var
  horizontal = options.horizontal,
  barWidth = options.barWidth,
  centered = options.centered,
  stack = options.stacked ? this.stack : false,
  lineWidth = options.lineWidth,
  bisection = centered ? barWidth / 2 : 0,
  xScale = horizontal ? options.yScale : options.xScale,
  yScale = horizontal ? options.xScale : options.yScale,
  xValue = horizontal ? y : x,
  yValue = horizontal ? x : y,
  stackOffset = 0,
  stackValue, left, right, top, bottom;
 
  if (options.grouped) {
  this.current / this.groups;
  xValue = xValue - bisection;
  barWidth = barWidth / this.groups;
  bisection = barWidth / 2;
  xValue = xValue + barWidth * this.current - bisection;
  }
 
  // Stacked bars
  if (stack) {
  stackValue = yValue > 0 ? stack.positive : stack.negative;
  stackOffset = stackValue[xValue] || stackOffset;
  stackValue[xValue] = stackOffset + yValue;
  }
 
  left = xScale(xValue - bisection);
  right = xScale(xValue + barWidth - bisection);
  top = yScale(yValue + stackOffset);
  bottom = yScale(stackOffset);
 
  // TODO for test passing... probably looks better without this
  if (bottom < 0) bottom = 0;
 
  // TODO Skipping...
  // if (right < xa.min || left > xa.max || top < ya.min || bottom > ya.max) continue;
 
  return (x === null || y === null) ? null : {
  x : xValue,
  y : yValue,
  xScale : xScale,
  yScale : yScale,
  top : top,
  left : Math.min(left, right) - lineWidth / 2,
  width : Math.abs(right - left) - lineWidth,
  height : bottom - top
  };
  },
 
  hit : function (options) {
  var
  data = options.data,
  args = options.args,
  mouse = args[0],
  n = args[1],
  x = options.xInverse(mouse.relX),
  y = options.yInverse(mouse.relY),
  hitGeometry = this.getBarGeometry(x, y, options),
  width = hitGeometry.width / 2,
  left = hitGeometry.left,
  height = hitGeometry.y,
  geometry, i;
 
  for (i = data.length; i--;) {
  geometry = this.getBarGeometry(data[i][0], data[i][1], options);
  if (
  // Height:
  (
  // Positive Bars:
  (height > 0 && height < geometry.y) ||
  // Negative Bars:
  (height < 0 && height > geometry.y)
  ) &&
  // Width:
  (Math.abs(left - geometry.left) < width)
  ) {
  n.x = data[i][0];
  n.y = data[i][1];
  n.index = i;
  n.seriesIndex = options.index;
  }
  }
  },
 
  drawHit : function (options) {
  // TODO hits for stacked bars; implement using calculateStack option?
  var
  context = options.context,
  args = options.args,
  geometry = this.getBarGeometry(args.x, args.y, options),
  left = geometry.left,
  top = geometry.top,
  width = geometry.width,
  height = geometry.height;
 
  context.save();
  context.strokeStyle = options.color;
  context.lineWidth = options.lineWidth;
  this.translate(context, options.horizontal);
 
  // Draw highlight
  context.beginPath();
  context.moveTo(left, top + height);
  context.lineTo(left, top);
  context.lineTo(left + width, top);
  context.lineTo(left + width, top + height);
  if (options.fill) {
  context.fillStyle = options.fillStyle;
  context.fill();
  }
  context.stroke();
  context.closePath();
 
  context.restore();
  },
 
  clearHit: function (options) {
  var
  context = options.context,
  args = options.args,
  geometry = this.getBarGeometry(args.x, args.y, options),
  left = geometry.left,
  width = geometry.width,
  top = geometry.top,
  height = geometry.height,
  lineWidth = 2 * options.lineWidth;
 
  context.save();
  this.translate(context, options.horizontal);
  context.clearRect(
  left - lineWidth,
  Math.min(top, top + height) - lineWidth,
  width + 2 * lineWidth,
  Math.abs(height) + 2 * lineWidth
  );
  context.restore();
  },
 
  extendXRange : function (axis, data, options, bars) {
  this._extendRange(axis, data, options, bars);
  this.groups = (this.groups + 1) || 1;
  this.current = 0;
  },
 
  extendYRange : function (axis, data, options, bars) {
  this._extendRange(axis, data, options, bars);
  },
  _extendRange: function (axis, data, options, bars) {
 
  var
  max = axis.options.max;
 
  if (_.isNumber(max) || _.isString(max)) return;
 
  var
  newmin = axis.min,
  newmax = axis.max,
  horizontal = options.horizontal,
  orientation = axis.orientation,
  positiveSums = this.positiveSums || {},
  negativeSums = this.negativeSums || {},
  value, datum, index, j;
 
  // Sides of bars
  if ((orientation == 1 && !horizontal) || (orientation == -1 && horizontal)) {
  if (options.centered) {
  newmax = Math.max(axis.datamax + options.barWidth, newmax);
  newmin = Math.min(axis.datamin - options.barWidth, newmin);
  }
  }
 
  if (options.stacked &&
  ((orientation == 1 && horizontal) || (orientation == -1 && !horizontal))){
 
  for (j = data.length; j--;) {
  value = data[j][(orientation == 1 ? 1 : 0)]+'';
  datum = data[j][(orientation == 1 ? 0 : 1)];
 
  // Positive
  if (datum > 0) {
  positiveSums[value] = (positiveSums[value] || 0) + datum;
  newmax = Math.max(newmax, positiveSums[value]);
  }
 
  // Negative
  else {
  negativeSums[value] = (negativeSums[value] || 0) + datum;
  newmin = Math.min(newmin, negativeSums[value]);
  }
  }
  }
 
  // End of bars
  if ((orientation == 1 && horizontal) || (orientation == -1 && !horizontal)) {
  if (options.topPadding && (axis.max === axis.datamax || (options.stacked && this.stackMax !== newmax))) {
  newmax += options.topPadding * (newmax - newmin);
  }
  }
 
  this.stackMin = newmin;
  this.stackMax = newmax;
  this.negativeSums = negativeSums;
  this.positiveSums = positiveSums;
 
  axis.max = newmax;
  axis.min = newmin;
  }
 
  });
 
  /** Bubbles **/
  Flotr.addType('bubbles', {
  options: {
  show: false, // => setting to true will show radar chart, false will hide
  lineWidth: 2, // => line width in pixels
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  baseRadius: 2 // => ratio of the radar, against the plot size
  },
  draw : function (options) {
  var
  context = options.context,
  shadowSize = options.shadowSize;
 
  context.save();
  context.lineWidth = options.lineWidth;
 
  // Shadows
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.strokeStyle = 'rgba(0,0,0,0.05)';
  this.plot(options, shadowSize / 2);
  context.strokeStyle = 'rgba(0,0,0,0.1)';
  this.plot(options, shadowSize / 4);
 
  // Chart
  context.strokeStyle = options.color;
  context.fillStyle = options.fillStyle;
  this.plot(options);
 
  context.restore();
  },
  plot : function (options, offset) {
 
  var
  data = options.data,
  context = options.context,
  geometry,
  i, x, y, z;
 
  offset = offset || 0;
 
  for (i = 0; i < data.length; ++i){
 
  geometry = this.getGeometry(data[i], options);
 
  context.beginPath();
  context.arc(geometry.x + offset, geometry.y + offset, geometry.z, 0, 2 * Math.PI, true);
  context.stroke();
  if (options.fill) context.fill();
  context.closePath();
  }
  },
  getGeometry : function (point, options) {
  return {
  x : options.xScale(point[0]),
  y : options.yScale(point[1]),
  z : point[2] * options.baseRadius
  };
  },
  hit : function (options) {
  var
  data = options.data,
  args = options.args,
  mouse = args[0],
  n = args[1],
  relX = mouse.relX,
  relY = mouse.relY,
  distance,
  geometry,
  dx, dy;
 
  n.best = n.best || Number.MAX_VALUE;
 
  for (i = data.length; i--;) {
  geometry = this.getGeometry(data[i], options);
 
  dx = geometry.x - relX;
  dy = geometry.y - relY;
  distance = Math.sqrt(dx * dx + dy * dy);
 
  if (distance < geometry.z && geometry.z < n.best) {
  n.x = data[i][0];
  n.y = data[i][1];
  n.index = i;
  n.seriesIndex = options.index;
  n.best = geometry.z;
  }
  }
  },
  drawHit : function (options) {
 
  var
  context = options.context,
  geometry = this.getGeometry(options.data[options.args.index], options);
 
  context.save();
  context.lineWidth = options.lineWidth;
  context.fillStyle = options.fillStyle;
  context.strokeStyle = options.color;
  context.beginPath();
  context.arc(geometry.x, geometry.y, geometry.z, 0, 2 * Math.PI, true);
  context.fill();
  context.stroke();
  context.closePath();
  context.restore();
  },
  clearHit : function (options) {
 
  var
  context = options.context,
  geometry = this.getGeometry(options.data[options.args.index], options),
  offset = geometry.z + options.lineWidth;
 
  context.save();
  context.clearRect(
  geometry.x - offset,
  geometry.y - offset,
  2 * offset,
  2 * offset
  );
  context.restore();
  }
  // TODO Add a hit calculation method (like pie)
  });
 
  /** Candles **/
  Flotr.addType('candles', {
  options: {
  show: false, // => setting to true will show candle sticks, false will hide
  lineWidth: 1, // => in pixels
  wickLineWidth: 1, // => in pixels
  candleWidth: 0.6, // => in units of the x axis
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  upFillColor: '#00A8F0',// => up sticks fill color
  downFillColor: '#CB4B4B',// => down sticks fill color
  fillOpacity: 0.5, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  // TODO Test this barcharts option.
  barcharts: false // => draw as barcharts (not standard bars but financial barcharts)
  },
 
  draw : function (options) {
 
  var
  context = options.context;
 
  context.save();
  context.lineJoin = 'miter';
  context.lineCap = 'butt';
  // @TODO linewidth not interpreted the right way.
  context.lineWidth = options.wickLineWidth || options.lineWidth;
 
  this.plot(options);
 
  context.restore();
  },
 
  plot : function (options) {
 
  var
  data = options.data,
  context = options.context,
  xScale = options.xScale,
  yScale = options.yScale,
  width = options.candleWidth / 2,
  shadowSize = options.shadowSize,
  lineWidth = options.lineWidth,
  wickLineWidth = options.wickLineWidth,
  pixelOffset = (wickLineWidth % 2) / 2,
  color,
  datum, x, y,
  open, high, low, close,
  left, right, bottom, top, bottom2, top2,
  i;
 
  if (data.length < 1) return;
 
  for (i = 0; i < data.length; i++) {
  datum = data[i];
  x = datum[0];
  open = datum[1];
  high = datum[2];
  low = datum[3];
  close = datum[4];
  left = xScale(x - width);
  right = xScale(x + width);
  bottom = yScale(low);
  top = yScale(high);
  bottom2 = yScale(Math.min(open, close));
  top2 = yScale(Math.max(open, close));
 
  /*
  // TODO skipping
  if(right < xa.min || left > xa.max || top < ya.min || bottom > ya.max)
  continue;
  */
 
  color = options[open > close ? 'downFillColor' : 'upFillColor'];
 
  // Fill the candle.
  // TODO Test the barcharts option
  if (options.fill && !options.barcharts) {
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.fillRect(left + shadowSize, top2 + shadowSize, right - left, bottom2 - top2);
  context.save();
  context.globalAlpha = options.fillOpacity;
  context.fillStyle = color;
  context.fillRect(left, top2 + lineWidth, right - left, bottom2 - top2);
  context.restore();
  }
 
  // Draw candle outline/border, high, low.
  if (lineWidth || wickLineWidth) {
 
  x = Math.floor((left + right) / 2) + pixelOffset;
 
  context.strokeStyle = color;
  context.beginPath();
 
  // TODO Again with the bartcharts
  if (options.barcharts) {
 
  context.moveTo(x, Math.floor(top + width));
  context.lineTo(x, Math.floor(bottom + width));
 
  y = Math.floor(open + width) + 0.5;
  context.moveTo(Math.floor(left) + pixelOffset, y);
  context.lineTo(x, y);
 
  y = Math.floor(close + width) + 0.5;
  context.moveTo(Math.floor(right) + pixelOffset, y);
  context.lineTo(x, y);
  } else {
  context.strokeRect(left, top2 + lineWidth, right - left, bottom2 - top2);
 
  context.moveTo(x, Math.floor(top2 + lineWidth));
  context.lineTo(x, Math.floor(top + lineWidth));
  context.moveTo(x, Math.floor(bottom2 + lineWidth));
  context.lineTo(x, Math.floor(bottom + lineWidth));
  }
 
  context.closePath();
  context.stroke();
  }
  }
  },
  extendXRange: function (axis, data, options) {
  if (axis.options.max === null) {
  axis.max = Math.max(axis.datamax + 0.5, axis.max);
  axis.min = Math.min(axis.datamin - 0.5, axis.min);
  }
  }
  });
 
  /** Gantt
  * Base on data in form [s,y,d] where:
  * y - executor or simply y value
  * s - task start value
  * d - task duration
  * **/
  Flotr.addType('gantt', {
  options: {
  show: false, // => setting to true will show gantt, false will hide
  lineWidth: 2, // => in pixels
  barWidth: 1, // => in units of the x axis
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillColor: null, // => fill color
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  centered: true // => center the bars to their x axis value
  },
  /**
  * Draws gantt series in the canvas element.
  * @param {Object} series - Series with options.gantt.show = true.
  */
  draw: function(series) {
  var ctx = this.ctx,
  bw = series.gantt.barWidth,
  lw = Math.min(series.gantt.lineWidth, bw);
 
  ctx.save();
  ctx.translate(this.plotOffset.left, this.plotOffset.top);
  ctx.lineJoin = 'miter';
 
  /**
  * @todo linewidth not interpreted the right way.
  */
  ctx.lineWidth = lw;
  ctx.strokeStyle = series.color;
 
  ctx.save();
  this.gantt.plotShadows(series, bw, 0, series.gantt.fill);
  ctx.restore();
 
  if(series.gantt.fill){
  var color = series.gantt.fillColor || series.color;
  ctx.fillStyle = this.processColor(color, {opacity: series.gantt.fillOpacity});
  }
 
  this.gantt.plot(series, bw, 0, series.gantt.fill);
  ctx.restore();
  },
  plot: function(series, barWidth, offset, fill){
  var data = series.data;
  if(data.length < 1) return;
 
  var xa = series.xaxis,
  ya = series.yaxis,
  ctx = this.ctx, i;
 
  for(i = 0; i < data.length; i++){
  var y = data[i][0],
  s = data[i][1],
  d = data[i][2],
  drawLeft = true, drawTop = true, drawRight = true;
 
  if (s === null || d === null) continue;
 
  var left = s,
  right = s + d,
  bottom = y - (series.gantt.centered ? barWidth/2 : 0),
  top = y + barWidth - (series.gantt.centered ? barWidth/2 : 0);
 
  if(right < xa.min || left > xa.max || top < ya.min || bottom > ya.max)
  continue;
 
  if(left < xa.min){
  left = xa.min;
  drawLeft = false;
  }
 
  if(right > xa.max){
  right = xa.max;
  if (xa.lastSerie != series)
  drawTop = false;
  }
 
  if(bottom < ya.min)
  bottom = ya.min;
 
  if(top > ya.max){
  top = ya.max;
  if (ya.lastSerie != series)
  drawTop = false;
  }
 
  /**
  * Fill the bar.
  */
  if(fill){
  ctx.beginPath();
  ctx.moveTo(xa.d2p(left), ya.d2p(bottom) + offset);
  ctx.lineTo(xa.d2p(left), ya.d2p(top) + offset);
  ctx.lineTo(xa.d2p(right), ya.d2p(top) + offset);
  ctx.lineTo(xa.d2p(right), ya.d2p(bottom) + offset);
  ctx.fill();
  ctx.closePath();
  }
 
  /**
  * Draw bar outline/border.
  */
  if(series.gantt.lineWidth && (drawLeft || drawRight || drawTop)){
  ctx.beginPath();
  ctx.moveTo(xa.d2p(left), ya.d2p(bottom) + offset);
 
  ctx[drawLeft ?'lineTo':'moveTo'](xa.d2p(left), ya.d2p(top) + offset);
  ctx[drawTop ?'lineTo':'moveTo'](xa.d2p(right), ya.d2p(top) + offset);
  ctx[drawRight?'lineTo':'moveTo'](xa.d2p(right), ya.d2p(bottom) + offset);
 
  ctx.stroke();
  ctx.closePath();
  }
  }
  },
  plotShadows: function(series, barWidth, offset){
  var data = series.data;
  if(data.length < 1) return;
 
  var i, y, s, d,
  xa = series.xaxis,
  ya = series.yaxis,
  ctx = this.ctx,
  sw = this.options.shadowSize;
 
  for(i = 0; i < data.length; i++){
  y = data[i][0];
  s = data[i][1];
  d = data[i][2];
 
  if (s === null || d === null) continue;
 
  var left = s,
  right = s + d,
  bottom = y - (series.gantt.centered ? barWidth/2 : 0),
  top = y + barWidth - (series.gantt.centered ? barWidth/2 : 0);
 
  if(right < xa.min || left > xa.max || top < ya.min || bottom > ya.max)
  continue;
 
  if(left < xa.min) left = xa.min;
  if(right > xa.max) right = xa.max;
  if(bottom < ya.min) bottom = ya.min;
  if(top > ya.max) top = ya.max;
 
  var width = xa.d2p(right)-xa.d2p(left)-((xa.d2p(right)+sw <= this.plotWidth) ? 0 : sw);
  var height = ya.d2p(bottom)-ya.d2p(top)-((ya.d2p(bottom)+sw <= this.plotHeight) ? 0 : sw );
 
  ctx.fillStyle = 'rgba(0,0,0,0.05)';
  ctx.fillRect(Math.min(xa.d2p(left)+sw, this.plotWidth), Math.min(ya.d2p(top)+sw, this.plotHeight), width, height);
  }
  },
  extendXRange: function(axis) {
  if(axis.options.max === null){
  var newmin = axis.min,
  newmax = axis.max,
  i, j, x, s, g,
  stackedSumsPos = {},
  stackedSumsNeg = {},
  lastSerie = null;
 
  for(i = 0; i < this.series.length; ++i){
  s = this.series[i];
  g = s.gantt;
 
  if(g.show && s.xaxis == axis) {
  for (j = 0; j < s.data.length; j++) {
  if (g.show) {
  y = s.data[j][0]+'';
  stackedSumsPos[y] = Math.max((stackedSumsPos[y] || 0), s.data[j][1]+s.data[j][2]);
  lastSerie = s;
  }
  }
  for (j in stackedSumsPos) {
  newmax = Math.max(stackedSumsPos[j], newmax);
  }
  }
  }
  axis.lastSerie = lastSerie;
  axis.max = newmax;
  axis.min = newmin;
  }
  },
  extendYRange: function(axis){
  if(axis.options.max === null){
  var newmax = Number.MIN_VALUE,
  newmin = Number.MAX_VALUE,
  i, j, s, g,
  stackedSumsPos = {},
  stackedSumsNeg = {},
  lastSerie = null;
 
  for(i = 0; i < this.series.length; ++i){
  s = this.series[i];
  g = s.gantt;
 
  if (g.show && !s.hide && s.yaxis == axis) {
  var datamax = Number.MIN_VALUE, datamin = Number.MAX_VALUE;
  for(j=0; j < s.data.length; j++){
  datamax = Math.max(datamax,s.data[j][0]);
  datamin = Math.min(datamin,s.data[j][0]);
  }
 
  if (g.centered) {
  newmax = Math.max(datamax + 0.5, newmax);
  newmin = Math.min(datamin - 0.5, newmin);
  }
  else {
  newmax = Math.max(datamax + 1, newmax);
  newmin = Math.min(datamin, newmin);
  }
  // For normal horizontal bars
  if (g.barWidth + datamax > newmax){
  newmax = axis.max + g.barWidth;
  }
  }
  }
  axis.lastSerie = lastSerie;
  axis.max = newmax;
  axis.min = newmin;
  axis.tickSize = Flotr.getTickSize(axis.options.noTicks, newmin, newmax, axis.options.tickDecimals);
  }
  }
  });
 
  /** Markers **/
  /**
  * Formats the marker labels.
  * @param {Object} obj - Marker value Object {x:..,y:..}
  * @return {String} Formatted marker string
  */
  (function () {
 
  Flotr.defaultMarkerFormatter = function(obj){
  return (Math.round(obj.y*100)/100)+'';
  };
 
  Flotr.addType('markers', {
  options: {
  show: false, // => setting to true will show markers, false will hide
  lineWidth: 1, // => line width of the rectangle around the marker
  color: '#000000', // => text color
  fill: false, // => fill or not the marekers' rectangles
  fillColor: "#FFFFFF", // => fill color
  fillOpacity: 0.4, // => fill opacity
  stroke: false, // => draw the rectangle around the markers
  position: 'ct', // => the markers position (vertical align: b, m, t, horizontal align: l, c, r)
  verticalMargin: 0, // => the margin between the point and the text.
  labelFormatter: Flotr.defaultMarkerFormatter,
  fontSize: Flotr.defaultOptions.fontSize,
  stacked: false, // => true if markers should be stacked
  stackingType: 'b', // => define staching behavior, (b- bars like, a - area like) (see Issue 125 for details)
  horizontal: false // => true if markers should be horizontal (For now only in a case on horizontal stacked bars, stacks should be calculated horizontaly)
  },
 
  // TODO test stacked markers.
  stack : {
  positive : [],
  negative : [],
  values : []
  },
 
  draw : function (options) {
 
  var
  data = options.data,
  context = options.context,
  stack = options.stacked ? options.stack : false,
  stackType = options.stackingType,
  stackOffsetNeg,
  stackOffsetPos,
  stackOffset,
  i, x, y, label;
 
  context.save();
  context.lineJoin = 'round';
  context.lineWidth = options.lineWidth;
  context.strokeStyle = 'rgba(0,0,0,0.5)';
  context.fillStyle = options.fillStyle;
 
  function stackPos (a, b) {
  stackOffsetPos = stack.negative[a] || 0;
  stackOffsetNeg = stack.positive[a] || 0;
  if (b > 0) {
  stack.positive[a] = stackOffsetPos + b;
  return stackOffsetPos + b;
  } else {
  stack.negative[a] = stackOffsetNeg + b;
  return stackOffsetNeg + b;
  }
  }
 
  for (i = 0; i < data.length; ++i) {
 
  x = data[i][0];
  y = data[i][1];
 
  if (stack) {
  if (stackType == 'b') {
  if (options.horizontal) y = stackPos(y, x);
  else x = stackPos(x, y);
  } else if (stackType == 'a') {
  stackOffset = stack.values[x] || 0;
  stack.values[x] = stackOffset + y;
  y = stackOffset + y;
  }
  }
 
  label = options.labelFormatter({x: x, y: y, index: i, data : data});
  this.plot(options.xScale(x), options.yScale(y), label, options);
  }
  context.restore();
  },
  plot: function(x, y, label, options) {
  var context = options.context;
  if (isImage(label) && !label.complete) {
  throw 'Marker image not loaded.';
  } else {
  this._plot(x, y, label, options);
  }
  },
 
  _plot: function(x, y, label, options) {
  var context = options.context,
  margin = 2,
  left = x,
  top = y,
  dim;
 
  if (isImage(label))
  dim = {height : label.height, width: label.width};
  else
  dim = options.text.canvas(label);
 
  dim.width = Math.floor(dim.width+margin*2);
  dim.height = Math.floor(dim.height+margin*2);
 
  if (options.position.indexOf('c') != -1) left -= dim.width/2 + margin;
  else if (options.position.indexOf('l') != -1) left -= dim.width;
 
  if (options.position.indexOf('m') != -1) top -= dim.height/2 + margin;
  else if (options.position.indexOf('t') != -1) top -= dim.height + options.verticalMargin;
  else top += options.verticalMargin;
 
  left = Math.floor(left)+0.5;
  top = Math.floor(top)+0.5;
 
  if(options.fill)
  context.fillRect(left, top, dim.width, dim.height);
 
  if(options.stroke)
  context.strokeRect(left, top, dim.width, dim.height);
 
  if (isImage(label))
  context.drawImage(label, left+margin, top+margin);
  else
  Flotr.drawText(context, label, left+margin, top+margin, {textBaseline: 'top', textAlign: 'left', size: options.fontSize, color: options.color});
  }
  });
 
  function isImage (i) {
  return typeof i === 'object' && i.constructor && (Image ? true : i.constructor === Image);
  }
 
  })();
 
  /**
  * Pie
  *
  * Formats the pies labels.
  * @param {Object} slice - Slice object
  * @return {String} Formatted pie label string
  */
  (function () {
 
  var
  _ = Flotr._;
 
  Flotr.defaultPieLabelFormatter = function (total, value) {
  return (100 * value / total).toFixed(2)+'%';
  };
 
  Flotr.addType('pie', {
  options: {
  show: false, // => setting to true will show bars, false will hide
  lineWidth: 1, // => in pixels
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillColor: null, // => fill color
  fillOpacity: 0.6, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  explode: 6, // => the number of pixels the splices will be far from the center
  sizeRatio: 0.6, // => the size ratio of the pie relative to the plot
  startAngle: Math.PI/4, // => the first slice start angle
  labelFormatter: Flotr.defaultPieLabelFormatter,
  pie3D: false, // => whether to draw the pie in 3 dimenstions or not (ineffective)
  pie3DviewAngle: (Math.PI/2 * 0.8),
  pie3DspliceThickness: 20,
  epsilon: 0.1 // => how close do you have to get to hit empty slice
  },
 
  draw : function (options) {
 
  // TODO 3D charts what?
 
  var
  data = options.data,
  context = options.context,
  canvas = context.canvas,
  lineWidth = options.lineWidth,
  shadowSize = options.shadowSize,
  sizeRatio = options.sizeRatio,
  height = options.height,
  width = options.width,
  explode = options.explode,
  color = options.color,
  fill = options.fill,
  fillStyle = options.fillStyle,
  radius = Math.min(canvas.width, canvas.height) * sizeRatio / 2,
  value = data[0][1],
  html = [],
  vScale = 1,//Math.cos(series.pie.viewAngle);
  measure = Math.PI * 2 * value / this.total,
  startAngle = this.startAngle || (2 * Math.PI * options.startAngle), // TODO: this initial startAngle is already in radians (fixing will be test-unstable)
  endAngle = startAngle + measure,
  bisection = startAngle + measure / 2,
  label = options.labelFormatter(this.total, value),
  //plotTickness = Math.sin(series.pie.viewAngle)*series.pie.spliceThickness / vScale;
  explodeCoeff = explode + radius + 4,
  distX = Math.cos(bisection) * explodeCoeff,
  distY = Math.sin(bisection) * explodeCoeff,
  textAlign = distX < 0 ? 'right' : 'left',
  textBaseline = distY > 0 ? 'top' : 'bottom',
  style,
  x, y;
 
  context.save();
  context.translate(width / 2, height / 2);
  context.scale(1, vScale);
 
  x = Math.cos(bisection) * explode;
  y = Math.sin(bisection) * explode;
 
  // Shadows
  if (shadowSize > 0) {
  this.plotSlice(x + shadowSize, y + shadowSize, radius, startAngle, endAngle, context);
  if (fill) {
  context.fillStyle = 'rgba(0,0,0,0.1)';
  context.fill();
  }
  }
 
  this.plotSlice(x, y, radius, startAngle, endAngle, context);
  if (fill) {
  context.fillStyle = fillStyle;
  context.fill();
  }
  context.lineWidth = lineWidth;
  context.strokeStyle = color;
  context.stroke();
 
  style = {
  size : options.fontSize * 1.2,
  color : options.fontColor,
  weight : 1.5
  };
 
  if (label) {
  if (options.htmlText || !options.textEnabled) {
  divStyle = 'position:absolute;' + textBaseline + ':' + (height / 2 + (textBaseline === 'top' ? distY : -distY)) + 'px;';
  divStyle += textAlign + ':' + (width / 2 + (textAlign === 'right' ? -distX : distX)) + 'px;';
  html.push('<div style="', divStyle, '" class="flotr-grid-label">', label, '</div>');
  }
  else {
  style.textAlign = textAlign;
  style.textBaseline = textBaseline;
  Flotr.drawText(context, label, distX, distY, style);
  }
  }
 
  if (options.htmlText || !options.textEnabled) {
  var div = Flotr.DOM.node('<div style="color:' + options.fontColor + '" class="flotr-labels"></div>');
  Flotr.DOM.insert(div, html.join(''));
  Flotr.DOM.insert(options.element, div);
  }
 
  context.restore();
 
  // New start angle
  this.startAngle = endAngle;
  this.slices = this.slices || [];
  this.slices.push({
  radius : Math.min(canvas.width, canvas.height) * sizeRatio / 2,
  x : x,
  y : y,
  explode : explode,
  start : startAngle,
  end : endAngle
  });
  },
  plotSlice : function (x, y, radius, startAngle, endAngle, context) {
  context.beginPath();
  context.moveTo(x, y);
  context.arc(x, y, radius, startAngle, endAngle, false);
  context.lineTo(x, y);
  context.closePath();
  },
  hit : function (options) {
 
  var
  data = options.data[0],
  args = options.args,
  index = options.index,
  mouse = args[0],
  n = args[1],
  slice = this.slices[index],
  x = mouse.relX - options.width / 2,
  y = mouse.relY - options.height / 2,
  r = Math.sqrt(x * x + y * y),
  theta = Math.atan(y / x),
  circle = Math.PI * 2,
  explode = slice.explode || options.explode,
  start = slice.start % circle,
  end = slice.end % circle,
  epsilon = options.epsilon;
 
  if (x < 0) {
  theta += Math.PI;
  } else if (x > 0 && y < 0) {
  theta += circle;
  }
 
  if (r < slice.radius + explode && r > explode) {
  if (
  (theta > start && theta < end) || // Normal Slice
  (start > end && (theta < end || theta > start)) || // First slice
  // TODO: Document the two cases at the end:
  (start === end && ((slice.start === slice.end && Math.abs(theta - start) < epsilon) || (slice.start !== slice.end && Math.abs(theta-start) > epsilon)))
  ) {
 
  // TODO Decouple this from hit plugin (chart shouldn't know what n means)
  n.x = data[0];
  n.y = data[1];
  n.sAngle = start;
  n.eAngle = end;
  n.index = 0;
  n.seriesIndex = index;
  n.fraction = data[1] / this.total;
  }
  }
  },
  drawHit: function (options) {
  var
  context = options.context,
  slice = this.slices[options.args.seriesIndex];
 
  context.save();
  context.translate(options.width / 2, options.height / 2);
  this.plotSlice(slice.x, slice.y, slice.radius, slice.start, slice.end, context);
  context.stroke();
  context.restore();
  },
  clearHit : function (options) {
  var
  context = options.context,
  slice = this.slices[options.args.seriesIndex],
  padding = 2 * options.lineWidth,
  radius = slice.radius + padding;
 
  context.save();
  context.translate(options.width / 2, options.height / 2);
  context.clearRect(
  slice.x - radius,
  slice.y - radius,
  2 * radius + padding,
  2 * radius + padding
  );
  context.restore();
  },
  extendYRange : function (axis, data) {
  this.total = (this.total || 0) + data[0][1];
  }
  });
  })();
 
  /** Points **/
  Flotr.addType('points', {
  options: {
  show: false, // => setting to true will show points, false will hide
  radius: 3, // => point radius (pixels)
  lineWidth: 2, // => line width in pixels
  fill: true, // => true to fill the points with a color, false for (transparent) no fill
  fillColor: '#FFFFFF', // => fill color. Null to use series color.
  fillOpacity: 1, // => opacity of color inside the points
  hitRadius: null // => override for points hit radius
  },
 
  draw : function (options) {
  var
  context = options.context,
  lineWidth = options.lineWidth,
  shadowSize = options.shadowSize;
 
  context.save();
 
  if (shadowSize > 0) {
  context.lineWidth = shadowSize / 2;
 
  context.strokeStyle = 'rgba(0,0,0,0.1)';
  this.plot(options, shadowSize / 2 + context.lineWidth / 2);
 
  context.strokeStyle = 'rgba(0,0,0,0.2)';
  this.plot(options, context.lineWidth / 2);
  }
 
  context.lineWidth = options.lineWidth;
  context.strokeStyle = options.color;
  if (options.fill) context.fillStyle = options.fillStyle;
 
  this.plot(options);
  context.restore();
  },
 
  plot : function (options, offset) {
  var
  data = options.data,
  context = options.context,
  xScale = options.xScale,
  yScale = options.yScale,
  i, x, y;
 
  for (i = data.length - 1; i > -1; --i) {
  y = data[i][1];
  if (y === null) continue;
 
  x = xScale(data[i][0]);
  y = yScale(y);
 
  if (x < 0 || x > options.width || y < 0 || y > options.height) continue;
 
  context.beginPath();
  if (offset) {
  context.arc(x, y + offset, options.radius, 0, Math.PI, false);
  } else {
  context.arc(x, y, options.radius, 0, 2 * Math.PI, true);
  if (options.fill) context.fill();
  }
  context.stroke();
  context.closePath();
  }
  }
  });
 
  /** Radar **/
  Flotr.addType('radar', {
  options: {
  show: false, // => setting to true will show radar chart, false will hide
  lineWidth: 2, // => line width in pixels
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  radiusRatio: 0.90 // => ratio of the radar, against the plot size
  },
  draw : function (options) {
  var
  context = options.context,
  shadowSize = options.shadowSize;
 
  context.save();
  context.translate(options.width / 2, options.height / 2);
  context.lineWidth = options.lineWidth;
 
  // Shadow
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.strokeStyle = 'rgba(0,0,0,0.05)';
  this.plot(options, shadowSize / 2);
  context.strokeStyle = 'rgba(0,0,0,0.1)';
  this.plot(options, shadowSize / 4);
 
  // Chart
  context.strokeStyle = options.color;
  context.fillStyle = options.fillStyle;
  this.plot(options);
 
  context.restore();
  },
  plot : function (options, offset) {
  var
  data = options.data,
  context = options.context,
  radius = Math.min(options.height, options.width) * options.radiusRatio / 2,
  step = 2 * Math.PI / data.length,
  angle = -Math.PI / 2,
  i, ratio;
 
  offset = offset || 0;
 
  context.beginPath();
  for (i = 0; i < data.length; ++i) {
  ratio = data[i][1] / this.max;
 
  context[i === 0 ? 'moveTo' : 'lineTo'](
  Math.cos(i * step + angle) * radius * ratio + offset,
  Math.sin(i * step + angle) * radius * ratio + offset
  );
  }
  context.closePath();
  if (options.fill) context.fill();
  context.stroke();
  },
  extendYRange : function (axis, data) {
  this.max = Math.max(axis.max, this.max || -Number.MAX_VALUE);
  }
  });
 
  Flotr.addType('timeline', {
  options: {
  show: false,
  lineWidth: 1,
  barWidth: 0.2,
  fill: true,
  fillColor: null,
  fillOpacity: 0.4,
  centered: true
  },
 
  draw : function (options) {
 
  var
  context = options.context;
 
  context.save();
  context.lineJoin = 'miter';
  context.lineWidth = options.lineWidth;
  context.strokeStyle = options.color;
  context.fillStyle = options.fillStyle;
 
  this.plot(options);
 
  context.restore();
  },
 
  plot : function (options) {
 
  var
  data = options.data,
  context = options.context,
  xScale = options.xScale,
  yScale = options.yScale,
  barWidth = options.barWidth,
  lineWidth = options.lineWidth,
  i;
 
  Flotr._.each(data, function (timeline) {
 
  var
  x = timeline[0],
  y = timeline[1],
  w = timeline[2],
  h = barWidth,
 
  xt = Math.ceil(xScale(x)),
  wt = Math.ceil(xScale(x + w)) - xt,
  yt = Math.round(yScale(y)),
  ht = Math.round(yScale(y - h)) - yt,
 
  x0 = xt - lineWidth / 2,
  y0 = Math.round(yt - ht / 2) - lineWidth / 2;
 
  context.strokeRect(x0, y0, wt, ht);
  context.fillRect(x0, y0, wt, ht);
 
  });
  },
 
  extendRange : function (series) {
 
  var
  data = series.data,
  xa = series.xaxis,
  ya = series.yaxis,
  w = series.timeline.barWidth;
 
  if (xa.options.min === null)
  xa.min = xa.datamin - w / 2;
 
  if (xa.options.max === null) {
 
  var
  max = xa.max;
 
  Flotr._.each(data, function (timeline) {
  max = Math.max(max, timeline[0] + timeline[2]);
  }, this);
 
  xa.max = max + w / 2;
  }
 
  if (ya.options.min === null)
  ya.min = ya.datamin - w;
  if (ya.options.min === null)
  ya.max = ya.datamax + w;
  }
 
  });
 
  (function () {
 
  var D = Flotr.DOM;
 
  Flotr.addPlugin('crosshair', {
  options: {
  mode: null, // => one of null, 'x', 'y' or 'xy'
  color: '#FF0000', // => crosshair color
  hideCursor: true // => hide the cursor when the crosshair is shown
  },
  callbacks: {
  'flotr:mousemove': function(e, pos) {
  if (this.options.crosshair.mode) {
  this.crosshair.clearCrosshair();
  this.crosshair.drawCrosshair(pos);
  }
  }
  },
  /**
  * Draws the selection box.
  */
  drawCrosshair: function(pos) {
  var octx = this.octx,
  options = this.options.crosshair,
  plotOffset = this.plotOffset,
  x = plotOffset.left + Math.round(pos.relX) + 0.5,
  y = plotOffset.top + Math.round(pos.relY) + 0.5;
 
  if (pos.relX < 0 || pos.relY < 0 || pos.relX > this.plotWidth || pos.relY > this.plotHeight) {
  this.el.style.cursor = null;
  D.removeClass(this.el, 'flotr-crosshair');
  return;
  }
 
  if (options.hideCursor) {
  this.el.style.cursor = 'none';
  D.addClass(this.el, 'flotr-crosshair');
  }
 
  octx.save();
  octx.strokeStyle = options.color;
  octx.lineWidth = 1;
  octx.beginPath();
 
  if (options.mode.indexOf('x') != -1) {
  octx.moveTo(x, plotOffset.top);
  octx.lineTo(x, plotOffset.top + this.plotHeight);
  }
 
  if (options.mode.indexOf('y') != -1) {
  octx.moveTo(plotOffset.left, y);
  octx.lineTo(plotOffset.left + this.plotWidth, y);
  }
 
  octx.stroke();
  octx.restore();
  },
  /**
  * Removes the selection box from the overlay canvas.
  */
  clearCrosshair: function() {
 
  var
  plotOffset = this.plotOffset,
  position = this.lastMousePos,
  context = this.octx;
 
  if (position) {
  context.clearRect(
  Math.round(position.relX) + plotOffset.left,
  plotOffset.top,
  1,
  this.plotHeight + 1
  );
  context.clearRect(
  plotOffset.left,
  Math.round(position.relY) + plotOffset.top,
  this.plotWidth + 1,
  1
  );
  }
  }
  });
  })();
 
  (function() {
 
  var
  D = Flotr.DOM,
  _ = Flotr._;
 
  function getImage (type, canvas, width, height) {
 
  // TODO add scaling for w / h
  var
  mime = 'image/'+type,
  data = canvas.toDataURL(mime),
  image = new Image();
  image.src = data;
  return image;
  }
 
  Flotr.addPlugin('download', {
 
  saveImage: function (type, width, height, replaceCanvas) {
  var image = null;
  if (Flotr.isIE && Flotr.isIE < 9) {
  image = '<html><body>'+this.canvas.firstChild.innerHTML+'</body></html>';
  return window.open().document.write(image);
  }
 
  if (type !== 'jpeg' && type !== 'png') return;
 
  image = getImage(type, this.canvas, width, height);
 
  if (_.isElement(image) && replaceCanvas) {
  this.download.restoreCanvas();
  D.hide(this.canvas);
  D.hide(this.overlay);
  D.setStyles({position: 'absolute'});
  D.insert(this.el, image);
  this.saveImageElement = image;
  } else {
  return window.open(image.src);
  }
  },
 
  restoreCanvas: function() {
  D.show(this.canvas);
  D.show(this.overlay);
  if (this.saveImageElement) this.el.removeChild(this.saveImageElement);
  this.saveImageElement = null;
  }
  });
 
  })();
 
  (function () {
 
  var E = Flotr.EventAdapter,
  _ = Flotr._;
 
  Flotr.addPlugin('graphGrid', {
 
  callbacks: {
  'flotr:beforedraw' : function () {
  this.graphGrid.drawGrid();
  },
  'flotr:afterdraw' : function () {
  this.graphGrid.drawOutline();
  }
  },
 
  drawGrid: function(){
 
  var
  ctx = this.ctx,
  options = this.options,
  grid = options.grid,
  verticalLines = grid.verticalLines,
  horizontalLines = grid.horizontalLines,
  minorVerticalLines = grid.minorVerticalLines,
  minorHorizontalLines = grid.minorHorizontalLines,
  plotHeight = this.plotHeight,
  plotWidth = this.plotWidth,
  a, v, i, j;
 
  if(verticalLines || minorVerticalLines ||
  horizontalLines || minorHorizontalLines){
  E.fire(this.el, 'flotr:beforegrid', [this.axes.x, this.axes.y, options, this]);
  }
  ctx.save();
  ctx.lineWidth = 1;
  ctx.strokeStyle = grid.tickColor;
 
  function circularHorizontalTicks (ticks) {
  for(i = 0; i < ticks.length; ++i){
  var ratio = ticks[i].v / a.max;
  for(j = 0; j <= sides; ++j){
  ctx[j === 0 ? 'moveTo' : 'lineTo'](
  Math.cos(j*coeff+angle)*radius*ratio,
  Math.sin(j*coeff+angle)*radius*ratio
  );
  }
  }
  }
  function drawGridLines (ticks, callback) {
  _.each(_.pluck(ticks, 'v'), function(v){
  // Don't show lines on upper and lower bounds.
  if ((v <= a.min || v >= a.max) ||
  (v == a.min || v == a.max) && grid.outlineWidth)
  return;
  callback(Math.floor(a.d2p(v)) + ctx.lineWidth/2);
  });
  }
  function drawVerticalLines (x) {
  ctx.moveTo(x, 0);
  ctx.lineTo(x, plotHeight);
  }
  function drawHorizontalLines (y) {
  ctx.moveTo(0, y);
  ctx.lineTo(plotWidth, y);
  }
 
  if (grid.circular) {
  ctx.translate(this.plotOffset.left+plotWidth/2, this.plotOffset.top+plotHeight/2);
  var radius = Math.min(plotHeight, plotWidth)*options.radar.radiusRatio/2,
  sides = this.axes.x.ticks.length,
  coeff = 2*(Math.PI/sides),
  angle = -Math.PI/2;
 
  // Draw grid lines in vertical direction.
  ctx.beginPath();
 
  a = this.axes.y;
 
  if(horizontalLines){
  circularHorizontalTicks(a.ticks);
  }
  if(minorHorizontalLines){
  circularHorizontalTicks(a.minorTicks);
  }
 
  if(verticalLines){
  _.times(sides, function(i){
  ctx.moveTo(0, 0);
  ctx.lineTo(Math.cos(i*coeff+angle)*radius, Math.sin(i*coeff+angle)*radius);
  });
  }
  ctx.stroke();
  }
  else {
  ctx.translate(this.plotOffset.left, this.plotOffset.top);
 
  // Draw grid background, if present in options.
  if(grid.backgroundColor){
  ctx.fillStyle = this.processColor(grid.backgroundColor, {x1: 0, y1: 0, x2: plotWidth, y2: plotHeight});
  ctx.fillRect(0, 0, plotWidth, plotHeight);
  }
 
  ctx.beginPath();
 
  a = this.axes.x;
  if (verticalLines) drawGridLines(a.ticks, drawVerticalLines);
  if (minorVerticalLines) drawGridLines(a.minorTicks, drawVerticalLines);
 
  a = this.axes.y;
  if (horizontalLines) drawGridLines(a.ticks, drawHorizontalLines);
  if (minorHorizontalLines) drawGridLines(a.minorTicks, drawHorizontalLines);
 
  ctx.stroke();
  }
 
  ctx.restore();
  if(verticalLines || minorVerticalLines ||
  horizontalLines || minorHorizontalLines){
  E.fire(this.el, 'flotr:aftergrid', [this.axes.x, this.axes.y, options, this]);
  }
  },
 
  drawOutline: function(){
  var
  that = this,
  options = that.options,
  grid = options.grid,
  outline = grid.outline,
  ctx = that.ctx,
  backgroundImage = grid.backgroundImage,
  plotOffset = that.plotOffset,
  leftOffset = plotOffset.left,
  topOffset = plotOffset.top,
  plotWidth = that.plotWidth,
  plotHeight = that.plotHeight,
  v, img, src, left, top, globalAlpha;
 
  if (!grid.outlineWidth) return;
 
  ctx.save();
 
  if (grid.circular) {
  ctx.translate(leftOffset + plotWidth / 2, topOffset + plotHeight / 2);
  var radius = Math.min(plotHeight, plotWidth) * options.radar.radiusRatio / 2,
  sides = this.axes.x.ticks.length,
  coeff = 2*(Math.PI/sides),
  angle = -Math.PI/2;
 
  // Draw axis/grid border.
  ctx.beginPath();
  ctx.lineWidth = grid.outlineWidth;
  ctx.strokeStyle = grid.color;
  ctx.lineJoin = 'round';
 
  for(i = 0; i <= sides; ++i){
  ctx[i === 0 ? 'moveTo' : 'lineTo'](Math.cos(i*coeff+angle)*radius, Math.sin(i*coeff+angle)*radius);
  }
  //ctx.arc(0, 0, radius, 0, Math.PI*2, true);
 
  ctx.stroke();
  }
  else {
  ctx.translate(leftOffset, topOffset);
 
  // Draw axis/grid border.
  var lw = grid.outlineWidth,
  orig = 0.5-lw+((lw+1)%2/2),
  lineTo = 'lineTo',
  moveTo = 'moveTo';
  ctx.lineWidth = lw;
  ctx.strokeStyle = grid.color;
  ctx.lineJoin = 'miter';
  ctx.beginPath();
  ctx.moveTo(orig, orig);
  plotWidth = plotWidth - (lw / 2) % 1;
  plotHeight = plotHeight + lw / 2;
  ctx[outline.indexOf('n') !== -1 ? lineTo : moveTo](plotWidth, orig);
  ctx[outline.indexOf('e') !== -1 ? lineTo : moveTo](plotWidth, plotHeight);
  ctx[outline.indexOf('s') !== -1 ? lineTo : moveTo](orig, plotHeight);
  ctx[outline.indexOf('w') !== -1 ? lineTo : moveTo](orig, orig);
  ctx.stroke();
  ctx.closePath();
  }
 
  ctx.restore();
 
  if (backgroundImage) {
 
  src = backgroundImage.src || backgroundImage;
  left = (parseInt(backgroundImage.left, 10) || 0) + plotOffset.left;
  top = (parseInt(backgroundImage.top, 10) || 0) + plotOffset.top;
  img = new Image();
 
  img.onload = function() {
  ctx.save();
  if (backgroundImage.alpha) ctx.globalAlpha = backgroundImage.alpha;
  ctx.globalCompositeOperation = 'destination-over';
  ctx.drawImage(img, 0, 0, img.width, img.height, left, top, plotWidth, plotHeight);
  ctx.restore();
  };
 
  img.src = src;
  }
  }
  });
 
  })();
 
  (function () {
 
  var
  D = Flotr.DOM,
  _ = Flotr._,
  flotr = Flotr,
  S_MOUSETRACK = 'opacity:0.7;background-color:#000;color:#fff;display:none;position:absolute;padding:2px 8px;-moz-border-radius:4px;border-radius:4px;white-space:nowrap;';
 
  Flotr.addPlugin('hit', {
  callbacks: {
  'flotr:mousemove': function(e, pos) {
  this.hit.track(pos);
  },
  'flotr:click': function(pos) {
  var
  hit = this.hit.track(pos);
  _.defaults(pos, hit);
  },
  'flotr:mouseout': function() {
  this.hit.clearHit();
  },
  'flotr:destroy': function() {
  this.mouseTrack = null;
  }
  },
  track : function (pos) {
  if (this.options.mouse.track || _.any(this.series, function(s){return s.mouse && s.mouse.track;})) {
  return this.hit.hit(pos);
  }
  },
  /**
  * Try a method on a graph type. If the method exists, execute it.
  * @param {Object} series
  * @param {String} method Method name.
  * @param {Array} args Arguments applied to method.
  * @return executed successfully or failed.
  */
  executeOnType: function(s, method, args){
  var
  success = false,
  options;
 
  if (!_.isArray(s)) s = [s];
 
  function e(s, index) {
  _.each(_.keys(flotr.graphTypes), function (type) {
  if (s[type] && s[type].show && this[type][method]) {
  options = this.getOptions(s, type);
 
  options.fill = !!s.mouse.fillColor;
  options.fillStyle = this.processColor(s.mouse.fillColor || '#ffffff', {opacity: s.mouse.fillOpacity});
  options.color = s.mouse.lineColor;
  options.context = this.octx;
  options.index = index;
 
  if (args) options.args = args;
  this[type][method].call(this[type], options);
  success = true;
  }
  }, this);
  }
  _.each(s, e, this);
 
  return success;
  },
  /**
  * Updates the mouse tracking point on the overlay.
  */
  drawHit: function(n){
  var octx = this.octx,
  s = n.series;
 
  if (s.mouse.lineColor) {
  octx.save();
  octx.lineWidth = (s.points ? s.points.lineWidth : 1);
  octx.strokeStyle = s.mouse.lineColor;
  octx.fillStyle = this.processColor(s.mouse.fillColor || '#ffffff', {opacity: s.mouse.fillOpacity});
  octx.translate(this.plotOffset.left, this.plotOffset.top);
 
  if (!this.hit.executeOnType(s, 'drawHit', n)) {
  var
  xa = n.xaxis,
  ya = n.yaxis;
 
  octx.beginPath();
  // TODO fix this (points) should move to general testable graph mixin
  octx.arc(xa.d2p(n.x), ya.d2p(n.y), s.points.hitRadius || s.points.radius || s.mouse.radius, 0, 2 * Math.PI, true);
  octx.fill();
  octx.stroke();
  octx.closePath();
  }
  octx.restore();
  this.clip(octx);
  }
  this.prevHit = n;
  },
  /**
  * Removes the mouse tracking point from the overlay.
  */
  clearHit: function(){
  var prev = this.prevHit,
  octx = this.octx,
  plotOffset = this.plotOffset;
  octx.save();
  octx.translate(plotOffset.left, plotOffset.top);
  if (prev) {
  if (!this.hit.executeOnType(prev.series, 'clearHit', this.prevHit)) {
  // TODO fix this (points) should move to general testable graph mixin
  var
  s = prev.series,
  lw = (s.points ? s.points.lineWidth : 1);
  offset = (s.points.hitRadius || s.points.radius || s.mouse.radius) + lw;
  octx.clearRect(
  prev.xaxis.d2p(prev.x) - offset,
  prev.yaxis.d2p(prev.y) - offset,
  offset*2,
  offset*2
  );
  }
  D.hide(this.mouseTrack);
  this.prevHit = null;
  }
  octx.restore();
  },
  /**
  * Retrieves the nearest data point from the mouse cursor. If it's within
  * a certain range, draw a point on the overlay canvas and display the x and y
  * value of the data.
  * @param {Object} mouse - Object that holds the relative x and y coordinates of the cursor.
  */
  hit : function (mouse) {
 
  var
  options = this.options,
  prevHit = this.prevHit,
  closest, sensibility, dataIndex, seriesIndex, series, value, xaxis, yaxis, n;
 
  if (this.series.length === 0) return;
 
  // Nearest data element.
  // dist, x, y, relX, relY, absX, absY, sAngle, eAngle, fraction, mouse,
  // xaxis, yaxis, series, index, seriesIndex
  n = {
  relX : mouse.relX,
  relY : mouse.relY,
  absX : mouse.absX,
  absY : mouse.absY
  };
 
  if (options.mouse.trackY &&
  !options.mouse.trackAll &&
  this.hit.executeOnType(this.series, 'hit', [mouse, n]) &&
  !_.isUndefined(n.seriesIndex))
  {
  series = this.series[n.seriesIndex];
  n.series = series;
  n.mouse = series.mouse;
  n.xaxis = series.xaxis;
  n.yaxis = series.yaxis;
  } else {
 
  closest = this.hit.closest(mouse);
 
  if (closest) {
 
  closest = options.mouse.trackY ? closest.point : closest.x;
  seriesIndex = closest.seriesIndex;
  series = this.series[seriesIndex];
  xaxis = series.xaxis;
  yaxis = series.yaxis;
  sensibility = 2 * series.mouse.sensibility;
 
  if
  (options.mouse.trackAll ||
  (closest.distanceX < sensibility / xaxis.scale &&
  (!options.mouse.trackY || closest.distanceY < sensibility / yaxis.scale)))
  {
  n.series = series;
  n.xaxis = series.xaxis;
  n.yaxis = series.yaxis;
  n.mouse = series.mouse;
  n.x = closest.x;
  n.y = closest.y;
  n.dist = closest.distance;
  n.index = closest.dataIndex;
  n.seriesIndex = seriesIndex;
  }
  }
  }
 
  if (!prevHit || (prevHit.index !== n.index || prevHit.seriesIndex !== n.seriesIndex)) {
  this.hit.clearHit();
  if (n.series && n.mouse && n.mouse.track) {
  this.hit.drawMouseTrack(n);
  this.hit.drawHit(n);
  Flotr.EventAdapter.fire(this.el, 'flotr:hit', [n, this]);
  }
  }
 
  return n;
  },
 
  closest : function (mouse) {
 
  var
  series = this.series,
  options = this.options,
  relX = mouse.relX,
  relY = mouse.relY,
  compare = Number.MAX_VALUE,
  compareX = Number.MAX_VALUE,
  closest = {},
  closestX = {},
  check = false,
  serie, data,
  distance, distanceX, distanceY,
  mouseX, mouseY,
  x, y, i, j;
 
  function setClosest (o) {
  o.distance = distance;
  o.distanceX = distanceX;
  o.distanceY = distanceY;
  o.seriesIndex = i;
  o.dataIndex = j;
  o.x = x;
  o.y = y;
  check = true;
  }
 
  for (i = 0; i < series.length; i++) {
 
  serie = series[i];
  data = serie.data;
  mouseX = serie.xaxis.p2d(relX);
  mouseY = serie.yaxis.p2d(relY);
 
  for (j = data.length; j--;) {
 
  x = data[j][0];
  y = data[j][1];
 
  if (x === null || y === null) continue;
 
  // don't check if the point isn't visible in the current range
  if (x < serie.xaxis.min || x > serie.xaxis.max) continue;
 
  distanceX = Math.abs(x - mouseX);
  distanceY = Math.abs(y - mouseY);
 
  // Skip square root for speed
  distance = distanceX * distanceX + distanceY * distanceY;
 
  if (distance < compare) {
  compare = distance;
  setClosest(closest);
  }
 
  if (distanceX < compareX) {
  compareX = distanceX;
  setClosest(closestX);
  }
  }
  }
 
  return check ? {
  point : closest,
  x : closestX
  } : false;
  },
 
  drawMouseTrack : function (n) {
 
  var
  pos = '',
  s = n.series,
  p = n.mouse.position,
  m = n.mouse.margin,
  x = n.x,
  y = n.y,
  elStyle = S_MOUSETRACK,
  mouseTrack = this.mouseTrack,
  plotOffset = this.plotOffset,
  left = plotOffset.left,
  right = plotOffset.right,
  bottom = plotOffset.bottom,
  top = plotOffset.top,
  decimals = n.mouse.trackDecimals,
  options = this.options;
 
  // Create
  if (!mouseTrack) {
  mouseTrack = D.node('<div class="flotr-mouse-value"></div>');
  this.mouseTrack = mouseTrack;
  D.insert(this.el, mouseTrack);
  }
 
  if (!n.mouse.relative) { // absolute to the canvas
 
  if (p.charAt(0) == 'n') pos += 'top:' + (m + top) + 'px;bottom:auto;';
  else if (p.charAt(0) == 's') pos += 'bottom:' + (m + bottom) + 'px;top:auto;';
  if (p.charAt(1) == 'e') pos += 'right:' + (m + right) + 'px;left:auto;';
  else if (p.charAt(1) == 'w') pos += 'left:' + (m + left) + 'px;right:auto;';
 
  // Pie
  } else if (s.pie && s.pie.show) {
  var center = {
  x: (this.plotWidth)/2,
  y: (this.plotHeight)/2
  },
  radius = (Math.min(this.canvasWidth, this.canvasHeight) * s.pie.sizeRatio) / 2,
  bisection = n.sAngle<n.eAngle ? (n.sAngle + n.eAngle) / 2: (n.sAngle + n.eAngle + 2* Math.PI) / 2;
 
  pos += 'bottom:' + (m - top - center.y - Math.sin(bisection) * radius/2 + this.canvasHeight) + 'px;top:auto;';
  pos += 'left:' + (m + left + center.x + Math.cos(bisection) * radius/2) + 'px;right:auto;';
 
  // Default
  } else {
  if (/n/.test(p)) pos += 'bottom:' + (m - top - n.yaxis.d2p(n.y) + this.canvasHeight) + 'px;top:auto;';
  else pos += 'top:' + (m + top + n.yaxis.d2p(n.y)) + 'px;bottom:auto;';
  if (/w/.test(p)) pos += 'right:' + (m - left - n.xaxis.d2p(n.x) + this.canvasWidth) + 'px;left:auto;';
  else pos += 'left:' + (m + left + n.xaxis.d2p(n.x)) + 'px;right:auto;';
  }
 
  elStyle += pos;
  mouseTrack.style.cssText = elStyle;
  if (!decimals || decimals < 0) decimals = 0;
 
  if (x && x.toFixed) x = x.toFixed(decimals);
 
  if (y && y.toFixed) y = y.toFixed(decimals);
 
  mouseTrack.innerHTML = n.mouse.trackFormatter({
  x: x ,
  y: y,
  series: n.series,
  index: n.index,
  nearest: n,
  fraction: n.fraction
  });
 
  D.show(mouseTrack);
 
  if (n.mouse.relative) {
  if (!/[ew]/.test(p)) {
  // Center Horizontally
  mouseTrack.style.left =
  (left + n.xaxis.d2p(n.x) - D.size(mouseTrack).width / 2) + 'px';
  } else
  if (!/[ns]/.test(p)) {
  // Center Vertically
  mouseTrack.style.top =
  (top + n.yaxis.d2p(n.y) - D.size(mouseTrack).height / 2) + 'px';
  }
  }
  }
 
  });
  })();
 
  /**
  * Selection Handles Plugin
  *
  *
  * Options
  * show - True enables the handles plugin.
  * drag - Left and Right drag handles
  * scroll - Scrolling handle
  */
  (function () {
 
  function isLeftClick (e, type) {
  return (e.which ? (e.which === 1) : (e.button === 0 || e.button === 1));
  }
 
  function boundX(x, graph) {
  return Math.min(Math.max(0, x), graph.plotWidth - 1);
  }
 
  function boundY(y, graph) {
  return Math.min(Math.max(0, y), graph.plotHeight);
  }
 
  var
  D = Flotr.DOM,
  E = Flotr.EventAdapter,
  _ = Flotr._;
 
 
  Flotr.addPlugin('selection', {
 
  options: {
  pinchOnly: null, // Only select on pinch
  mode: null, // => one of null, 'x', 'y' or 'xy'
  color: '#B6D9FF', // => selection box color
  fps: 20 // => frames-per-second
  },
 
  callbacks: {
  'flotr:mouseup' : function (event) {
 
  var
  options = this.options.selection,
  selection = this.selection,
  pointer = this.getEventPosition(event);
 
  if (!options || !options.mode) return;
  if (selection.interval) clearInterval(selection.interval);
 
  if (this.multitouches) {
  selection.updateSelection();
  } else
  if (!options.pinchOnly) {
  selection.setSelectionPos(selection.selection.second, pointer);
  }
  selection.clearSelection();
 
  if(selection.selecting && selection.selectionIsSane()){
  selection.drawSelection();
  selection.fireSelectEvent();
  this.ignoreClick = true;
  }
  },
  'flotr:mousedown' : function (event) {
 
  var
  options = this.options.selection,
  selection = this.selection,
  pointer = this.getEventPosition(event);
 
  if (!options || !options.mode) return;
  if (!options.mode || (!isLeftClick(event) && _.isUndefined(event.touches))) return;
  if (!options.pinchOnly) selection.setSelectionPos(selection.selection.first, pointer);
  if (selection.interval) clearInterval(selection.interval);
 
  this.lastMousePos.pageX = null;
  selection.selecting = false;
  selection.interval = setInterval(
  _.bind(selection.updateSelection, this),
  1000 / options.fps
  );
  },
  'flotr:destroy' : function (event) {
  clearInterval(this.selection.interval);
  }
  },
 
  // TODO This isn't used. Maybe it belongs in the draw area and fire select event methods?
  getArea: function() {
 
  var
  s = this.selection.selection,
  a = this.axes,
  first = s.first,
  second = s.second,
  x1, x2, y1, y2;
 
  x1 = a.x.p2d(s.first.x);
  x2 = a.x.p2d(s.second.x);
  y1 = a.y.p2d(s.first.y);
  y2 = a.y.p2d(s.second.y);
 
  return {
  x1 : Math.min(x1, x2),
  y1 : Math.min(y1, y2),
  x2 : Math.max(x1, x2),
  y2 : Math.max(y1, y2),
  xfirst : x1,
  xsecond : x2,
  yfirst : y1,
  ysecond : y2
  };
  },
 
  selection: {first: {x: -1, y: -1}, second: {x: -1, y: -1}},
  prevSelection: null,
  interval: null,
 
  /**
  * Fires the 'flotr:select' event when the user made a selection.
  */
  fireSelectEvent: function(name){
  var
  area = this.selection.getArea();
  name = name || 'select';
  area.selection = this.selection.selection;
  E.fire(this.el, 'flotr:'+name, [area, this]);
  },
 
  /**
  * Allows the user the manually select an area.
  * @param {Object} area - Object with coordinates to select.
  */
  setSelection: function(area, preventEvent){
  var options = this.options,
  xa = this.axes.x,
  ya = this.axes.y,
  vertScale = ya.scale,
  hozScale = xa.scale,
  selX = options.selection.mode.indexOf('x') != -1,
  selY = options.selection.mode.indexOf('y') != -1,
  s = this.selection.selection;
 
  this.selection.clearSelection();
 
  s.first.y = boundY((selX && !selY) ? 0 : (ya.max - area.y1) * vertScale, this);
  s.second.y = boundY((selX && !selY) ? this.plotHeight - 1: (ya.max - area.y2) * vertScale, this);
  s.first.x = boundX((selY && !selX) ? 0 : (area.x1 - xa.min) * hozScale, this);
  s.second.x = boundX((selY && !selX) ? this.plotWidth : (area.x2 - xa.min) * hozScale, this);
 
  this.selection.drawSelection();
  if (!preventEvent)
  this.selection.fireSelectEvent();
  },
 
  /**
  * Calculates the position of the selection.
  * @param {Object} pos - Position object.
  * @param {Event} event - Event object.
  */
  setSelectionPos: function(pos, pointer) {
  var mode = this.options.selection.mode,
  selection = this.selection.selection;
 
  if(mode.indexOf('x') == -1) {
  pos.x = (pos == selection.first) ? 0 : this.plotWidth;
  }else{
  pos.x = boundX(pointer.relX, this);
  }
 
  if (mode.indexOf('y') == -1) {
  pos.y = (pos == selection.first) ? 0 : this.plotHeight - 1;
  }else{
  pos.y = boundY(pointer.relY, this);
  }
  },
  /**
  * Draws the selection box.
  */
  drawSelection: function() {
 
  this.selection.fireSelectEvent('selecting');
 
  var s = this.selection.selection,
  octx = this.octx,
  options = this.options,
  plotOffset = this.plotOffset,
  prevSelection = this.selection.prevSelection;
 
  if (prevSelection &&
  s.first.x == prevSelection.first.x &&
  s.first.y == prevSelection.first.y &&
  s.second.x == prevSelection.second.x &&
  s.second.y == prevSelection.second.y) {
  return;
  }
 
  octx.save();
  octx.strokeStyle = this.processColor(options.selection.color, {opacity: 0.8});
  octx.lineWidth = 1;
  octx.lineJoin = 'miter';
  octx.fillStyle = this.processColor(options.selection.color, {opacity: 0.4});
 
  this.selection.prevSelection = {
  first: { x: s.first.x, y: s.first.y },
  second: { x: s.second.x, y: s.second.y }
  };
 
  var x = Math.min(s.first.x, s.second.x),
  y = Math.min(s.first.y, s.second.y),
  w = Math.abs(s.second.x - s.first.x),
  h = Math.abs(s.second.y - s.first.y);
 
  octx.fillRect(x + plotOffset.left+0.5, y + plotOffset.top+0.5, w, h);
  octx.strokeRect(x + plotOffset.left+0.5, y + plotOffset.top+0.5, w, h);
  octx.restore();
  },
 
  /**
  * Updates (draws) the selection box.
  */
  updateSelection: function(){
  if (!this.lastMousePos.pageX) return;
 
  this.selection.selecting = true;
 
  if (this.multitouches) {
  this.selection.setSelectionPos(this.selection.selection.first, this.getEventPosition(this.multitouches[0]));
  this.selection.setSelectionPos(this.selection.selection.second, this.getEventPosition(this.multitouches[1]));
  } else
  if (this.options.selection.pinchOnly) {
  return;
  } else {
  this.selection.setSelectionPos(this.selection.selection.second, this.lastMousePos);
  }
 
  this.selection.clearSelection();
 
  if(this.selection.selectionIsSane()) {
  this.selection.drawSelection();
  }
  },
 
  /**
  * Removes the selection box from the overlay canvas.
  */
  clearSelection: function() {
  if (!this.selection.prevSelection) return;
 
  var prevSelection = this.selection.prevSelection,
  lw = 1,
  plotOffset = this.plotOffset,
  x = Math.min(prevSelection.first.x, prevSelection.second.x),
  y = Math.min(prevSelection.first.y, prevSelection.second.y),
  w = Math.abs(prevSelection.second.x - prevSelection.first.x),
  h = Math.abs(prevSelection.second.y - prevSelection.first.y);
 
  this.octx.clearRect(x + plotOffset.left - lw + 0.5,
  y + plotOffset.top - lw,
  w + 2 * lw + 0.5,
  h + 2 * lw + 0.5);
 
  this.selection.prevSelection = null;
  },
  /**
  * Determines whether or not the selection is sane and should be drawn.
  * @return {Boolean} - True when sane, false otherwise.
  */
  selectionIsSane: function(){
  var s = this.selection.selection;
  return Math.abs(s.second.x - s.first.x) >= 5 ||
  Math.abs(s.second.y - s.first.y) >= 5;
  }
 
  });
 
  })();
 
  (function () {
 
  var D = Flotr.DOM;
 
  Flotr.addPlugin('labels', {
 
  callbacks : {
  'flotr:afterdraw' : function () {
  this.labels.draw();
  }
  },
 
  draw: function(){
  // Construct fixed width label boxes, which can be styled easily.
  var
  axis, tick, left, top, xBoxWidth,
  radius, sides, coeff, angle,
  div, i, html = '',
  noLabels = 0,
  options = this.options,
  ctx = this.ctx,
  a = this.axes,
  style = { size: options.fontSize };
 
  for (i = 0; i < a.x.ticks.length; ++i){
  if (a.x.ticks[i].label) { ++noLabels; }
  }
  xBoxWidth = this.plotWidth / noLabels;
 
  if (options.grid.circular) {
  ctx.save();
  ctx.translate(this.plotOffset.left + this.plotWidth / 2,
  this.plotOffset.top + this.plotHeight / 2);
 
  radius = this.plotHeight * options.radar.radiusRatio / 2 + options.fontSize;
  sides = this.axes.x.ticks.length;
  coeff = 2 * (Math.PI / sides);
  angle = -Math.PI / 2;
 
  drawLabelCircular(this, a.x, false);
  drawLabelCircular(this, a.x, true);
  drawLabelCircular(this, a.y, false);
  drawLabelCircular(this, a.y, true);
  ctx.restore();
  }
 
  if (!options.HtmlText && this.textEnabled) {
  drawLabelNoHtmlText(this, a.x, 'center', 'top');
  drawLabelNoHtmlText(this, a.x2, 'center', 'bottom');
  drawLabelNoHtmlText(this, a.y, 'right', 'middle');
  drawLabelNoHtmlText(this, a.y2, 'left', 'middle');
 
  } else if ((
  a.x.options.showLabels ||
  a.x2.options.showLabels ||
  a.y.options.showLabels ||
  a.y2.options.showLabels) &&
  !options.grid.circular
  ) {
 
  html = '';
 
  drawLabelHtml(this, a.x);
  drawLabelHtml(this, a.x2);
  drawLabelHtml(this, a.y);
  drawLabelHtml(this, a.y2);
 
  ctx.stroke();
  ctx.restore();
  div = D.create('div');
  D.setStyles(div, {
  fontSize: 'smaller',
  color: options.grid.color
  });
  div.className = 'flotr-labels';
  D.insert(this.el, div);
  D.insert(div, html);
  }
 
  function drawLabelCircular (graph, axis, minorTicks) {
  var
  ticks = minorTicks ? axis.minorTicks : axis.ticks,
  isX = axis.orientation === 1,
  isFirst = axis.n === 1,
  style, offset;
 
  style = {
  color : axis.options.color || options.grid.color,
  angle : Flotr.toRad(axis.options.labelsAngle),
  textBaseline : 'middle'
  };
 
  for (i = 0; i < ticks.length &&
  (minorTicks ? axis.options.showMinorLabels : axis.options.showLabels); ++i){
  tick = ticks[i];
  tick.label += '';
  if (!tick.label || !tick.label.length) { continue; }
 
  x = Math.cos(i * coeff + angle) * radius;
  y = Math.sin(i * coeff + angle) * radius;
 
  style.textAlign = isX ? (Math.abs(x) < 0.1 ? 'center' : (x < 0 ? 'right' : 'left')) : 'left';
 
  Flotr.drawText(
  ctx, tick.label,
  isX ? x : 3,
  isX ? y : -(axis.ticks[i].v / axis.max) * (radius - options.fontSize),
  style
  );
  }
  }
 
  function drawLabelNoHtmlText (graph, axis, textAlign, textBaseline) {
  var
  isX = axis.orientation === 1,
  isFirst = axis.n === 1,
  style, offset;
 
  style = {
  color : axis.options.color || options.grid.color,
  textAlign : textAlign,
  textBaseline : textBaseline,
  angle : Flotr.toRad(axis.options.labelsAngle)
  };
  style = Flotr.getBestTextAlign(style.angle, style);
 
  for (i = 0; i < axis.ticks.length && continueShowingLabels(axis); ++i) {
 
  tick = axis.ticks[i];
  if (!tick.label || !tick.label.length) { continue; }
 
  offset = axis.d2p(tick.v);
  if (offset < 0 ||
  offset > (isX ? graph.plotWidth : graph.plotHeight)) { continue; }
 
  Flotr.drawText(
  ctx, tick.label,
  leftOffset(graph, isX, isFirst, offset),
  topOffset(graph, isX, isFirst, offset),
  style
  );
 
  // Only draw on axis y2
  if (!isX && !isFirst) {
  ctx.save();
  ctx.strokeStyle = style.color;
  ctx.beginPath();
  ctx.moveTo(graph.plotOffset.left + graph.plotWidth - 8, graph.plotOffset.top + axis.d2p(tick.v));
  ctx.lineTo(graph.plotOffset.left + graph.plotWidth, graph.plotOffset.top + axis.d2p(tick.v));
  ctx.stroke();
  ctx.restore();
  }
  }
 
  function continueShowingLabels (axis) {
  return axis.options.showLabels && axis.used;
  }
  function leftOffset (graph, isX, isFirst, offset) {
  return graph.plotOffset.left +
  (isX ? offset :
  (isFirst ?
  -options.grid.labelMargin :
  options.grid.labelMargin + graph.plotWidth));
  }
  function topOffset (graph, isX, isFirst, offset) {
  return graph.plotOffset.top +
  (isX ? options.grid.labelMargin : offset) +
  ((isX && isFirst) ? graph.plotHeight : 0);
  }
  }
 
  function drawLabelHtml (graph, axis) {
  var
  isX = axis.orientation === 1,
  isFirst = axis.n === 1,
  name = '',
  left, style, top,
  offset = graph.plotOffset;
 
  if (!isX && !isFirst) {
  ctx.save();
  ctx.strokeStyle = axis.options.color || options.grid.color;
  ctx.beginPath();
  }
 
  if (axis.options.showLabels && (isFirst ? true : axis.used)) {
  for (i = 0; i < axis.ticks.length; ++i) {
  tick = axis.ticks[i];
  if (!tick.label || !tick.label.length ||
  ((isX ? offset.left : offset.top) + axis.d2p(tick.v) < 0) ||
  ((isX ? offset.left : offset.top) + axis.d2p(tick.v) > (isX ? graph.canvasWidth : graph.canvasHeight))) {
  continue;
  }
  top = offset.top +
  (isX ?
  ((isFirst ? 1 : -1 ) * (graph.plotHeight + options.grid.labelMargin)) :
  axis.d2p(tick.v) - axis.maxLabel.height / 2);
  left = isX ? (offset.left + axis.d2p(tick.v) - xBoxWidth / 2) : 0;
 
  name = '';
  if (i === 0) {
  name = ' first';
  } else if (i === axis.ticks.length - 1) {
  name = ' last';
  }
  name += isX ? ' flotr-grid-label-x' : ' flotr-grid-label-y';
 
  html += [
  '<div style="position:absolute; text-align:' + (isX ? 'center' : 'right') + '; ',
  'top:' + top + 'px; ',
  ((!isX && !isFirst) ? 'right:' : 'left:') + left + 'px; ',
  'width:' + (isX ? xBoxWidth : ((isFirst ? offset.left : offset.right) - options.grid.labelMargin)) + 'px; ',
  axis.options.color ? ('color:' + axis.options.color + '; ') : ' ',
  '" class="flotr-grid-label' + name + '">' + tick.label + '</div>'
  ].join(' ');
 
  if (!isX && !isFirst) {
  ctx.moveTo(offset.left + graph.plotWidth - 8, offset.top + axis.d2p(tick.v));
  ctx.lineTo(offset.left + graph.plotWidth, offset.top + axis.d2p(tick.v));
  }
  }
  }
  }
  }
 
  });
  })();
 
  (function () {
 
  var
  D = Flotr.DOM,
  _ = Flotr._;
 
  Flotr.addPlugin('legend', {
  options: {
  show: true, // => setting to true will show the legend, hide otherwise
  noColumns: 1, // => number of colums in legend table // @todo: doesn't work for HtmlText = false
  labelFormatter: function(v){return v;}, // => fn: string -> string
  labelBoxBorderColor: '#CCCCCC', // => border color for the little label boxes
  labelBoxWidth: 14,
  labelBoxHeight: 10,
  labelBoxMargin: 5,
  container: null, // => container (as jQuery object) to put legend in, null means default on top of graph
  position: 'nw', // => position of default legend container within plot
  margin: 5, // => distance from grid edge to default legend container within plot
  backgroundColor: '#F0F0F0', // => Legend background color.
  backgroundOpacity: 0.85// => set to 0 to avoid background, set to 1 for a solid background
  },
  callbacks: {
  'flotr:afterinit': function() {
  this.legend.insertLegend();
  },
  'flotr:destroy': function() {
  var markup = this.legend.markup;
  if (markup) {
  this.legend.markup = null;
  D.remove(markup);
  }
  }
  },
  /**
  * Adds a legend div to the canvas container or draws it on the canvas.
  */
  insertLegend: function(){
 
  if(!this.options.legend.show)
  return;
 
  var series = this.series,
  plotOffset = this.plotOffset,
  options = this.options,
  legend = options.legend,
  fragments = [],
  rowStarted = false,
  ctx = this.ctx,
  itemCount = _.filter(series, function(s) {return (s.label && !s.hide);}).length,
  p = legend.position,
  m = legend.margin,
  opacity = legend.backgroundOpacity,
  i, label, color;
 
  if (itemCount) {
 
  var lbw = legend.labelBoxWidth,
  lbh = legend.labelBoxHeight,
  lbm = legend.labelBoxMargin,
  offsetX = plotOffset.left + m,
  offsetY = plotOffset.top + m,
  labelMaxWidth = 0,
  style = {
  size: options.fontSize*1.1,
  color: options.grid.color
  };
 
  // We calculate the labels' max width
  for(i = series.length - 1; i > -1; --i){
  if(!series[i].label || series[i].hide) continue;
  label = legend.labelFormatter(series[i].label);
  labelMaxWidth = Math.max(labelMaxWidth, this._text.measureText(label, style).width);
  }
 
  var legendWidth = Math.round(lbw + lbm*3 + labelMaxWidth),
  legendHeight = Math.round(itemCount*(lbm+lbh) + lbm);
 
  // Default Opacity
  if (!opacity && opacity !== 0) {
  opacity = 0.1;
  }
 
  if (!options.HtmlText && this.textEnabled && !legend.container) {
 
  if(p.charAt(0) == 's') offsetY = plotOffset.top + this.plotHeight - (m + legendHeight);
  if(p.charAt(0) == 'c') offsetY = plotOffset.top + (this.plotHeight/2) - (m + (legendHeight/2));
  if(p.charAt(1) == 'e') offsetX = plotOffset.left + this.plotWidth - (m + legendWidth);
 
  // Legend box
  color = this.processColor(legend.backgroundColor, { opacity : opacity });
 
  ctx.fillStyle = color;
  ctx.fillRect(offsetX, offsetY, legendWidth, legendHeight);
  ctx.strokeStyle = legend.labelBoxBorderColor;
  ctx.strokeRect(Flotr.toPixel(offsetX), Flotr.toPixel(offsetY), legendWidth, legendHeight);
 
  // Legend labels
  var x = offsetX + lbm;
  var y = offsetY + lbm;
  for(i = 0; i < series.length; i++){
  if(!series[i].label || series[i].hide) continue;
  label = legend.labelFormatter(series[i].label);
 
  ctx.fillStyle = series[i].color;
  ctx.fillRect(x, y, lbw-1, lbh-1);
 
  ctx.strokeStyle = legend.labelBoxBorderColor;
  ctx.lineWidth = 1;
  ctx.strokeRect(Math.ceil(x)-1.5, Math.ceil(y)-1.5, lbw+2, lbh+2);
 
  // Legend text
  Flotr.drawText(ctx, label, x + lbw + lbm, y + lbh, style);
 
  y += lbh + lbm;
  }
  }
  else {
  for(i = 0; i < series.length; ++i){
  if(!series[i].label || series[i].hide) continue;
 
  if(i % legend.noColumns === 0){
  fragments.push(rowStarted ? '</tr><tr>' : '<tr>');
  rowStarted = true;
  }
 
  var s = series[i],
  boxWidth = legend.labelBoxWidth,
  boxHeight = legend.labelBoxHeight;
 
  label = legend.labelFormatter(s.label);
  color = 'background-color:' + ((s.bars && s.bars.show && s.bars.fillColor && s.bars.fill) ? s.bars.fillColor : s.color) + ';';
 
  fragments.push(
  '<td class="flotr-legend-color-box">',
  '<div style="border:1px solid ', legend.labelBoxBorderColor, ';padding:1px">',
  '<div style="width:', (boxWidth-1), 'px;height:', (boxHeight-1), 'px;border:1px solid ', series[i].color, '">', // Border
  '<div style="width:', boxWidth, 'px;height:', boxHeight, 'px;', color, '"></div>', // Background
  '</div>',
  '</div>',
  '</td>',
  '<td class="flotr-legend-label">', label, '</td>'
  );
  }
  if(rowStarted) fragments.push('</tr>');
 
  if(fragments.length > 0){
  var table = '<table style="font-size:smaller;color:' + options.grid.color + '">' + fragments.join('') + '</table>';
  if(legend.container){
  table = D.node(table);
  this.legend.markup = table;
  D.insert(legend.container, table);
  }
  else {
  var styles = {position: 'absolute', 'zIndex': '2', 'border' : '1px solid ' + legend.labelBoxBorderColor};
 
  if(p.charAt(0) == 'n') { styles.top = (m + plotOffset.top) + 'px'; styles.bottom = 'auto'; }
  else if(p.charAt(0) == 'c') { styles.top = (m + (this.plotHeight - legendHeight) / 2) + 'px'; styles.bottom = 'auto'; }
  else if(p.charAt(0) == 's') { styles.bottom = (m + plotOffset.bottom) + 'px'; styles.top = 'auto'; }
  if(p.charAt(1) == 'e') { styles.right = (m + plotOffset.right) + 'px'; styles.left = 'auto'; }
  else if(p.charAt(1) == 'w') { styles.left = (m + plotOffset.left) + 'px'; styles.right = 'auto'; }
 
  var div = D.create('div'), size;
  div.className = 'flotr-legend';
  D.setStyles(div, styles);
  D.insert(div, table);
  D.insert(this.el, div);
 
  if (!opacity) return;
 
  var c = legend.backgroundColor || options.grid.backgroundColor || '#ffffff';
 
  _.extend(styles, D.size(div), {
  'backgroundColor': c,
  'zIndex' : '',
  'border' : ''
  });
  styles.width += 'px';
  styles.height += 'px';
 
  // Put in the transparent background separately to avoid blended labels and
  div = D.create('div');
  div.className = 'flotr-legend-bg';
  D.setStyles(div, styles);
  D.opacity(div, opacity);
  D.insert(div, ' ');
  D.insert(this.el, div);
  }
  }
  }
  }
  }
  });
  })();
 
  /** Spreadsheet **/
  (function() {
 
  function getRowLabel(value){
  if (this.options.spreadsheet.tickFormatter){
  //TODO maybe pass the xaxis formatter to the custom tick formatter as an opt-out?
  return this.options.spreadsheet.tickFormatter(value);
  }
  else {
  var t = _.find(this.axes.x.ticks, function(t){return t.v == value;});
  if (t) {
  return t.label;
  }
  return value;
  }
  }
 
  var
  D = Flotr.DOM,
  _ = Flotr._;
 
  Flotr.addPlugin('spreadsheet', {
  options: {
  show: false, // => show the data grid using two tabs
  tabGraphLabel: 'Graph',
  tabDataLabel: 'Data',
  toolbarDownload: 'Download CSV', // @todo: add better language support
  toolbarSelectAll: 'Select all',
  csvFileSeparator: ',',
  decimalSeparator: '.',
  tickFormatter: null,
  initialTab: 'graph'
  },
  /**
  * Builds the tabs in the DOM
  */
  callbacks: {
  'flotr:afterconstruct': function(){
  // @TODO necessary?
  //this.el.select('.flotr-tabs-group,.flotr-datagrid-container').invoke('remove');
 
  if (!this.options.spreadsheet.show) return;
 
  var ss = this.spreadsheet,
  container = D.node('<div class="flotr-tabs-group" style="position:absolute;left:0px;width:'+this.canvasWidth+'px"></div>'),
  graph = D.node('<div style="float:left" class="flotr-tab selected">'+this.options.spreadsheet.tabGraphLabel+'</div>'),
  data = D.node('<div style="float:left" class="flotr-tab">'+this.options.spreadsheet.tabDataLabel+'</div>'),
  offset;
 
  ss.tabsContainer = container;
  ss.tabs = { graph : graph, data : data };
 
  D.insert(container, graph);
  D.insert(container, data);
  D.insert(this.el, container);
 
  offset = D.size(data).height + 2;
  this.plotOffset.bottom += offset;
 
  D.setStyles(container, {top: this.canvasHeight-offset+'px'});
 
  this.
  observe(graph, 'click', function(){ss.showTab('graph');}).
  observe(data, 'click', function(){ss.showTab('data');});
  if (this.options.spreadsheet.initialTab !== 'graph'){
  ss.showTab(this.options.spreadsheet.initialTab);
  }
  }
  },
  /**
  * Builds a matrix of the data to make the correspondance between the x values and the y values :
  * X value => Y values from the axes
  * @return {Array} The data grid
  */
  loadDataGrid: function(){
  if (this.seriesData) return this.seriesData;
 
  var s = this.series,
  rows = {};
 
  /* The data grid is a 2 dimensions array. There is a row for each X value.
  * Each row contains the x value and the corresponding y value for each serie ('undefined' if there isn't one)
  **/
  _.each(s, function(serie, i){
  _.each(serie.data, function (v) {
  var x = v[0],
  y = v[1],
  r = rows[x];
  if (r) {
  r[i+1] = y;
  } else {
  var newRow = [];
  newRow[0] = x;
  newRow[i+1] = y;
  rows[x] = newRow;
  }
  });
  });
 
  // The data grid is sorted by x value
  this.seriesData = _.sortBy(rows, function(row, x){
  return parseInt(x, 10);
  });
  return this.seriesData;
  },
  /**
  * Constructs the data table for the spreadsheet
  * @todo make a spreadsheet manager (Flotr.Spreadsheet)
  * @return {Element} The resulting table element
  */
  constructDataGrid: function(){
  // If the data grid has already been built, nothing to do here
  if (this.spreadsheet.datagrid) return this.spreadsheet.datagrid;
 
  var s = this.series,
  datagrid = this.spreadsheet.loadDataGrid(),
  colgroup = ['<colgroup><col />'],
  buttonDownload, buttonSelect, t;
 
  // First row : series' labels
  var html = ['<table class="flotr-datagrid"><tr class="first-row">'];
  html.push('<th>&nbsp;</th>');
  _.each(s, function(serie,i){
  html.push('<th scope="col">'+(serie.label || String.fromCharCode(65+i))+'</th>');
  colgroup.push('<col />');
  });
  html.push('</tr>');
  // Data rows
  _.each(datagrid, function(row){
  html.push('<tr>');
  _.times(s.length+1, function(i){
  var tag = 'td',
  value = row[i],
  // TODO: do we really want to handle problems with floating point
  // precision here?
  content = (!_.isUndefined(value) ? Math.round(value*100000)/100000 : '');
  if (i === 0) {
  tag = 'th';
  var label = getRowLabel.call(this, content);
  if (label) content = label;
  }
 
  html.push('<'+tag+(tag=='th'?' scope="row"':'')+'>'+content+'</'+tag+'>');
  }, this);
  html.push('</tr>');
  }, this);
  colgroup.push('</colgroup>');
  t = D.node(html.join(''));
 
  /**
  * @TODO disabled this
  if (!Flotr.isIE || Flotr.isIE == 9) {
  function handleMouseout(){
  t.select('colgroup col.hover, th.hover').invoke('removeClassName', 'hover');
  }
  function handleMouseover(e){
  var td = e.element(),
  siblings = td.previousSiblings();
  t.select('th[scope=col]')[siblings.length-1].addClassName('hover');
  t.select('colgroup col')[siblings.length].addClassName('hover');
  }
  _.each(t.select('td'), function(td) {
  Flotr.EventAdapter.
  observe(td, 'mouseover', handleMouseover).
  observe(td, 'mouseout', handleMouseout);
  });
  }
  */
 
  buttonDownload = D.node(
  '<button type="button" class="flotr-datagrid-toolbar-button">' +
  this.options.spreadsheet.toolbarDownload +
  '</button>');
 
  buttonSelect = D.node(
  '<button type="button" class="flotr-datagrid-toolbar-button">' +
  this.options.spreadsheet.toolbarSelectAll+
  '</button>');
 
  this.
  observe(buttonDownload, 'click', _.bind(this.spreadsheet.downloadCSV, this)).
  observe(buttonSelect, 'click', _.bind(this.spreadsheet.selectAllData, this));
 
  var toolbar = D.node('<div class="flotr-datagrid-toolbar"></div>');
  D.insert(toolbar, buttonDownload);
  D.insert(toolbar, buttonSelect);
 
  var containerHeight =this.canvasHeight - D.size(this.spreadsheet.tabsContainer).height-2,
  container = D.node('<div class="flotr-datagrid-container" style="position:absolute;left:0px;top:0px;width:'+
  this.canvasWidth+'px;height:'+containerHeight+'px;overflow:auto;z-index:10"></div>');
 
  D.insert(container, toolbar);
  D.insert(container, t);
  D.insert(this.el, container);
  this.spreadsheet.datagrid = t;
  this.spreadsheet.container = container;
 
  return t;
  },
  /**
  * Shows the specified tab, by its name
  * @todo make a tab manager (Flotr.Tabs)
  * @param {String} tabName - The tab name
  */
  showTab: function(tabName){
  if (this.spreadsheet.activeTab === tabName){
  return;
  }
  switch(tabName) {
  case 'graph':
  D.hide(this.spreadsheet.container);
  D.removeClass(this.spreadsheet.tabs.data, 'selected');
  D.addClass(this.spreadsheet.tabs.graph, 'selected');
  break;
  case 'data':
  if (!this.spreadsheet.datagrid)
  this.spreadsheet.constructDataGrid();
  D.show(this.spreadsheet.container);
  D.addClass(this.spreadsheet.tabs.data, 'selected');
  D.removeClass(this.spreadsheet.tabs.graph, 'selected');
  break;
  default:
  throw 'Illegal tab name: ' + tabName;
  }
  this.spreadsheet.activeTab = tabName;
  },
  /**
  * Selects the data table in the DOM for copy/paste
  */
  selectAllData: function(){
  if (this.spreadsheet.tabs) {
  var selection, range, doc, win, node = this.spreadsheet.constructDataGrid();
 
  this.spreadsheet.showTab('data');
 
  // deferred to be able to select the table
  setTimeout(function () {
  if ((doc = node.ownerDocument) && (win = doc.defaultView) &&
  win.getSelection && doc.createRange &&
  (selection = window.getSelection()) &&
  selection.removeAllRanges) {
  range = doc.createRange();
  range.selectNode(node);
  selection.removeAllRanges();
  selection.addRange(range);
  }
  else if (document.body && document.body.createTextRange &&
  (range = document.body.createTextRange())) {
  range.moveToElementText(node);
  range.select();
  }
  }, 0);
  return true;
  }
  else return false;
  },
  /**
  * Converts the data into CSV in order to download a file
  */
  downloadCSV: function(){
  var csv = '',
  series = this.series,
  options = this.options,
  dg = this.spreadsheet.loadDataGrid(),
  separator = encodeURIComponent(options.spreadsheet.csvFileSeparator);
 
  if (options.spreadsheet.decimalSeparator === options.spreadsheet.csvFileSeparator) {
  throw "The decimal separator is the same as the column separator ("+options.spreadsheet.decimalSeparator+")";
  }
 
  // The first row
  _.each(series, function(serie, i){
  csv += separator+'"'+(serie.label || String.fromCharCode(65+i)).replace(/\"/g, '\\"')+'"';
  });
 
  csv += "%0D%0A"; // \r\n
 
  // For each row
  csv += _.reduce(dg, function(memo, row){
  var rowLabel = getRowLabel.call(this, row[0]) || '';
  rowLabel = '"'+(rowLabel+'').replace(/\"/g, '\\"')+'"';
  var numbers = row.slice(1).join(separator);
  if (options.spreadsheet.decimalSeparator !== '.') {
  numbers = numbers.replace(/\./g, options.spreadsheet.decimalSeparator);
  }
  return memo + rowLabel+separator+numbers+"%0D%0A"; // \t and \r\n
  }, '', this);
 
  if (Flotr.isIE && Flotr.isIE < 9) {
  csv = csv.replace(new RegExp(separator, 'g'), decodeURIComponent(separator)).replace(/%0A/g, '\n').replace(/%0D/g, '\r');
  window.open().document.write(csv);
  }
  else window.open('data:text/csv,'+csv);
  }
  });
  })();
 
  (function () {
 
  var D = Flotr.DOM;
 
  Flotr.addPlugin('titles', {
  callbacks: {
  'flotr:afterdraw': function() {
  this.titles.drawTitles();
  }
  },
  /**
  * Draws the title and the subtitle
  */
  drawTitles : function () {
  var html,
  options = this.options,
  margin = options.grid.labelMargin,
  ctx = this.ctx,
  a = this.axes;
 
  if (!options.HtmlText && this.textEnabled) {
  var style = {
  size: options.fontSize,
  color: options.grid.color,
  textAlign: 'center'
  };
 
  // Add subtitle
  if (options.subtitle){
  Flotr.drawText(
  ctx, options.subtitle,
  this.plotOffset.left + this.plotWidth/2,
  this.titleHeight + this.subtitleHeight - 2,
  style
  );
  }
 
  style.weight = 1.5;
  style.size *= 1.5;
 
  // Add title
  if (options.title){
  Flotr.drawText(
  ctx, options.title,
  this.plotOffset.left + this.plotWidth/2,
  this.titleHeight - 2,
  style
  );
  }
 
  style.weight = 1.8;
  style.size *= 0.8;
 
  // Add x axis title
  if (a.x.options.title && a.x.used){
  style.textAlign = a.x.options.titleAlign || 'center';
  style.textBaseline = 'top';
  style.angle = Flotr.toRad(a.x.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.x.options.title,
  this.plotOffset.left + this.plotWidth/2,
  this.plotOffset.top + a.x.maxLabel.height + this.plotHeight + 2 * margin,
  style
  );
  }
 
  // Add x2 axis title
  if (a.x2.options.title && a.x2.used){
  style.textAlign = a.x2.options.titleAlign || 'center';
  style.textBaseline = 'bottom';
  style.angle = Flotr.toRad(a.x2.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.x2.options.title,
  this.plotOffset.left + this.plotWidth/2,
  this.plotOffset.top - a.x2.maxLabel.height - 2 * margin,
  style
  );
  }
 
  // Add y axis title
  if (a.y.options.title && a.y.used){
  style.textAlign = a.y.options.titleAlign || 'right';
  style.textBaseline = 'middle';
  style.angle = Flotr.toRad(a.y.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.y.options.title,
  this.plotOffset.left - a.y.maxLabel.width - 2 * margin,
  this.plotOffset.top + this.plotHeight / 2,
  style
  );
  }
 
  // Add y2 axis title
  if (a.y2.options.title && a.y2.used){
  style.textAlign = a.y2.options.titleAlign || 'left';
  style.textBaseline = 'middle';
  style.angle = Flotr.toRad(a.y2.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.y2.options.title,
  this.plotOffset.left + this.plotWidth + a.y2.maxLabel.width + 2 * margin,
  this.plotOffset.top + this.plotHeight / 2,
  style
  );
  }
  }
  else {
  html = [];
 
  // Add title
  if (options.title)
  html.push(
  '<div style="position:absolute;top:0;left:',
  this.plotOffset.left, 'px;font-size:1em;font-weight:bold;text-align:center;width:',
  this.plotWidth,'px;" class="flotr-title">', options.title, '</div>'
  );
 
  // Add subtitle
  if (options.subtitle)
  html.push(
  '<div style="position:absolute;top:', this.titleHeight, 'px;left:',
  this.plotOffset.left, 'px;font-size:smaller;text-align:center;width:',
  this.plotWidth, 'px;" class="flotr-subtitle">', options.subtitle, '</div>'
  );
 
  html.push('</div>');
 
  html.push('<div class="flotr-axis-title" style="font-weight:bold;">');
 
  // Add x axis title
  if (a.x.options.title && a.x.used)
  html.push(
  '<div style="position:absolute;top:',
  (this.plotOffset.top + this.plotHeight + options.grid.labelMargin + a.x.titleSize.height),
  'px;left:', this.plotOffset.left, 'px;width:', this.plotWidth,
  'px;text-align:', a.x.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-x1">', a.x.options.title, '</div>'
  );
 
  // Add x2 axis title
  if (a.x2.options.title && a.x2.used)
  html.push(
  '<div style="position:absolute;top:0;left:', this.plotOffset.left, 'px;width:',
  this.plotWidth, 'px;text-align:', a.x2.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-x2">', a.x2.options.title, '</div>'
  );
 
  // Add y axis title
  if (a.y.options.title && a.y.used)
  html.push(
  '<div style="position:absolute;top:',
  (this.plotOffset.top + this.plotHeight/2 - a.y.titleSize.height/2),
  'px;left:0;text-align:', a.y.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-y1">', a.y.options.title, '</div>'
  );
 
  // Add y2 axis title
  if (a.y2.options.title && a.y2.used)
  html.push(
  '<div style="position:absolute;top:',
  (this.plotOffset.top + this.plotHeight/2 - a.y.titleSize.height/2),
  'px;right:0;text-align:', a.y2.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-y2">', a.y2.options.title, '</div>'
  );
 
  html = html.join('');
 
  var div = D.create('div');
  D.setStyles({
  color: options.grid.color
  });
  div.className = 'flotr-titles';
  D.insert(this.el, div);
  D.insert(div, html);
  }
  }
  });
  })();
 
  /*!
  * bean.js - copyright Jacob Thornton 2011
  * https://github.com/fat/bean
  * MIT License
  * special thanks to:
  * dean edwards: http://dean.edwards.name/
  * dperini: https://github.com/dperini/nwevents
  * the entire mootools team: github.com/mootools/mootools-core
  *//*global module:true, define:true*/
  !function(a,b,c){typeof module!="undefined"?module.exports=c(a,b):typeof define=="function"&&typeof define.amd=="object"?define(c):b[a]=c(a,b)}("bean",this,function(a,b){var c=window,d=b[a],e=/over|out/,f=/[^\.]*(?=\..*)\.|.*/,g=/\..*/,h="addEventListener",i="attachEvent",j="removeEventListener",k="detachEvent",l=document||{},m=l.documentElement||{},n=m[h],o=n?h:i,p=Array.prototype.slice,q=/click|mouse|menu|drag|drop/i,r=/^touch|^gesture/i,s={one:1},t=function(a,b,c){for(c=0;c<b.length;c++)a[b[c]]=1;return a}({},("click dblclick mouseup mousedown contextmenu mousewheel DOMMouseScroll mouseover mouseout mousemove selectstart selectend keydown keypress keyup orientationchange focus blur change reset select submit load unload beforeunload resize move DOMContentLoaded readystatechange error abort scroll "+(n?"show input invalid touchstart touchmove touchend touchcancel gesturestart gesturechange gestureend message readystatechange pageshow pagehide popstate hashchange offline online afterprint beforeprint dragstart dragenter dragover dragleave drag drop dragend loadstart progress suspend emptied stalled loadmetadata loadeddata canplay canplaythrough playing waiting seeking seeked ended durationchange timeupdate play pause ratechange volumechange cuechange checking noupdate downloading cached updateready obsolete ":"")).split(" ")),u=function(){function a(a,b){while((b=b.parentNode)!==null)if(b===a)return!0;return!1}function b(b){var c=b.relatedTarget;return c?c!==this&&c.prefix!=="xul"&&!/document/.test(this.toString())&&!a(this,c):c===null}return{mouseenter:{base:"mouseover",condition:b},mouseleave:{base:"mouseout",condition:b},mousewheel:{base:/Firefox/.test(navigator.userAgent)?"DOMMouseScroll":"mousewheel"}}}(),v=function(){var a="altKey attrChange attrName bubbles cancelable ctrlKey currentTarget detail eventPhase getModifierState isTrusted metaKey relatedNode relatedTarget shiftKey srcElement target timeStamp type view which".split(" "),b=a.concat("button buttons clientX clientY dataTransfer fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" ")),c=a.concat("char charCode key keyCode".split(" ")),d=a.concat("touches targetTouches changedTouches scale rotation".split(" ")),f="preventDefault",g=function(a){return function(){a[f]?a[f]():a.returnValue=!1}},h="stopPropagation",i=function(a){return function(){a[h]?a[h]():a.cancelBubble=!0}},j=function(a){return function(){a[f](),a[h](),a.stopped=!0}},k=function(a,b,c){var d,e;for(d=c.length;d--;)e=c[d],!(e in b)&&e in a&&(b[e]=a[e])};return function(n,o){var p={originalEvent:n,isNative:o};if(!n)return p;var s,t=n.type,u=n.target||n.srcElement;p[f]=g(n),p[h]=i(n),p.stop=j(p),p.target=u&&u.nodeType===3?u.parentNode:u;if(o){if(t.indexOf("key")!==-1)s=c,p.keyCode=n.which||n.keyCode;else if(q.test(t)){s=b,p.rightClick=n.which===3||n.button===2,p.pos={x:0,y:0};if(n.pageX||n.pageY)p.clientX=n.pageX,p.clientY=n.pageY;else if(n.clientX||n.clientY)p.clientX=n.clientX+l.body.scrollLeft+m.scrollLeft,p.clientY=n.clientY+l.body.scrollTop+m.scrollTop;e.test(t)&&(p.relatedTarget=n.relatedTarget||n[(t==="mouseover"?"from":"to")+"Element"])}else r.test(t)&&(s=d);k(n,p,s||a)}return p}}(),w=function(a,b){return!n&&!b&&(a===l||a===c)?m:a},x=function(){function a(a,b,c,d,e){this.element=a,this.type=b,this.handler=c,this.original=d,this.namespaces=e,this.custom=u[b],this.isNative=t[b]&&a[o],this.eventType=n||this.isNative?b:"propertychange",this.customType=!n&&!this.isNative&&b,this.target=w(a,this.isNative),this.eventSupport=this.target[o]}return a.prototype={inNamespaces:function(a){var b,c;if(!a)return!0;if(!this.namespaces)return!1;for(b=a.length;b--;)for(c=this.namespaces.length;c--;)if(a[b]===this.namespaces[c])return!0;return!1},matches:function(a,b,c){return this.element===a&&(!b||this.original===b)&&(!c||this.handler===c)}},a}(),y=function(){var a={},b=function(c,d,e,f,g){if(!d||d==="*")for(var h in a)h.charAt(0)==="$"&&b(c,h.substr(1),e,f,g);else{var i=0,j,k=a["$"+d],l=c==="*";if(!k)return;for(j=k.length;i<j;i++)if(l||k[i].matches(c,e,f))if(!g(k[i],k,i,d))return}},c=function(b,c,d){var e,f=a["$"+c];if(f)for(e=f.length;e--;)if(f[e].matches(b,d,null))return!0;return!1},d=function(a,c,d){var e=[];return b(a,c,d,null,function(a){return e.push(a)}),e},e=function(b){return(a["$"+b.type]||(a["$"+b.type]=[])).push(b),b},f=function(c){b(c.element,c.type,null,c.handler,function(b,c,d){return c.splice(d,1),c.length===0&&delete a["$"+b.type],!1})},g=function(){var b,c=[];for(b in a)b.charAt(0)==="$"&&(c=c.concat(a[b]));return c};return{has:c,get:d,put:e,del:f,entries:g}}(),z=n?function(a,b,c,d){a[d?h:j](b,c,!1)}:function(a,b,c,d,e){e&&d&&a["_on"+e]===null&&(a["_on"+e]=0),a[d?i:k]("on"+b,c)},A=function(a,b,d){return function(e){return e=v(e||((this.ownerDocument||this.document||this).parentWindow||c).event,!0),b.apply(a,[e].concat(d))}},B=function(a,b,d,e,f,g){return function(h){if(e?e.apply(this,arguments):n?!0:h&&h.propertyName==="_on"+d||!h)h&&(h=v(h||((this.ownerDocument||this.document||this).parentWindow||c).event,g)),b.apply(a,h&&(!f||f.length===0)?arguments:p.call(arguments,h?0:1).concat(f))}},C=function(a,b,c,d,e){return function(){a(b,c,e),d.apply(this,arguments)}},D=function(a,b,c,d){var e,f,h,i=b&&b.replace(g,""),j=y.get(a,i,c);for(e=0,f=j.length;e<f;e++)j[e].inNamespaces(d)&&((h=j[e]).eventSupport&&z(h.target,h.eventType,h.handler,!1,h.type),y.del(h))},E=function(a,b,c,d,e){var h,i=b.replace(g,""),j=b.replace(f,"").split(".");if(y.has(a,i,c))return a;i==="unload"&&(c=C(D,a,i,c,d)),u[i]&&(u[i].condition&&(c=B(a,c,i,u[i].condition,!0)),i=u[i].base||i),h=y.put(new x(a,i,c,d,j[0]&&j)),h.handler=h.isNative?A(a,h.handler,e):B(a,h.handler,i,!1,e,!1),h.eventSupport&&z(h.target,h.eventType,h.handler,!0,h.customType)},F=function(a,b,c){return function(d){var e,f,g=typeof a=="string"?c(a,this):a;for(e=d.target;e&&e!==this;e=e.parentNode)for(f=g.length;f--;)if(g[f]===e)return b.apply(e,arguments)}},G=function(a,b,c){var d,e,h,i,j,k=D,l=b&&typeof b=="string";if(l&&b.indexOf(" ")>0){b=b.split(" ");for(j=b.length;j--;)G(a,b[j],c);return a}h=l&&b.replace(g,""),h&&u[h]&&(h=u[h].type);if(!b||l){if(i=l&&b.replace(f,""))i=i.split(".");k(a,h,c,i)}else if(typeof b=="function")k(a,null,b);else for(d in b)b.hasOwnProperty(d)&&G(a,d,b[d]);return a},H=function(a,b,c,d,e){var f,g,h,i,j=c,k=c&&typeof c=="string";if(b&&!c&&typeof b=="object")for(f in b)b.hasOwnProperty(f)&&H.apply(this,[a,f,b[f]]);else{i=arguments.length>3?p.call(arguments,3):[],g=(k?c:b).split(" "),k&&(c=F(b,j=d,e))&&(i=p.call(i,1)),this===s&&(c=C(G,a,b,c,j));for(h=g.length;h--;)E(a,g[h],c,j,i)}return a},I=function(){return H.apply(s,arguments)},J=n?function(a,b,d){var e=l.createEvent(a?"HTMLEvents":"UIEvents");e[a?"initEvent":"initUIEvent"](b,!0,!0,c,1),d.dispatchEvent(e)}:function(a,b,c){c=w(c,a),a?c.fireEvent("on"+b,l.createEventObject()):c["_on"+b]++},K=function(a,b,c){var d,e,h,i,j,k=b.split(" ");for(d=k.length;d--;){b=k[d].replace(g,"");if(i=k[d].replace(f,""))i=i.split(".");if(!i&&!c&&a[o])J(t[b],b,a);else{j=y.get(a,b),c=[!1].concat(c);for(e=0,h=j.length;e<h;e++)j[e].inNamespaces(i)&&j[e].handler.apply(a,c)}}return a},L=function(a,b,c){var d=0,e=y.get(b,c),f=e.length;for(;d<f;d++)e[d].original&&H(a,e[d].type,e[d].original);return a},M={add:H,one:I,remove:G,clone:L,fire:K,noConflict:function(){return b[a]=d,this}};if(c[i]){var N=function(){var a,b=y.entries();for(a in b)b[a].type&&b[a].type!=="unload"&&G(b[a].element,b[a].type);c[k]("onunload",N),c.CollectGarbage&&c.CollectGarbage()};c[i]("onunload",N)}return M});
  // Underscore.js 1.1.7
  // (c) 2011 Jeremy Ashkenas, DocumentCloud Inc.
  // Underscore is freely distributable under the MIT license.
  // Portions of Underscore are inspired or borrowed from Prototype,
  // Oliver Steele's Functional, and John Resig's Micro-Templating.
  // For all details and documentation:
  // http://documentcloud.github.com/underscore
 
  (function(){var a=this,b=a._,c={},d=Array.prototype,e=Object.prototype,f=Function.prototype,g=d.slice,h=d.unshift,i=e.toString,j=e.hasOwnProperty,k=d.forEach,l=d.map,m=d.reduce,n=d.reduceRight,o=d.filter,p=d.every,q=d.some,r=d.indexOf,s=d.lastIndexOf,t=Array.isArray,u=Object.keys,v=f.bind,w=function(a){return new B(a)};typeof module!="undefined"&&module.exports?(module.exports=w,w._=w):a._=w,w.VERSION="1.1.7";var x=w.each=w.forEach=function(a,b,d){if(a==null)return;if(k&&a.forEach===k)a.forEach(b,d);else if(a.length===+a.length){for(var e=0,f=a.length;e<f;e++)if(e in a&&b.call(d,a[e],e,a)===c)return}else for(var g in a)if(j.call(a,g)&&b.call(d,a[g],g,a)===c)return};w.map=function(a,b,c){var d=[];return a==null?d:l&&a.map===l?a.map(b,c):(x(a,function(a,e,f){d[d.length]=b.call(c,a,e,f)}),d)},w.reduce=w.foldl=w.inject=function(a,b,c,d){var e=c!==void 0;a==null&&(a=[]);if(m&&a.reduce===m)return d&&(b=w.bind(b,d)),e?a.reduce(b,c):a.reduce(b);x(a,function(a,f,g){e?c=b.call(d,c,a,f,g):(c=a,e=!0)});if(!e)throw new TypeError("Reduce of empty array with no initial value");return c},w.reduceRight=w.foldr=function(a,b,c,d){a==null&&(a=[]);if(n&&a.reduceRight===n)return d&&(b=w.bind(b,d)),c!==void 0?a.reduceRight(b,c):a.reduceRight(b);var e=(w.isArray(a)?a.slice():w.toArray(a)).reverse();return w.reduce(e,b,c,d)},w.find=w.detect=function(a,b,c){var d;return y(a,function(a,e,f){if(b.call(c,a,e,f))return d=a,!0}),d},w.filter=w.select=function(a,b,c){var d=[];return a==null?d:o&&a.filter===o?a.filter(b,c):(x(a,function(a,e,f){b.call(c,a,e,f)&&(d[d.length]=a)}),d)},w.reject=function(a,b,c){var d=[];return a==null?d:(x(a,function(a,e,f){b.call(c,a,e,f)||(d[d.length]=a)}),d)},w.every=w.all=function(a,b,d){var e=!0;return a==null?e:p&&a.every===p?a.every(b,d):(x(a,function(a,f,g){if(!(e=e&&b.call(d,a,f,g)))return c}),e)};var y=w.some=w.any=function(a,b,d){b=b||w.identity;var e=!1;return a==null?e:q&&a.some===q?a.some(b,d):(x(a,function(a,f,g){if(e|=b.call(d,a,f,g))return c}),!!e)};w.include=w.contains=function(a,b){var c=!1;return a==null?c:r&&a.indexOf===r?a.indexOf(b)!=-1:(y(a,function(a){if(c=a===b)return!0}),c)},w.invoke=function(a,b){var c=g.call(arguments,2);return w.map(a,function(a){return(b.call?b||a:a[b]).apply(a,c)})},w.pluck=function(a,b){return w.map(a,function(a){return a[b]})},w.max=function(a,b,c){if(!b&&w.isArray(a))return Math.max.apply(Math,a);var d={computed:-Infinity};return x(a,function(a,e,f){var g=b?b.call(c,a,e,f):a;g>=d.computed&&(d={value:a,computed:g})}),d.value},w.min=function(a,b,c){if(!b&&w.isArray(a))return Math.min.apply(Math,a);var d={computed:Infinity};return x(a,function(a,e,f){var g=b?b.call(c,a,e,f):a;g<d.computed&&(d={value:a,computed:g})}),d.value},w.sortBy=function(a,b,c){return w.pluck(w.map(a,function(a,d,e){return{value:a,criteria:b.call(c,a,d,e)}}).sort(function(a,b){var c=a.criteria,d=b.criteria;return c<d?-1:c>d?1:0}),"value")},w.groupBy=function(a,b){var c={};return x(a,function(a,d){var e=b(a,d);(c[e]||(c[e]=[])).push(a)}),c},w.sortedIndex=function(a,b,c){c||(c=w.identity);var d=0,e=a.length;while(d<e){var f=d+e>>1;c(a[f])<c(b)?d=f+1:e=f}return d},w.toArray=function(a){return a?a.toArray?a.toArray():w.isArray(a)?g.call(a):w.isArguments(a)?g.call(a):w.values(a):[]},w.size=function(a){return w.toArray(a).length},w.first=w.head=function(a,b,c){return b!=null&&!c?g.call(a,0,b):a[0]},w.rest=w.tail=function(a,b,c){return g.call(a,b==null||c?1:b)},w.last=function(a){return a[a.length-1]},w.compact=function(a){return w.filter(a,function(a){return!!a})},w.flatten=function(a){return w.reduce(a,function(a,b){return w.isArray(b)?a.concat(w.flatten(b)):(a[a.length]=b,a)},[])},w.without=function(a){return w.difference(a,g.call(arguments,1))},w.uniq=w.unique=function(a,b){return w.reduce(a,function(a,c,d){if(0==d||(b===!0?w.last(a)!=c:!w.include(a,c)))a[a.length]=c;return a},[])},w.union=function(){return w.uniq(w.flatten(arguments))},w.intersection=w.intersect=function(a){var b=g.call(arguments,1);return w.filter(w.uniq(a),function(a){return w.every(b,function(b){return w.indexOf(b,a)>=0})})},w.difference=function(a,b){return w.filter(a,function(a){return!w.include(b,a)})},w.zip=function(){var a=g.call(arguments),b=w.max(w.pluck(a,"length")),c=new Array(b);for(var d=0;d<b;d++)c[d]=w.pluck(a,""+d);return c},w.indexOf=function(a,b,c){if(a==null)return-1;var d,e;if(c)return d=w.sortedIndex(a,b),a[d]===b?d:-1;if(r&&a.indexOf===r)return a.indexOf(b);for(d=0,e=a.length;d<e;d++)if(a[d]===b)return d;return-1},w.lastIndexOf=function(a,b){if(a==null)return-1;if(s&&a.lastIndexOf===s)return a.lastIndexOf(b);var c=a.length;while(c--)if(a[c]===b)return c;return-1},w.range=function(a,b,c){arguments.length<=1&&(b=a||0,a=0),c=arguments[2]||1;var d=Math.max(Math.ceil((b-a)/c),0),e=0,f=new Array(d);while(e<d)f[e++]=a,a+=c;return f},w.bind=function(a,b){if(a.bind===v&&v)return v.apply(a,g.call(arguments,1));var c=g.call(arguments,2);return function(){return a.apply(b,c.concat(g.call(arguments)))}},w.bindAll=function(a){var b=g.call(arguments,1);return b.length==0&&(b=w.functions(a)),x(b,function(b){a[b]=w.bind(a[b],a)}),a},w.memoize=function(a,b){var c={};return b||(b=w.identity),function(){var d=b.apply(this,arguments);return j.call(c,d)?c[d]:c[d]=a.apply(this,arguments)}},w.delay=function(a,b){var c=g.call(arguments,2);return setTimeout(function(){return a.apply(a,c)},b)},w.defer=function(a){return w.delay.apply(w,[a,1].concat(g.call(arguments,1)))};var z=function(a,b,c){var d;return function(){var e=this,f=arguments,g=function(){d=null,a.apply(e,f)};c&&clearTimeout(d);if(c||!d)d=setTimeout(g,b)}};w.throttle=function(a,b){return z(a,b,!1)},w.debounce=function(a,b){return z(a,b,!0)},w.once=function(a){var b=!1,c;return function(){return b?c:(b=!0,c=a.apply(this,arguments))}},w.wrap=function(a,b){return function(){var c=[a].concat(g.call(arguments));return b.apply(this,c)}},w.compose=function(){var a=g.call(arguments);return function(){var b=g.call(arguments);for(var c=a.length-1;c>=0;c--)b=[a[c].apply(this,b)];return b[0]}},w.after=function(a,b){return function(){if(--a<1)return b.apply(this,arguments)}},w.keys=u||function(a){if(a!==Object(a))throw new TypeError("Invalid object");var b=[];for(var c in a)j.call(a,c)&&(b[b.length]=c);return b},w.values=function(a){return w.map(a,w.identity)},w.functions=w.methods=function(a){var b=[];for(var c in a)w.isFunction(a[c])&&b.push(c);return b.sort()},w.extend=function(a){return x(g.call(arguments,1),function(b){for(var c in b)b[c]!==void 0&&(a[c]=b[c])}),a},w.defaults=function(a){return x(g.call(arguments,1),function(b){for(var c in b)a[c]==null&&(a[c]=b[c])}),a},w.clone=function(a){return w.isArray(a)?a.slice():w.extend({},a)},w.tap=function(a,b){return b(a),a},w.isEqual=function(a,b){if(a===b)return!0;var c=typeof a,d=typeof b;if(c!=d)return!1;if(a==b)return!0;if(!a&&b||a&&!b)return!1;a._chain&&(a=a._wrapped),b._chain&&(b=b._wrapped);if(a.isEqual)return a.isEqual(b);if(b.isEqual)return b.isEqual(a);if(w.isDate(a)&&w.isDate(b))return a.getTime()===b.getTime();if(w.isNaN(a)&&w.isNaN(b))return!1;if(w.isRegExp(a)&&w.isRegExp(b))return a.source===b.source&&a.global===b.global&&a.ignoreCase===b.ignoreCase&&a.multiline===b.multiline;if(c!=="object")return!1;if(a.length&&a.length!==b.length)return!1;var e=w.keys(a),f=w.keys(b);if(e.length!=f.length)return!1;for(var g in a)if(!(g in b)||!w.isEqual(a[g],b[g]))return!1;return!0},w.isEmpty=function(a){if(w.isArray(a)||w.isString(a))return a.length===0;for(var b in a)if(j.call(a,b))return!1;return!0},w.isElement=function(a){return!!a&&a.nodeType==1},w.isArray=t||function(a){return i.call(a)==="[object Array]"},w.isObject=function(a){return a===Object(a)},w.isArguments=function(a){return!!a&&!!j.call(a,"callee")},w.isFunction=function(a){return!!(a&&a.constructor&&a.call&&a.apply)},w.isString=function(a){return!!(a===""||a&&a.charCodeAt&&a.substr)},w.isNumber=function(a){return!!(a===0||a&&a.toExponential&&a.toFixed)},w.isNaN=function(a){return a!==a},w.isBoolean=function(a){return a===!0||a===!1},w.isDate=function(a){return!!(a&&a.getTimezoneOffset&&a.setUTCFullYear)},w.isRegExp=function(a){return!(!(a&&a.test&&a.exec)||!a.ignoreCase&&a.ignoreCase!==!1)},w.isNull=function(a){return a===null},w.isUndefined=function(a){return a===void 0},w.noConflict=function(){return a._=b,this},w.identity=function(a){return a},w.times=function(a,b,c){for(var d=0;d<a;d++)b.call(c,d)},w.mixin=function(a){x(w.functions(a),function(b){D(b,w[b]=a[b])})};var A=0;w.uniqueId=function(a){var b=A++;return a?a+b:b},w.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g},w.template=function(a,b){var c=w.templateSettings,d="var __p=[],print=function(){__p.push.apply(__p,arguments);};with(obj||{}){__p.push('"+a.replace(/\\/g,"\\\\").replace(/'/g,"\\'").replace(c.interpolate,function(a,b){return"',"+b.replace(/\\'/g,"'")+",'"}).replace(c.evaluate||null,function(a,b){return"');"+b.replace(/\\'/g,"'").replace(/[\r\n\t]/g," ")+"__p.push('"}).replace(/\r/g,"\\r").replace(/\n/g,"\\n").replace(/\t/g,"\\t")+"');}return __p.join('');",e=new Function("obj",d);return b?e(b):e};var B=function(a){this._wrapped=a};w.prototype=B.prototype;var C=function(a,b){return b?w(a).chain():a},D=function(a,b){B.prototype[a]=function(){var a=g.call(arguments);return h.call(a,this._wrapped),C(b.apply(w,a),this._chain)}};w.mixin(w),x(["pop","push","reverse","shift","sort","splice","unshift"],function(a){var b=d[a];B.prototype[a]=function(){return b.apply(this._wrapped,arguments),C(this._wrapped,this._chain)}}),x(["concat","join","slice"],function(a){var b=d[a];B.prototype[a]=function(){return C(b.apply(this._wrapped,arguments),this._chain)}}),B.prototype.chain=function(){return this._chain=!0,this},B.prototype.value=function(){return this._wrapped}})();
  /**
  * Flotr2 (c) 2012 Carl Sutherland
  * MIT License
  * Special thanks to:
  * Flotr: http://code.google.com/p/flotr/ (fork)
  * Flot: https://github.com/flot/flot (original fork)
  */
  (function(){var a=this,b=this.Flotr,c;c={_:_,bean:bean,isIphone:/iphone/i.test(navigator.userAgent),isIE:navigator.appVersion.indexOf("MSIE")!=-1?parseFloat(navigator.appVersion.split("MSIE")[1]):!1,graphTypes:{},plugins:{},addType:function(a,b){c.graphTypes[a]=b,c.defaultOptions[a]=b.options||{},c.defaultOptions.defaultType=c.defaultOptions.defaultType||a},addPlugin:function(a,b){c.plugins[a]=b,c.defaultOptions[a]=b.options||{}},draw:function(a,b,d,e){return e=e||c.Graph,new e(a,b,d)},merge:function(a,b){var d,e,f=b||{};for(d in a)e=a[d],e&&typeof e=="object"?e.constructor===Array?f[d]=this._.clone(e):e.constructor!==RegExp&&!this._.isElement(e)&&!e.jquery?f[d]=c.merge(e,b?b[d]:undefined):f[d]=e:f[d]=e;return f},clone:function(a){return c.merge(a,{})},getTickSize:function(a,b,d,e){var f=(d-b)/a,g=c.getMagnitude(f),h=10,i=f/g;return i<1.5?h=1:i<2.25?h=2:i<3?h=e===0?2:2.5:i<7.5&&(h=5),h*g},defaultTickFormatter:function(a,b){return a+""},defaultTrackFormatter:function(a){return"("+a.x+", "+a.y+")"},engineeringNotation:function(a,b,c){var d=["Y","Z","E","P","T","G","M","k",""],e=["y","z","a","f","p","n","µ","m",""],f=d.length;c=c||1e3,b=Math.pow(10,b||2);if(a===0)return 0;if(a>1)while(f--&&a>=c)a/=c;else{d=e,f=d.length;while(f--&&a<1)a*=c}return Math.round(a*b)/b+d[f]},getMagnitude:function(a){return Math.pow(10,Math.floor(Math.log(a)/Math.LN10))},toPixel:function(a){return Math.floor(a)+.5},toRad:function(a){return-a*(Math.PI/180)},floorInBase:function(a,b){return b*Math.floor(a/b)},drawText:function(a,b,d,e,f){if(!a.fillText){a.drawText(b,d,e,f);return}f=this._.extend({size:c.defaultOptions.fontSize,color:"#000000",textAlign:"left",textBaseline:"bottom",weight:1,angle:0},f),a.save(),a.translate(d,e),a.rotate(f.angle),a.fillStyle=f.color,a.font=(f.weight>1?"bold ":"")+f.size*1.3+"px sans-serif",a.textAlign=f.textAlign,a.textBaseline=f.textBaseline,a.fillText(b,0,0),a.restore()},getBestTextAlign:function(a,b){return b=b||{textAlign:"center",textBaseline:"middle"},a+=c.getTextAngleFromAlign(b),Math.abs(Math.cos(a))>.01&&(b.textAlign=Math.cos(a)>0?"right":"left"),Math.abs(Math.sin(a))>.01&&(b.textBaseline=Math.sin(a)>0?"top":"bottom"),b},alignTable:{"right middle":0,"right top":Math.PI/4,"center top":Math.PI/2,"left top":3*(Math.PI/4),"left middle":Math.PI,"left bottom":-3*(Math.PI/4),"center bottom":-Math.PI/2,"right bottom":-Math.PI/4,"center middle":0},getTextAngleFromAlign:function(a){return c.alignTable[a.textAlign+" "+a.textBaseline]||0},noConflict:function(){return a.Flotr=b,this}},a.Flotr=c})(),Flotr.defaultOptions={colors:["#00A8F0","#C0D800","#CB4B4B","#4DA74D","#9440ED"],ieBackgroundColor:"#FFFFFF",title:null,subtitle:null,shadowSize:4,defaultType:null,HtmlText:!0,fontColor:"#545454",fontSize:7.5,resolution:1,parseFloat:!0,preventDefault:!0,xaxis:{ticks:null,minorTicks:null,showLabels:!0,showMinorLabels:!1,labelsAngle:0,title:null,titleAngle:0,noTicks:5,minorTickFreq:null,tickFormatter:Flotr.defaultTickFormatter,tickDecimals:null,min:null,max:null,autoscale:!1,autoscaleMargin:0,color:null,mode:"normal",timeFormat:null,timeMode:"UTC",timeUnit:"millisecond",scaling:"linear",base:Math.E,titleAlign:"center",margin:!0},x2axis:{},yaxis:{ticks:null,minorTicks:null,showLabels:!0,showMinorLabels:!1,labelsAngle:0,title:null,titleAngle:90,noTicks:5,minorTickFreq:null,tickFormatter:Flotr.defaultTickFormatter,tickDecimals:null,min:null,max:null,autoscale:!1,autoscaleMargin:0,color:null,scaling:"linear",base:Math.E,titleAlign:"center",margin:!0},y2axis:{titleAngle:270},grid:{color:"#545454",backgroundColor:null,backgroundImage:null,watermarkAlpha:.4,tickColor:"#DDDDDD",labelMargin:3,verticalLines:!0,minorVerticalLines:null,horizontalLines:!0,minorHorizontalLines:null,outlineWidth:1,outline:"nsew",circular:!1},mouse:{track:!1,trackAll:!1,position:"se",relative:!1,trackFormatter:Flotr.defaultTrackFormatter,margin:5,lineColor:"#FF3F19",trackDecimals:1,sensibility:2,trackY:!0,radius:3,fillColor:null,fillOpacity:.4}},function(){function b(a,b,c,d){this.rgba=["r","g","b","a"];var e=4;while(-1<--e)this[this.rgba[e]]=arguments[e]||(e==3?1:0);this.normalize()}var a=Flotr._,c={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]};b.prototype={scale:function(b,c,d,e){var f=4;while(-1<--f)a.isUndefined(arguments[f])||(this[this.rgba[f]]*=arguments[f]);return this.normalize()},alpha:function(b){return!a.isUndefined(b)&&!a.isNull(b)&&(this.a=b),this.normalize()},clone:function(){return new b(this.r,this.b,this.g,this.a)},limit:function(a,b,c){return Math.max(Math.min(a,c),b)},normalize:function(){var a=this.limit;return this.r=a(parseInt(this.r,10),0,255),this.g=a(parseInt(this.g,10),0,255),this.b=a(parseInt(this.b,10),0,255),this.a=a(this.a,0,1),this},distance:function(a){if(!a)return;a=new b.parse(a);var c=0,d=3;while(-1<--d)c+=Math.abs(this[this.rgba[d]]-a[this.rgba[d]]);return c},toString:function(){return this.a>=1?"rgb("+[this.r,this.g,this.b].join(",")+")":"rgba("+[this.r,this.g,this.b,this.a].join(",")+")"},contrast:function(){var a=1-(.299*this.r+.587*this.g+.114*this.b)/255;return a<.5?"#000000":"#ffffff"}},a.extend(b,{parse:function(a){if(a instanceof b)return a;var d;if(d=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(a))return new b(parseInt(d[1],16),parseInt(d[2],16),parseInt(d[3],16));if(d=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(a))return new b(parseInt(d[1],10),parseInt(d[2],10),parseInt(d[3],10));if(d=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(a))return new b(parseInt(d[1]+d[1],16),parseInt(d[2]+d[2],16),parseInt(d[3]+d[3],16));if(d=/rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(a))return new b(parseInt(d[1],10),parseInt(d[2],10),parseInt(d[3],10),parseFloat(d[4]));if(d=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(a))return new b(parseFloat(d[1])*2.55,parseFloat(d[2])*2.55,parseFloat(d[3])*2.55);if(d=/rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(a))return new b(parseFloat(d[1])*2.55,parseFloat(d[2])*2.55,parseFloat(d[3])*2.55,parseFloat(d[4]));var e=(a+"").replace(/^\s*([\S\s]*?)\s*$/,"$1").toLowerCase();return e=="transparent"?new b(255,255,255,0):(d=c[e])?new b(d[0],d[1],d[2]):new b(0,0,0,0)},processColor:function(c,d){var e=d.opacity;if(!c)return"rgba(0, 0, 0, 0)";if(c instanceof b)return c.alpha(e).toString();if(a.isString(c))return b.parse(c).alpha(e).toString();var f=c.colors?c:{colors:c};if(!d.ctx)return a.isArray(f.colors)?b.parse(a.isArray(f.colors[0])?f.colors[0][1]:f.colors[0]).alpha(e).toString():"rgba(0, 0, 0, 0)";f=a.extend({start:"top",end:"bottom"},f),/top/i.test(f.start)&&(d.x1=0),/left/i.test(f.start)&&(d.y1=0),/bottom/i.test(f.end)&&(d.x2=0),/right/i.test(f.end)&&(d.y2=0);var g,h,i,j=d.ctx.createLinearGradient(d.x1,d.y1,d.x2,d.y2);for(g=0;g<f.colors.length;g++)h=f.colors[g],a.isArray(h)?(i=h[0],h=h[1]):i=g/(f.colors.length-1),j.addColorStop(i,b.parse(h).alpha(e));return j}}),Flotr.Color=b}(),Flotr.Date={set:function(a,b,c,d){c=c||"UTC",b="set"+(c==="UTC"?"UTC":"")+b,a[b](d)},get:function(a,b,c){return c=c||"UTC",b="get"+(c==="UTC"?"UTC":"")+b,a[b]()},format:function(a,b,c){function f(a){return a+="",a.length==1?"0"+a:a}if(!a)return;var d=this.get,e={h:d(a,"Hours",c).toString(),H:f(d(a,"Hours",c)),M:f(d(a,"Minutes",c)),S:f(d(a,"Seconds",c)),s:d(a,"Milliseconds",c),d:d(a,"Date",c).toString(),m:(d(a,"Month",c)+1).toString(),y:d(a,"FullYear",c).toString(),b:Flotr.Date.monthNames[d(a,"Month",c)]},g=[],h,i=!1;for(var j=0;j<b.length;++j)h=b.charAt(j),i?(g.push(e[h]||h),i=!1):h=="%"?i=!0:g.push(h);return g.join("")},getFormat:function(a,b){var c=Flotr.Date.timeUnits;return a<c.second?"%h:%M:%S.%s":a<c.minute?"%h:%M:%S":a<c.day?b<2*c.day?"%h:%M":"%b %d %h:%M":a<c.month?"%b %d":a<c.year?b<c.year?"%b":"%b %y":"%y"},formatter:function(a,b){var c=b.options,d=Flotr.Date.timeUnits[c.timeUnit],e=new Date(a*d);if(b.options.timeFormat)return Flotr.Date.format(e,c.timeFormat,c.timeMode);var f=(b.max-b.min)*d,g=b.tickSize*Flotr.Date.timeUnits[b.tickUnit];return Flotr.Date.format(e,Flotr.Date.getFormat(g,f),c.timeMode)},generator:function(a){function s(a){b(q,a,g,Flotr.floorInBase(c(q,a,g),m))}var b=this.set,c=this.get,d=this.timeUnits,e=this.spec,f=a.options,g=f.timeMode,h=d[f.timeUnit],i=a.min*h,j=a.max*h,k=(j-i)/f.noTicks,l=[],m=a.tickSize,n,o,p;o=f.tickFormatter===Flotr.defaultTickFormatter?this.formatter:f.tickFormatter;for(p=0;p<e.length-1;++p){var q=e[p][0]*d[e[p][1]];if(k<(q+e[p+1][0]*d[e[p+1][1]])/2&&q>=m)break}m=e[p][0],n=e[p][1],n=="year"&&(m=Flotr.getTickSize(f.noTicks*d.year,i,j,0),m==.5&&(n="month",m=6)),a.tickUnit=n,a.tickSize=m;var r=m*d[n];q=new Date(i);switch(n){case"millisecond":s("Milliseconds");break;case"second":s("Seconds");break;case"minute":s("Minutes");break;case"hour":s("Hours");break;case"month":s("Month");break;case"year":s("FullYear")}r>=d.second&&b(q,"Milliseconds",g,0),r>=d.minute&&b(q,"Seconds",g,0),r>=d.hour&&b(q,"Minutes",g,0),r>=d.day&&b(q,"Hours",g,0),r>=d.day*4&&b(q,"Date",g,1),r>=d.year&&b(q,"Month",g,0);var t=0,u=NaN,v;do{v=u,u=q.getTime(),l.push({v:u/h,label:o(u/h,a)});if(n=="month")if(m<1){b(q,"Date",g,1);var w=q.getTime();b(q,"Month",g,c(q,"Month",g)+1);var x=q.getTime();q.setTime(u+t*d.hour+(x-w)*m),t=c(q,"Hours",g),b(q,"Hours",g,0)}else b(q,"Month",g,c(q,"Month",g)+m);else n=="year"?b(q,"FullYear",g,c(q,"FullYear",g)+m):q.setTime(u+r)}while(u<j&&u!=v);return l},timeUnits:{millisecond:1,second:1e3,minute:6e4,hour:36e5,day:864e5,month:2592e6,year:31556952e3},spec:[[1,"millisecond"],[20,"millisecond"],[50,"millisecond"],[100,"millisecond"],[200,"millisecond"],[500,"millisecond"],[1,"second"],[2,"second"],[5,"second"],[10,"second"],[30,"second"],[1,"minute"],[2,"minute"],[5,"minute"],[10,"minute"],[30,"minute"],[1,"hour"],[2,"hour"],[4,"hour"],[8,"hour"],[12,"hour"],[1,"day"],[2,"day"],[3,"day"],[.25,"month"],[.5,"month"],[1,"month"],[2,"month"],[3,"month"],[6,"month"],[1,"year"]],monthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]},function(){function b(a){return a&&a.jquery?a[0]:a}var a=Flotr._;Flotr.DOM={addClass:function(c,d){c=b(c);var e=c.className?c.className:"";if(a.include(e.split(/\s+/g),d))return;c.className=(e?e+" ":"")+d},create:function(a){return document.createElement(a)},node:function(a){var b=Flotr.DOM.create("div"),c;return b.innerHTML=a,c=b.children[0],b.innerHTML="",c},empty:function(a){a=b(a),a.innerHTML=""},remove:function(a){a=b(a),a.parentNode.removeChild(a)},hide:function(a){a=b(a),Flotr.DOM.setStyles(a,{display:"none"})},insert:function(c,d){c=b(c),a.isString(d)?c.innerHTML+=d:a.isElement(d)&&c.appendChild(d)},opacity:function(a,c){a=b(a),a.style.opacity=c},position:function(a,c){return a=b(a),a.offsetParent?(c=this.position(a.offsetParent),c.left+=a.offsetLeft,c.top+=a.offsetTop,c):{left:a.offsetLeft||0,top:a.offsetTop||0}},removeClass:function(c,d){var e=c.className?c.className:"";c=b(c),c.className=a.filter(e.split(/\s+/g),function(a){if(a!=d)return!0}).join(" ")},setStyles:function(c,d){c=b(c),a.each(d,function(a,b){c.style[b]=a})},show:function(a){a=b(a),Flotr.DOM.setStyles(a,{display:""})},size:function(a){return a=b(a),{height:a.offsetHeight,width:a.offsetWidth}}}}(),function(){var a=Flotr,b=a.bean;a.EventAdapter={observe:function(a,c,d){return b.add(a,c,d),this},fire:function(a,c,d){return b.fire(a,c,d),typeof Prototype!="undefined"&&Event.fire(a,c,d),this},stopObserving:function(a,c,d){return b.remove(a,c,d),this},eventPointer:function(b){if(!a._.isUndefined(b.touches)&&b.touches.length>0)return{x:b.touches[0].pageX,y:b.touches[0].pageY};if(!a._.isUndefined(b.changedTouches)&&b.changedTouches.length>0)return{x:b.changedTouches[0].pageX,y:b.changedTouches[0].pageY};if(b.pageX||b.pageY)return{x:b.pageX,y:b.pageY};if(b.clientX||b.clientY){var c=document,d=c.body,e=c.documentElement;return{x:b.clientX+d.scrollLeft+e.scrollLeft,y:b.clientY+d.scrollTop+e.scrollTop}}}}}(),function(){var a=Flotr,b=a.DOM,c=a._,d=function(a){this.o=a};d.prototype={dimensions:function(a,b,c,d){return a?this.o.html?this.html(a,this.o.element,c,d):this.canvas(a,b):{width:0,height:0}},canvas:function(b,c){if(!this.o.textEnabled)return;c=c||{};var d=this.measureText(b,c),e=d.width,f=c.size||a.defaultOptions.fontSize,g=c.angle||0,h=Math.cos(g),i=Math.sin(g),j=2,k=6,l;return l={width:Math.abs(h*e)+Math.abs(i*f)+j,height:Math.abs(i*e)+Math.abs(h*f)+k},l},html:function(a,c,d,e){var f=b.create("div");return b.setStyles(f,{position:"absolute",top:"-10000px"}),b.insert(f,'<div style="'+d+'" class="'+e+' flotr-dummy-div">'+a+"</div>"),b.insert(this.o.element,f),b.size(f)},measureText:function(b,d){var e=this.o.ctx,f;return!e.fillText||a.isIphone&&e.measure?{width:e.measure(b,d)}:(d=c.extend({size:a.defaultOptions.fontSize,weight:1,angle:0},d),e.save(),e.font=(d.weight>1?"bold ":"")+d.size*1.3+"px sans-serif",f=e.measureText(b),e.restore(),f)}},Flotr.Text=d}(),function(){function e(a,c,d){return b.observe.apply(this,arguments),this._handles.push(arguments),this}var a=Flotr.DOM,b=Flotr.EventAdapter,c=Flotr._,d=Flotr;Graph=function(a,e,f){this._setEl(a),this._initMembers(),this._initPlugins(),b.fire(this.el,"flotr:beforeinit",[this]),this.data=e,this.series=d.Series.getSeries(e),this._initOptions(f),this._initGraphTypes(),this._initCanvas(),this._text=new d.Text({element:this.el,ctx:this.ctx,html:this.options.HtmlText,textEnabled:this.textEnabled}),b.fire(this.el,"flotr:afterconstruct",[this]),this._initEvents(),this.findDataRanges(),this.calculateSpacing(),this.draw(c.bind(function(){b.fire(this.el,"flotr:afterinit",[this])},this))},Graph.prototype={destroy:function(){b.fire(this.el,"flotr:destroy"),c.each(this._handles,function(a){b.stopObserving.apply(this,a)}),this._handles=[],this.el.graph=null},observe:e,_observe:e,processColor:function(a,b){var e={x1:0,y1:0,x2:this.plotWidth,y2:this.plotHeight,opacity:1,ctx:this.ctx};return c.extend(e,b),d.Color.processColor(a,e)},findDataRanges:function(){var a=this.axes,b,e,f;c.each(this.series,function(a){f=a.getRange(),f&&(b=a.xaxis,e=a.yaxis,b.datamin=Math.min(f.xmin,b.datamin),b.datamax=Math.max(f.xmax,b.datamax),e.datamin=Math.min(f.ymin,e.datamin),e.datamax=Math.max(f.ymax,e.datamax),b.used=b.used||f.xused,e.used=e.used||f.yused)},this),!a.x.used&&!a.x2.used&&(a.x.used=!0),!a.y.used&&!a.y2.used&&(a.y.used=!0),c.each(a,function(a){a.calculateRange()});var g=c.keys(d.graphTypes),h=!1;c.each(this.series,function(a){if(a.hide)return;c.each(g,function(b){a[b]&&a[b].show&&(this.extendRange(b,a),h=!0)},this),h||this.extendRange(this.options.defaultType,a)},this)},extendRange:function(a,b){this[a].extendRange&&this[a].extendRange(b,b.data,b[a],this[a]),this[a].extendYRange&&this[a].extendYRange(b.yaxis,b.data,b[a],this[a]),this[a].extendXRange&&this[a].extendXRange(b.xaxis,b.data,b[a],this[a])},calculateSpacing:function(){var a=this.axes,b=this.options,d=this.series,e=b.grid.labelMargin,f=this._text,g=a.x,h=a.x2,i=a.y,j=a.y2,k=b.grid.outlineWidth,l,m,n,o;c.each(a,function(a){a.calculateTicks(),a.calculateTextDimensions(f,b)}),o=f.dimensions(b.title,{size:b.fontSize*1.5},"font-size:1em;font-weight:bold;","flotr-title"),this.titleHeight=o.height,o=f.dimensions(b.subtitle,{size:b.fontSize},"font-size:smaller;","flotr-subtitle"),this.subtitleHeight=o.height;for(m=0;m<b.length;++m)d[m].points.show&&(k=Math.max(k,d[m].points.radius+d[m].points.lineWidth/2));var p=this.plotOffset;g.options.margin===!1?(p.bottom=0,p.top=0):(p.bottom+=(b.grid.circular?0:g.used&&g.options.showLabels?g.maxLabel.height+e:0)+(g.used&&g.options.title?g.titleSize.height+e:0)+k,p.top+=(b.grid.circular?0:h.used&&h.options.showLabels?h.maxLabel.height+e:0)+(h.used&&h.options.title?h.titleSize.height+e:0)+this.subtitleHeight+this.titleHeight+k),i.options.margin===!1?(p.left=0,p.right=0):(p.left+=(b.grid.circular?0:i.used&&i.options.showLabels?i.maxLabel.width+e:0)+(i.used&&i.options.title?i.titleSize.width+e:0)+k,p.right+=(b.grid.circular?0:j.used&&j.options.showLabels?j.maxLabel.width+e:0)+(j.used&&j.options.title?j.titleSize.width+e:0)+k),p.top=Math.floor(p.top),this.plotWidth=this.canvasWidth-p.left-p.right,this.plotHeight=this.canvasHeight-p.bottom-p.top,g.length=h.length=this.plotWidth,i.length=j.length=this.plotHeight,i.offset=j.offset=this.plotHeight,g.setScale(),h.setScale(),i.setScale(),j.setScale()},draw:function(a){var c=this.ctx,d;b.fire(this.el,"flotr:beforedraw",[this.series,this]);if(this.series.length){c.save(),c.translate(this.plotOffset.left,this.plotOffset.top);for(d=0;d<this.series.length;d++)this.series[d].hide||this.drawSeries(this.series[d]);c.restore(),this.clip()}b.fire(this.el,"flotr:afterdraw",[this.series,this]),a&&a()},drawSeries:function(a){function b(a,b){var c=this.getOptions(a,b);this[b].draw(c)}var e=!1;a=a||this.series,c.each(d.graphTypes,function(c,d){a[d]&&a[d].show&&this[d]&&(e=!0,b.call(this,a,d))},this),e||b.call(this,a,this.options.defaultType)},getOptions:function(a,b){var c=a[b],e=this[b],f=a.xaxis,g=a.yaxis,h={context:this.ctx,width:this.plotWidth,height:this.plotHeight,fontSize:this.options.fontSize,fontColor:this.options.fontColor,textEnabled:this.textEnabled,htmlText:this.options.HtmlText,text:this._text,element:this.el,data:a.data,color:a.color,shadowSize:a.shadowSize,xScale:f.d2p,yScale:g.d2p,xInverse:f.p2d,yInverse:g.p2d};return h=d.merge(c,h),h.fillStyle=this.processColor(c.fillColor||a.color,{opacity:c.fillOpacity}),h},getEventPosition:function(c){var d=document,e=d.body,f=d.documentElement,g=this.axes,h=this.plotOffset,i=this.lastMousePos,j=b.eventPointer(c),k=j.x-i.pageX,l=j.y-i.pageY,m,n,o;return"ontouchstart"in this.el?(m=a.position(this.overlay),n=j.x-m.left-h.left,o=j.y-m.top-h.top):(m=this.overlay.getBoundingClientRect(),n=c.clientX-m.left-h.left-e.scrollLeft-f.scrollLeft,o=c.clientY-m.top-h.top-e.scrollTop-f.scrollTop),{x:g.x.p2d(n),x2:g.x2.p2d(n),y:g.y.p2d(o),y2:g.y2.p2d(o),relX:n,relY:o,dX:k,dY:l,absX:j.x,absY:j.y,pageX:j.x,pageY:j.y}},clickHandler:function(a){if(this.ignoreClick)return this.ignoreClick=!1,this.ignoreClick;b.fire(this.el,"flotr:click",[this.getEventPosition(a),this])},mouseMoveHandler:function(a){if(this.mouseDownMoveHandler)return;var c=this.getEventPosition(a);b.fire(this.el,"flotr:mousemove",[a,c,this]),this.lastMousePos=c},mouseDownHandler:function(a){if(this.mouseUpHandler)return;this.mouseUpHandler=c.bind(function(a){b.stopObserving(document,"mouseup",this.mouseUpHandler),b.stopObserving(document,"mousemove",this.mouseDownMoveHandler),this.mouseDownMoveHandler=null,this.mouseUpHandler=null,b.fire(this.el,"flotr:mouseup",[a,this])},this),this.mouseDownMoveHandler=c.bind(function(c){var d=this.getEventPosition(c);b.fire(this.el,"flotr:mousemove",[a,d,this]),this.lastMousePos=d},this),b.observe(document,"mouseup",this.mouseUpHandler),b.observe(document,"mousemove",this.mouseDownMoveHandler),b.fire(this.el,"flotr:mousedown",[a,this]),this.ignoreClick=!1},drawTooltip:function(b,c,d,e){var f=this.getMouseTrack(),g="opacity:0.7;background-color:#000;color:#fff;display:none;position:absolute;padding:2px 8px;-moz-border-radius:4px;border-radius:4px;white-space:nowrap;",h=e.position,i=e.margin,j=this.plotOffset;c!==null&&d!==null?(e.relative?(h.charAt(0)=="n"?g+="bottom:"+(i-j.top-d+this.canvasHeight)+"px;top:auto;":h.charAt(0)=="s"&&(g+="top:"+(i+j.top+d)+"px;bottom:auto;"),h.charAt(1)=="e"?g+="left:"+(i+j.left+c)+"px;right:auto;":h.charAt(1)=="w"&&(g+="right:"+(i-j.left-c+this.canvasWidth)+"px;left:auto;")):(h.charAt(0)=="n"?g+="top:"+(i+j.top)+"px;bottom:auto;":h.charAt(0)=="s"&&(g+="bottom:"+(i+j.bottom)+"px;top:auto;"),h.charAt(1)=="e"?g+="right:"+(i+j.right)+"px;left:auto;":h.charAt(1)=="w"&&(g+="left:"+(i+j.left)+"px;right:auto;")),f.style.cssText=g,a.empty(f),a.insert(f,b),a.show(f)):a.hide(f)},clip:function(a){var b=this.plotOffset,c=this.canvasWidth,e=this.canvasHeight;a=a||this.ctx,d.isIE&&d.isIE<9?(a.save(),a.fillStyle=this.processColor(this.options.ieBackgroundColor),a.fillRect(0,0,c,b.top),a.fillRect(0,0,b.left,e),a.fillRect(0,e-b.bottom,c,b.bottom),a.fillRect(c-b.right,0,b.right,e),a.restore()):(a.clearRect(0,0,c,b.top),a.clearRect(0,0,b.left,e),a.clearRect(0,e-b.bottom,c,b.bottom),a.clearRect(c-b.right,0,b.right,e))},_initMembers:function(){this._handles=[],this.lastMousePos={pageX:null,pageY:null},this.plotOffset={left:0,right:0,top:0,bottom:0},this.ignoreClick=!0,this.prevHit=null},_initGraphTypes:function(){c.each(d.graphTypes,function(a,b){this[b]=d.clone(a)},this)},_initEvents:function(){var a=this.el,d,e,f;"ontouchstart"in a?(d=c.bind(function(c){f=!0,b.stopObserving(document,"touchend",d),b.fire(a,"flotr:mouseup",[event,this]),this.multitouches=null,e||this.clickHandler(c)},this),this.observe(this.overlay,"touchstart",c.bind(function(c){e=!1,f=!1,this.ignoreClick=!1,c.touches&&c.touches.length>1&&(this.multitouches=c.touches),b.fire(a,"flotr:mousedown",[event,this]),this.observe(document,"touchend",d)},this)),this.observe(this.overlay,"touchmove",c.bind(function(c){var d=this.getEventPosition(c);this.options.preventDefault&&c.preventDefault(),e=!0,this.multitouches||c.touches&&c.touches.length>1?this.multitouches=c.touches:f||b.fire(a,"flotr:mousemove",[event,d,this]),this.lastMousePos=d},this))):this.observe(this.overlay,"mousedown",c.bind(this.mouseDownHandler,this)).observe(a,"mousemove",c.bind(this.mouseMoveHandler,this)).observe(this.overlay,"click",c.bind(this.clickHandler,this)).observe(a,"mouseout",function(){b.fire(a,"flotr:mouseout")})},_initCanvas:function(){function k(e,f){return e||(e=a.create("canvas"),typeof FlashCanvas!="undefined"&&typeof e.getContext=="function"&&FlashCanvas.initElement(e),e.className="flotr-"+f,e.style.cssText="position:absolute;left:0px;top:0px;",a.insert(b,e)),c.each(i,function(b,c){a.show(e);if(f=="canvas"&&e.getAttribute(c)===b)return;e.setAttribute(c,b*d.resolution),e.style[c]=b+"px"}),e.context_=null,e}function l(a){window.G_vmlCanvasManager&&window.G_vmlCanvasManager.initElement(a);var b=a.getContext("2d");return window.G_vmlCanvasManager||b.scale(d.resolution,d.resolution),b}var b=this.el,d=this.options,e=b.children,f=[],g,h,i,j;for(h=e.length;h--;)g=e[h],!this.canvas&&g.className==="flotr-canvas"?this.canvas=g:!this.overlay&&g.className==="flotr-overlay"?this.overlay=g:f.push(g);for(h=f.length;h--;)b.removeChild(f[h]);a.setStyles(b,{position:"relative"}),i={},i.width=b.clientWidth,i.height=b.clientHeight;if(i.width<=0||i.height<=0||d.resolution<=0)throw"Invalid dimensions for plot, width = "+i.width+", height = "+i.height+", resolution = "+d.resolution;this.canvas=k(this.canvas,"canvas"),this.overlay=k(this.overlay,"overlay"),this.ctx=l(this.canvas),this.ctx.clearRect(0,0,this.canvas.width,this.canvas.height),this.octx=l(this.overlay),this.octx.clearRect(0,0,this.overlay.width,this.overlay.height),this.canvasHeight=i.height,this.canvasWidth=i.width,this.textEnabled=!!this.ctx.drawText||!!this.ctx.fillText},_initPlugins:function(){c.each(d.plugins,function(a,b){c.each(a.callbacks,function(a,b){this.observe(this.el,b,c.bind(a,this))},this),this[b]=d.clone(a),c.each(this[b],function(a,d){c.isFunction(a)&&(this[b][d]=c.bind(a,this))},this)},this)},_initOptions:function(a){var e=d.clone(d.defaultOptions);e.x2axis=c.extend(c.clone(e.xaxis),e.x2axis),e.y2axis=c.extend(c.clone(e.yaxis),e.y2axis),this.options=d.merge(a||{},e),this.options.grid.minorVerticalLines===null&&this.options.xaxis.scaling==="logarithmic"&&(this.options.grid.minorVerticalLines=!0),this.options.grid.minorHorizontalLines===null&&this.options.yaxis.scaling==="logarithmic"&&(this.options.grid.minorHorizontalLines=!0),b.fire(this.el,"flotr:afterinitoptions",[this]),this.axes=d.Axis.getAxes(this.options);var f=[],g=[],h=this.series.length,i=this.series.length,j=this.options.colors,k=[],l=0,m,n,o,p;for(n=i-1;n>-1;--n)m=this.series[n].color,m&&(--i,c.isNumber(m)?f.push(m):k.push(d.Color.parse(m)));for(n=f.length-1;n>-1;--n)i=Math.max(i,f[n]+1);for(n=0;g.length<i;){m=j.length==n?new d.Color(100,100,100):d.Color.parse(j[n]);var q=l%2==1?-1:1,r=1+q*Math.ceil(l/2)*.2;m.scale(r,r,r),g.push(m),++n>=j.length&&(n=0,++l)}for(n=0,o=0;n<h;++n){p=this.series[n],p.color?c.isNumber(p.color)&&(p.color=g[p.color].toString()):p.color=g[o++].toString(),p.xaxis||(p.xaxis=this.axes.x),p.xaxis==1?p.xaxis=this.axes.x:p.xaxis==2&&(p.xaxis=this.axes.x2),p.yaxis||(p.yaxis=this.axes.y),p.yaxis==1?p.yaxis=this.axes.y:p.yaxis==2&&(p.yaxis=this.axes.y2);for(var s in d.graphTypes)p[s]=c.extend(c.clone(this.options[s]),p[s]);p.mouse=c.extend(c.clone(this.options.mouse),p.mouse),c.isUndefined(p.shadowSize)&&(p.shadowSize=this.options.shadowSize)}},_setEl:function(a){if(!a)throw"The target container doesn't exist";if(a.graph instanceof Graph)a.graph.destroy();else if(!a.clientWidth)throw"The target container must be visible";a.graph=this,this.el=a}},Flotr.Graph=Graph}(),function(){function c(b){this.orientation=1,this.offset=0,this.datamin=Number.MAX_VALUE,this.datamax=-Number.MAX_VALUE,a.extend(this,b)}function d(a,b){return a=Math.log(Math.max(a,Number.MIN_VALUE)),b!==Math.E&&(a/=Math.log(b)),a}function e(a,b){return b===Math.E?Math.exp(a):Math.pow(b,a)}var a=Flotr._,b="logarithmic";c.prototype={setScale:function(){var a=this.length,c=this.max,f=this.min,g=this.offset,h=this.orientation,i=this.options,j=i.scaling===b,k;j?k=a/(d(c,i.base)-d(f,i.base)):k=a/(c-f),this.scale=k,j?(this.d2p=function(a){return g+h*(d(a,i.base)-d(f,i.base))*k},this.p2d=function(a){return e((g+h*a)/k+d(f,i.base),i.base)}):(this.d2p=function(a){return g+h*(a-f)*k},this.p2d=function(a){return(g+h*a)/k+f})},calculateTicks:function(){var b=this.options;this.ticks=[],this.minorTicks=[],b.ticks?(this._cleanUserTicks(b.ticks,this.ticks),this._cleanUserTicks(b.minorTicks||[],this.minorTicks)):b.mode=="time"?this._calculateTimeTicks():b.scaling==="logarithmic"?this._calculateLogTicks():this._calculateTicks(),a.each(this.ticks,function(a){a.label+=""}),a.each(this.minorTicks,function(a){a.label+=""})},calculateRange:function(){if(!this.used)return;var a=this,b=a.options,c=b.min!==null?b.min:a.datamin,d=b.max!==null?b.max:a.datamax,e=b.autoscaleMargin;b.scaling=="logarithmic"&&(c<=0&&(c=a.datamin),d<=0&&(d=c));if(d==c){var f=d?.01:1;b.min===null&&(c-=f),b.max===null&&(d+=f)}if(b.scaling==="logarithmic"){c<0&&(c=d/b.base);var g=Math.log(d);b.base!=Math.E&&(g/=Math.log(b.base)),g=Math.ceil(g);var h=Math.log(c);b.base!=Math.E&&(h/=Math.log(b.base)),h=Math.ceil(h),a.tickSize=Flotr.getTickSize(b.noTicks,h,g,b.tickDecimals===null?0:b.tickDecimals),b.minorTickFreq===null&&(g-h>10?b.minorTickFreq=0:g-h>5?b.minorTickFreq=2:b.minorTickFreq=5)}else a.tickSize=Flotr.getTickSize(b.noTicks,c,d,b.tickDecimals);a.min=c,a.max=d,b.min===null&&b.autoscale&&(a.min-=a.tickSize*e,a.min<0&&a.datamin>=0&&(a.min=0),a.min=a.tickSize*Math.floor(a.min/a.tickSize)),b.max===null&&b.autoscale&&(a.max+=a.tickSize*e,a.max>0&&a.datamax<=0&&a.datamax!=a.datamin&&(a.max=0),a.max=a.tickSize*Math.ceil(a.max/a.tickSize)),a.min==a.max&&(a.max=a.min+1)},calculateTextDimensions:function(a,b){var c="",d,e;if(this.options.showLabels)for(e=0;e<this.ticks.length;++e)d=this.ticks[e].label.length,d>c.length&&(c=this.ticks[e].label);this.maxLabel=a.dimensions(c,{size:b.fontSize,angle:Flotr.toRad(this.options.labelsAngle)},"font-size:smaller;","flotr-grid-label"),this.titleSize=a.dimensions(this.options.title,{size:b.fontSize*1.2,angle:Flotr.toRad(this.options.titleAngle)},"font-weight:bold;","flotr-axis-title")},_cleanUserTicks:function(b,c){var d=this,e=this.options,f,g,h,i;a.isFunction(b)&&(b=b({min:d.min,max:d.max}));for(g=0;g<b.length;++g)i=b[g],typeof i=="object"?(f=i[0],h=i.length>1?i[1]:e.tickFormatter(f,{min:d.min,max:d.max})):(f=i,h=e.tickFormatter(f,{min:this.min,max:this.max})),c[g]={v:f,label:h}},_calculateTimeTicks:function(){this.ticks=Flotr.Date.generator(this)},_calculateLogTicks:function(){var a=this,b=a.options,c,d,e=Math.log(a.max);b.base!=Math.E&&(e/=Math.log(b.base)),e=Math.ceil(e);var f=Math.log(a.min);b.base!=Math.E&&(f/=Math.log(b.base)),f=Math.ceil(f);for(i=f;i<e;i+=a.tickSize){d=b.base==Math.E?Math.exp(i):Math.pow(b.base,i);var g=d*(b.base==Math.E?Math.exp(a.tickSize):Math.pow(b.base,a.tickSize)),h=(g-d)/b.minorTickFreq;a.ticks.push({v:d,label:b.tickFormatter(d,{min:a.min,max:a.max})});for(c=d+h;c<g;c+=h)a.minorTicks.push({v:c,label:b.tickFormatter(c,{min:a.min,max:a.max})})}d=b.base==Math.E?Math.exp(i):Math.pow(b.base,i),a.ticks.push({v:d,label:b.tickFormatter(d,{min:a.min,max:a.max})})},_calculateTicks:function(){var a=this,b=a.options,c=a.tickSize,d=a.min,e=a.max,f=c*Math.ceil(d/c),g,h,i,j,k,l;b.minorTickFreq&&(h=c/b.minorTickFreq);for(k=0;(i=j=f+k*c)<=e;++k){g=b.tickDecimals,g===null&&(g=1-Math.floor(Math.log(c)/Math.LN10)),g<0&&(g=0),i=i.toFixed(g),a.ticks.push({v:i,label:b.tickFormatter(i,{min:a.min,max:a.max})});if(b.minorTickFreq)for(l=0;l<b.minorTickFreq&&k*c+l*h<e;++l)i=j+l*h,a.minorTicks.push({v:i,label:b.tickFormatter(i,{min:a.min,max:a.max})})}}},a.extend(c,{getAxes:function(a){return{x:new c({options:a.xaxis,n:1,length:this.plotWidth}),x2:new c({options:a.x2axis,n:2,length:this.plotWidth}),y:new c({options:a.yaxis,n:1,length:this.plotHeight,offset:this.plotHeight,orientation:-1}),y2:new c({options:a.y2axis,n:2,length:this.plotHeight,offset:this.plotHeight,orientation:-1})}}}),Flotr.Axis=c}(),function(){function b(b){a.extend(this,b)}var a=Flotr._;b.prototype={getRange:function(){var a=this.data,b=a.length,c=Number.MAX_VALUE,d=Number.MAX_VALUE,e=-Number.MAX_VALUE,f=-Number.MAX_VALUE,g=!1,h=!1,i,j,k;if(b<0||this.hide)return!1;for(k=0;k<b;k++)i=a[k][0],j=a[k][1],i!==null&&(i<c&&(c=i,g=!0),i>e&&(e=i,g=!0)),j!==null&&(j<d&&(d=j,h=!0),j>f&&(f=j,h=!0));return{xmin:c,xmax:e,ymin:d,ymax:f,xused:g,yused:h}}},a.extend(b,{getSeries:function(c){return a.map(c,function(c){var d;return c.data?(d=new b,a.extend(d,c)):d=new b({data:c}),d})}}),Flotr.Series=b}(),Flotr.addType("lines",{options:{show:!1,lineWidth:2,fill:!1,fillBorder:!1,fillColor:null,fillOpacity:.4,steps:!1,stacked:!1},stack:{values:[]},draw:function(a){var b=a.context,c=a.lineWidth,d=a.shadowSize,e;b.save(),b.lineJoin="round",d&&(b.lineWidth=d/2,e=c/2+b.lineWidth/2,b.strokeStyle="rgba(0,0,0,0.1)",this.plot(a,e+d/2,!1),b.strokeStyle="rgba(0,0,0,0.2)",this.plot(a,e,!1)),b.lineWidth=c,b.strokeStyle=a.color,this.plot(a,0,!0),b.restore()},plot:function(a,b,c){function w(){!b&&a.fill&&o&&(p=g(o[0]),d.fillStyle=a.fillStyle,d.lineTo(q,n),d.lineTo(p,n),d.lineTo(p,h(o[1])),d.fill(),a.fillBorder&&d.stroke())}var d=a.context,e=a.width,f=a.height,g=a.xScale,h=a.yScale,i=a.data,j=a.stacked?this.stack:!1,k=i.length-1,l=null,m=null,n=h(0),o=null,p,q,r,s,t,u,v;if(k<1)return;d.beginPath();for(v=0;v<k;++v){if(i[v][1]===null||i[v+1][1]===null){a.fill&&v>0&&i[v][1]&&(d.stroke(),w(),o=null,d.closePath(),d.beginPath());continue}p=g(i[v][0]),q=g(i[v+1][0]),o===null&&(o=i[v]),j?(t=j.values[i[v][0]]||0,u=j.values[i[v+1][0]]||j.values[i[v][0]]||0,r=h(i[v][1]+t),s=h(i[v+1][1]+u),c&&(j.values[i[v][0]]=i[v][1]+t,v==k-1&&(j.values[i[v+1][0]]=i[v+1][1]+u))):(r=h(i[v][1]),s=h(i[v+1][1]));if(r>f&&s>f||r<0&&s<0||p<0&&q<0||p>e&&q>e)continue;(l!=p||m!=r+b)&&d.moveTo(p,r+b),l=q,m=s+b,a.steps?(d.lineTo(l+b/2,r+b),d.lineTo(l+b/2,m)):d.lineTo(l,m)}(!a.fill||a.fill&&!a.fillBorder)&&d.stroke(),w(),d.closePath()},extendYRange:function(a,b,c,d){var e=a.options;if(c.stacked&&(!e.max&&e.max!==0||!e.min&&e.min!==0)){var f=a.max,g=a.min,h=d.positiveSums||{},i=d.negativeSums||{},j,k;for(k=0;k<b.length;k++)j=b[k][0]+"",b[k][1]>0?(h[j]=(h[j]||0)+b[k][1],f=Math.max(f,h[j])):(i[j]=(i[j]||0)+b[k][1],g=Math.min(g,i[j]));d.negativeSums=i,d.positiveSums=h,a.max=f,a.min=g}c.steps&&(this.hit=function(a){var b=a.data,c=a.args,d=a.yScale,e=c[0],f=b.length,g=c[1],h=a.xInverse(e.relX),i=e.relY,j;for(j=0;j<f-1;j++)if(h>=b[j][0]&&h<=b[j+1][0]){Math.abs(d(b[j][1])-i)<8&&(g.x=b[j][0],g.y=b[j][1],g.index=j,g.seriesIndex=a.index);break}},this.drawHit=function(a){var b=a.context,c=a.args,d=a.data,e=a.xScale,f=c.index,g=e(c.x),h=a.yScale(c.y),i;d.length-1>f&&(i=a.xScale(d[f+1][0]),b.save(),b.strokeStyle=a.color,b.lineWidth=a.lineWidth,b.beginPath(),b.moveTo(g,h),b.lineTo(i,h),b.stroke(),b.closePath(),b.restore())},this.clearHit=function(a){var b=a.context,c=a.args,d=a.data,e=a.xScale,f=a.lineWidth,g=c.index,h=e(c.x),i=a.yScale(c.y),j;d.length-1>g&&(j=a.xScale(d[g+1][0]),b.clearRect(h-f,i-f,j-h+2*f,2*f))})}}),Flotr.addType("bars",{options:{show:!1,lineWidth:2,barWidth:1,fill:!0,fillColor:null,fillOpacity:.4,horizontal:!1,stacked:!1,centered:!0,topPadding:.1,grouped:!1},stack:{positive:[],negative:[],_positive:[],_negative:[]},draw:function(a){var b=a.context;this.current+=1,b.save(),b.lineJoin="miter",b.lineWidth=a.lineWidth,b.strokeStyle=a.color,a.fill&&(b.fillStyle=a.fillStyle),this.plot(a),b.restore()},plot:function(a){var b=a.data,c=a.context,d=a.shadowSize,e,f,g,h,i,j;if(b.length<1)return;this.translate(c,a.horizontal);for(e=0;e<b.length;e++){f=this.getBarGeometry(b[e][0],b[e][1],a);if(f===null)continue;g=f.left,h=f.top,i=f.width,j=f.height,a.fill&&c.fillRect(g,h,i,j),d&&(c.save(),c.fillStyle="rgba(0,0,0,0.05)",c.fillRect(g+d,h+d,i,j),c.restore()),a.lineWidth&&c.strokeRect(g,h,i,j)}},translate:function(a,b){b&&(a.rotate(-Math.PI/2),a.scale(-1,1))},getBarGeometry:function(a,b,c){var d=c.horizontal,e=c.barWidth,f=c.centered,g=c.stacked?this.stack:!1,h=c.lineWidth,i=f?e/2:0,j=d?c.yScale:c.xScale,k=d?c.xScale:c.yScale,l=d?b:a,m=d?a:b,n=0,o,p,q,r,s;return c.grouped&&(this.current/this.groups,l-=i,e/=this.groups,i=e/2,l=l+e*this.current-i),g&&(o=m>0?g.positive:g.negative,n=o[l]||n,o[l]=n+m),p=j(l-i),q=j(l+e-i),r=k(m+n),s=k(n),s<0&&(s=0),a===null||b===null?null:{x:l,y:m,xScale:j,yScale:k,top:r,left:Math.min(p,q)-h/2,width:Math.abs(q-p)-h,height:s-r}},hit:function(a){var b=a.data,c=a.args,d=c[0],e=c[1],f=a.xInverse(d.relX),g=a.yInverse(d.relY),h=this.getBarGeometry(f,g,a),i=h.width/2,j=h.left,k=h.y,l,m;for(m=b.length;m--;)l=this.getBarGeometry(b[m][0],b[m][1],a),(k>0&&k<l.y||k<0&&k>l.y)&&Math.abs(j-l.left)<i&&(e.x=b[m][0],e.y=b[m][1],e.index=m,e.seriesIndex=a.index)},drawHit:function(a){var b=a.context,c=a.args,d=this.getBarGeometry(c.x,c.y,a),e=d.left,f=d.top,g=d.width,h=d.height;b.save(),b.strokeStyle=a.color,b.lineWidth=a.lineWidth,this.translate(b,a.horizontal),b.beginPath(),b.moveTo(e,f+h),b.lineTo(e,f),b.lineTo(e+g,f),b.lineTo(e+g,f+h),a.fill&&(b.fillStyle=a.fillStyle,b.fill()),b.stroke(),b.closePath(),b.restore()},clearHit:function(a){var b=a.context,c=a.args,d=this.getBarGeometry(c.x,c.y,a),e=d.left,f=d.width,g=d.top,h=d.height,i=2*a.lineWidth;b.save(),this.translate(b,a.horizontal),b.clearRect(e-i,Math.min(g,g+h)-i,f+2*i,Math.abs(h)+2*i),b.restore()},extendXRange:function(a,b,c,d){this._extendRange(a,b,c,d),this.groups=this.groups+1||1,this.current=0},extendYRange:function(a,b,c,d){this._extendRange(a,b,c,d)},_extendRange:function(a,b,c,d){var e=a.options.max;if(_.isNumber(e)||_.isString(e))return;var f=a.min,g=a.max,h=c.horizontal,i=a.orientation,j=this.positiveSums||{},k=this.negativeSums||{},l,m,n,o;(i==1&&!h||i==-1&&h)&&c.centered&&(g=Math.max(a.datamax+c.barWidth,g),f=Math.min(a.datamin-c.barWidth,f));if(c.stacked&&(i==1&&h||i==-1&&!h))for(o=b.length;o--;)l=b[o][i==1?1:0]+"",m=b[o][i==1?0:1],m>0?(j[l]=(j[l]||0)+m,g=Math.max(g,j[l])):(k[l]=(k[l]||0)+m,f=Math.min(f,k[l]));(i==1&&h||i==-1&&!h)&&c.topPadding&&(a.max===a.datamax||c.stacked&&this.stackMax!==g)&&(g+=c.topPadding*(g-f)),this.stackMin=f,this.stackMax=g,this.negativeSums=k,this.positiveSums=j,a.max=g,a.min=f}}),Flotr.addType("bubbles",{options:{show:!1,lineWidth:2,fill:!0,fillOpacity:.4,baseRadius:2},draw:function(a){var b=a.context,c=a.shadowSize;b.save(),b.lineWidth=a.lineWidth,b.fillStyle="rgba(0,0,0,0.05)",b.strokeStyle="rgba(0,0,0,0.05)",this.plot(a,c/2),b.strokeStyle="rgba(0,0,0,0.1)",this.plot(a,c/4),b.strokeStyle=a.color,b.fillStyle=a.fillStyle,this.plot(a),b.restore()},plot:function(a,b){var c=a.data,d=a.context,e,f,g,h,i;b=b||0;for(f=0;f<c.length;++f)e=this.getGeometry(c[f],a),d.beginPath(),d.arc(e.x+b,e.y+b,e.z,0,2*Math.PI,!0),d.stroke(),a.fill&&d.fill(),d.closePath()},getGeometry:function(a,b){return{x:b.xScale(a[0]),y:b.yScale(a[1]),z:a[2]*b.baseRadius}},hit:function(a){var b=a.data,c=a.args,d=c[0],e=c[1],f=d.relX,g=d.relY,h,j,k,l;e.best=e.best||Number.MAX_VALUE;for(i=b.length;i--;)j=this.getGeometry(b[i],a),k=j.x-f,l=j.y-g,h=Math.sqrt(k*k+l*l),h<j.z&&j.z<e.best&&(e.x=b[i][0],e.y=b[i][1],e.index=i,e.seriesIndex=a.index,e.best=j.z)},drawHit:function(a){var b=a.context,c=this.getGeometry(a.data[a.args.index],a);b.save(),b.lineWidth=a.lineWidth,b.fillStyle=a.fillStyle,b.strokeStyle=a.color,b.beginPath(),b.arc(c.x,c.y,c.z,0,2*Math.PI,!0),b.fill(),b.stroke(),b.closePath(),b.restore()},clearHit:function(a){var b=a.context,c=this.getGeometry(a.data[a.args.index],a),d=c.z+a.lineWidth;b.save(),b.clearRect(c.x-d,c.y-d,2*d,2*d),b.restore()}}),Flotr.addType("candles",{options:{show:!1,lineWidth:1,wickLineWidth:1,candleWidth:.6,fill:!0,upFillColor:"#00A8F0",downFillColor:"#CB4B4B",fillOpacity:.5,barcharts:!1},draw:function(a){var b=a.context;b.save(),b.lineJoin="miter",b.lineCap="butt",b.lineWidth=a.wickLineWidth||a.lineWidth,this.plot(a),b.restore()},plot:function(a){var b=a.data,c=a.context,d=a.xScale,e=a.yScale,f=a.candleWidth/2,g=a.shadowSize,h=a.lineWidth,i=a.wickLineWidth,j=i%2/2,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y;if(b.length<1)return;for(y=0;y<b.length;y++){l=b[y],m=l[0],o=l[1],p=l[2],q=l[3],r=l[4],s=d(m-f),t=d(m+f),u=e(q),v=e(p),w=e(Math.min(o,r)),x=e(Math.max(o,r)),k=a[o>r?"downFillColor":"upFillColor"],a.fill&&!a.barcharts&&(c.fillStyle="rgba(0,0,0,0.05)",c.fillRect(s+g,x+g,t-s,w-x),c.save(),c.globalAlpha=a.fillOpacity,c.fillStyle=k,c.fillRect(s,x+h,t-s,w-x),c.restore());if(h||i)m=Math.floor((s+t)/2)+j,c.strokeStyle=k,c.beginPath(),a.barcharts?(c.moveTo(m,Math.floor(v+f)),c.lineTo(m,Math.floor(u+f)),n=Math.floor(o+f)+.5,c.moveTo(Math.floor(s)+j,n),c.lineTo(m,n),n=Math.floor(r+f)+.5,c.moveTo(Math.floor(t)+j,n),c.lineTo(m,n)):(c.strokeRect(s,x+h,t-s,w-x),c.moveTo(m,Math.floor(x+h)),c.lineTo(m,Math.floor(v+h)),c.moveTo(m,Math.floor(w+h)),c.lineTo(m,Math.floor(u+h))),c.closePath(),c.stroke()}},extendXRange:function(a,b,c){a.options.max===null&&(a.max=Math.max(a.datamax+.5,a.max),a.min=Math.min(a.datamin-.5,a.min))}}),Flotr.addType("gantt",{options:{show:!1,lineWidth:2,barWidth:1,fill:!0,fillColor:null,fillOpacity:.4,centered:!0},draw:function(a){var b=this.ctx,c=a.gantt.barWidth,d=Math.min(a.gantt.lineWidth,c);b.save(),b.translate(this.plotOffset.left,this.plotOffset.top),b.lineJoin="miter",b.lineWidth=d,b.strokeStyle=a.color,b.save(),this.gantt.plotShadows(a,c,0,a.gantt.fill),b.restore();if(a.gantt.fill){var e=a.gantt.fillColor||a.color;b.fillStyle=this.processColor(e,{opacity:a.gantt.fillOpacity})}this.gantt.plot(a,c,0,a.gantt.fill),b.restore()},plot:function(a,b,c,d){var e=a.data;if(e.length<1)return;var f=a.xaxis,g=a.yaxis,h=this.ctx,i;for(i=0;i<e.length;i++){var j=e[i][0],k=e[i][1],l=e[i][2],m=!0,n=!0,o=!0;if(k===null||l===null)continue;var p=k,q=k+l,r=j-(a.gantt.centered?b/2:0),s=j+b-(a.gantt.centered?b/2:0);if(q<f.min||p>f.max||s<g.min||r>g.max)continue;p<f.min&&(p=f.min,m=!1),q>f.max&&(q=f.max,f.lastSerie!=a&&(n=!1)),r<g.min&&(r=g.min),s>g.max&&(s=g.max,g.lastSerie!=a&&(n=!1)),d&&(h.beginPath(),h.moveTo(f.d2p(p),g.d2p(r)+c),h.lineTo(f.d2p(p),g.d2p(s)+c),h.lineTo(f.d2p(q),g.d2p(s)+c),h.lineTo(f.d2p(q),g.d2p(r)+c),h.fill(),h.closePath()),a.gantt.lineWidth&&(m||o||n)&&(h.beginPath(),h.moveTo(f.d2p(p),g.d2p(r)+c),h[m?"lineTo":"moveTo"](f.d2p(p),g.d2p(s)+c),h[n?"lineTo":"moveTo"](f.d2p(q),g.d2p(s)+c),h[o?"lineTo":"moveTo"](f.d2p(q),g.d2p(r)+c),h.stroke(),h.closePath())}},plotShadows:function(a,b,c){var d=a.data;if(d.length<1)return;var e,f,g,h,i=a.xaxis,j=a.yaxis,k=this.ctx,l=this.options.shadowSize;for(e=0;e<d.length;e++){f=d[e][0],g=d[e][1],h=d[e][2];if(g===null||h===null)continue;var m=g,n=g+h,o=f-(a.gantt.centered?b/2:0),p=f+b-(a.gantt.centered?b/2:0);if(n<i.min||m>i.max||p<j.min||o>j.max)continue;m<i.min&&(m=i.min),n>i.max&&(n=i.max),o<j.min&&(o=j.min),p>j.max&&(p=j.max);var q=i.d2p(n)-i.d2p(m)-(i.d2p(n)+l<=this.plotWidth?0:l),r=j.d2p(o)-j.d2p(p)-(j.d2p(o)+l<=this.plotHeight?0:l);k.fillStyle="rgba(0,0,0,0.05)",k.fillRect(Math.min(i.d2p(m)+l,this.plotWidth),Math.min(j.d2p(p)+l,this.plotHeight),q,r)}},extendXRange:function(a){if(a.options.max===null){var b=a.min,c=a.max,d,e,f,g,h,i={},j={},k=null;for(d=0;d<this.series.length;++d){g=this.series[d],h=g.gantt;if(h.show&&g.xaxis==a){for(e=0;e<g.data.length;e++)h.show&&(y=g.data[e][0]+"",i[y]=Math.max(i[y]||0,g.data[e][1]+g.data[e][2]),k=g);for(e in i)c=Math.max(i[e],c)}}a.lastSerie=k,a.max=c,a.min=b}},extendYRange:function(a){if(a.options.max===null){var b=Number.MIN_VALUE,c=Number.MAX_VALUE,d,e,f,g,h={},i={},j=null;for(d=0;d<this.series.length;++d){f=this.series[d],g=f.gantt;if(g.show&&!f.hide&&f.yaxis==a){var k=Number.MIN_VALUE,l=Number.MAX_VALUE;for(e=0;e<f.data.length;e++)k=Math.max(k,f.data[e][0]),l=Math.min(l,f.data[e][0]);g.centered?(b=Math.max(k+.5,b),c=Math.min(l-.5,c)):(b=Math.max(k+1,b),c=Math.min(l,c)),g.barWidth+k>b&&(b=a.max+g.barWidth)}}a.lastSerie=j,a.max=b,a.min=c,a.tickSize=Flotr.getTickSize(a.options.noTicks,c,b,a.options.tickDecimals)}}}),function(){function a(a){return typeof a=="object"&&a.constructor&&(Image?!0:a.constructor===Image)}Flotr.defaultMarkerFormatter=function(a){return Math.round(a.y*100)/100+""},Flotr.addType("markers",{options:{show:!1,lineWidth:1,color:"#000000",fill:!1,fillColor:"#FFFFFF",fillOpacity:.4,stroke:!1,position:"ct",verticalMargin:0,labelFormatter:Flotr.defaultMarkerFormatter,fontSize:Flotr.defaultOptions.fontSize,stacked:!1,stackingType:"b",horizontal:!1},stack:{positive:[],negative:[],values:[]},draw:function(a){function m(a,b){return g=d.negative[a]||0,f=d.positive[a]||0,b>0?(d.positive[a]=g+b,g+b):(d.negative[a]=f+b,f+b)}var b=a.data,c=a.context,d=a.stacked?a.stack:!1,e=a.stackingType,f,g,h,i,j,k,l;c.save(),c.lineJoin="round",c.lineWidth=a.lineWidth,c.strokeStyle="rgba(0,0,0,0.5)",c.fillStyle=a.fillStyle;for(i=0;i<b.length;++i)j=b[i][0],k=b[i][1],d&&(e=="b"?a.horizontal?k=m(k,j):j=m(j,k):e=="a"&&(h=d.values[j]||0,d.values[j]=h+k,k=h+k)),l=a.labelFormatter({x:j,y:k,index:i,data:b}),this.plot(a.xScale(j),a.yScale(k),l,a);c.restore()},plot:function(b,c,d,e){var f=e.context;if(a(d)&&!d.complete)throw"Marker image not loaded.";this._plot(b,c,d,e)},_plot:function(b,c,d,e){var f=e.context,g=2,h=b,i=c,j;a(d)?j={height:d.height,width:d.width}:j=e.text.canvas(d),j.width=Math.floor(j.width+g*2),j.height=Math.floor(j.height+g*2),e.position.indexOf("c")!=-1?h-=j.width/2+g:e.position.indexOf("l")!=-1&&(h-=j.width),e.position.indexOf("m")!=-1?i-=j.height/2+g:e.position.indexOf("t")!=-1?i-=j.height+e.verticalMargin:i+=e.verticalMargin,h=Math.floor(h)+.5,i=Math.floor(i)+.5,e.fill&&f.fillRect(h,i,j.width,j.height),e.stroke&&f.strokeRect(h,i,j.width,j.height),a(d)?f.drawImage(d,h+g,i+g):Flotr.drawText(f,d,h+g,i+g,{textBaseline:"top",textAlign:"left",size:e.fontSize,color:e.color})}})}(),function(){var a=Flotr._;Flotr.defaultPieLabelFormatter=function(a,b){return(100*b/a).toFixed(2)+"%"},Flotr.addType("pie",{options:{show:!1,lineWidth:1,fill:!0,fillColor:null,fillOpacity:.6,explode:6,sizeRatio:.6,startAngle:Math.PI/4,labelFormatter:Flotr.defaultPieLabelFormatter,pie3D:!1,pie3DviewAngle:Math.PI/2*.8,pie3DspliceThickness:20,epsilon:.1},draw:function(a){var b=a.data,c=a.context,d=c.canvas,e=a.lineWidth,f=a.shadowSize,g=a.sizeRatio,h=a.height,i=a.width,j=a.explode,k=a.color,l=a.fill,m=a.fillStyle,n=Math.min(d.width,d.height)*g/2,o=b[0][1],p=[],q=1,r=Math.PI*2*o/this.total,s=this.startAngle||2*Math.PI*a.startAngle,t=s+r,u=s+r/2,v=a.labelFormatter(this.total,o),w=j+n+4,x=Math.cos(u)*w,y=Math.sin(u)*w,z=x<0?"right":"left",A=y>0?"top":"bottom",B,C,D;c.save(),c.translate(i/2,h/2),c.scale(1,q),C=Math.cos(u)*j,D=Math.sin(u)*j,f>0&&(this.plotSlice(C+f,D+f,n,s,t,c),l&&(c.fillStyle="rgba(0,0,0,0.1)",c.fill())),this.plotSlice(C,D,n,s,t,c),l&&(c.fillStyle=m,c.fill()),c.lineWidth=e,c.strokeStyle=k,c.stroke(),B={size:a.fontSize*1.2,color:a.fontColor,weight:1.5},v&&(a.htmlText||!a.textEnabled?(divStyle="position:absolute;"+A+":"+(h/2+(A==="top"?y:-y))+"px;",divStyle+=z+":"+(i/2+(z==="right"?-x:x))+"px;",p.push('<div style="',divStyle,'" class="flotr-grid-label">',v,"</div>")):(B.textAlign=z,B.textBaseline=A,Flotr.drawText(c,v,x,y,B)));if(a.htmlText||!a.textEnabled){var E=Flotr.DOM.node('<div style="color:'+a.fontColor+'" class="flotr-labels"></div>');Flotr.DOM.insert(E,p.join("")),Flotr.DOM.insert(a.element,E)}c.restore(),this.startAngle=t,this.slices=this.slices||[],this.slices.push({radius:Math.min(d.width,d.height)*g/2,x:C,y:D,explode:j,start:s,end:t})},plotSlice:function(a,b,c,d,e,f){f.beginPath(),f.moveTo(a,b),f.arc(a,b,c,d,e,!1),f.lineTo(a,b),f.closePath()},hit:function(a){var b=a.data[0],c=a.args,d=a.index,e=c[0],f=c[1],g=this.slices[d],h=e.relX-a.width/2,i=e.relY-a.height/2,j=Math.sqrt(h*h+i*i),k=Math.atan(i/h),l=Math.PI*2,m=g.explode||a.explode,n=g.start%l,o=g.end%l,p=a.epsilon;h<0?k+=Math.PI:h>0&&i<0&&(k+=l),j<g.radius+m&&j>m&&(k>n&&k<o||n>o&&(k<o||k>n)||n===o&&(g.start===g.end&&Math.abs(k-n)<p||g.start!==g.end&&Math.abs(k-n)>p))&&(f.x=b[0],f.y=b[1],f.sAngle=n,f.eAngle=o,f.index=0,f.seriesIndex=d,f.fraction=b[1]/this.total)},drawHit:function(a){var b=a.context,c=this.slices[a.args.seriesIndex];b.save(),b.translate(a.width/2,a.height/2),this.plotSlice(c.x,c.y,c.radius,c.start,c.end,b),b.stroke(),b.restore()},clearHit:function(a){var b=a.context,c=this.slices[a.args.seriesIndex],d=2*a.lineWidth,e=c.radius+d;b.save(),b.translate(a.width/2,a.height/2),b.clearRect(c.x-e,c.y-e,2*e+d,2*e+d),b.restore()},extendYRange:function(a,b){this.total=(this.total||0)+b[0][1]}})}(),Flotr.addType("points",{options:{show:!1,radius:3,lineWidth:2,fill:!0,fillColor:"#FFFFFF",fillOpacity:1,hitRadius:null},draw:function(a){var b=a.context,c=a.lineWidth,d=a.shadowSize;b.save(),d>0&&(b.lineWidth=d/2,b.strokeStyle="rgba(0,0,0,0.1)",this.plot(a,d/2+b.lineWidth/2),b.strokeStyle="rgba(0,0,0,0.2)",this.plot(a,b.lineWidth/2)),b.lineWidth=a.lineWidth,b.strokeStyle=a.color,a.fill&&(b.fillStyle=a.fillStyle),this.plot(a),b.restore()},plot:function(a,b){var c=a.data,d=a.context,e=a.xScale,f=a.yScale,g,h,i;for(g=c.length-1;g>-1;--g){i=c[g][1];if(i===null)continue;h=e(c[g][0]),i=f(i);if(h<0||h>a.width||i<0||i>a.height)continue;d.beginPath(),b?d.arc(h,i+b,a.radius,0,Math.PI,!1):(d.arc(h,i,a.radius,0,2*Math.PI,!0),a.fill&&d.fill()),d.stroke(),d.closePath()}}}),Flotr.addType("radar",{options:{show:!1,lineWidth:2,fill:!0,fillOpacity:.4,radiusRatio:.9},draw:function(a){var b=a.context,c=a.shadowSize;b.save(),b.translate(a.width/2,a.height/2),b.lineWidth=a.lineWidth,b.fillStyle="rgba(0,0,0,0.05)",b.strokeStyle="rgba(0,0,0,0.05)",this.plot(a,c/2),b.strokeStyle="rgba(0,0,0,0.1)",this.plot(a,c/4),b.strokeStyle=a.color,b.fillStyle=a.fillStyle,this.plot(a),b.restore()},plot:function(a,b){var c=a.data,d=a.context,e=Math.min(a.height,a.width)*a.radiusRatio/2,f=2*Math.PI/c.length,g=-Math.PI/2,h,i;b=b||0,d.beginPath();for(h=0;h<c.length;++h)i=c[h][1]/this.max,d[h===0?"moveTo":"lineTo"](Math.cos(h*f+g)*e*i+b,Math.sin(h*f+g)*e*i+b);d.closePath(),a.fill&&d.fill(),d.stroke()},extendYRange:function(a,b){this.max=Math.max(a.max,this.max||-Number.MAX_VALUE)}}),Flotr.addType("timeline",{options:{show:!1,lineWidth:1,barWidth:.2,fill:!0,fillColor:null,fillOpacity:.4,centered:!0},draw:function(a){var b=a.context;b.save(),b.lineJoin="miter",b.lineWidth=a.lineWidth,b.strokeStyle=a.color,b.fillStyle=a.fillStyle,this.plot(a),b.restore()},plot:function(a){var b=a.data,c=a.context,d=a.xScale,e=a.yScale,f=a.barWidth,g=a.lineWidth,h;Flotr._.each(b,function(a){var b=a[0],h=a[1],i=a[2],j=f,k=Math.ceil(d(b)),l=Math.ceil(d(b+i))-k,m=Math.round(e(h)),n=Math.round(e(h-j))-m,o=k-g/2,p=Math.round(m-n/2)-g/2;c.strokeRect(o,p,l,n),c.fillRect(o,p,l,n)})},extendRange:function(a){var b=a.data,c=a.xaxis,d=a.yaxis,e=a.timeline.barWidth;c.options.min===null&&(c.min=c.datamin-e/2);if(c.options.max===null){var f=c.max;Flotr._.each(b,function(a){f=Math.max(f,a[0]+a[2])},this),c.max=f+e/2}d.options.min===null&&(d.min=d.datamin-e),d.options.min===null&&(d.max=d.datamax+e)}}),function(){var a=Flotr.DOM;Flotr.addPlugin("crosshair",{options:{mode:null,color:"#FF0000",hideCursor:!0},callbacks:{"flotr:mousemove":function(a,b){this.options.crosshair.mode&&(this.crosshair.clearCrosshair(),this.crosshair.drawCrosshair(b))}},drawCrosshair:function(b){var c=this.octx,d=this.options.crosshair,e=this.plotOffset,f=e.left+Math.round(b.relX)+.5,g=e.top+Math.round(b.relY)+.5;if(b.relX<0||b.relY<0||b.relX>this.plotWidth||b.relY>this.plotHeight){this.el.style.cursor=null,a.removeClass(this.el,"flotr-crosshair");return}d.hideCursor&&(this.el.style.cursor="none",a.addClass(this.el,"flotr-crosshair")),c.save(),c.strokeStyle=d.color,c.lineWidth=1,c.beginPath(),d.mode.indexOf("x")!=-1&&(c.moveTo(f,e.top),c.lineTo(f,e.top+this.plotHeight)),d.mode.indexOf("y")!=-1&&(c.moveTo(e.left,g),c.lineTo(e.left+this.plotWidth,g)),c.stroke(),c.restore()},clearCrosshair:function(){var a=this.plotOffset,b=this.lastMousePos,c=this.octx;b&&(c.clearRect(Math.round(b.relX)+a.left,a.top,1,this.plotHeight+1),c.clearRect(a.left,Math.round(b.relY)+a.top,this.plotWidth+1,1))}})}(),function(){function c(a,b,c,d){var e="image/"+a,f=b.toDataURL(e),g=new Image;return g.src=f,g}var a=Flotr.DOM,b=Flotr._;Flotr.addPlugin("download",{saveImage:function(d,e,f,g){var h=null;if(Flotr.isIE&&Flotr.isIE<9)return h="<html><body>"+this.canvas.firstChild.innerHTML+"</body></html>",window.open().document.write(h);if(d!=="jpeg"&&d!=="png")return;h=c(d,this.canvas,e,f);if(!b.isElement(h)||!g)return window.open(h.src);this.download.restoreCanvas(),a.hide(this.canvas),a.hide(this.overlay),a.setStyles({position:"absolute"}),a.insert(this.el,h),this.saveImageElement=h},restoreCanvas:function(){a.show(this.canvas),a.show(this.overlay),this.saveImageElement&&this.el.removeChild(this.saveImageElement),this.saveImageElement=null}})}(),function(){var a=Flotr.EventAdapter,b=Flotr._;Flotr.addPlugin("graphGrid",{callbacks:{"flotr:beforedraw":function(){this.graphGrid.drawGrid()},"flotr:afterdraw":function(){this.graphGrid.drawOutline()}},drawGrid:function(){function p(a){for(n=0;n<a.length;++n){var b=a[n].v/l.max;for(o=0;o<=u;++o)c[o===0?"moveTo":"lineTo"](Math.cos(o*v+w)*t*b,Math.sin(o*v+w)*t*b)}}function q(a,d){b.each(b.pluck(a,"v"),function(a){if(a<=l.min||a>=l.max||(a==l.min||a==l.max)&&e.outlineWidth)return;d(Math.floor(l.d2p(a))+c.lineWidth/2)})}function r(a){c.moveTo(a,0),c.lineTo(a,j)}function s(a){c.moveTo(0,a),c.lineTo(k,a)}var c=this.ctx,d=this.options,e=d.grid,f=e.verticalLines,g=e.horizontalLines,h=e.minorVerticalLines,i=e.minorHorizontalLines,j=this.plotHeight,k=this.plotWidth,l,m,n,o;(f||h||g||i)&&a.fire(this.el,"flotr:beforegrid",[this.axes.x,this.axes.y,d,this]),c.save(),c.lineWidth=1,c.strokeStyle=e.tickColor;if(e.circular){c.translate(this.plotOffset.left+k/2,this.plotOffset.top+j/2);var t=Math.min(j,k)*d.radar.radiusRatio/2,u=this.axes.x.ticks.length,v=2*(Math.PI/u),w=-Math.PI/2;c.beginPath(),l=this.axes.y,g&&p(l.ticks),i&&p(l.minorTicks),f&&b.times(u,function(a){c.moveTo(0,0),c.lineTo(Math.cos(a*v+w)*t,Math.sin(a*v+w)*t)}),c.stroke()}else c.translate(this.plotOffset.left,this.plotOffset.top),e.backgroundColor&&(c.fillStyle=this.processColor(e.backgroundColor,{x1:0,y1:0,x2:k,y2:j}),c.fillRect(0,0,k,j)),c.beginPath(),l=this.axes.x,f&&q(l.ticks,r),h&&q(l.minorTicks,r),l=this.axes.y,g&&q(l.ticks,s),i&&q(l.minorTicks,s),c.stroke();c.restore(),(f||h||g||i)&&a.fire(this.el,"flotr:aftergrid",[this.axes.x,this.axes.y,d,this])},drawOutline:function(){var a=this,b=a.options,c=b.grid,d=c.outline,e=a.ctx,f=c.backgroundImage,g=a.plotOffset,h=g.left,j=g.top,k=a.plotWidth,l=a.plotHeight,m,n,o,p,q,r;if(!c.outlineWidth)return;e.save();if(c.circular){e.translate(h+k/2,j+l/2);var s=Math.min(l,k)*b.radar.radiusRatio/2,t=this.axes.x.ticks.length,u=2*(Math.PI/t),v=-Math.PI/2;e.beginPath(),e.lineWidth=c.outlineWidth,e.strokeStyle=c.color,e.lineJoin="round";for(i=0;i<=t;++i)e[i===0?"moveTo":"lineTo"](Math.cos(i*u+v)*s,Math.sin(i*u+v)*s);e.stroke()}else{e.translate(h,j);var w=c.outlineWidth,x=.5-w+(w+1)%2/2,y="lineTo",z="moveTo";e.lineWidth=w,e.strokeStyle=c.color,e.lineJoin="miter",e.beginPath(),e.moveTo(x,x),k-=w/2%1,l+=w/2,e[d.indexOf("n")!==-1?y:z](k,x),e[d.indexOf("e")!==-1?y:z](k,l),e[d.indexOf("s")!==-1?y:z](x,l),e[d.indexOf("w")!==-1?y:z](x,x),e.stroke(),e.closePath()}e.restore(),f&&(o=f.src||f,p=(parseInt(f.left,10)||0)+g.left,q=(parseInt(f.top,10)||0)+g.top,n=new Image,n.onload=function(){e.save(),f.alpha&&(e.globalAlpha=f.alpha),e.globalCompositeOperation="destination-over",e.drawImage(n,0,0,n.width,n.height,p,q,k,l),e.restore()},n.src=o)}})}(),function(){var a=Flotr.DOM,b=Flotr._,c=Flotr,d="opacity:0.7;background-color:#000;color:#fff;display:none;position:absolute;padding:2px 8px;-moz-border-radius:4px;border-radius:4px;white-space:nowrap;";Flotr.addPlugin("hit",{callbacks:{"flotr:mousemove":function(a,b){this.hit.track(b)},"flotr:click":function(a){var c=this.hit.track(a);b.defaults(a,c)},"flotr:mouseout":function(){this.hit.clearHit()},"flotr:destroy":function(){this.mouseTrack=null}},track:function(a){if(this.options.mouse.track||b.any(this.series,function(a){return a.mouse&&a.mouse.track}))return this.hit.hit(a)},executeOnType:function(a,d,e){function h(a,h){b.each(b.keys(c.graphTypes),function(b){a[b]&&a[b].show&&this[b][d]&&(g=this.getOptions(a,b),g.fill=!!a.mouse.fillColor,g.fillStyle=this.processColor(a.mouse.fillColor||"#ffffff",{opacity:a.mouse.fillOpacity}),g.color=a.mouse.lineColor,g.context=this.octx,g.index=h,e&&(g.args=e),this[b][d].call(this[b],g),f=!0)},this)}var f=!1,g;return b.isArray(a)||(a=[a]),b.each(a,h,this),f},drawHit:function(a){var b=this.octx,c=a.series;if(c.mouse.lineColor){b.save(),b.lineWidth=c.points?c.points.lineWidth:1,b.strokeStyle=c.mouse.lineColor,b.fillStyle=this.processColor(c.mouse.fillColor||"#ffffff",{opacity:c.mouse.fillOpacity}),b.translate(this.plotOffset.left,this.plotOffset.top);if(!this.hit.executeOnType(c,"drawHit",a)){var d=a.xaxis,e=a.yaxis;b.beginPath(),b.arc(d.d2p(a.x),e.d2p(a.y),c.points.hitRadius||c.points.radius||c.mouse.radius,0,2*Math.PI,!0),b.fill(),b.stroke(),b.closePath()}b.restore(),this.clip(b)}this.prevHit=a},clearHit:function(){var b=this.prevHit,c=this.octx,d=this.plotOffset;c.save(),c.translate(d.left,d.top);if(b){if(!this.hit.executeOnType(b.series,"clearHit",this.prevHit)){var e=b.series,f=e.points?e.points.lineWidth:1;offset=(e.points.hitRadius||e.points.radius||e.mouse.radius)+f,c.clearRect(b.xaxis.d2p(b.x)-offset,b.yaxis.d2p(b.y)-offset,offset*2,offset*2)}a.hide(this.mouseTrack),this.prevHit=null}c.restore()},hit:function(a){var c=this.options,d=this.prevHit,e,f,g,h,i,j,k,l,m;if(this.series.length===0)return;m={relX:a.relX,relY:a.relY,absX:a.absX,absY:a.absY};if(c.mouse.trackY&&!c.mouse.trackAll&&this.hit.executeOnType(this.series,"hit",[a,m])&&!b.isUndefined(m.seriesIndex))i=this.series[m.seriesIndex],m.series=i,m.mouse=i.mouse,m.xaxis=i.xaxis,m.yaxis=i.yaxis;else{e=this.hit.closest(a);if(e){e=c.mouse.trackY?e.point:e.x,h=e.seriesIndex,i=this.series[h],k=i.xaxis,l=i.yaxis,f=2*i.mouse.sensibility;if(c.mouse.trackAll||e.distanceX<f/k.scale&&(!c.mouse.trackY||e.distanceY<f/l.scale))m.series=i,m.xaxis=i.xaxis,m.yaxis=i.yaxis,m.mouse=i.mouse,m.x=e.x,m.y=e.y,m.dist=e.distance,m.index=e.dataIndex,m.seriesIndex=h}}if(!d||d.index!==m.index||d.seriesIndex!==m.seriesIndex)this.hit.clearHit(),m.series&&m.mouse&&m.mouse.track&&(this.hit.drawMouseTrack(m),this.hit.drawHit(m),Flotr.EventAdapter.fire(this.el,"flotr:hit",[m,this]));return m},closest:function(a){function v(a){a.distance=m,a.distanceX=n,a.distanceY=o,a.seriesIndex=t,a.dataIndex=u,a.x=r,a.y=s,j=!0}var b=this.series,c=this.options,d=a.relX,e=a.relY,f=Number.MAX_VALUE,g=Number.MAX_VALUE,h={},i={},j=!1,k,l,m,n,o,p,q,r,s,t,u;for(t=0;t<b.length;t++){k=b[t],l=k.data,p=k.xaxis.p2d(d),q=k.yaxis.p2d(e);for(u=l.length;u--;){r=l[u][0],s=l[u][1];if(r===null||s===null)continue;if(r<k.xaxis.min||r>k.xaxis.max)continue;n=Math.abs(r-p),o=Math.abs(s-q),m=n*n+o*o,m<f&&(f=m,v(h)),n<g&&(g=n,v(i))}}return j?{point:h,x:i}:!1},drawMouseTrack:function(b){var c="",e=b.series,f=b.mouse.position,g=b.mouse.margin,h=b.x,i=b.y,j=d,k=this.mouseTrack,l=this.plotOffset,m=l.left,n=l.right,o=l.bottom,p=l.top,q=b.mouse.trackDecimals,r=this.options;k||(k=a.node('<div class="flotr-mouse-value"></div>'),this.mouseTrack=k,a.insert(this.el,k));if(!b.mouse.relative)f.charAt(0)=="n"?c+="top:"+(g+p)+"px;bottom:auto;":f.charAt(0)=="s"&&(c+="bottom:"+(g+o)+"px;top:auto;"),f.charAt(1)=="e"?c+="right:"+(g+n)+"px;left:auto;":f.charAt(1)=="w"&&(c+="left:"+(g+m)+"px;right:auto;");else if(e.pie&&e.pie.show){var s={x:this.plotWidth/2,y:this.plotHeight/2},t=Math.min(this.canvasWidth,this.canvasHeight)*e.pie.sizeRatio/2,u=b.sAngle<b.eAngle?(b.sAngle+b.eAngle)/2:(b.sAngle+b.eAngle+2*Math.PI)/2;c+="bottom:"+(g-p-s.y-Math.sin(u)*t/2+this.canvasHeight)+"px;top:auto;",c+="left:"+(g+m+s.x+Math.cos(u)*t/2)+"px;right:auto;"}else/n/.test(f)?c+="bottom:"+(g-p-b.yaxis.d2p(b.y)+this.canvasHeight)+"px;top:auto;":c+="top:"+(g+p+b.yaxis.d2p(b.y))+"px;bottom:auto;",/w/.test(f)?c+="right:"+(g-m-b.xaxis.d2p(b.x)+this.canvasWidth)+"px;left:auto;":c+="left:"+(g+m+b.xaxis.d2p(b.x))+"px;right:auto;";j+=c,k.style.cssText=j;if(!q||q<0)q=0;h&&h.toFixed&&(h=h.toFixed(q)),i&&i.toFixed&&(i=i.toFixed(q)),k.innerHTML=b.mouse.trackFormatter({x:h,y:i,series:b.series,index:b.index,nearest:b,fraction:b.fraction}),a.show(k),b.mouse.relative&&(/[ew]/.test(f)?/[ns]/.test(f)||(k.style.top=p+b.yaxis.d2p(b.y)-a.size(k).height/2+"px"):k.style.left=m+b.xaxis.d2p(b.x)-a.size(k).width/2+"px")}})}(),function(){function a(a,b){return a.which?a.which===1:a.button===0||a.button===1}function b(a,b){return Math.min(Math.max(0,a),b.plotWidth-1)}function c(a,b){return Math.min(Math.max(0,a),b.plotHeight)}var d=Flotr.DOM,e=Flotr.EventAdapter,f=Flotr._;Flotr.addPlugin("selection",{options:{pinchOnly:null,mode:null,color:"#B6D9FF",fps:20},callbacks:{"flotr:mouseup":function(a){var b=this.options.selection,c=this.selection,d=this.getEventPosition(a);if(!b||!b.mode)return;c.interval&&clearInterval(c.interval),this.multitouches?c.updateSelection():b.pinchOnly||c.setSelectionPos(c.selection.second,d),c.clearSelection(),c.selecting&&c.selectionIsSane()&&(c.drawSelection(),c.fireSelectEvent(),this.ignoreClick=!0)},"flotr:mousedown":function(b){var c=this.options.selection,d=this.selection,e=this.getEventPosition(b);if(!c||!c.mode)return;if(!c.mode||!a(b)&&f.isUndefined(b.touches))return;c.pinchOnly||d.setSelectionPos(d.selection.first,e),d.interval&&clearInterval(d.interval),this.lastMousePos.pageX=null,d.selecting=!1,d.interval=setInterval(f.bind(d.updateSelection,this),1e3/c.fps)},"flotr:destroy":function(a){clearInterval(this.selection.interval)}},getArea:function(){var a=this.selection.selection,b=this.axes,c=a.first,d=a.second,e,f,g,h;return e=b.x.p2d(a.first.x),f=b.x.p2d(a.second.x),g=b.y.p2d(a.first.y),h=b.y.p2d(a.second.y),{x1:Math.min(e,f),y1:Math.min(g,h),x2:Math.max(e,f),y2:Math.max(g,h),xfirst:e,xsecond:f,yfirst:g,ysecond:h}},selection:{first:{x:-1,y:-1},second:{x:-1,y:-1}},prevSelection:null,interval:null,fireSelectEvent:function(a){var b=this.selection.getArea();a=a||"select",b.selection=this.selection.selection,e.fire(this.el,"flotr:"+a,[b,this])},setSelection:function(a,d){var e=this.options,f=this.axes.x,g=this.axes.y,h=g.scale,i=f.scale,j=e.selection.mode.indexOf("x")!=-1,k=e.selection.mode.indexOf("y")!=-1,l=this.selection.selection;this.selection.clearSelection(),l.first.y=c(j&&!k?0:(g.max-a.y1)*h,this),l.second.y=c(j&&!k?this.plotHeight-1:(g.max-a.y2)*h,this),l.first.x=b(k&&!j?0:(a.x1-f.min)*i,this),l.second.x=b(k&&!j?this.plotWidth:(a.x2-f.min)*i,this),this.selection.drawSelection(),d||this.selection.fireSelectEvent()},setSelectionPos:function(a,d){var e=this.options.selection.mode,f=this.selection.selection;e.indexOf("x")==-1?a.x=a==f.first?0:this.plotWidth:a.x=b(d.relX,this),e.indexOf("y")==-1?a.y=a==f.first?0:this.plotHeight-1:a.y=c(d.relY,this)},drawSelection:function(){this.selection.fireSelectEvent("selecting");var a=this.selection.selection,b=this.octx,c=this.options,d=this.plotOffset,e=this.selection.prevSelection;if(e&&a.first.x==e.first.x&&a.first.y==e.first.y&&a.second.x==e.second.x&&a.second.y==e.second.y)return;b.save(),b.strokeStyle=this.processColor(c.selection.color,{opacity:.8}),b.lineWidth=1,b.lineJoin="miter",b.fillStyle=this.processColor(c.selection.color,{opacity:.4}),this.selection.prevSelection={first:{x:a.first.x,y:a.first.y},second:{x:a.second.x,y:a.second.y}};var f=Math.min(a.first.x,a.second.x),g=Math.min(a.first.y,a.second.y),h=Math.abs(a.second.x-a.first.x),i=Math.abs(a.second.y-a.first.y);b.fillRect(f+d.left+.5,g+d.top+.5,h,i),b.strokeRect(f+d.left+.5,g+d.top+.5,h,i),b.restore()},updateSelection:function(){if(!this.lastMousePos.pageX)return;this.selection.selecting=!0;if(this.multitouches)this.selection.setSelectionPos(this.selection.selection.first,this.getEventPosition(this.multitouches[0])),this.selection.setSelectionPos(this.selection.selection.second,this.getEventPosition(this.multitouches[1]));else{if(this.options.selection.pinchOnly)return;this.selection.setSelectionPos(this.selection.selection.second,this.lastMousePos)}this.selection.clearSelection(),this.selection.selectionIsSane()&&this.selection.drawSelection()},clearSelection:function(){if(!this.selection.prevSelection)return;var a=this.selection.prevSelection,b=1,c=this.plotOffset,d=Math.min(a.first.x,a.second.x),e=Math.min(a.first.y,a.second.y),f=Math.abs(a.second.x-a.first.x),g=Math.abs(a.second.y-a.first.y);this.octx.clearRect(d+c.left-b+.5,e+c.top-b,f+2*b+.5,g+2*b+.5),this.selection.prevSelection=null},selectionIsSane:function(){var a=this.selection.selection;return Math.abs(a.second.x-a.first.x)>=5||Math.abs(a.second.y-a.first.y)>=5}})}(),function(){var a=Flotr.DOM;Flotr.addPlugin("labels",{callbacks:{"flotr:afterdraw":function(){this.labels.draw()}},draw:function(){function s(a,b,d){var e=d?b.minorTicks:b.ticks,f=b.orientation===1,h=b.n===1,k,m;k={color:b.options.color||o.grid.color,angle:Flotr.toRad(b.options.labelsAngle),textBaseline:"middle"};for(l=0;l<e.length&&(d?b.options.showMinorLabels:b.options.showLabels);++l){c=e[l],c.label+="";if(!c.label||!c.label.length)continue;x=Math.cos(l*i+j)*g,y=Math.sin(l*i+j)*g,k.textAlign=f?Math.abs(x)<.1?"center":x<0?"right":"left":"left",Flotr.drawText(p,c.label,f?x:3,f?y:-(b.ticks[l].v/b.max)*(g-o.fontSize),k)}}function t(a,b,d,e){function j(a){return a.options.showLabels&&a.used}function k(a,b,c,d){return a.plotOffset.left+(b?d:c?-o.grid.labelMargin:o.grid.labelMargin+a.plotWidth)}function m(a,b,c,d){return a.plotOffset.top+(b?o.grid.labelMargin:d)+(b&&c?a.plotHeight:0)}var f=b.orientation===1,g=b.n===1,h,i;h={color:b.options.color||o.grid.color,textAlign:d,textBaseline:e,angle:Flotr.toRad(b.options.labelsAngle)},h=Flotr.getBestTextAlign(h.angle,h);for(l=0;l<b.ticks.length&&j(b);++l){c=b.ticks[l];if(!c.label||!c.label.length)continue;i=b.d2p(c.v);if(i<0||i>(f?a.plotWidth:a.plotHeight))continue;Flotr.drawText(p,c.label,k(a,f,g,i),m(a,f,g,i),h),!f&&!g&&(p.save(),p.strokeStyle=h.color,p.beginPath(),p.moveTo(a.plotOffset.left+a.plotWidth-8,a.plotOffset.top+b.d2p(c.v)),p.lineTo(a.plotOffset.left+a.plotWidth,a.plotOffset.top+b.d2p(c.v)),p.stroke(),p.restore())}}function u(a,b){var d=b.orientation===1,e=b.n===1,g="",h,i,j,k=a.plotOffset;!d&&!e&&(p.save(),p.strokeStyle=b.options.color||o.grid.color,p.beginPath());if(b.options.showLabels&&(e?!0:b.used))for(l=0;l<b.ticks.length;++l){c=b.ticks[l];if(!c.label||!c.label.length||(d?k.left:k.top)+b.d2p(c.v)<0||(d?k.left:k.top)+b.d2p(c.v)>(d?a.canvasWidth:a.canvasHeight))continue;j=k.top+(d?(e?1:-1)*(a.plotHeight+o.grid.labelMargin):b.d2p(c.v)-b.maxLabel.height/2),h=d?k.left+b.d2p(c.v)-f/2:0,g="",l===0?g=" first":l===b.ticks.length-1&&(g=" last"),g+=d?" flotr-grid-label-x":" flotr-grid-label-y",m+=['<div style="position:absolute; text-align:'+(d?"center":"right")+"; ","top:"+j+"px; ",(!d&&!e?"right:":"left:")+h+"px; ","width:"+(d?f:(e?k.left:k.right)-o.grid.labelMargin)+"px; ",b.options.color?"color:"+b.options.color+"; ":" ",'" class="flotr-grid-label'+g+'">'+c.label+"</div>"].join(" "),!d&&!e&&(p.moveTo(k.left+a.plotWidth-8,k.top+b.d2p(c.v)),p.lineTo(k.left+a.plotWidth,k.top+b.d2p(c.v)))}}var b,c,d,e,f,g,h,i,j,k,l,m="",n=0,o=this.options,p=this.ctx,q=this.axes,r={size:o.fontSize};for(l=0;l<q.x.ticks.length;++l)q.x.ticks[l].label&&++n;f=this.plotWidth/n,o.grid.circular&&(p.save(),p.translate(this.plotOffset.left+this.plotWidth/2,this.plotOffset.top+this.plotHeight/2),g=this.plotHeight*o.radar.radiusRatio/2+o.fontSize,h=this.axes.x.ticks.length,i=2*(Math.PI/h),j=-Math.PI/2,s(this,q.x,!1),s(this,q.x,!0),s(this,q.y,!1),s(this,q.y,!0),p.restore()),!o.HtmlText&&this.textEnabled?(t(this,q.x,"center","top"),t(this,q.x2,"center","bottom"),t(this,q.y,"right","middle"),t(this,q.y2,"left","middle")):(q.x.options.showLabels||q.x2.options.showLabels||q.y.options.showLabels||q.y2.options.showLabels)&&!o.grid.circular&&(m="",u(this,q.x),u(this,q.x2),u(this,q.y),u(this,q.y2),p.stroke(),p.restore(),k=a.create("div"),a.setStyles(k,{fontSize:"smaller",color:o.grid.color}),k.className="flotr-labels",a.insert(this.el,k),a.insert(k,m))}})}(),function(){var a=Flotr.DOM,b=Flotr._;Flotr.addPlugin("legend",{options:{show:!0,noColumns:1,labelFormatter:function(a){return a},labelBoxBorderColor:"#CCCCCC",labelBoxWidth:14,labelBoxHeight:10,labelBoxMargin:5,container:null,position:"nw",margin:5,backgroundColor:"#F0F0F0",backgroundOpacity:.85},callbacks:{"flotr:afterinit":function(){this.legend.insertLegend()},"flotr:destroy":function(){var b=this.legend.markup;b&&(this.legend.markup=null,a.remove(b))}},insertLegend:function(){if(!this.options.legend.show)return;var c=this.series,d=this.plotOffset,e=this.options,f=e.legend,g=[],h=!1,i=this.ctx,j=b.filter(c,function(a){return a.label&&!a.hide}).length,k=f.position,l=f.margin,m=f.backgroundOpacity,n,o,p;if(j){var q=f.labelBoxWidth,r=f.labelBoxHeight,s=f.labelBoxMargin,t=d.left+l,u=d.top+l,v=0,w={size:e.fontSize*1.1,color:e.grid.color};for(n=c.length-1;n>-1;--n){if(!c[n].label||c[n].hide)continue;o=f.labelFormatter(c[n].label),v=Math.max(v,this._text.measureText(o,w).width)}var x=Math.round(q+s*3+v),y=Math.round(j*(s+r)+s);!m&&m!==0&&(m=.1);if(!e.HtmlText&&this.textEnabled&&!f.container){k.charAt(0)=="s"&&(u=d.top+this.plotHeight-(l+y)),k.charAt(0)=="c"&&(u=d.top+this.plotHeight/2-(l+y/2)),k.charAt(1)=="e"&&(t=d.left+this.plotWidth-(l+x)),p=this.processColor(f.backgroundColor,{opacity:m}),i.fillStyle=p,i.fillRect(t,u,x,y),i.strokeStyle=f.labelBoxBorderColor,i.strokeRect(Flotr.toPixel(t),Flotr.toPixel(u),x,y);var z=t+s,A=u+s;for(n=0;n<c.length;n++){if(!c[n].label||c[n].hide)continue;o=f.labelFormatter(c[n].label),i.fillStyle=c[n].color,i.fillRect(z,A,q-1,r-1),i.strokeStyle=f.labelBoxBorderColor,i.lineWidth=1,i.strokeRect(Math.ceil(z)-1.5,Math.ceil(A)-1.5,q+2,r+2),Flotr.drawText(i,o,z+q+s,A+r,w),A+=r+s}}else{for(n=0;n<c.length;++n){if(!c[n].label||c[n].hide)continue;n%f.noColumns===0&&(g.push(h?"</tr><tr>":"<tr>"),h=!0);var B=c[n],C=f.labelBoxWidth,E=f.labelBoxHeight;o=f.labelFormatter(B.label),p="background-color:"+(B.bars&&B.bars.show&&B.bars.fillColor&&B.bars.fill?B.bars.fillColor:B.color)+";",g.push('<td class="flotr-legend-color-box">','<div style="border:1px solid ',f.labelBoxBorderColor,';padding:1px">','<div style="width:',C-1,"px;height:",E-1,"px;border:1px solid ",c[n].color,'">','<div style="width:',C,"px;height:",E,"px;",p,'"></div>',"</div>","</div>","</td>",'<td class="flotr-legend-label">',o,"</td>")}h&&g.push("</tr>");if(g.length>0){var F='<table style="font-size:smaller;color:'+e.grid.color+'">'+g.join("")+"</table>";if(f.container)F=a.node(F),this.legend.markup=F,a.insert(f.container,F);else{var G={position:"absolute",zIndex:"2",border:"1px solid "+f.labelBoxBorderColor};k.charAt(0)=="n"?(G.top=l+d.top+"px",G.bottom="auto"):k.charAt(0)=="c"?(G.top=l+(this.plotHeight-y)/2+"px",G.bottom="auto"):k.charAt(0)=="s"&&(G.bottom=l+d.bottom+"px",G.top="auto"),k.charAt(1)=="e"?(G.right=l+d.right+"px",G.left="auto"):k.charAt(1)=="w"&&(G.left=l+d.left+"px",G.right="auto");var H=a.create("div"),I;H.className="flotr-legend",a.setStyles(H,G),a.insert(H,F),a.insert(this.el,H);if(!m)return;var J=f.backgroundColor||e.grid.backgroundColor||"#ffffff";b.extend(G,a.size(H),{backgroundColor:J,zIndex:"",border:""}),G.width+="px",G.height+="px",H=a.create("div"),H.className="flotr-legend-bg",a.setStyles(H,G),a.opacity(H,m),a.insert(H," "),a.insert(this.el,H)}}}}}})}(),function(){function a(a){if(this.options.spreadsheet.tickFormatter)return this.options.spreadsheet.tickFormatter(a);var b=c.find(this.axes.x.ticks,function(b){return b.v==a});return b?b.label:a}var b=Flotr.DOM,c=Flotr._;Flotr.addPlugin("spreadsheet",{options:{show:!1,tabGraphLabel:"Graph",tabDataLabel:"Data",toolbarDownload:"Download CSV",toolbarSelectAll:"Select all",csvFileSeparator:",",decimalSeparator:".",tickFormatter:null,initialTab:"graph"},callbacks:{"flotr:afterconstruct":function(){if(!this.options.spreadsheet.show)return;var a=this.spreadsheet,c=b.node('<div class="flotr-tabs-group" style="position:absolute;left:0px;width:'+this.canvasWidth+'px"></div>'),d=b.node('<div style="float:left" class="flotr-tab selected">'+this.options.spreadsheet.tabGraphLabel+"</div>"),e=b.node('<div style="float:left" class="flotr-tab">'+this.options.spreadsheet.tabDataLabel+"</div>"),f;a.tabsContainer=c,a.tabs={graph:d,data:e},b.insert(c,d),b.insert(c,e),b.insert(this.el,c),f=b.size(e).height+2,this.plotOffset.bottom+=f,b.setStyles(c,{top:this.canvasHeight-f+"px"}),this.observe(d,"click",function(){a.showTab("graph")}).observe(e,"click",function(){a.showTab("data")}),this.options.spreadsheet.initialTab!=="graph"&&a.showTab(this.options.spreadsheet.initialTab)}},loadDataGrid:function(){if(this.seriesData)return this.seriesData;var a=this.series,b={};return c.each(a,function(a,d){c.each(a.data,function(a){var c=a[0],e=a[1],f=b[c];if(f)f[d+1]=e;else{var g=[];g[0]=c,g[d+1]=e,b[c]=g}})}),this.seriesData=c.sortBy(b,function(a,b){return parseInt(b,10)}),this.seriesData},constructDataGrid:function(){if(this.spreadsheet.datagrid)return this.spreadsheet.datagrid;var d=this.series,e=this.spreadsheet.loadDataGrid(),f=["<colgroup><col />"],g,h,i,j=['<table class="flotr-datagrid"><tr class="first-row">'];j.push("<th>&nbsp;</th>"),c.each(d,function(a,b){j.push('<th scope="col">'+(a.label||String.fromCharCode(65+b))+"</th>"),f.push("<col />")}),j.push("</tr>"),c.each(e,function(b){j.push("<tr>"),c.times(d.length+1,function(d){var e="td",f=b[d],g=c.isUndefined(f)?"":Math.round(f*1e5)/1e5;if(d===0){e="th";var h=a.call(this,g);h&&(g=h)}j.push("<"+e+(e=="th"?' scope="row"':"")+">"+g+"</"+e+">")},this),j.push("</tr>")},this),f.push("</colgroup>"),i=b.node(j.join("")),g=b.node('<button type="button" class="flotr-datagrid-toolbar-button">'+this.options.spreadsheet.toolbarDownload+"</button>"),h=b.node('<button type="button" class="flotr-datagrid-toolbar-button">'+this.options.spreadsheet.toolbarSelectAll+"</button>"),this.observe(g,"click",c.bind(this.spreadsheet.downloadCSV,this)).observe(h,"click",c.bind(this.spreadsheet.selectAllData,this));var k=b.node('<div class="flotr-datagrid-toolbar"></div>');b.insert(k,g),b.insert(k,h);var l=this.canvasHeight-b.size(this.spreadsheet.tabsContainer).height-2,m=b.node('<div class="flotr-datagrid-container" style="position:absolute;left:0px;top:0px;width:'+this.canvasWidth+"px;height:"+l+'px;overflow:auto;z-index:10"></div>');return b.insert(m,k),b.insert(m,i),b.insert(this.el,m),this.spreadsheet.datagrid=i,this.spreadsheet.container=m,i},showTab:function(a){if(this.spreadsheet.activeTab===a)return;switch(a){case"graph":b.hide(this.spreadsheet.container),b.removeClass(this.spreadsheet.tabs.data,"selected"),b.addClass(this.spreadsheet.tabs.graph,"selected");break;case"data":this.spreadsheet.datagrid||this.spreadsheet.constructDataGrid(),b.show(this.spreadsheet.container),b.addClass(this.spreadsheet.tabs.data,"selected"),b.removeClass(this.spreadsheet.tabs.graph,"selected");break;default:throw"Illegal tab name: "+a}this.spreadsheet.activeTab=a},selectAllData:function(){if(this.spreadsheet.tabs){var a,b,c,d,e=this.spreadsheet.constructDataGrid();return this.spreadsheet.showTab("data"),setTimeout(function(){(c=e.ownerDocument)&&(d=c.defaultView)&&d.getSelection&&c.createRange&&(a=window.getSelection())&&a.removeAllRanges?(b=c.createRange(),b.selectNode(e),a.removeAllRanges(),a.addRange(b)):document.body&&document.body.createTextRange&&(b=document.body.createTextRange())&&(b.moveToElementText(e),b.select())},0),!0}return!1},downloadCSV:function(){var b="",d=this.series,e=this.options,f=this.spreadsheet.loadDataGrid(),g=encodeURIComponent(e.spreadsheet.csvFileSeparator);if(e.spreadsheet.decimalSeparator===e.spreadsheet.csvFileSeparator)throw"The decimal separator is the same as the column separator ("+e.spreadsheet.decimalSeparator+")";c.each(d,function(a,c){b+=g+'"'+(a.label||String.fromCharCode(65+c)).replace(/\"/g,'\\"')+'"'}),b+="%0D%0A",b+=c.reduce(f,function(b,c){var d=a.call(this,c[0])||"";d='"'+(d+"").replace(/\"/g,'\\"')+'"';var f=c.slice(1).join(g);return e.spreadsheet.decimalSeparator!=="."&&(f=f.replace(/\./g,e.spreadsheet.decimalSeparator)),b+d+g+f+"%0D%0A"},"",this),Flotr.isIE&&Flotr.isIE<9?(b=b.replace(new RegExp(g,"g"),decodeURIComponent(g)).replace(/%0A/g,"\n").replace(/%0D/g,"\r"),window.open().document.write(b)):window.open("data:text/csv,"+b)}})}(),function(){var a=Flotr.DOM;Flotr.addPlugin("titles",{callbacks:{"flotr:afterdraw":function(){this.titles.drawTitles()}},drawTitles:function(){var b,c=this.options,d=c.grid.labelMargin,e=this.ctx,f=this.axes;if(!c.HtmlText&&this.textEnabled){var g={size:c.fontSize,color:c.grid.color,textAlign:"center"};c.subtitle&&Flotr.drawText(e,c.subtitle,this.plotOffset.left+this.plotWidth/2,this.titleHeight+this.subtitleHeight-2,g),g.weight=1.5,g.size*=1.5,c.title&&Flotr.drawText(e,c.title,this.plotOffset.left+this.plotWidth/2,this.titleHeight-2,g),g.weight=1.8,g.size*=.8,f.x.options.title&&f.x.used&&(g.textAlign=f.x.options.titleAlign||"center",g.textBaseline="top",g.angle=Flotr.toRad(f.x.options.titleAngle),g=Flotr.getBestTextAlign(g.angle,g),Flotr.drawText(e,f.x.options.title,this.plotOffset.left+this.plotWidth/2,this.plotOffset.top+f.x.maxLabel.height+this.plotHeight+2*d,g)),f.x2.options.title&&f.x2.used&&(g.textAlign=f.x2.options.titleAlign||"center",g.textBaseline="bottom",g.angle=Flotr.toRad(f.x2.options.titleAngle),g=Flotr.getBestTextAlign(g.angle,g),Flotr.drawText(e,f.x2.options.title,this.plotOffset.left+this.plotWidth/2,this.plotOffset.top-f.x2.maxLabel.height-2*d,g)),f.y.options.title&&f.y.used&&(g.textAlign=f.y.options.titleAlign||"right",g.textBaseline="middle",g.angle=Flotr.toRad(f.y.options.titleAngle),g=Flotr.getBestTextAlign(g.angle,g),Flotr.drawText(e,f.y.options.title,this.plotOffset.left-f.y.maxLabel.width-2*d,this.plotOffset.top+this.plotHeight/2,g)),f.y2.options.title&&f.y2.used&&(g.textAlign=f.y2.options.titleAlign||"left",g.textBaseline="middle",g.angle=Flotr.toRad(f.y2.options.titleAngle),g=Flotr.getBestTextAlign(g.angle,g),Flotr.drawText(e,f.y2.options.title,this.plotOffset.left+this.plotWidth+f.y2.maxLabel.width+2*d,this.plotOffset.top+this.plotHeight/2,g))}else{b=[],c.title&&b.push('<div style="position:absolute;top:0;left:',this.plotOffset.left,"px;font-size:1em;font-weight:bold;text-align:center;width:",this.plotWidth,'px;" class="flotr-title">',c.title,"</div>"),c.subtitle&&b.push('<div style="position:absolute;top:',this.titleHeight,"px;left:",this.plotOffset.left,"px;font-size:smaller;text-align:center;width:",this.plotWidth,'px;" class="flotr-subtitle">',c.subtitle,"</div>"),b.push("</div>"),b.push('<div class="flotr-axis-title" style="font-weight:bold;">'),f.x.options.title&&f.x.used&&b.push('<div style="position:absolute;top:',this.plotOffset.top+this.plotHeight+c.grid.labelMargin+f.x.titleSize.height,"px;left:",this.plotOffset.left,"px;width:",this.plotWidth,"px;text-align:",f.x.options.titleAlign,';" class="flotr-axis-title flotr-axis-title-x1">',f.x.options.title,"</div>"),f.x2.options.title&&f.x2.used&&b.push('<div style="position:absolute;top:0;left:',this.plotOffset.left,"px;width:",this.plotWidth,"px;text-align:",f.x2.options.titleAlign,';" class="flotr-axis-title flotr-axis-title-x2">',f.x2.options.title,"</div>"),f.y.options.title&&f.y.used&&b.push('<div style="position:absolute;top:',this.plotOffset.top+this.plotHeight/2-f.y.titleSize.height/2,"px;left:0;text-align:",f.y.options.titleAlign,';" class="flotr-axis-title flotr-axis-title-y1">',f.y.options.title,"</div>"),f.y2.options.title&&f.y2.used&&b.push('<div style="position:absolute;top:',this.plotOffset.top+this.plotHeight/2-f.y.titleSize.height/2,"px;right:0;text-align:",f.y2.options.titleAlign,';" class="flotr-axis-title flotr-axis-title-y2">',f.y2.options.title,"</div>"),b=b.join("");var h=a.create("div");a.setStyles({color:c.grid.color}),h.className="flotr-titles",a.insert(this.el,h),a.insert(h,b)}}})}();
 
  /**
  * Flotr Axis Library
  */
 
  (function () {
 
  var
  _ = Flotr._,
  LOGARITHMIC = 'logarithmic';
 
  function Axis (o) {
 
  this.orientation = 1;
  this.offset = 0;
  this.datamin = Number.MAX_VALUE;
  this.datamax = -Number.MAX_VALUE;
 
  _.extend(this, o);
  }
 
 
  // Prototype
  Axis.prototype = {
 
  setScale : function () {
  var
  length = this.length,
  max = this.max,
  min = this.min,
  offset = this.offset,
  orientation = this.orientation,
  options = this.options,
  logarithmic = options.scaling === LOGARITHMIC,
  scale;
 
  if (logarithmic) {
  scale = length / (log(max, options.base) - log(min, options.base));
  } else {
  scale = length / (max - min);
  }
  this.scale = scale;
 
  // Logarithmic?
  if (logarithmic) {
  this.d2p = function (dataValue) {
  return offset + orientation * (log(dataValue, options.base) - log(min, options.base)) * scale;
  };
  this.p2d = function (pointValue) {
  return exp((offset + orientation * pointValue) / scale + log(min, options.base), options.base);
  };
  } else {
  this.d2p = function (dataValue) {
  return offset + orientation * (dataValue - min) * scale;
  };
  this.p2d = function (pointValue) {
  return (offset + orientation * pointValue) / scale + min;
  };
  }
  },
 
  calculateTicks : function () {
  var options = this.options;
 
  this.ticks = [];
  this.minorTicks = [];
 
  // User Ticks
  if(options.ticks){
  this._cleanUserTicks(options.ticks, this.ticks);
  this._cleanUserTicks(options.minorTicks || [], this.minorTicks);
  }
  else {
  if (options.mode == 'time') {
  this._calculateTimeTicks();
  } else if (options.scaling === 'logarithmic') {
  this._calculateLogTicks();
  } else {
  this._calculateTicks();
  }
  }
 
  // Ticks to strings
  _.each(this.ticks, function (tick) { tick.label += ''; });
  _.each(this.minorTicks, function (tick) { tick.label += ''; });
  },
 
  /**
  * Calculates the range of an axis to apply autoscaling.
  */
  calculateRange: function () {
 
  if (!this.used) return;
 
  var axis = this,
  o = axis.options,
  min = o.min !== null ? o.min : axis.datamin,
  max = o.max !== null ? o.max : axis.datamax,
  margin = o.autoscaleMargin;
 
  if (o.scaling == 'logarithmic') {
  if (min <= 0) min = axis.datamin;
 
  // Let it widen later on
  if (max <= 0) max = min;
  }
 
  if (max == min) {
  var widen = max ? 0.01 : 1.00;
  if (o.min === null) min -= widen;
  if (o.max === null) max += widen;
  }
 
  if (o.scaling === 'logarithmic') {
  if (min < 0) min = max / o.base; // Could be the result of widening
 
  var maxexp = Math.log(max);
  if (o.base != Math.E) maxexp /= Math.log(o.base);
  maxexp = Math.ceil(maxexp);
 
  var minexp = Math.log(min);
  if (o.base != Math.E) minexp /= Math.log(o.base);
  minexp = Math.ceil(minexp);
 
  axis.tickSize = Flotr.getTickSize(o.noTicks, minexp, maxexp, o.tickDecimals === null ? 0 : o.tickDecimals);
 
  // Try to determine a suitable amount of miniticks based on the length of a decade
  if (o.minorTickFreq === null) {
  if (maxexp - minexp > 10)
  o.minorTickFreq = 0;
  else if (maxexp - minexp > 5)
  o.minorTickFreq = 2;
  else
  o.minorTickFreq = 5;
  }
  } else {
  axis.tickSize = Flotr.getTickSize(o.noTicks, min, max, o.tickDecimals);
  }
 
  axis.min = min;
  axis.max = max; //extendRange may use axis.min or axis.max, so it should be set before it is caled
 
  // Autoscaling. @todo This probably fails with log scale. Find a testcase and fix it
  if(o.min === null && o.autoscale){
  axis.min -= axis.tickSize * margin;
  // Make sure we don't go below zero if all values are positive.
  if(axis.min < 0 && axis.datamin >= 0) axis.min = 0;
  axis.min = axis.tickSize * Math.floor(axis.min / axis.tickSize);
  }
 
  if(o.max === null && o.autoscale){
  axis.max += axis.tickSize * margin;
  if(axis.max > 0 && axis.datamax <= 0 && axis.datamax != axis.datamin) axis.max = 0;
  axis.max = axis.tickSize * Math.ceil(axis.max / axis.tickSize);
  }
 
  if (axis.min == axis.max) axis.max = axis.min + 1;
  },
 
  calculateTextDimensions : function (T, options) {
 
  var maxLabel = '',
  length,
  i;
 
  if (this.options.showLabels) {
  for (i = 0; i < this.ticks.length; ++i) {
  length = this.ticks[i].label.length;
  if (length > maxLabel.length){
  maxLabel = this.ticks[i].label;
  }
  }
  }
 
  this.maxLabel = T.dimensions(
  maxLabel,
  {size:options.fontSize, angle: Flotr.toRad(this.options.labelsAngle)},
  'font-size:smaller;',
  'flotr-grid-label'
  );
 
  this.titleSize = T.dimensions(
  this.options.title,
  {size:options.fontSize*1.2, angle: Flotr.toRad(this.options.titleAngle)},
  'font-weight:bold;',
  'flotr-axis-title'
  );
  },
 
  _cleanUserTicks : function (ticks, axisTicks) {
 
  var axis = this, options = this.options,
  v, i, label, tick;
 
  if(_.isFunction(ticks)) ticks = ticks({min : axis.min, max : axis.max});
 
  for(i = 0; i < ticks.length; ++i){
  tick = ticks[i];
  if(typeof(tick) === 'object'){
  v = tick[0];
  label = (tick.length > 1) ? tick[1] : options.tickFormatter(v, {min : axis.min, max : axis.max});
  } else {
  v = tick;
  label = options.tickFormatter(v, {min : this.min, max : this.max});
  }
  axisTicks[i] = { v: v, label: label };
  }
  },
 
  _calculateTimeTicks : function () {
  this.ticks = Flotr.Date.generator(this);
  },
 
  _calculateLogTicks : function () {
 
  var axis = this,
  o = axis.options,
  v,
  decadeStart;
 
  var max = Math.log(axis.max);
  if (o.base != Math.E) max /= Math.log(o.base);
  max = Math.ceil(max);
 
  var min = Math.log(axis.min);
  if (o.base != Math.E) min /= Math.log(o.base);
  min = Math.ceil(min);
 
  for (i = min; i < max; i += axis.tickSize) {
  decadeStart = (o.base == Math.E) ? Math.exp(i) : Math.pow(o.base, i);
  // Next decade begins here:
  var decadeEnd = decadeStart * ((o.base == Math.E) ? Math.exp(axis.tickSize) : Math.pow(o.base, axis.tickSize));
  var stepSize = (decadeEnd - decadeStart) / o.minorTickFreq;
 
  axis.ticks.push({v: decadeStart, label: o.tickFormatter(decadeStart, {min : axis.min, max : axis.max})});
  for (v = decadeStart + stepSize; v < decadeEnd; v += stepSize)
  axis.minorTicks.push({v: v, label: o.tickFormatter(v, {min : axis.min, max : axis.max})});
  }
 
  // Always show the value at the would-be start of next decade (end of this decade)
  decadeStart = (o.base == Math.E) ? Math.exp(i) : Math.pow(o.base, i);
  axis.ticks.push({v: decadeStart, label: o.tickFormatter(decadeStart, {min : axis.min, max : axis.max})});
  },
 
  _calculateTicks : function () {
 
  var axis = this,
  o = axis.options,
  tickSize = axis.tickSize,
  min = axis.min,
  max = axis.max,
  start = tickSize * Math.ceil(min / tickSize), // Round to nearest multiple of tick size.
  decimals,
  minorTickSize,
  v, v2,
  i, j;
 
  if (o.minorTickFreq)
  minorTickSize = tickSize / o.minorTickFreq;
 
  // Then store all possible ticks.
  for (i = 0; (v = v2 = start + i * tickSize) <= max; ++i){
 
  // Round (this is always needed to fix numerical instability).
  decimals = o.tickDecimals;
  if (decimals === null) decimals = 1 - Math.floor(Math.log(tickSize) / Math.LN10);
  if (decimals < 0) decimals = 0;
 
  v = v.toFixed(decimals);
  axis.ticks.push({ v: v, label: o.tickFormatter(v, {min : axis.min, max : axis.max}) });
 
  if (o.minorTickFreq) {
  for (j = 0; j < o.minorTickFreq && (i * tickSize + j * minorTickSize) < max; ++j) {
  v = v2 + j * minorTickSize;
  axis.minorTicks.push({ v: v, label: o.tickFormatter(v, {min : axis.min, max : axis.max}) });
  }
  }
  }
 
  }
  };
 
 
  // Static Methods
  _.extend(Axis, {
  getAxes : function (options) {
  return {
  x: new Axis({options: options.xaxis, n: 1, length: this.plotWidth}),
  x2: new Axis({options: options.x2axis, n: 2, length: this.plotWidth}),
  y: new Axis({options: options.yaxis, n: 1, length: this.plotHeight, offset: this.plotHeight, orientation: -1}),
  y2: new Axis({options: options.y2axis, n: 2, length: this.plotHeight, offset: this.plotHeight, orientation: -1})
  };
  }
  });
 
 
  // Helper Methods
 
 
  function log (value, base) {
  value = Math.log(Math.max(value, Number.MIN_VALUE));
  if (base !== Math.E)
  value /= Math.log(base);
  return value;
  }
 
  function exp (value, base) {
  return (base === Math.E) ? Math.exp(value) : Math.pow(base, value);
  }
 
  Flotr.Axis = Axis;
 
  })();
 
  /**
  * Flotr Color
  */
 
  (function () {
 
  var
  _ = Flotr._;
 
  // Constructor
  function Color (r, g, b, a) {
  this.rgba = ['r','g','b','a'];
  var x = 4;
  while(-1<--x){
  this[this.rgba[x]] = arguments[x] || ((x==3) ? 1.0 : 0);
  }
  this.normalize();
  }
 
  // Constants
  var COLOR_NAMES = {
  aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],
  brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],
  darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],
  darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],
  darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],
  khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],
  lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],
  maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],
  violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]
  };
 
  Color.prototype = {
  scale: function(rf, gf, bf, af){
  var x = 4;
  while (-1 < --x) {
  if (!_.isUndefined(arguments[x])) this[this.rgba[x]] *= arguments[x];
  }
  return this.normalize();
  },
  alpha: function(alpha) {
  if (!_.isUndefined(alpha) && !_.isNull(alpha)) {
  this.a = alpha;
  }
  return this.normalize();
  },
  clone: function(){
  return new Color(this.r, this.b, this.g, this.a);
  },
  limit: function(val,minVal,maxVal){
  return Math.max(Math.min(val, maxVal), minVal);
  },
  normalize: function(){
  var limit = this.limit;
  this.r = limit(parseInt(this.r, 10), 0, 255);
  this.g = limit(parseInt(this.g, 10), 0, 255);
  this.b = limit(parseInt(this.b, 10), 0, 255);
  this.a = limit(this.a, 0, 1);
  return this;
  },
  distance: function(color){
  if (!color) return;
  color = new Color.parse(color);
  var dist = 0, x = 3;
  while(-1<--x){
  dist += Math.abs(this[this.rgba[x]] - color[this.rgba[x]]);
  }
  return dist;
  },
  toString: function(){
  return (this.a >= 1.0) ? 'rgb('+[this.r,this.g,this.b].join(',')+')' : 'rgba('+[this.r,this.g,this.b,this.a].join(',')+')';
  },
  contrast: function () {
  var
  test = 1 - ( 0.299 * this.r + 0.587 * this.g + 0.114 * this.b) / 255;
  return (test < 0.5 ? '#000000' : '#ffffff');
  }
  };
 
  _.extend(Color, {
  /**
  * Parses a color string and returns a corresponding Color.
  * The different tests are in order of probability to improve speed.
  * @param {String, Color} str - string thats representing a color
  * @return {Color} returns a Color object or false
  */
  parse: function(color){
  if (color instanceof Color) return color;
 
  var result;
 
  // #a0b1c2
  if((result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color)))
  return new Color(parseInt(result[1], 16), parseInt(result[2], 16), parseInt(result[3], 16));
 
  // rgb(num,num,num)
  if((result = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color)))
  return new Color(parseInt(result[1], 10), parseInt(result[2], 10), parseInt(result[3], 10));
 
  // #fff
  if((result = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color)))
  return new Color(parseInt(result[1]+result[1],16), parseInt(result[2]+result[2],16), parseInt(result[3]+result[3],16));
 
  // rgba(num,num,num,num)
  if((result = /rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(color)))
  return new Color(parseInt(result[1], 10), parseInt(result[2], 10), parseInt(result[3], 10), parseFloat(result[4]));
 
  // rgb(num%,num%,num%)
  if((result = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color)))
  return new Color(parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55);
 
  // rgba(num%,num%,num%,num)
  if((result = /rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(color)))
  return new Color(parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55, parseFloat(result[4]));
 
  // Otherwise, we're most likely dealing with a named color.
  var name = (color+'').replace(/^\s*([\S\s]*?)\s*$/, '$1').toLowerCase();
  if(name == 'transparent'){
  return new Color(255, 255, 255, 0);
  }
  return (result = COLOR_NAMES[name]) ? new Color(result[0], result[1], result[2]) : new Color(0, 0, 0, 0);
  },
 
  /**
  * Process color and options into color style.
  */
  processColor: function(color, options) {
 
  var opacity = options.opacity;
  if (!color) return 'rgba(0, 0, 0, 0)';
  if (color instanceof Color) return color.alpha(opacity).toString();
  if (_.isString(color)) return Color.parse(color).alpha(opacity).toString();
 
  var grad = color.colors ? color : {colors: color};
 
  if (!options.ctx) {
  if (!_.isArray(grad.colors)) return 'rgba(0, 0, 0, 0)';
  return Color.parse(_.isArray(grad.colors[0]) ? grad.colors[0][1] : grad.colors[0]).alpha(opacity).toString();
  }
  grad = _.extend({start: 'top', end: 'bottom'}, grad);
 
  if (/top/i.test(grad.start)) options.x1 = 0;
  if (/left/i.test(grad.start)) options.y1 = 0;
  if (/bottom/i.test(grad.end)) options.x2 = 0;
  if (/right/i.test(grad.end)) options.y2 = 0;
 
  var i, c, stop, gradient = options.ctx.createLinearGradient(options.x1, options.y1, options.x2, options.y2);
  for (i = 0; i < grad.colors.length; i++) {
  c = grad.colors[i];
  if (_.isArray(c)) {
  stop = c[0];
  c = c[1];
  }
  else stop = i / (grad.colors.length-1);
  gradient.addColorStop(stop, Color.parse(c).alpha(opacity));
  }
  return gradient;
  }
  });
 
  Flotr.Color = Color;
 
  })();
 
  (function () {
 
  var _ = Flotr._;
 
  function getEl (el) {
  return (el && el.jquery) ? el[0] : el;
  }
 
  Flotr.DOM = {
  addClass: function(element, name){
  element = getEl(element);
  var classList = (element.className ? element.className : '');
  if (_.include(classList.split(/\s+/g), name)) return;
  element.className = (classList ? classList + ' ' : '') + name;
  },
  /**
  * Create an element.
  */
  create: function(tag){
  return document.createElement(tag);
  },
  node: function(html) {
  var div = Flotr.DOM.create('div'), n;
  div.innerHTML = html;
  n = div.children[0];
  div.innerHTML = '';
  return n;
  },
  /**
  * Remove all children.
  */
  empty: function(element){
  element = getEl(element);
  element.innerHTML = '';
  /*
  if (!element) return;
  _.each(element.childNodes, function (e) {
  Flotr.DOM.empty(e);
  element.removeChild(e);
  });
  */
  },
  remove: function (element) {
  element = getEl(element);
  element.parentNode.removeChild(element);
  },
  hide: function(element){
  element = getEl(element);
  Flotr.DOM.setStyles(element, {display:'none'});
  },
  /**
  * Insert a child.
  * @param {Element} element
  * @param {Element|String} Element or string to be appended.
  */
  insert: function(element, child){
  element = getEl(element);
  if(_.isString(child))
  element.innerHTML += child;
  else if (_.isElement(child))
  element.appendChild(child);
  },
  // @TODO find xbrowser implementation
  opacity: function(element, opacity) {
  element = getEl(element);
  element.style.opacity = opacity;
  },
  position: function(element, p){
  element = getEl(element);
  if (!element.offsetParent)
  return {left: (element.offsetLeft || 0), top: (element.offsetTop || 0)};
 
  p = this.position(element.offsetParent);
  p.left += element.offsetLeft;
  p.top += element.offsetTop;
  return p;
  },
  removeClass: function(element, name) {
  var classList = (element.className ? element.className : '');
  element = getEl(element);
  element.className = _.filter(classList.split(/\s+/g), function (c) {
  if (c != name) return true; }
  ).join(' ');
  },
  setStyles: function(element, o) {
  element = getEl(element);
  _.each(o, function (value, key) {
  element.style[key] = value;
  });
  },
  show: function(element){
  element = getEl(element);
  Flotr.DOM.setStyles(element, {display:''});
  },
  /**
  * Return element size.
  */
  size: function(element){
  element = getEl(element);
  return {
  height : element.offsetHeight,
  width : element.offsetWidth };
  }
  };
 
  })();
 
  /**
  * Flotr Date
  */
  Flotr.Date = {
 
  set : function (date, name, mode, value) {
  mode = mode || 'UTC';
  name = 'set' + (mode === 'UTC' ? 'UTC' : '') + name;
  date[name](value);
  },
 
  get : function (date, name, mode) {
  mode = mode || 'UTC';
  name = 'get' + (mode === 'UTC' ? 'UTC' : '') + name;
  return date[name]();
  },
 
  format: function(d, format, mode) {
  if (!d) return;
 
  // We should maybe use an "official" date format spec, like PHP date() or ColdFusion
  // http://fr.php.net/manual/en/function.date.php
  // http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=functions_c-d_29.html
  var
  get = this.get,
  tokens = {
  h: get(d, 'Hours', mode).toString(),
  H: leftPad(get(d, 'Hours', mode)),
  M: leftPad(get(d, 'Minutes', mode)),
  S: leftPad(get(d, 'Seconds', mode)),
  s: get(d, 'Milliseconds', mode),
  d: get(d, 'Date', mode).toString(),
  m: (get(d, 'Month', mode) + 1).toString(),
  y: get(d, 'FullYear', mode).toString(),
  b: Flotr.Date.monthNames[get(d, 'Month', mode)]
  };
 
  function leftPad(n){
  n += '';
  return n.length == 1 ? "0" + n : n;
  }
 
  var r = [], c,
  escape = false;
 
  for (var i = 0; i < format.length; ++i) {
  c = format.charAt(i);
 
  if (escape) {
  r.push(tokens[c] || c);
  escape = false;
  }
  else if (c == "%")
  escape = true;
  else
  r.push(c);
  }
  return r.join('');
  },
  getFormat: function(time, span) {
  var tu = Flotr.Date.timeUnits;
  if (time < tu.second) return "%h:%M:%S.%s";
  else if (time < tu.minute) return "%h:%M:%S";
  else if (time < tu.day) return (span < 2 * tu.day) ? "%h:%M" : "%b %d %h:%M";
  else if (time < tu.month) return "%b %d";
  else if (time < tu.year) return (span < tu.year) ? "%b" : "%b %y";
  else return "%y";
  },
  formatter: function (v, axis) {
  var
  options = axis.options,
  scale = Flotr.Date.timeUnits[options.timeUnit],
  d = new Date(v * scale);
 
  // first check global format
  if (axis.options.timeFormat)
  return Flotr.Date.format(d, options.timeFormat, options.timeMode);
 
  var span = (axis.max - axis.min) * scale,
  t = axis.tickSize * Flotr.Date.timeUnits[axis.tickUnit];
 
  return Flotr.Date.format(d, Flotr.Date.getFormat(t, span), options.timeMode);
  },
  generator: function(axis) {
 
  var
  set = this.set,
  get = this.get,
  timeUnits = this.timeUnits,
  spec = this.spec,
  options = axis.options,
  mode = options.timeMode,
  scale = timeUnits[options.timeUnit],
  min = axis.min * scale,
  max = axis.max * scale,
  delta = (max - min) / options.noTicks,
  ticks = [],
  tickSize = axis.tickSize,
  tickUnit,
  formatter, i;
 
  // Use custom formatter or time tick formatter
  formatter = (options.tickFormatter === Flotr.defaultTickFormatter ?
  this.formatter : options.tickFormatter
  );
 
  for (i = 0; i < spec.length - 1; ++i) {
  var d = spec[i][0] * timeUnits[spec[i][1]];
  if (delta < (d + spec[i+1][0] * timeUnits[spec[i+1][1]]) / 2 && d >= tickSize)
  break;
  }
  tickSize = spec[i][0];
  tickUnit = spec[i][1];
 
  // special-case the possibility of several years
  if (tickUnit == "year") {
  tickSize = Flotr.getTickSize(options.noTicks*timeUnits.year, min, max, 0);
 
  // Fix for 0.5 year case
  if (tickSize == 0.5) {
  tickUnit = "month";
  tickSize = 6;
  }
  }
 
  axis.tickUnit = tickUnit;
  axis.tickSize = tickSize;
 
  var step = tickSize * timeUnits[tickUnit];
  d = new Date(min);
 
  function setTick (name) {
  set(d, name, mode, Flotr.floorInBase(
  get(d, name, mode), tickSize
  ));
  }
 
  switch (tickUnit) {
  case "millisecond": setTick('Milliseconds'); break;
  case "second": setTick('Seconds'); break;
  case "minute": setTick('Minutes'); break;
  case "hour": setTick('Hours'); break;
  case "month": setTick('Month'); break;
  case "year": setTick('FullYear'); break;
  }
 
  // reset smaller components
  if (step >= timeUnits.second) set(d, 'Milliseconds', mode, 0);
  if (step >= timeUnits.minute) set(d, 'Seconds', mode, 0);
  if (step >= timeUnits.hour) set(d, 'Minutes', mode, 0);
  if (step >= timeUnits.day) set(d, 'Hours', mode, 0);
  if (step >= timeUnits.day * 4) set(d, 'Date', mode, 1);
  if (step >= timeUnits.year) set(d, 'Month', mode, 0);
 
  var carry = 0, v = NaN, prev;
  do {
  prev = v;
  v = d.getTime();
  ticks.push({ v: v / scale, label: formatter(v / scale, axis) });
  if (tickUnit == "month") {
  if (tickSize < 1) {
  /* a bit complicated - we'll divide the month up but we need to take care of fractions
  so we don't end up in the middle of a day */
  set(d, 'Date', mode, 1);
  var start = d.getTime();
  set(d, 'Month', mode, get(d, 'Month', mode) + 1);
  var end = d.getTime();
  d.setTime(v + carry * timeUnits.hour + (end - start) * tickSize);
  carry = get(d, 'Hours', mode);
  set(d, 'Hours', mode, 0);
  }
  else
  set(d, 'Month', mode, get(d, 'Month', mode) + tickSize);
  }
  else if (tickUnit == "year") {
  set(d, 'FullYear', mode, get(d, 'FullYear', mode) + tickSize);
  }
  else
  d.setTime(v + step);
 
  } while (v < max && v != prev);
 
  return ticks;
  },
  timeUnits: {
  millisecond: 1,
  second: 1000,
  minute: 1000 * 60,
  hour: 1000 * 60 * 60,
  day: 1000 * 60 * 60 * 24,
  month: 1000 * 60 * 60 * 24 * 30,
  year: 1000 * 60 * 60 * 24 * 365.2425
  },
  // the allowed tick sizes, after 1 year we use an integer algorithm
  spec: [
  [1, "millisecond"], [20, "millisecond"], [50, "millisecond"], [100, "millisecond"], [200, "millisecond"], [500, "millisecond"],
  [1, "second"], [2, "second"], [5, "second"], [10, "second"], [30, "second"],
  [1, "minute"], [2, "minute"], [5, "minute"], [10, "minute"], [30, "minute"],
  [1, "hour"], [2, "hour"], [4, "hour"], [8, "hour"], [12, "hour"],
  [1, "day"], [2, "day"], [3, "day"],
  [0.25, "month"], [0.5, "month"], [1, "month"], [2, "month"], [3, "month"], [6, "month"],
  [1, "year"]
  ],
  monthNames: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
  };
 
  /**
  * Flotr Defaults
  */
  Flotr.defaultOptions = {
  colors: ['#00A8F0', '#C0D800', '#CB4B4B', '#4DA74D', '#9440ED'], //=> The default colorscheme. When there are > 5 series, additional colors are generated.
  ieBackgroundColor: '#FFFFFF', // Background color for excanvas clipping
  title: null, // => The graph's title
  subtitle: null, // => The graph's subtitle
  shadowSize: 4, // => size of the 'fake' shadow
  defaultType: null, // => default series type
  HtmlText: true, // => wether to draw the text using HTML or on the canvas
  fontColor: '#545454', // => default font color
  fontSize: 7.5, // => canvas' text font size
  resolution: 1, // => resolution of the graph, to have printer-friendly graphs !
  parseFloat: true, // => whether to preprocess data for floats (ie. if input is string)
  preventDefault: true, // => preventDefault by default for mobile events. Turn off to enable scroll.
  xaxis: {
  ticks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  minorTicks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  showLabels: true, // => setting to true will show the axis ticks labels, hide otherwise
  showMinorLabels: false,// => true to show the axis minor ticks labels, false to hide
  labelsAngle: 0, // => labels' angle, in degrees
  title: null, // => axis title
  titleAngle: 0, // => axis title's angle, in degrees
  noTicks: 5, // => number of ticks for automagically generated ticks
  minorTickFreq: null, // => number of minor ticks between major ticks for autogenerated ticks
  tickFormatter: Flotr.defaultTickFormatter, // => fn: number, Object -> string
  tickDecimals: null, // => no. of decimals, null means auto
  min: null, // => min. value to show, null means set automatically
  max: null, // => max. value to show, null means set automatically
  autoscale: false, // => Turns autoscaling on with true
  autoscaleMargin: 0, // => margin in % to add if auto-setting min/max
  color: null, // => color of the ticks
  mode: 'normal', // => can be 'time' or 'normal'
  timeFormat: null,
  timeMode:'UTC', // => For UTC time ('local' for local time).
  timeUnit:'millisecond',// => Unit for time (millisecond, second, minute, hour, day, month, year)
  scaling: 'linear', // => Scaling, can be 'linear' or 'logarithmic'
  base: Math.E,
  titleAlign: 'center',
  margin: true // => Turn off margins with false
  },
  x2axis: {},
  yaxis: {
  ticks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  minorTicks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  showLabels: true, // => setting to true will show the axis ticks labels, hide otherwise
  showMinorLabels: false,// => true to show the axis minor ticks labels, false to hide
  labelsAngle: 0, // => labels' angle, in degrees
  title: null, // => axis title
  titleAngle: 90, // => axis title's angle, in degrees
  noTicks: 5, // => number of ticks for automagically generated ticks
  minorTickFreq: null, // => number of minor ticks between major ticks for autogenerated ticks
  tickFormatter: Flotr.defaultTickFormatter, // => fn: number, Object -> string
  tickDecimals: null, // => no. of decimals, null means auto
  min: null, // => min. value to show, null means set automatically
  max: null, // => max. value to show, null means set automatically
  autoscale: false, // => Turns autoscaling on with true
  autoscaleMargin: 0, // => margin in % to add if auto-setting min/max
  color: null, // => The color of the ticks
  scaling: 'linear', // => Scaling, can be 'linear' or 'logarithmic'
  base: Math.E,
  titleAlign: 'center',
  margin: true // => Turn off margins with false
  },
  y2axis: {
  titleAngle: 270
  },
  grid: {
  color: '#545454', // => primary color used for outline and labels
  backgroundColor: null, // => null for transparent, else color
  backgroundImage: null, // => background image. String or object with src, left and top
  watermarkAlpha: 0.4, // =>
  tickColor: '#DDDDDD', // => color used for the ticks
  labelMargin: 3, // => margin in pixels
  verticalLines: true, // => whether to show gridlines in vertical direction
  minorVerticalLines: null, // => whether to show gridlines for minor ticks in vertical dir.
  horizontalLines: true, // => whether to show gridlines in horizontal direction
  minorHorizontalLines: null, // => whether to show gridlines for minor ticks in horizontal dir.
  outlineWidth: 1, // => width of the grid outline/border in pixels
  outline : 'nsew', // => walls of the outline to display
  circular: false // => if set to true, the grid will be circular, must be used when radars are drawn
  },
  mouse: {
  track: false, // => true to track the mouse, no tracking otherwise
  trackAll: false,
  position: 'se', // => position of the value box (default south-east)
  relative: false, // => next to the mouse cursor
  trackFormatter: Flotr.defaultTrackFormatter, // => formats the values in the value box
  margin: 5, // => margin in pixels of the valuebox
  lineColor: '#FF3F19', // => line color of points that are drawn when mouse comes near a value of a series
  trackDecimals: 1, // => decimals for the track values
  sensibility: 2, // => the lower this number, the more precise you have to aim to show a value
  trackY: true, // => whether or not to track the mouse in the y axis
  radius: 3, // => radius of the track point
  fillColor: null, // => color to fill our select bar with only applies to bar and similar graphs (only bars for now)
  fillOpacity: 0.4 // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  }
  };
 
  /**
  * Flotr Event Adapter
  */
  (function () {
  var
  F = Flotr,
  bean = F.bean;
  F.EventAdapter = {
  observe: function(object, name, callback) {
  bean.add(object, name, callback);
  return this;
  },
  fire: function(object, name, args) {
  bean.fire(object, name, args);
  if (typeof(Prototype) != 'undefined')
  Event.fire(object, name, args);
  // @TODO Someone who uses mootools, add mootools adapter for existing applciations.
  return this;
  },
  stopObserving: function(object, name, callback) {
  bean.remove(object, name, callback);
  return this;
  },
  eventPointer: function(e) {
  if (!F._.isUndefined(e.touches) && e.touches.length > 0) {
  return {
  x : e.touches[0].pageX,
  y : e.touches[0].pageY
  };
  } else if (!F._.isUndefined(e.changedTouches) && e.changedTouches.length > 0) {
  return {
  x : e.changedTouches[0].pageX,
  y : e.changedTouches[0].pageY
  };
  } else if (e.pageX || e.pageY) {
  return {
  x : e.pageX,
  y : e.pageY
  };
  } else if (e.clientX || e.clientY) {
  var
  d = document,
  b = d.body,
  de = d.documentElement;
  return {
  x: e.clientX + b.scrollLeft + de.scrollLeft,
  y: e.clientY + b.scrollTop + de.scrollTop
  };
  }
  }
  };
  })();
 
  /**
  * Flotr2 (c) 2012 Carl Sutherland
  * MIT License
  * Special thanks to:
  * Flotr: http://code.google.com/p/flotr/ (fork)
  * Flot: https://github.com/flot/flot (original fork)
  */
  (function () {
 
  var
  global = this,
  previousFlotr = this.Flotr,
  Flotr;
 
  Flotr = {
  _: _,
  bean: bean,
  isIphone: /iphone/i.test(navigator.userAgent),
  isIE: (navigator.appVersion.indexOf("MSIE") != -1 ? parseFloat(navigator.appVersion.split("MSIE")[1]) : false),
 
  /**
  * An object of the registered graph types. Use Flotr.addType(type, object)
  * to add your own type.
  */
  graphTypes: {},
 
  /**
  * The list of the registered plugins
  */
  plugins: {},
 
  /**
  * Can be used to add your own chart type.
  * @param {String} name - Type of chart, like 'pies', 'bars' etc.
  * @param {String} graphType - The object containing the basic drawing functions (draw, etc)
  */
  addType: function(name, graphType){
  Flotr.graphTypes[name] = graphType;
  Flotr.defaultOptions[name] = graphType.options || {};
  Flotr.defaultOptions.defaultType = Flotr.defaultOptions.defaultType || name;
  },
 
  /**
  * Can be used to add a plugin
  * @param {String} name - The name of the plugin
  * @param {String} plugin - The object containing the plugin's data (callbacks, options, function1, function2, ...)
  */
  addPlugin: function(name, plugin){
  Flotr.plugins[name] = plugin;
  Flotr.defaultOptions[name] = plugin.options || {};
  },
 
  /**
  * Draws the graph. This function is here for backwards compatibility with Flotr version 0.1.0alpha.
  * You could also draw graphs by directly calling Flotr.Graph(element, data, options).
  * @param {Element} el - element to insert the graph into
  * @param {Object} data - an array or object of dataseries
  * @param {Object} options - an object containing options
  * @param {Class} _GraphKlass_ - (optional) Class to pass the arguments to, defaults to Flotr.Graph
  * @return {Object} returns a new graph object and of course draws the graph.
  */
  draw: function(el, data, options, GraphKlass){
  GraphKlass = GraphKlass || Flotr.Graph;
  return new GraphKlass(el, data, options);
  },
 
  /**
  * Recursively merges two objects.
  * @param {Object} src - source object (likely the object with the least properties)
  * @param {Object} dest - destination object (optional, object with the most properties)
  * @return {Object} recursively merged Object
  * @TODO See if we can't remove this.
  */
  merge: function(src, dest){
  var i, v, result = dest || {};
 
  for (i in src) {
  v = src[i];
  if (v && typeof(v) === 'object') {
  if (v.constructor === Array) {
  result[i] = this._.clone(v);
  } else if (
  v.constructor !== RegExp &&
  !this._.isElement(v) &&
  !v.jquery
  ) {
  result[i] = Flotr.merge(v, (dest ? dest[i] : undefined));
  } else {
  result[i] = v;
  }
  } else {
  result[i] = v;
  }
  }
 
  return result;
  },
 
  /**
  * Recursively clones an object.
  * @param {Object} object - The object to clone
  * @return {Object} the clone
  * @TODO See if we can't remove this.
  */
  clone: function(object){
  return Flotr.merge(object, {});
  },
 
  /**
  * Function calculates the ticksize and returns it.
  * @param {Integer} noTicks - number of ticks
  * @param {Integer} min - lower bound integer value for the current axis
  * @param {Integer} max - upper bound integer value for the current axis
  * @param {Integer} decimals - number of decimals for the ticks
  * @return {Integer} returns the ticksize in pixels
  */
  getTickSize: function(noTicks, min, max, decimals){
  var delta = (max - min) / noTicks,
  magn = Flotr.getMagnitude(delta),
  tickSize = 10,
  norm = delta / magn; // Norm is between 1.0 and 10.0.
 
  if(norm < 1.5) tickSize = 1;
  else if(norm < 2.25) tickSize = 2;
  else if(norm < 3) tickSize = ((decimals === 0) ? 2 : 2.5);
  else if(norm < 7.5) tickSize = 5;
 
  return tickSize * magn;
  },
 
  /**
  * Default tick formatter.
  * @param {String, Integer} val - tick value integer
  * @param {Object} axisOpts - the axis' options
  * @return {String} formatted tick string
  */
  defaultTickFormatter: function(val, axisOpts){
  return val+'';
  },
 
  /**
  * Formats the mouse tracker values.
  * @param {Object} obj - Track value Object {x:..,y:..}
  * @return {String} Formatted track string
  */
  defaultTrackFormatter: function(obj){
  return '('+obj.x+', '+obj.y+')';
  },
 
  /**
  * Utility function to convert file size values in bytes to kB, MB, ...
  * @param value {Number} - The value to convert
  * @param precision {Number} - The number of digits after the comma (default: 2)
  * @param base {Number} - The base (default: 1000)
  */
  engineeringNotation: function(value, precision, base){
  var sizes = ['Y','Z','E','P','T','G','M','k',''],
  fractionSizes = ['y','z','a','f','p','n','µ','m',''],
  total = sizes.length;
 
  base = base || 1000;
  precision = Math.pow(10, precision || 2);
 
  if (value === 0) return 0;
 
  if (value > 1) {
  while (total-- && (value >= base)) value /= base;
  }
  else {
  sizes = fractionSizes;
  total = sizes.length;
  while (total-- && (value < 1)) value *= base;
  }
 
  return (Math.round(value * precision) / precision) + sizes[total];
  },
 
  /**
  * Returns the magnitude of the input value.
  * @param {Integer, Float} x - integer or float value
  * @return {Integer, Float} returns the magnitude of the input value
  */
  getMagnitude: function(x){
  return Math.pow(10, Math.floor(Math.log(x) / Math.LN10));
  },
  toPixel: function(val){
  return Math.floor(val)+0.5;//((val-Math.round(val) < 0.4) ? (Math.floor(val)-0.5) : val);
  },
  toRad: function(angle){
  return -angle * (Math.PI/180);
  },
  floorInBase: function(n, base) {
  return base * Math.floor(n / base);
  },
  drawText: function(ctx, text, x, y, style) {
  if (!ctx.fillText) {
  ctx.drawText(text, x, y, style);
  return;
  }
 
  style = this._.extend({
  size: Flotr.defaultOptions.fontSize,
  color: '#000000',
  textAlign: 'left',
  textBaseline: 'bottom',
  weight: 1,
  angle: 0
  }, style);
 
  ctx.save();
  ctx.translate(x, y);
  ctx.rotate(style.angle);
  ctx.fillStyle = style.color;
  ctx.font = (style.weight > 1 ? "bold " : "") + (style.size*1.3) + "px sans-serif";
  ctx.textAlign = style.textAlign;
  ctx.textBaseline = style.textBaseline;
  ctx.fillText(text, 0, 0);
  ctx.restore();
  },
  getBestTextAlign: function(angle, style) {
  style = style || {textAlign: 'center', textBaseline: 'middle'};
  angle += Flotr.getTextAngleFromAlign(style);
 
  if (Math.abs(Math.cos(angle)) > 10e-3)
  style.textAlign = (Math.cos(angle) > 0 ? 'right' : 'left');
 
  if (Math.abs(Math.sin(angle)) > 10e-3)
  style.textBaseline = (Math.sin(angle) > 0 ? 'top' : 'bottom');
 
  return style;
  },
  alignTable: {
  'right middle' : 0,
  'right top' : Math.PI/4,
  'center top' : Math.PI/2,
  'left top' : 3*(Math.PI/4),
  'left middle' : Math.PI,
  'left bottom' : -3*(Math.PI/4),
  'center bottom': -Math.PI/2,
  'right bottom' : -Math.PI/4,
  'center middle': 0
  },
  getTextAngleFromAlign: function(style) {
  return Flotr.alignTable[style.textAlign+' '+style.textBaseline] || 0;
  },
  noConflict : function () {
  global.Flotr = previousFlotr;
  return this;
  }
  };
 
  global.Flotr = Flotr;
 
  })();
 
  /**
  * Flotr Graph class that plots a graph on creation.
  */
  (function () {
 
  var
  D = Flotr.DOM,
  E = Flotr.EventAdapter,
  _ = Flotr._,
  flotr = Flotr;
  /**
  * Flotr Graph constructor.
  * @param {Element} el - element to insert the graph into
  * @param {Object} data - an array or object of dataseries
  * @param {Object} options - an object containing options
  */
  Graph = function(el, data, options){
  // Let's see if we can get away with out this [JS]
  // try {
  this._setEl(el);
  this._initMembers();
  this._initPlugins();
 
  E.fire(this.el, 'flotr:beforeinit', [this]);
 
  this.data = data;
  this.series = flotr.Series.getSeries(data);
  this._initOptions(options);
  this._initGraphTypes();
  this._initCanvas();
  this._text = new flotr.Text({
  element : this.el,
  ctx : this.ctx,
  html : this.options.HtmlText,
  textEnabled : this.textEnabled
  });
  E.fire(this.el, 'flotr:afterconstruct', [this]);
  this._initEvents();
 
  this.findDataRanges();
  this.calculateSpacing();
 
  this.draw(_.bind(function() {
  E.fire(this.el, 'flotr:afterinit', [this]);
  }, this));
  /*
  try {
  } catch (e) {
  try {
  console.error(e);
  } catch (e2) {}
  }*/
  };
 
  function observe (object, name, callback) {
  E.observe.apply(this, arguments);
  this._handles.push(arguments);
  return this;
  }
 
  Graph.prototype = {
 
  destroy: function () {
  E.fire(this.el, 'flotr:destroy');
  _.each(this._handles, function (handle) {
  E.stopObserving.apply(this, handle);
  });
  this._handles = [];
  this.el.graph = null;
  },
 
  observe : observe,
 
  /**
  * @deprecated
  */
  _observe : observe,
 
  processColor: function(color, options){
  var o = { x1: 0, y1: 0, x2: this.plotWidth, y2: this.plotHeight, opacity: 1, ctx: this.ctx };
  _.extend(o, options);
  return flotr.Color.processColor(color, o);
  },
  /**
  * Function determines the min and max values for the xaxis and yaxis.
  *
  * TODO logarithmic range validation (consideration of 0)
  */
  findDataRanges: function(){
  var a = this.axes,
  xaxis, yaxis, range;
 
  _.each(this.series, function (series) {
  range = series.getRange();
  if (range) {
  xaxis = series.xaxis;
  yaxis = series.yaxis;
  xaxis.datamin = Math.min(range.xmin, xaxis.datamin);
  xaxis.datamax = Math.max(range.xmax, xaxis.datamax);
  yaxis.datamin = Math.min(range.ymin, yaxis.datamin);
  yaxis.datamax = Math.max(range.ymax, yaxis.datamax);
  xaxis.used = (xaxis.used || range.xused);
  yaxis.used = (yaxis.used || range.yused);
  }
  }, this);
 
  // Check for empty data, no data case (none used)
  if (!a.x.used && !a.x2.used) a.x.used = true;
  if (!a.y.used && !a.y2.used) a.y.used = true;
 
  _.each(a, function (axis) {
  axis.calculateRange();
  });
 
  var
  types = _.keys(flotr.graphTypes),
  drawn = false;
 
  _.each(this.series, function (series) {
  if (series.hide) return;
  _.each(types, function (type) {
  if (series[type] && series[type].show) {
  this.extendRange(type, series);
  drawn = true;
  }
  }, this);
  if (!drawn) {
  this.extendRange(this.options.defaultType, series);
  }
  }, this);
  },
 
  extendRange : function (type, series) {
  if (this[type].extendRange) this[type].extendRange(series, series.data, series[type], this[type]);
  if (this[type].extendYRange) this[type].extendYRange(series.yaxis, series.data, series[type], this[type]);
  if (this[type].extendXRange) this[type].extendXRange(series.xaxis, series.data, series[type], this[type]);
  },
 
  /**
  * Calculates axis label sizes.
  */
  calculateSpacing: function(){
 
  var a = this.axes,
  options = this.options,
  series = this.series,
  margin = options.grid.labelMargin,
  T = this._text,
  x = a.x,
  x2 = a.x2,
  y = a.y,
  y2 = a.y2,
  maxOutset = options.grid.outlineWidth,
  i, j, l, dim;
 
  // TODO post refactor, fix this
  _.each(a, function (axis) {
  axis.calculateTicks();
  axis.calculateTextDimensions(T, options);
  });
 
  // Title height
  dim = T.dimensions(
  options.title,
  {size: options.fontSize*1.5},
  'font-size:1em;font-weight:bold;',
  'flotr-title'
  );
  this.titleHeight = dim.height;
 
  // Subtitle height
  dim = T.dimensions(
  options.subtitle,
  {size: options.fontSize},
  'font-size:smaller;',
  'flotr-subtitle'
  );
  this.subtitleHeight = dim.height;
 
  for(j = 0; j < options.length; ++j){
  if (series[j].points.show){
  maxOutset = Math.max(maxOutset, series[j].points.radius + series[j].points.lineWidth/2);
  }
  }
 
  var p = this.plotOffset;
  if (x.options.margin === false) {
  p.bottom = 0;
  p.top = 0;
  } else {
  p.bottom += (options.grid.circular ? 0 : (x.used && x.options.showLabels ? (x.maxLabel.height + margin) : 0)) +
  (x.used && x.options.title ? (x.titleSize.height + margin) : 0) + maxOutset;
 
  p.top += (options.grid.circular ? 0 : (x2.used && x2.options.showLabels ? (x2.maxLabel.height + margin) : 0)) +
  (x2.used && x2.options.title ? (x2.titleSize.height + margin) : 0) + this.subtitleHeight + this.titleHeight + maxOutset;
  }
  if (y.options.margin === false) {
  p.left = 0;
  p.right = 0;
  } else {
  p.left += (options.grid.circular ? 0 : (y.used && y.options.showLabels ? (y.maxLabel.width + margin) : 0)) +
  (y.used && y.options.title ? (y.titleSize.width + margin) : 0) + maxOutset;
 
  p.right += (options.grid.circular ? 0 : (y2.used && y2.options.showLabels ? (y2.maxLabel.width + margin) : 0)) +
  (y2.used && y2.options.title ? (y2.titleSize.width + margin) : 0) + maxOutset;
  }
 
  p.top = Math.floor(p.top); // In order the outline not to be blured
 
  this.plotWidth = this.canvasWidth - p.left - p.right;
  this.plotHeight = this.canvasHeight - p.bottom - p.top;
 
  // TODO post refactor, fix this
  x.length = x2.length = this.plotWidth;
  y.length = y2.length = this.plotHeight;
  y.offset = y2.offset = this.plotHeight;
  x.setScale();
  x2.setScale();
  y.setScale();
  y2.setScale();
  },
  /**
  * Draws grid, labels, series and outline.
  */
  draw: function(after) {
 
  var
  context = this.ctx,
  i;
 
  E.fire(this.el, 'flotr:beforedraw', [this.series, this]);
 
  if (this.series.length) {
 
  context.save();
  context.translate(this.plotOffset.left, this.plotOffset.top);
 
  for (i = 0; i < this.series.length; i++) {
  if (!this.series[i].hide) this.drawSeries(this.series[i]);
  }
 
  context.restore();
  this.clip();
  }
 
  E.fire(this.el, 'flotr:afterdraw', [this.series, this]);
  if (after) after();
  },
  /**
  * Actually draws the graph.
  * @param {Object} series - series to draw
  */
  drawSeries: function(series){
 
  function drawChart (series, typeKey) {
  var options = this.getOptions(series, typeKey);
  this[typeKey].draw(options);
  }
 
  var drawn = false;
  series = series || this.series;
 
  _.each(flotr.graphTypes, function (type, typeKey) {
  if (series[typeKey] && series[typeKey].show && this[typeKey]) {
  drawn = true;
  drawChart.call(this, series, typeKey);
  }
  }, this);
 
  if (!drawn) drawChart.call(this, series, this.options.defaultType);
  },
 
  getOptions : function (series, typeKey) {
  var
  type = series[typeKey],
  graphType = this[typeKey],
  xaxis = series.xaxis,
  yaxis = series.yaxis,
  options = {
  context : this.ctx,
  width : this.plotWidth,
  height : this.plotHeight,
  fontSize : this.options.fontSize,
  fontColor : this.options.fontColor,
  textEnabled : this.textEnabled,
  htmlText : this.options.HtmlText,
  text : this._text, // TODO Is this necessary?
  element : this.el,
  data : series.data,
  color : series.color,
  shadowSize : series.shadowSize,
  xScale : xaxis.d2p,
  yScale : yaxis.d2p,
  xInverse : xaxis.p2d,
  yInverse : yaxis.p2d
  };
 
  options = flotr.merge(type, options);
 
  // Fill
  options.fillStyle = this.processColor(
  type.fillColor || series.color,
  {opacity: type.fillOpacity}
  );
 
  return options;
  },
  /**
  * Calculates the coordinates from a mouse event object.
  * @param {Event} event - Mouse Event object.
  * @return {Object} Object with coordinates of the mouse.
  */
  getEventPosition: function (e){
 
  var
  d = document,
  b = d.body,
  de = d.documentElement,
  axes = this.axes,
  plotOffset = this.plotOffset,
  lastMousePos = this.lastMousePos,
  pointer = E.eventPointer(e),
  dx = pointer.x - lastMousePos.pageX,
  dy = pointer.y - lastMousePos.pageY,
  r, rx, ry;
 
  if ('ontouchstart' in this.el) {
  r = D.position(this.overlay);
  rx = pointer.x - r.left - plotOffset.left;
  ry = pointer.y - r.top - plotOffset.top;
  } else {
  r = this.overlay.getBoundingClientRect();
  rx = e.clientX - r.left - plotOffset.left - b.scrollLeft - de.scrollLeft;
  ry = e.clientY - r.top - plotOffset.top - b.scrollTop - de.scrollTop;
  }
 
  return {
  x: axes.x.p2d(rx),
  x2: axes.x2.p2d(rx),
  y: axes.y.p2d(ry),
  y2: axes.y2.p2d(ry),
  relX: rx,
  relY: ry,
  dX: dx,
  dY: dy,
  absX: pointer.x,
  absY: pointer.y,
  pageX: pointer.x,
  pageY: pointer.y
  };
  },
  /**
  * Observes the 'click' event and fires the 'flotr:click' event.
  * @param {Event} event - 'click' Event object.
  */
  clickHandler: function(event){
  if(this.ignoreClick){
  this.ignoreClick = false;
  return this.ignoreClick;
  }
  E.fire(this.el, 'flotr:click', [this.getEventPosition(event), this]);
  },
  /**
  * Observes mouse movement over the graph area. Fires the 'flotr:mousemove' event.
  * @param {Event} event - 'mousemove' Event object.
  */
  mouseMoveHandler: function(event){
  if (this.mouseDownMoveHandler) return;
  var pos = this.getEventPosition(event);
  E.fire(this.el, 'flotr:mousemove', [event, pos, this]);
  this.lastMousePos = pos;
  },
  /**
  * Observes the 'mousedown' event.
  * @param {Event} event - 'mousedown' Event object.
  */
  mouseDownHandler: function (event){
 
  /*
  // @TODO Context menu?
  if(event.isRightClick()) {
  event.stop();
 
  var overlay = this.overlay;
  overlay.hide();
 
  function cancelContextMenu () {
  overlay.show();
  E.stopObserving(document, 'mousemove', cancelContextMenu);
  }
  E.observe(document, 'mousemove', cancelContextMenu);
  return;
  }
  */
 
  if (this.mouseUpHandler) return;
  this.mouseUpHandler = _.bind(function (e) {
  E.stopObserving(document, 'mouseup', this.mouseUpHandler);
  E.stopObserving(document, 'mousemove', this.mouseDownMoveHandler);
  this.mouseDownMoveHandler = null;
  this.mouseUpHandler = null;
  // @TODO why?
  //e.stop();
  E.fire(this.el, 'flotr:mouseup', [e, this]);
  }, this);
  this.mouseDownMoveHandler = _.bind(function (e) {
  var pos = this.getEventPosition(e);
  E.fire(this.el, 'flotr:mousemove', [event, pos, this]);
  this.lastMousePos = pos;
  }, this);
  E.observe(document, 'mouseup', this.mouseUpHandler);
  E.observe(document, 'mousemove', this.mouseDownMoveHandler);
  E.fire(this.el, 'flotr:mousedown', [event, this]);
  this.ignoreClick = false;
  },
  drawTooltip: function(content, x, y, options) {
  var mt = this.getMouseTrack(),
  style = 'opacity:0.7;background-color:#000;color:#fff;display:none;position:absolute;padding:2px 8px;-moz-border-radius:4px;border-radius:4px;white-space:nowrap;',
  p = options.position,
  m = options.margin,
  plotOffset = this.plotOffset;
 
  if(x !== null && y !== null){
  if (!options.relative) { // absolute to the canvas
  if(p.charAt(0) == 'n') style += 'top:' + (m + plotOffset.top) + 'px;bottom:auto;';
  else if(p.charAt(0) == 's') style += 'bottom:' + (m + plotOffset.bottom) + 'px;top:auto;';
  if(p.charAt(1) == 'e') style += 'right:' + (m + plotOffset.right) + 'px;left:auto;';
  else if(p.charAt(1) == 'w') style += 'left:' + (m + plotOffset.left) + 'px;right:auto;';
  }
  else { // relative to the mouse
  if(p.charAt(0) == 'n') style += 'bottom:' + (m - plotOffset.top - y + this.canvasHeight) + 'px;top:auto;';
  else if(p.charAt(0) == 's') style += 'top:' + (m + plotOffset.top + y) + 'px;bottom:auto;';
  if(p.charAt(1) == 'e') style += 'left:' + (m + plotOffset.left + x) + 'px;right:auto;';
  else if(p.charAt(1) == 'w') style += 'right:' + (m - plotOffset.left - x + this.canvasWidth) + 'px;left:auto;';
  }
 
  mt.style.cssText = style;
  D.empty(mt);
  D.insert(mt, content);
  D.show(mt);
  }
  else {
  D.hide(mt);
  }
  },
 
  clip: function (ctx) {
 
  var
  o = this.plotOffset,
  w = this.canvasWidth,
  h = this.canvasHeight;
 
  ctx = ctx || this.ctx;
 
  if (flotr.isIE && flotr.isIE < 9) {
  // Clipping for excanvas :-(
  ctx.save();
  ctx.fillStyle = this.processColor(this.options.ieBackgroundColor);
  ctx.fillRect(0, 0, w, o.top);
  ctx.fillRect(0, 0, o.left, h);
  ctx.fillRect(0, h - o.bottom, w, o.bottom);
  ctx.fillRect(w - o.right, 0, o.right,h);
  ctx.restore();
  } else {
  ctx.clearRect(0, 0, w, o.top);
  ctx.clearRect(0, 0, o.left, h);
  ctx.clearRect(0, h - o.bottom, w, o.bottom);
  ctx.clearRect(w - o.right, 0, o.right,h);
  }
  },
 
  _initMembers: function() {
  this._handles = [];
  this.lastMousePos = {pageX: null, pageY: null };
  this.plotOffset = {left: 0, right: 0, top: 0, bottom: 0};
  this.ignoreClick = true;
  this.prevHit = null;
  },
 
  _initGraphTypes: function() {
  _.each(flotr.graphTypes, function(handler, graphType){
  this[graphType] = flotr.clone(handler);
  }, this);
  },
 
  _initEvents: function () {
 
  var
  el = this.el,
  touchendHandler, movement, touchend;
 
  if ('ontouchstart' in el) {
 
  touchendHandler = _.bind(function (e) {
  touchend = true;
  E.stopObserving(document, 'touchend', touchendHandler);
  E.fire(el, 'flotr:mouseup', [event, this]);
  this.multitouches = null;
 
  if (!movement) {
  this.clickHandler(e);
  }
  }, this);
 
  this.observe(this.overlay, 'touchstart', _.bind(function (e) {
  movement = false;
  touchend = false;
  this.ignoreClick = false;
 
  if (e.touches && e.touches.length > 1) {
  this.multitouches = e.touches;
  }
 
  E.fire(el, 'flotr:mousedown', [event, this]);
  this.observe(document, 'touchend', touchendHandler);
  }, this));
 
  this.observe(this.overlay, 'touchmove', _.bind(function (e) {
 
  var pos = this.getEventPosition(e);
 
  if (this.options.preventDefault) {
  e.preventDefault();
  }
 
  movement = true;
 
  if (this.multitouches || (e.touches && e.touches.length > 1)) {
  this.multitouches = e.touches;
  } else {
  if (!touchend) {
  E.fire(el, 'flotr:mousemove', [event, pos, this]);
  }
  }
  this.lastMousePos = pos;
  }, this));
 
  } else {
  this.
  observe(this.overlay, 'mousedown', _.bind(this.mouseDownHandler, this)).
  observe(el, 'mousemove', _.bind(this.mouseMoveHandler, this)).
  observe(this.overlay, 'click', _.bind(this.clickHandler, this)).
  observe(el, 'mouseout', function () {
  E.fire(el, 'flotr:mouseout');
  });
  }
  },
 
  /**
  * Initializes the canvas and it's overlay canvas element. When the browser is IE, this makes use
  * of excanvas. The overlay canvas is inserted for displaying interactions. After the canvas elements
  * are created, the elements are inserted into the container element.
  */
  _initCanvas: function(){
  var el = this.el,
  o = this.options,
  children = el.children,
  removedChildren = [],
  child, i,
  size, style;
 
  // Empty the el
  for (i = children.length; i--;) {
  child = children[i];
  if (!this.canvas && child.className === 'flotr-canvas') {
  this.canvas = child;
  } else if (!this.overlay && child.className === 'flotr-overlay') {
  this.overlay = child;
  } else {
  removedChildren.push(child);
  }
  }
  for (i = removedChildren.length; i--;) {
  el.removeChild(removedChildren[i]);
  }
 
  D.setStyles(el, {position: 'relative'}); // For positioning labels and overlay.
  size = {};
  size.width = el.clientWidth;
  size.height = el.clientHeight;
 
  if(size.width <= 0 || size.height <= 0 || o.resolution <= 0){
  throw 'Invalid dimensions for plot, width = ' + size.width + ', height = ' + size.height + ', resolution = ' + o.resolution;
  }
 
  // Main canvas for drawing graph types
  this.canvas = getCanvas(this.canvas, 'canvas');
  // Overlay canvas for interactive features
  this.overlay = getCanvas(this.overlay, 'overlay');
  this.ctx = getContext(this.canvas);
  this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height);
  this.octx = getContext(this.overlay);
  this.octx.clearRect(0, 0, this.overlay.width, this.overlay.height);
  this.canvasHeight = size.height;
  this.canvasWidth = size.width;
  this.textEnabled = !!this.ctx.drawText || !!this.ctx.fillText; // Enable text functions
 
  function getCanvas(canvas, name){
  if(!canvas){
  canvas = D.create('canvas');
  if (typeof FlashCanvas != "undefined" && typeof canvas.getContext === 'function') {
  FlashCanvas.initElement(canvas);
  }
  canvas.className = 'flotr-'+name;
  canvas.style.cssText = 'position:absolute;left:0px;top:0px;';
  D.insert(el, canvas);
  }
  _.each(size, function(size, attribute){
  D.show(canvas);
  if (name == 'canvas' && canvas.getAttribute(attribute) === size) {
  return;
  }
  canvas.setAttribute(attribute, size * o.resolution);
  canvas.style[attribute] = size + 'px';
  });
  canvas.context_ = null; // Reset the ExCanvas context
  return canvas;
  }
 
  function getContext(canvas){
  if(window.G_vmlCanvasManager) window.G_vmlCanvasManager.initElement(canvas); // For ExCanvas
  var context = canvas.getContext('2d');
  if(!window.G_vmlCanvasManager) context.scale(o.resolution, o.resolution);
  return context;
  }
  },
 
  _initPlugins: function(){
  // TODO Should be moved to flotr and mixed in.
  _.each(flotr.plugins, function(plugin, name){
  _.each(plugin.callbacks, function(fn, c){
  this.observe(this.el, c, _.bind(fn, this));
  }, this);
  this[name] = flotr.clone(plugin);
  _.each(this[name], function(fn, p){
  if (_.isFunction(fn))
  this[name][p] = _.bind(fn, this);
  }, this);
  }, this);
  },
 
  /**
  * Sets options and initializes some variables and color specific values, used by the constructor.
  * @param {Object} opts - options object
  */
  _initOptions: function(opts){
  var options = flotr.clone(flotr.defaultOptions);
  options.x2axis = _.extend(_.clone(options.xaxis), options.x2axis);
  options.y2axis = _.extend(_.clone(options.yaxis), options.y2axis);
  this.options = flotr.merge(opts || {}, options);
 
  if (this.options.grid.minorVerticalLines === null &&
  this.options.xaxis.scaling === 'logarithmic') {
  this.options.grid.minorVerticalLines = true;
  }
  if (this.options.grid.minorHorizontalLines === null &&
  this.options.yaxis.scaling === 'logarithmic') {
  this.options.grid.minorHorizontalLines = true;
  }
 
  E.fire(this.el, 'flotr:afterinitoptions', [this]);
 
  this.axes = flotr.Axis.getAxes(this.options);
 
  // Initialize some variables used throughout this function.
  var assignedColors = [],
  colors = [],
  ln = this.series.length,
  neededColors = this.series.length,
  oc = this.options.colors,
  usedColors = [],
  variation = 0,
  c, i, j, s;
 
  // Collect user-defined colors from series.
  for(i = neededColors - 1; i > -1; --i){
  c = this.series[i].color;
  if(c){
  --neededColors;
  if(_.isNumber(c)) assignedColors.push(c);
  else usedColors.push(flotr.Color.parse(c));
  }
  }
 
  // Calculate the number of colors that need to be generated.
  for(i = assignedColors.length - 1; i > -1; --i)
  neededColors = Math.max(neededColors, assignedColors[i] + 1);
 
  // Generate needed number of colors.
  for(i = 0; colors.length < neededColors;){
  c = (oc.length == i) ? new flotr.Color(100, 100, 100) : flotr.Color.parse(oc[i]);
 
  // Make sure each serie gets a different color.
  var sign = variation % 2 == 1 ? -1 : 1,
  factor = 1 + sign * Math.ceil(variation / 2) * 0.2;
  c.scale(factor, factor, factor);
 
  /**
  * @todo if we're getting too close to something else, we should probably skip this one
  */
  colors.push(c);
 
  if(++i >= oc.length){
  i = 0;
  ++variation;
  }
  }
 
  // Fill the options with the generated colors.
  for(i = 0, j = 0; i < ln; ++i){
  s = this.series[i];
 
  // Assign the color.
  if (!s.color){
  s.color = colors[j++].toString();
  }else if(_.isNumber(s.color)){
  s.color = colors[s.color].toString();
  }
 
  // Every series needs an axis
  if (!s.xaxis) s.xaxis = this.axes.x;
  if (s.xaxis == 1) s.xaxis = this.axes.x;
  else if (s.xaxis == 2) s.xaxis = this.axes.x2;
 
  if (!s.yaxis) s.yaxis = this.axes.y;
  if (s.yaxis == 1) s.yaxis = this.axes.y;
  else if (s.yaxis == 2) s.yaxis = this.axes.y2;
 
  // Apply missing options to the series.
  for (var t in flotr.graphTypes){
  s[t] = _.extend(_.clone(this.options[t]), s[t]);
  }
  s.mouse = _.extend(_.clone(this.options.mouse), s.mouse);
 
  if (_.isUndefined(s.shadowSize)) s.shadowSize = this.options.shadowSize;
  }
  },
 
  _setEl: function(el) {
  if (!el) throw 'The target container doesn\'t exist';
  else if (el.graph instanceof Graph) el.graph.destroy();
  else if (!el.clientWidth) throw 'The target container must be visible';
 
  el.graph = this;
  this.el = el;
  }
  };
 
  Flotr.Graph = Graph;
 
  })();
 
  /**
  * Flotr Series Library
  */
 
  (function () {
 
  var
  _ = Flotr._;
 
  function Series (o) {
  _.extend(this, o);
  }
 
  Series.prototype = {
 
  getRange: function () {
 
  var
  data = this.data,
  length = data.length,
  xmin = Number.MAX_VALUE,
  ymin = Number.MAX_VALUE,
  xmax = -Number.MAX_VALUE,
  ymax = -Number.MAX_VALUE,
  xused = false,
  yused = false,
  x, y, i;
 
  if (length < 0 || this.hide) return false;
 
  for (i = 0; i < length; i++) {
  x = data[i][0];
  y = data[i][1];
  if (x !== null) {
  if (x < xmin) { xmin = x; xused = true; }
  if (x > xmax) { xmax = x; xused = true; }
  }
  if (y !== null) {
  if (y < ymin) { ymin = y; yused = true; }
  if (y > ymax) { ymax = y; yused = true; }
  }
  }
 
  return {
  xmin : xmin,
  xmax : xmax,
  ymin : ymin,
  ymax : ymax,
  xused : xused,
  yused : yused
  };
  }
  };
 
  _.extend(Series, {
  /**
  * Collects dataseries from input and parses the series into the right format. It returns an Array
  * of Objects each having at least the 'data' key set.
  * @param {Array, Object} data - Object or array of dataseries
  * @return {Array} Array of Objects parsed into the right format ({(...,) data: [[x1,y1], [x2,y2], ...] (, ...)})
  */
  getSeries: function(data){
  return _.map(data, function(s){
  var series;
  if (s.data) {
  series = new Series();
  _.extend(series, s);
  } else {
  series = new Series({data:s});
  }
  return series;
  });
  }
  });
 
  Flotr.Series = Series;
 
  })();
 
  /**
  * Text Utilities
  */
  (function () {
 
  var
  F = Flotr,
  D = F.DOM,
  _ = F._,
 
  Text = function (o) {
  this.o = o;
  };
 
  Text.prototype = {
 
  dimensions : function (text, canvasStyle, htmlStyle, className) {
 
  if (!text) return { width : 0, height : 0 };
 
  return (this.o.html) ?
  this.html(text, this.o.element, htmlStyle, className) :
  this.canvas(text, canvasStyle);
  },
 
  canvas : function (text, style) {
 
  if (!this.o.textEnabled) return;
  style = style || {};
 
  var
  metrics = this.measureText(text, style),
  width = metrics.width,
  height = style.size || F.defaultOptions.fontSize,
  angle = style.angle || 0,
  cosAngle = Math.cos(angle),
  sinAngle = Math.sin(angle),
  widthPadding = 2,
  heightPadding = 6,
  bounds;
 
  bounds = {
  width: Math.abs(cosAngle * width) + Math.abs(sinAngle * height) + widthPadding,
  height: Math.abs(sinAngle * width) + Math.abs(cosAngle * height) + heightPadding
  };
 
  return bounds;
  },
 
  html : function (text, element, style, className) {
 
  var div = D.create('div');
 
  D.setStyles(div, { 'position' : 'absolute', 'top' : '-10000px' });
  D.insert(div, '<div style="'+style+'" class="'+className+' flotr-dummy-div">' + text + '</div>');
  D.insert(this.o.element, div);
 
  return D.size(div);
  },
 
  measureText : function (text, style) {
 
  var
  context = this.o.ctx,
  metrics;
 
  if (!context.fillText || (F.isIphone && context.measure)) {
  return { width : context.measure(text, style)};
  }
 
  style = _.extend({
  size: F.defaultOptions.fontSize,
  weight: 1,
  angle: 0
  }, style);
 
  context.save();
  context.font = (style.weight > 1 ? "bold " : "") + (style.size*1.3) + "px sans-serif";
  metrics = context.measureText(text);
  context.restore();
 
  return metrics;
  }
  };
 
  Flotr.Text = Text;
 
  })();
 
 
  return Flotr;
 
  }));
  (function (root, factory) {
  if (typeof define === 'function' && define.amd) {
  // AMD. Register as an anonymous module.
  define(['bean', 'underscore'], function (bean, _) {
  // Also create a global in case some scripts
  // that are loaded still are looking for
  // a global even when an AMD loader is in use.
  return (root.Flotr = factory(bean, _));
  });
  } else {
  // Browser globals
  root.Flotr = factory(root.bean, root._);
  }
  }(this, function (bean, _) {
 
 
  (function () {
 
  var D = Flotr.DOM;
 
  Flotr.addPlugin('crosshair', {
  options: {
  mode: null, // => one of null, 'x', 'y' or 'xy'
  color: '#FF0000', // => crosshair color
  hideCursor: true // => hide the cursor when the crosshair is shown
  },
  callbacks: {
  'flotr:mousemove': function(e, pos) {
  if (this.options.crosshair.mode) {
  this.crosshair.clearCrosshair();
  this.crosshair.drawCrosshair(pos);
  }
  }
  },
  /**
  * Draws the selection box.
  */
  drawCrosshair: function(pos) {
  var octx = this.octx,
  options = this.options.crosshair,
  plotOffset = this.plotOffset,
  x = plotOffset.left + Math.round(pos.relX) + 0.5,
  y = plotOffset.top + Math.round(pos.relY) + 0.5;
 
  if (pos.relX < 0 || pos.relY < 0 || pos.relX > this.plotWidth || pos.relY > this.plotHeight) {
  this.el.style.cursor = null;
  D.removeClass(this.el, 'flotr-crosshair');
  return;
  }
 
  if (options.hideCursor) {
  this.el.style.cursor = 'none';
  D.addClass(this.el, 'flotr-crosshair');
  }
 
  octx.save();
  octx.strokeStyle = options.color;
  octx.lineWidth = 1;
  octx.beginPath();
 
  if (options.mode.indexOf('x') != -1) {
  octx.moveTo(x, plotOffset.top);
  octx.lineTo(x, plotOffset.top + this.plotHeight);
  }
 
  if (options.mode.indexOf('y') != -1) {
  octx.moveTo(plotOffset.left, y);
  octx.lineTo(plotOffset.left + this.plotWidth, y);
  }
 
  octx.stroke();
  octx.restore();
  },
  /**
  * Removes the selection box from the overlay canvas.
  */
  clearCrosshair: function() {
 
  var
  plotOffset = this.plotOffset,
  position = this.lastMousePos,
  context = this.octx;
 
  if (position) {
  context.clearRect(
  Math.round(position.relX) + plotOffset.left,
  plotOffset.top,
  1,
  this.plotHeight + 1
  );
  context.clearRect(
  plotOffset.left,
  Math.round(position.relY) + plotOffset.top,
  this.plotWidth + 1,
  1
  );
  }
  }
  });
  })();
 
  (function() {
 
  var
  D = Flotr.DOM,
  _ = Flotr._;
 
  function getImage (type, canvas, width, height) {
 
  // TODO add scaling for w / h
  var
  mime = 'image/'+type,
  data = canvas.toDataURL(mime),
  image = new Image();
  image.src = data;
  return image;
  }
 
  Flotr.addPlugin('download', {
 
  saveImage: function (type, width, height, replaceCanvas) {
  var image = null;
  if (Flotr.isIE && Flotr.isIE < 9) {
  image = '<html><body>'+this.canvas.firstChild.innerHTML+'</body></html>';
  return window.open().document.write(image);
  }
 
  if (type !== 'jpeg' && type !== 'png') return;
 
  image = getImage(type, this.canvas, width, height);
 
  if (_.isElement(image) && replaceCanvas) {
  this.download.restoreCanvas();
  D.hide(this.canvas);
  D.hide(this.overlay);
  D.setStyles({position: 'absolute'});
  D.insert(this.el, image);
  this.saveImageElement = image;
  } else {
  return window.open(image.src);
  }
  },
 
  restoreCanvas: function() {
  D.show(this.canvas);
  D.show(this.overlay);
  if (this.saveImageElement) this.el.removeChild(this.saveImageElement);
  this.saveImageElement = null;
  }
  });
 
  })();
 
  (function () {
 
  var E = Flotr.EventAdapter,
  _ = Flotr._;
 
  Flotr.addPlugin('graphGrid', {
 
  callbacks: {
  'flotr:beforedraw' : function () {
  this.graphGrid.drawGrid();
  },
  'flotr:afterdraw' : function () {
  this.graphGrid.drawOutline();
  }
  },
 
  drawGrid: function(){
 
  var
  ctx = this.ctx,
  options = this.options,
  grid = options.grid,
  verticalLines = grid.verticalLines,
  horizontalLines = grid.horizontalLines,
  minorVerticalLines = grid.minorVerticalLines,
  minorHorizontalLines = grid.minorHorizontalLines,
  plotHeight = this.plotHeight,
  plotWidth = this.plotWidth,
  a, v, i, j;
 
  if(verticalLines || minorVerticalLines ||
  horizontalLines || minorHorizontalLines){
  E.fire(this.el, 'flotr:beforegrid', [this.axes.x, this.axes.y, options, this]);
  }
  ctx.save();
  ctx.lineWidth = 1;
  ctx.strokeStyle = grid.tickColor;
 
  function circularHorizontalTicks (ticks) {
  for(i = 0; i < ticks.length; ++i){
  var ratio = ticks[i].v / a.max;
  for(j = 0; j <= sides; ++j){
  ctx[j === 0 ? 'moveTo' : 'lineTo'](
  Math.cos(j*coeff+angle)*radius*ratio,
  Math.sin(j*coeff+angle)*radius*ratio
  );
  }
  }
  }
  function drawGridLines (ticks, callback) {
  _.each(_.pluck(ticks, 'v'), function(v){
  // Don't show lines on upper and lower bounds.
  if ((v <= a.min || v >= a.max) ||
  (v == a.min || v == a.max) && grid.outlineWidth)
  return;
  callback(Math.floor(a.d2p(v)) + ctx.lineWidth/2);
  });
  }
  function drawVerticalLines (x) {
  ctx.moveTo(x, 0);
  ctx.lineTo(x, plotHeight);
  }
  function drawHorizontalLines (y) {
  ctx.moveTo(0, y);
  ctx.lineTo(plotWidth, y);
  }
 
  if (grid.circular) {
  ctx.translate(this.plotOffset.left+plotWidth/2, this.plotOffset.top+plotHeight/2);
  var radius = Math.min(plotHeight, plotWidth)*options.radar.radiusRatio/2,
  sides = this.axes.x.ticks.length,
  coeff = 2*(Math.PI/sides),
  angle = -Math.PI/2;
 
  // Draw grid lines in vertical direction.
  ctx.beginPath();
 
  a = this.axes.y;
 
  if(horizontalLines){
  circularHorizontalTicks(a.ticks);
  }
  if(minorHorizontalLines){
  circularHorizontalTicks(a.minorTicks);
  }
 
  if(verticalLines){
  _.times(sides, function(i){
  ctx.moveTo(0, 0);
  ctx.lineTo(Math.cos(i*coeff+angle)*radius, Math.sin(i*coeff+angle)*radius);
  });
  }
  ctx.stroke();
  }
  else {
  ctx.translate(this.plotOffset.left, this.plotOffset.top);
 
  // Draw grid background, if present in options.
  if(grid.backgroundColor){
  ctx.fillStyle = this.processColor(grid.backgroundColor, {x1: 0, y1: 0, x2: plotWidth, y2: plotHeight});
  ctx.fillRect(0, 0, plotWidth, plotHeight);
  }
 
  ctx.beginPath();
 
  a = this.axes.x;
  if (verticalLines) drawGridLines(a.ticks, drawVerticalLines);
  if (minorVerticalLines) drawGridLines(a.minorTicks, drawVerticalLines);
 
  a = this.axes.y;
  if (horizontalLines) drawGridLines(a.ticks, drawHorizontalLines);
  if (minorHorizontalLines) drawGridLines(a.minorTicks, drawHorizontalLines);
 
  ctx.stroke();
  }
 
  ctx.restore();
  if(verticalLines || minorVerticalLines ||
  horizontalLines || minorHorizontalLines){
  E.fire(this.el, 'flotr:aftergrid', [this.axes.x, this.axes.y, options, this]);
  }
  },
 
  drawOutline: function(){
  var
  that = this,
  options = that.options,
  grid = options.grid,
  outline = grid.outline,
  ctx = that.ctx,
  backgroundImage = grid.backgroundImage,
  plotOffset = that.plotOffset,
  leftOffset = plotOffset.left,
  topOffset = plotOffset.top,
  plotWidth = that.plotWidth,
  plotHeight = that.plotHeight,
  v, img, src, left, top, globalAlpha;
 
  if (!grid.outlineWidth) return;
 
  ctx.save();
 
  if (grid.circular) {
  ctx.translate(leftOffset + plotWidth / 2, topOffset + plotHeight / 2);
  var radius = Math.min(plotHeight, plotWidth) * options.radar.radiusRatio / 2,
  sides = this.axes.x.ticks.length,
  coeff = 2*(Math.PI/sides),
  angle = -Math.PI/2;
 
  // Draw axis/grid border.
  ctx.beginPath();
  ctx.lineWidth = grid.outlineWidth;
  ctx.strokeStyle = grid.color;
  ctx.lineJoin = 'round';
 
  for(i = 0; i <= sides; ++i){
  ctx[i === 0 ? 'moveTo' : 'lineTo'](Math.cos(i*coeff+angle)*radius, Math.sin(i*coeff+angle)*radius);
  }
  //ctx.arc(0, 0, radius, 0, Math.PI*2, true);
 
  ctx.stroke();
  }
  else {
  ctx.translate(leftOffset, topOffset);
 
  // Draw axis/grid border.
  var lw = grid.outlineWidth,
  orig = 0.5-lw+((lw+1)%2/2),
  lineTo = 'lineTo',
  moveTo = 'moveTo';
  ctx.lineWidth = lw;
  ctx.strokeStyle = grid.color;
  ctx.lineJoin = 'miter';
  ctx.beginPath();
  ctx.moveTo(orig, orig);
  plotWidth = plotWidth - (lw / 2) % 1;
  plotHeight = plotHeight + lw / 2;
  ctx[outline.indexOf('n') !== -1 ? lineTo : moveTo](plotWidth, orig);
  ctx[outline.indexOf('e') !== -1 ? lineTo : moveTo](plotWidth, plotHeight);
  ctx[outline.indexOf('s') !== -1 ? lineTo : moveTo](orig, plotHeight);
  ctx[outline.indexOf('w') !== -1 ? lineTo : moveTo](orig, orig);
  ctx.stroke();
  ctx.closePath();
  }
 
  ctx.restore();
 
  if (backgroundImage) {
 
  src = backgroundImage.src || backgroundImage;
  left = (parseInt(backgroundImage.left, 10) || 0) + plotOffset.left;
  top = (parseInt(backgroundImage.top, 10) || 0) + plotOffset.top;
  img = new Image();
 
  img.onload = function() {
  ctx.save();
  if (backgroundImage.alpha) ctx.globalAlpha = backgroundImage.alpha;
  ctx.globalCompositeOperation = 'destination-over';
  ctx.drawImage(img, 0, 0, img.width, img.height, left, top, plotWidth, plotHeight);
  ctx.restore();
  };
 
  img.src = src;
  }
  }
  });
 
  })();
 
  /**
  * Selection Handles Plugin
  *
  * Depends upon options.selection.mode
  *
  * Options
  * show - True enables the handles plugin.
  * drag - Left and Right drag handles
  * scroll - Scrolling handle
  */
  (function () {
 
  var D = Flotr.DOM;
 
  Flotr.addPlugin('handles', {
 
  options: {
  show: false,
  drag: true,
  scroll: true
  },
 
  callbacks: {
  'flotr:afterinit': init,
  'flotr:select': handleSelect,
  'flotr:mousedown': reset,
  'flotr:mousemove': mouseMoveHandler
  }
 
  });
 
 
  function init() {
 
  var
  options = this.options,
  handles = this.handles,
  el = this.el,
  scroll, left, right, container;
 
  if (!options.selection.mode || !options.handles.show || 'ontouchstart' in el) return;
 
  handles.initialized = true;
 
  container = D.node('<div class="flotr-handles"></div>');
  options = options.handles;
 
  // Drag handles
  if (options.drag) {
  right = D.node('<div class="flotr-handles-handle flotr-handles-drag flotr-handles-right"></div>');
  left = D.node('<div class="flotr-handles-handle flotr-handles-drag flotr-handles-left"></div>');
  D.insert(container, right);
  D.insert(container, left);
  D.hide(left);
  D.hide(right);
  handles.left = left;
  handles.right = right;
 
  this.observe(left, 'mousedown', function () {
  handles.moveHandler = leftMoveHandler;
  });
  this.observe(right, 'mousedown', function () {
  handles.moveHandler = rightMoveHandler;
  });
  }
 
  // Scroll handle
  if (options.scroll) {
  scroll = D.node('<div class="flotr-handles-handle flotr-handles-scroll"></div>');
  D.insert(container, scroll);
  D.hide(scroll);
  handles.scroll = scroll;
  this.observe(scroll, 'mousedown', function () {
  handles.moveHandler = scrollMoveHandler;
  });
  }
 
  this.observe(document, 'mouseup', function() {
  handles.moveHandler = null;
  });
 
  D.insert(el, container);
  }
 
 
  function handleSelect(selection) {
 
  if (!this.handles.initialized) return;
 
  var
  handles = this.handles,
  options = this.options.handles,
  left = handles.left,
  right = handles.right,
  scroll = handles.scroll;
 
  if (options) {
  if (options.drag) {
  positionDrag(this, left, selection.x1);
  positionDrag(this, right, selection.x2);
  }
 
  if (options.scroll) {
  positionScroll(
  this,
  scroll,
  selection.x1,
  selection.x2
  );
  }
  }
  }
 
  function positionDrag(graph, handle, x) {
 
  D.show(handle);
 
  var size = D.size(handle),
  l = Math.round(graph.axes.x.d2p(x) - size.width / 2),
  t = (graph.plotHeight - size.height) / 2;
 
  D.setStyles(handle, {
  'left' : l+'px',
  'top' : t+'px'
  });
  }
 
  function positionScroll(graph, handle, x1, x2) {
 
  D.show(handle);
 
  var size = D.size(handle),
  l = Math.round(graph.axes.x.d2p(x1)),
  t = (graph.plotHeight) - size.height / 2,
  w = (graph.axes.x.d2p(x2) - graph.axes.x.d2p(x1));
 
  D.setStyles(handle, {
  'left' : l+'px',
  'top' : t+'px',
  'width': w+'px'
  });
  }
 
  function reset() {
 
  if (!this.handles.initialized) return;
 
  var
  handles = this.handles;
  if (handles) {
  D.hide(handles.left);
  D.hide(handles.right);
  D.hide(handles.scroll);
  }
  }
 
  function mouseMoveHandler(e, position) {
 
  if (!this.handles.initialized) return;
  if (!this.handles.moveHandler) return;
 
  var
  delta = position.x - this.lastMousePos.x,
  selection = this.selection.selection,
  area = this.selection.getArea(),
  handles = this.handles;
 
  handles.moveHandler(area, delta);
  checkSwap(area, handles);
 
  this.selection.setSelection(area);
  }
 
  function checkSwap (area, handles) {
  var moveHandler = handles.moveHandler;
  if (area.x1 > area.x2) {
  if (moveHandler == leftMoveHandler) {
  moveHandler = rightMoveHandler;
  } else if (moveHandler == rightMoveHandler) {
  moveHandler = leftMoveHandler;
  }
  handles.moveHandler = moveHandler;
  }
  }
 
  function leftMoveHandler(area, delta) {
  area.x1 += delta;
  }
 
  function rightMoveHandler(area, delta) {
  area.x2 += delta;
  }
 
  function scrollMoveHandler(area, delta) {
  area.x1 += delta;
  area.x2 += delta;
  }
 
  })();
 
  (function () {
 
  var
  D = Flotr.DOM,
  _ = Flotr._,
  flotr = Flotr,
  S_MOUSETRACK = 'opacity:0.7;background-color:#000;color:#fff;display:none;position:absolute;padding:2px 8px;-moz-border-radius:4px;border-radius:4px;white-space:nowrap;';
 
  Flotr.addPlugin('hit', {
  callbacks: {
  'flotr:mousemove': function(e, pos) {
  this.hit.track(pos);
  },
  'flotr:click': function(pos) {
  var
  hit = this.hit.track(pos);
  _.defaults(pos, hit);
  },
  'flotr:mouseout': function() {
  this.hit.clearHit();
  },
  'flotr:destroy': function() {
  this.mouseTrack = null;
  }
  },
  track : function (pos) {
  if (this.options.mouse.track || _.any(this.series, function(s){return s.mouse && s.mouse.track;})) {
  return this.hit.hit(pos);
  }
  },
  /**
  * Try a method on a graph type. If the method exists, execute it.
  * @param {Object} series
  * @param {String} method Method name.
  * @param {Array} args Arguments applied to method.
  * @return executed successfully or failed.
  */
  executeOnType: function(s, method, args){
  var
  success = false,
  options;
 
  if (!_.isArray(s)) s = [s];
 
  function e(s, index) {
  _.each(_.keys(flotr.graphTypes), function (type) {
  if (s[type] && s[type].show && this[type][method]) {
  options = this.getOptions(s, type);
 
  options.fill = !!s.mouse.fillColor;
  options.fillStyle = this.processColor(s.mouse.fillColor || '#ffffff', {opacity: s.mouse.fillOpacity});
  options.color = s.mouse.lineColor;
  options.context = this.octx;
  options.index = index;
 
  if (args) options.args = args;
  this[type][method].call(this[type], options);
  success = true;
  }
  }, this);
  }
  _.each(s, e, this);
 
  return success;
  },
  /**
  * Updates the mouse tracking point on the overlay.
  */
  drawHit: function(n){
  var octx = this.octx,
  s = n.series;
 
  if (s.mouse.lineColor) {
  octx.save();
  octx.lineWidth = (s.points ? s.points.lineWidth : 1);
  octx.strokeStyle = s.mouse.lineColor;
  octx.fillStyle = this.processColor(s.mouse.fillColor || '#ffffff', {opacity: s.mouse.fillOpacity});
  octx.translate(this.plotOffset.left, this.plotOffset.top);
 
  if (!this.hit.executeOnType(s, 'drawHit', n)) {
  var
  xa = n.xaxis,
  ya = n.yaxis;
 
  octx.beginPath();
  // TODO fix this (points) should move to general testable graph mixin
  octx.arc(xa.d2p(n.x), ya.d2p(n.y), s.points.hitRadius || s.points.radius || s.mouse.radius, 0, 2 * Math.PI, true);
  octx.fill();
  octx.stroke();
  octx.closePath();
  }
  octx.restore();
  this.clip(octx);
  }
  this.prevHit = n;
  },
  /**
  * Removes the mouse tracking point from the overlay.
  */
  clearHit: function(){
  var prev = this.prevHit,
  octx = this.octx,
  plotOffset = this.plotOffset;
  octx.save();
  octx.translate(plotOffset.left, plotOffset.top);
  if (prev) {
  if (!this.hit.executeOnType(prev.series, 'clearHit', this.prevHit)) {
  // TODO fix this (points) should move to general testable graph mixin
  var
  s = prev.series,
  lw = (s.points ? s.points.lineWidth : 1);
  offset = (s.points.hitRadius || s.points.radius || s.mouse.radius) + lw;
  octx.clearRect(
  prev.xaxis.d2p(prev.x) - offset,
  prev.yaxis.d2p(prev.y) - offset,
  offset*2,
  offset*2
  );
  }
  D.hide(this.mouseTrack);
  this.prevHit = null;
  }
  octx.restore();
  },
  /**
  * Retrieves the nearest data point from the mouse cursor. If it's within
  * a certain range, draw a point on the overlay canvas and display the x and y
  * value of the data.
  * @param {Object} mouse - Object that holds the relative x and y coordinates of the cursor.
  */
  hit : function (mouse) {
 
  var
  options = this.options,
  prevHit = this.prevHit,
  closest, sensibility, dataIndex, seriesIndex, series, value, xaxis, yaxis, n;
 
  if (this.series.length === 0) return;
 
  // Nearest data element.
  // dist, x, y, relX, relY, absX, absY, sAngle, eAngle, fraction, mouse,
  // xaxis, yaxis, series, index, seriesIndex
  n = {
  relX : mouse.relX,
  relY : mouse.relY,
  absX : mouse.absX,
  absY : mouse.absY
  };
 
  if (options.mouse.trackY &&
  !options.mouse.trackAll &&
  this.hit.executeOnType(this.series, 'hit', [mouse, n]) &&
  !_.isUndefined(n.seriesIndex))
  {
  series = this.series[n.seriesIndex];
  n.series = series;
  n.mouse = series.mouse;
  n.xaxis = series.xaxis;
  n.yaxis = series.yaxis;
  } else {
 
  closest = this.hit.closest(mouse);
 
  if (closest) {
 
  closest = options.mouse.trackY ? closest.point : closest.x;
  seriesIndex = closest.seriesIndex;
  series = this.series[seriesIndex];
  xaxis = series.xaxis;
  yaxis = series.yaxis;
  sensibility = 2 * series.mouse.sensibility;
 
  if
  (options.mouse.trackAll ||
  (closest.distanceX < sensibility / xaxis.scale &&
  (!options.mouse.trackY || closest.distanceY < sensibility / yaxis.scale)))
  {
  n.series = series;
  n.xaxis = series.xaxis;
  n.yaxis = series.yaxis;
  n.mouse = series.mouse;
  n.x = closest.x;
  n.y = closest.y;
  n.dist = closest.distance;
  n.index = closest.dataIndex;
  n.seriesIndex = seriesIndex;
  }
  }
  }
 
  if (!prevHit || (prevHit.index !== n.index || prevHit.seriesIndex !== n.seriesIndex)) {
  this.hit.clearHit();
  if (n.series && n.mouse && n.mouse.track) {
  this.hit.drawMouseTrack(n);
  this.hit.drawHit(n);
  Flotr.EventAdapter.fire(this.el, 'flotr:hit', [n, this]);
  }
  }
 
  return n;
  },
 
  closest : function (mouse) {
 
  var
  series = this.series,
  options = this.options,
  relX = mouse.relX,
  relY = mouse.relY,
  compare = Number.MAX_VALUE,
  compareX = Number.MAX_VALUE,
  closest = {},
  closestX = {},
  check = false,
  serie, data,
  distance, distanceX, distanceY,
  mouseX, mouseY,
  x, y, i, j;
 
  function setClosest (o) {
  o.distance = distance;
  o.distanceX = distanceX;
  o.distanceY = distanceY;
  o.seriesIndex = i;
  o.dataIndex = j;
  o.x = x;
  o.y = y;
  check = true;
  }
 
  for (i = 0; i < series.length; i++) {
 
  serie = series[i];
  data = serie.data;
  mouseX = serie.xaxis.p2d(relX);
  mouseY = serie.yaxis.p2d(relY);
 
  for (j = data.length; j--;) {
 
  x = data[j][0];
  y = data[j][1];
 
  if (x === null || y === null) continue;
 
  // don't check if the point isn't visible in the current range
  if (x < serie.xaxis.min || x > serie.xaxis.max) continue;
 
  distanceX = Math.abs(x - mouseX);
  distanceY = Math.abs(y - mouseY);
 
  // Skip square root for speed
  distance = distanceX * distanceX + distanceY * distanceY;
 
  if (distance < compare) {
  compare = distance;
  setClosest(closest);
  }
 
  if (distanceX < compareX) {
  compareX = distanceX;
  setClosest(closestX);
  }
  }
  }
 
  return check ? {
  point : closest,
  x : closestX
  } : false;
  },
 
  drawMouseTrack : function (n) {
 
  var
  pos = '',
  s = n.series,
  p = n.mouse.position,
  m = n.mouse.margin,
  x = n.x,
  y = n.y,
  elStyle = S_MOUSETRACK,
  mouseTrack = this.mouseTrack,
  plotOffset = this.plotOffset,
  left = plotOffset.left,
  right = plotOffset.right,
  bottom = plotOffset.bottom,
  top = plotOffset.top,
  decimals = n.mouse.trackDecimals,
  options = this.options;
 
  // Create
  if (!mouseTrack) {
  mouseTrack = D.node('<div class="flotr-mouse-value"></div>');
  this.mouseTrack = mouseTrack;
  D.insert(this.el, mouseTrack);
  }
 
  if (!n.mouse.relative) { // absolute to the canvas
 
  if (p.charAt(0) == 'n') pos += 'top:' + (m + top) + 'px;bottom:auto;';
  else if (p.charAt(0) == 's') pos += 'bottom:' + (m + bottom) + 'px;top:auto;';
  if (p.charAt(1) == 'e') pos += 'right:' + (m + right) + 'px;left:auto;';
  else if (p.charAt(1) == 'w') pos += 'left:' + (m + left) + 'px;right:auto;';
 
  // Pie
  } else if (s.pie && s.pie.show) {
  var center = {
  x: (this.plotWidth)/2,
  y: (this.plotHeight)/2
  },
  radius = (Math.min(this.canvasWidth, this.canvasHeight) * s.pie.sizeRatio) / 2,
  bisection = n.sAngle<n.eAngle ? (n.sAngle + n.eAngle) / 2: (n.sAngle + n.eAngle + 2* Math.PI) / 2;
 
  pos += 'bottom:' + (m - top - center.y - Math.sin(bisection) * radius/2 + this.canvasHeight) + 'px;top:auto;';
  pos += 'left:' + (m + left + center.x + Math.cos(bisection) * radius/2) + 'px;right:auto;';
 
  // Default
  } else {
  if (/n/.test(p)) pos += 'bottom:' + (m - top - n.yaxis.d2p(n.y) + this.canvasHeight) + 'px;top:auto;';
  else pos += 'top:' + (m + top + n.yaxis.d2p(n.y)) + 'px;bottom:auto;';
  if (/w/.test(p)) pos += 'right:' + (m - left - n.xaxis.d2p(n.x) + this.canvasWidth) + 'px;left:auto;';
  else pos += 'left:' + (m + left + n.xaxis.d2p(n.x)) + 'px;right:auto;';
  }
 
  elStyle += pos;
  mouseTrack.style.cssText = elStyle;
  if (!decimals || decimals < 0) decimals = 0;
 
  if (x && x.toFixed) x = x.toFixed(decimals);
 
  if (y && y.toFixed) y = y.toFixed(decimals);
 
  mouseTrack.innerHTML = n.mouse.trackFormatter({
  x: x ,
  y: y,
  series: n.series,
  index: n.index,
  nearest: n,
  fraction: n.fraction
  });
 
  D.show(mouseTrack);
 
  if (n.mouse.relative) {
  if (!/[ew]/.test(p)) {
  // Center Horizontally
  mouseTrack.style.left =
  (left + n.xaxis.d2p(n.x) - D.size(mouseTrack).width / 2) + 'px';
  } else
  if (!/[ns]/.test(p)) {
  // Center Vertically
  mouseTrack.style.top =
  (top + n.yaxis.d2p(n.y) - D.size(mouseTrack).height / 2) + 'px';
  }
  }
  }
 
  });
  })();
 
  (function () {
 
  var D = Flotr.DOM;
 
  Flotr.addPlugin('labels', {
 
  callbacks : {
  'flotr:afterdraw' : function () {
  this.labels.draw();
  }
  },
 
  draw: function(){
  // Construct fixed width label boxes, which can be styled easily.
  var
  axis, tick, left, top, xBoxWidth,
  radius, sides, coeff, angle,
  div, i, html = '',
  noLabels = 0,
  options = this.options,
  ctx = this.ctx,
  a = this.axes,
  style = { size: options.fontSize };
 
  for (i = 0; i < a.x.ticks.length; ++i){
  if (a.x.ticks[i].label) { ++noLabels; }
  }
  xBoxWidth = this.plotWidth / noLabels;
 
  if (options.grid.circular) {
  ctx.save();
  ctx.translate(this.plotOffset.left + this.plotWidth / 2,
  this.plotOffset.top + this.plotHeight / 2);
 
  radius = this.plotHeight * options.radar.radiusRatio / 2 + options.fontSize;
  sides = this.axes.x.ticks.length;
  coeff = 2 * (Math.PI / sides);
  angle = -Math.PI / 2;
 
  drawLabelCircular(this, a.x, false);
  drawLabelCircular(this, a.x, true);
  drawLabelCircular(this, a.y, false);
  drawLabelCircular(this, a.y, true);
  ctx.restore();
  }
 
  if (!options.HtmlText && this.textEnabled) {
  drawLabelNoHtmlText(this, a.x, 'center', 'top');
  drawLabelNoHtmlText(this, a.x2, 'center', 'bottom');
  drawLabelNoHtmlText(this, a.y, 'right', 'middle');
  drawLabelNoHtmlText(this, a.y2, 'left', 'middle');
 
  } else if ((
  a.x.options.showLabels ||
  a.x2.options.showLabels ||
  a.y.options.showLabels ||
  a.y2.options.showLabels) &&
  !options.grid.circular
  ) {
 
  html = '';
 
  drawLabelHtml(this, a.x);
  drawLabelHtml(this, a.x2);
  drawLabelHtml(this, a.y);
  drawLabelHtml(this, a.y2);
 
  ctx.stroke();
  ctx.restore();
  div = D.create('div');
  D.setStyles(div, {
  fontSize: 'smaller',
  color: options.grid.color
  });
  div.className = 'flotr-labels';
  D.insert(this.el, div);
  D.insert(div, html);
  }
 
  function drawLabelCircular (graph, axis, minorTicks) {
  var
  ticks = minorTicks ? axis.minorTicks : axis.ticks,
  isX = axis.orientation === 1,
  isFirst = axis.n === 1,
  style, offset;
 
  style = {
  color : axis.options.color || options.grid.color,
  angle : Flotr.toRad(axis.options.labelsAngle),
  textBaseline : 'middle'
  };
 
  for (i = 0; i < ticks.length &&
  (minorTicks ? axis.options.showMinorLabels : axis.options.showLabels); ++i){
  tick = ticks[i];
  tick.label += '';
  if (!tick.label || !tick.label.length) { continue; }
 
  x = Math.cos(i * coeff + angle) * radius;
  y = Math.sin(i * coeff + angle) * radius;
 
  style.textAlign = isX ? (Math.abs(x) < 0.1 ? 'center' : (x < 0 ? 'right' : 'left')) : 'left';
 
  Flotr.drawText(
  ctx, tick.label,
  isX ? x : 3,
  isX ? y : -(axis.ticks[i].v / axis.max) * (radius - options.fontSize),
  style
  );
  }
  }
 
  function drawLabelNoHtmlText (graph, axis, textAlign, textBaseline) {
  var
  isX = axis.orientation === 1,
  isFirst = axis.n === 1,
  style, offset;
 
  style = {
  color : axis.options.color || options.grid.color,
  textAlign : textAlign,
  textBaseline : textBaseline,
  angle : Flotr.toRad(axis.options.labelsAngle)
  };
  style = Flotr.getBestTextAlign(style.angle, style);
 
  for (i = 0; i < axis.ticks.length && continueShowingLabels(axis); ++i) {
 
  tick = axis.ticks[i];
  if (!tick.label || !tick.label.length) { continue; }
 
  offset = axis.d2p(tick.v);
  if (offset < 0 ||
  offset > (isX ? graph.plotWidth : graph.plotHeight)) { continue; }
 
  Flotr.drawText(
  ctx, tick.label,
  leftOffset(graph, isX, isFirst, offset),
  topOffset(graph, isX, isFirst, offset),
  style
  );
 
  // Only draw on axis y2
  if (!isX && !isFirst) {
  ctx.save();
  ctx.strokeStyle = style.color;
  ctx.beginPath();
  ctx.moveTo(graph.plotOffset.left + graph.plotWidth - 8, graph.plotOffset.top + axis.d2p(tick.v));
  ctx.lineTo(graph.plotOffset.left + graph.plotWidth, graph.plotOffset.top + axis.d2p(tick.v));
  ctx.stroke();
  ctx.restore();
  }
  }
 
  function continueShowingLabels (axis) {
  return axis.options.showLabels && axis.used;
  }
  function leftOffset (graph, isX, isFirst, offset) {
  return graph.plotOffset.left +
  (isX ? offset :
  (isFirst ?
  -options.grid.labelMargin :
  options.grid.labelMargin + graph.plotWidth));
  }
  function topOffset (graph, isX, isFirst, offset) {
  return graph.plotOffset.top +
  (isX ? options.grid.labelMargin : offset) +
  ((isX && isFirst) ? graph.plotHeight : 0);
  }
  }
 
  function drawLabelHtml (graph, axis) {
  var
  isX = axis.orientation === 1,
  isFirst = axis.n === 1,
  name = '',
  left, style, top,
  offset = graph.plotOffset;
 
  if (!isX && !isFirst) {
  ctx.save();
  ctx.strokeStyle = axis.options.color || options.grid.color;
  ctx.beginPath();
  }
 
  if (axis.options.showLabels && (isFirst ? true : axis.used)) {
  for (i = 0; i < axis.ticks.length; ++i) {
  tick = axis.ticks[i];
  if (!tick.label || !tick.label.length ||
  ((isX ? offset.left : offset.top) + axis.d2p(tick.v) < 0) ||
  ((isX ? offset.left : offset.top) + axis.d2p(tick.v) > (isX ? graph.canvasWidth : graph.canvasHeight))) {
  continue;
  }
  top = offset.top +
  (isX ?
  ((isFirst ? 1 : -1 ) * (graph.plotHeight + options.grid.labelMargin)) :
  axis.d2p(tick.v) - axis.maxLabel.height / 2);
  left = isX ? (offset.left + axis.d2p(tick.v) - xBoxWidth / 2) : 0;
 
  name = '';
  if (i === 0) {
  name = ' first';
  } else if (i === axis.ticks.length - 1) {
  name = ' last';
  }
  name += isX ? ' flotr-grid-label-x' : ' flotr-grid-label-y';
 
  html += [
  '<div style="position:absolute; text-align:' + (isX ? 'center' : 'right') + '; ',
  'top:' + top + 'px; ',
  ((!isX && !isFirst) ? 'right:' : 'left:') + left + 'px; ',
  'width:' + (isX ? xBoxWidth : ((isFirst ? offset.left : offset.right) - options.grid.labelMargin)) + 'px; ',
  axis.options.color ? ('color:' + axis.options.color + '; ') : ' ',
  '" class="flotr-grid-label' + name + '">' + tick.label + '</div>'
  ].join(' ');
 
  if (!isX && !isFirst) {
  ctx.moveTo(offset.left + graph.plotWidth - 8, offset.top + axis.d2p(tick.v));
  ctx.lineTo(offset.left + graph.plotWidth, offset.top + axis.d2p(tick.v));
  }
  }
  }
  }
  }
 
  });
  })();
 
  (function () {
 
  var
  D = Flotr.DOM,
  _ = Flotr._;
 
  Flotr.addPlugin('legend', {
  options: {
  show: true, // => setting to true will show the legend, hide otherwise
  noColumns: 1, // => number of colums in legend table // @todo: doesn't work for HtmlText = false
  labelFormatter: function(v){return v;}, // => fn: string -> string
  labelBoxBorderColor: '#CCCCCC', // => border color for the little label boxes
  labelBoxWidth: 14,
  labelBoxHeight: 10,
  labelBoxMargin: 5,
  container: null, // => container (as jQuery object) to put legend in, null means default on top of graph
  position: 'nw', // => position of default legend container within plot
  margin: 5, // => distance from grid edge to default legend container within plot
  backgroundColor: '#F0F0F0', // => Legend background color.
  backgroundOpacity: 0.85// => set to 0 to avoid background, set to 1 for a solid background
  },
  callbacks: {
  'flotr:afterinit': function() {
  this.legend.insertLegend();
  },
  'flotr:destroy': function() {
  var markup = this.legend.markup;
  if (markup) {
  this.legend.markup = null;
  D.remove(markup);
  }
  }
  },
  /**
  * Adds a legend div to the canvas container or draws it on the canvas.
  */
  insertLegend: function(){
 
  if(!this.options.legend.show)
  return;
 
  var series = this.series,
  plotOffset = this.plotOffset,
  options = this.options,
  legend = options.legend,
  fragments = [],
  rowStarted = false,
  ctx = this.ctx,
  itemCount = _.filter(series, function(s) {return (s.label && !s.hide);}).length,
  p = legend.position,
  m = legend.margin,
  opacity = legend.backgroundOpacity,
  i, label, color;
 
  if (itemCount) {
 
  var lbw = legend.labelBoxWidth,
  lbh = legend.labelBoxHeight,
  lbm = legend.labelBoxMargin,
  offsetX = plotOffset.left + m,
  offsetY = plotOffset.top + m,
  labelMaxWidth = 0,
  style = {
  size: options.fontSize*1.1,
  color: options.grid.color
  };
 
  // We calculate the labels' max width
  for(i = series.length - 1; i > -1; --i){
  if(!series[i].label || series[i].hide) continue;
  label = legend.labelFormatter(series[i].label);
  labelMaxWidth = Math.max(labelMaxWidth, this._text.measureText(label, style).width);
  }
 
  var legendWidth = Math.round(lbw + lbm*3 + labelMaxWidth),
  legendHeight = Math.round(itemCount*(lbm+lbh) + lbm);
 
  // Default Opacity
  if (!opacity && opacity !== 0) {
  opacity = 0.1;
  }
 
  if (!options.HtmlText && this.textEnabled && !legend.container) {
 
  if(p.charAt(0) == 's') offsetY = plotOffset.top + this.plotHeight - (m + legendHeight);
  if(p.charAt(0) == 'c') offsetY = plotOffset.top + (this.plotHeight/2) - (m + (legendHeight/2));
  if(p.charAt(1) == 'e') offsetX = plotOffset.left + this.plotWidth - (m + legendWidth);
 
  // Legend box
  color = this.processColor(legend.backgroundColor, { opacity : opacity });
 
  ctx.fillStyle = color;
  ctx.fillRect(offsetX, offsetY, legendWidth, legendHeight);
  ctx.strokeStyle = legend.labelBoxBorderColor;
  ctx.strokeRect(Flotr.toPixel(offsetX), Flotr.toPixel(offsetY), legendWidth, legendHeight);
 
  // Legend labels
  var x = offsetX + lbm;
  var y = offsetY + lbm;
  for(i = 0; i < series.length; i++){
  if(!series[i].label || series[i].hide) continue;
  label = legend.labelFormatter(series[i].label);
 
  ctx.fillStyle = series[i].color;
  ctx.fillRect(x, y, lbw-1, lbh-1);
 
  ctx.strokeStyle = legend.labelBoxBorderColor;
  ctx.lineWidth = 1;
  ctx.strokeRect(Math.ceil(x)-1.5, Math.ceil(y)-1.5, lbw+2, lbh+2);
 
  // Legend text
  Flotr.drawText(ctx, label, x + lbw + lbm, y + lbh, style);
 
  y += lbh + lbm;
  }
  }
  else {
  for(i = 0; i < series.length; ++i){
  if(!series[i].label || series[i].hide) continue;
 
  if(i % legend.noColumns === 0){
  fragments.push(rowStarted ? '</tr><tr>' : '<tr>');
  rowStarted = true;
  }
 
  var s = series[i],
  boxWidth = legend.labelBoxWidth,
  boxHeight = legend.labelBoxHeight;
 
  label = legend.labelFormatter(s.label);
  color = 'background-color:' + ((s.bars && s.bars.show && s.bars.fillColor && s.bars.fill) ? s.bars.fillColor : s.color) + ';';
 
  fragments.push(
  '<td class="flotr-legend-color-box">',
  '<div style="border:1px solid ', legend.labelBoxBorderColor, ';padding:1px">',
  '<div style="width:', (boxWidth-1), 'px;height:', (boxHeight-1), 'px;border:1px solid ', series[i].color, '">', // Border
  '<div style="width:', boxWidth, 'px;height:', boxHeight, 'px;', color, '"></div>', // Background
  '</div>',
  '</div>',
  '</td>',
  '<td class="flotr-legend-label">', label, '</td>'
  );
  }
  if(rowStarted) fragments.push('</tr>');
 
  if(fragments.length > 0){
  var table = '<table style="font-size:smaller;color:' + options.grid.color + '">' + fragments.join('') + '</table>';
  if(legend.container){
  table = D.node(table);
  this.legend.markup = table;
  D.insert(legend.container, table);
  }
  else {
  var styles = {position: 'absolute', 'zIndex': '2', 'border' : '1px solid ' + legend.labelBoxBorderColor};
 
  if(p.charAt(0) == 'n') { styles.top = (m + plotOffset.top) + 'px'; styles.bottom = 'auto'; }
  else if(p.charAt(0) == 'c') { styles.top = (m + (this.plotHeight - legendHeight) / 2) + 'px'; styles.bottom = 'auto'; }
  else if(p.charAt(0) == 's') { styles.bottom = (m + plotOffset.bottom) + 'px'; styles.top = 'auto'; }
  if(p.charAt(1) == 'e') { styles.right = (m + plotOffset.right) + 'px'; styles.left = 'auto'; }
  else if(p.charAt(1) == 'w') { styles.left = (m + plotOffset.left) + 'px'; styles.right = 'auto'; }
 
  var div = D.create('div'), size;
  div.className = 'flotr-legend';
  D.setStyles(div, styles);
  D.insert(div, table);
  D.insert(this.el, div);
 
  if (!opacity) return;
 
  var c = legend.backgroundColor || options.grid.backgroundColor || '#ffffff';
 
  _.extend(styles, D.size(div), {
  'backgroundColor': c,
  'zIndex' : '',
  'border' : ''
  });
  styles.width += 'px';
  styles.height += 'px';
 
  // Put in the transparent background separately to avoid blended labels and
  div = D.create('div');
  div.className = 'flotr-legend-bg';
  D.setStyles(div, styles);
  D.opacity(div, opacity);
  D.insert(div, ' ');
  D.insert(this.el, div);
  }
  }
  }
  }
  }
  });
  })();
 
  /**
  * Selection Handles Plugin
  *
  *
  * Options
  * show - True enables the handles plugin.
  * drag - Left and Right drag handles
  * scroll - Scrolling handle
  */
  (function () {
 
  function isLeftClick (e, type) {
  return (e.which ? (e.which === 1) : (e.button === 0 || e.button === 1));
  }
 
  function boundX(x, graph) {
  return Math.min(Math.max(0, x), graph.plotWidth - 1);
  }
 
  function boundY(y, graph) {
  return Math.min(Math.max(0, y), graph.plotHeight);
  }
 
  var
  D = Flotr.DOM,
  E = Flotr.EventAdapter,
  _ = Flotr._;
 
 
  Flotr.addPlugin('selection', {
 
  options: {
  pinchOnly: null, // Only select on pinch
  mode: null, // => one of null, 'x', 'y' or 'xy'
  color: '#B6D9FF', // => selection box color
  fps: 20 // => frames-per-second
  },
 
  callbacks: {
  'flotr:mouseup' : function (event) {
 
  var
  options = this.options.selection,
  selection = this.selection,
  pointer = this.getEventPosition(event);
 
  if (!options || !options.mode) return;
  if (selection.interval) clearInterval(selection.interval);
 
  if (this.multitouches) {
  selection.updateSelection();
  } else
  if (!options.pinchOnly) {
  selection.setSelectionPos(selection.selection.second, pointer);
  }
  selection.clearSelection();
 
  if(selection.selecting && selection.selectionIsSane()){
  selection.drawSelection();
  selection.fireSelectEvent();
  this.ignoreClick = true;
  }
  },
  'flotr:mousedown' : function (event) {
 
  var
  options = this.options.selection,
  selection = this.selection,
  pointer = this.getEventPosition(event);
 
  if (!options || !options.mode) return;
  if (!options.mode || (!isLeftClick(event) && _.isUndefined(event.touches))) return;
  if (!options.pinchOnly) selection.setSelectionPos(selection.selection.first, pointer);
  if (selection.interval) clearInterval(selection.interval);
 
  this.lastMousePos.pageX = null;
  selection.selecting = false;
  selection.interval = setInterval(
  _.bind(selection.updateSelection, this),
  1000 / options.fps
  );
  },
  'flotr:destroy' : function (event) {
  clearInterval(this.selection.interval);
  }
  },
 
  // TODO This isn't used. Maybe it belongs in the draw area and fire select event methods?
  getArea: function() {
 
  var
  s = this.selection.selection,
  a = this.axes,
  first = s.first,
  second = s.second,
  x1, x2, y1, y2;
 
  x1 = a.x.p2d(s.first.x);
  x2 = a.x.p2d(s.second.x);
  y1 = a.y.p2d(s.first.y);
  y2 = a.y.p2d(s.second.y);
 
  return {
  x1 : Math.min(x1, x2),
  y1 : Math.min(y1, y2),
  x2 : Math.max(x1, x2),
  y2 : Math.max(y1, y2),
  xfirst : x1,
  xsecond : x2,
  yfirst : y1,
  ysecond : y2
  };
  },
 
  selection: {first: {x: -1, y: -1}, second: {x: -1, y: -1}},
  prevSelection: null,
  interval: null,
 
  /**
  * Fires the 'flotr:select' event when the user made a selection.
  */
  fireSelectEvent: function(name){
  var
  area = this.selection.getArea();
  name = name || 'select';
  area.selection = this.selection.selection;
  E.fire(this.el, 'flotr:'+name, [area, this]);
  },
 
  /**
  * Allows the user the manually select an area.
  * @param {Object} area - Object with coordinates to select.
  */
  setSelection: function(area, preventEvent){
  var options = this.options,
  xa = this.axes.x,
  ya = this.axes.y,
  vertScale = ya.scale,
  hozScale = xa.scale,
  selX = options.selection.mode.indexOf('x') != -1,
  selY = options.selection.mode.indexOf('y') != -1,
  s = this.selection.selection;
 
  this.selection.clearSelection();
 
  s.first.y = boundY((selX && !selY) ? 0 : (ya.max - area.y1) * vertScale, this);
  s.second.y = boundY((selX && !selY) ? this.plotHeight - 1: (ya.max - area.y2) * vertScale, this);
  s.first.x = boundX((selY && !selX) ? 0 : (area.x1 - xa.min) * hozScale, this);
  s.second.x = boundX((selY && !selX) ? this.plotWidth : (area.x2 - xa.min) * hozScale, this);
 
  this.selection.drawSelection();
  if (!preventEvent)
  this.selection.fireSelectEvent();
  },
 
  /**
  * Calculates the position of the selection.
  * @param {Object} pos - Position object.
  * @param {Event} event - Event object.
  */
  setSelectionPos: function(pos, pointer) {
  var mode = this.options.selection.mode,
  selection = this.selection.selection;
 
  if(mode.indexOf('x') == -1) {
  pos.x = (pos == selection.first) ? 0 : this.plotWidth;
  }else{
  pos.x = boundX(pointer.relX, this);
  }
 
  if (mode.indexOf('y') == -1) {
  pos.y = (pos == selection.first) ? 0 : this.plotHeight - 1;
  }else{
  pos.y = boundY(pointer.relY, this);
  }
  },
  /**
  * Draws the selection box.
  */
  drawSelection: function() {
 
  this.selection.fireSelectEvent('selecting');
 
  var s = this.selection.selection,
  octx = this.octx,
  options = this.options,
  plotOffset = this.plotOffset,
  prevSelection = this.selection.prevSelection;
 
  if (prevSelection &&
  s.first.x == prevSelection.first.x &&
  s.first.y == prevSelection.first.y &&
  s.second.x == prevSelection.second.x &&
  s.second.y == prevSelection.second.y) {
  return;
  }
 
  octx.save();
  octx.strokeStyle = this.processColor(options.selection.color, {opacity: 0.8});
  octx.lineWidth = 1;
  octx.lineJoin = 'miter';
  octx.fillStyle = this.processColor(options.selection.color, {opacity: 0.4});
 
  this.selection.prevSelection = {
  first: { x: s.first.x, y: s.first.y },
  second: { x: s.second.x, y: s.second.y }
  };
 
  var x = Math.min(s.first.x, s.second.x),
  y = Math.min(s.first.y, s.second.y),
  w = Math.abs(s.second.x - s.first.x),
  h = Math.abs(s.second.y - s.first.y);
 
  octx.fillRect(x + plotOffset.left+0.5, y + plotOffset.top+0.5, w, h);
  octx.strokeRect(x + plotOffset.left+0.5, y + plotOffset.top+0.5, w, h);
  octx.restore();
  },
 
  /**
  * Updates (draws) the selection box.
  */
  updateSelection: function(){
  if (!this.lastMousePos.pageX) return;
 
  this.selection.selecting = true;
 
  if (this.multitouches) {
  this.selection.setSelectionPos(this.selection.selection.first, this.getEventPosition(this.multitouches[0]));
  this.selection.setSelectionPos(this.selection.selection.second, this.getEventPosition(this.multitouches[1]));
  } else
  if (this.options.selection.pinchOnly) {
  return;
  } else {
  this.selection.setSelectionPos(this.selection.selection.second, this.lastMousePos);
  }
 
  this.selection.clearSelection();
 
  if(this.selection.selectionIsSane()) {
  this.selection.drawSelection();
  }
  },
 
  /**
  * Removes the selection box from the overlay canvas.
  */
  clearSelection: function() {
  if (!this.selection.prevSelection) return;
 
  var prevSelection = this.selection.prevSelection,
  lw = 1,
  plotOffset = this.plotOffset,
  x = Math.min(prevSelection.first.x, prevSelection.second.x),
  y = Math.min(prevSelection.first.y, prevSelection.second.y),
  w = Math.abs(prevSelection.second.x - prevSelection.first.x),
  h = Math.abs(prevSelection.second.y - prevSelection.first.y);
 
  this.octx.clearRect(x + plotOffset.left - lw + 0.5,
  y + plotOffset.top - lw,
  w + 2 * lw + 0.5,
  h + 2 * lw + 0.5);
 
  this.selection.prevSelection = null;
  },
  /**
  * Determines whether or not the selection is sane and should be drawn.
  * @return {Boolean} - True when sane, false otherwise.
  */
  selectionIsSane: function(){
  var s = this.selection.selection;
  return Math.abs(s.second.x - s.first.x) >= 5 ||
  Math.abs(s.second.y - s.first.y) >= 5;
  }
 
  });
 
  })();
 
  /** Spreadsheet **/
  (function() {
 
  function getRowLabel(value){
  if (this.options.spreadsheet.tickFormatter){
  //TODO maybe pass the xaxis formatter to the custom tick formatter as an opt-out?
  return this.options.spreadsheet.tickFormatter(value);
  }
  else {
  var t = _.find(this.axes.x.ticks, function(t){return t.v == value;});
  if (t) {
  return t.label;
  }
  return value;
  }
  }
 
  var
  D = Flotr.DOM,
  _ = Flotr._;
 
  Flotr.addPlugin('spreadsheet', {
  options: {
  show: false, // => show the data grid using two tabs
  tabGraphLabel: 'Graph',
  tabDataLabel: 'Data',
  toolbarDownload: 'Download CSV', // @todo: add better language support
  toolbarSelectAll: 'Select all',
  csvFileSeparator: ',',
  decimalSeparator: '.',
  tickFormatter: null,
  initialTab: 'graph'
  },
  /**
  * Builds the tabs in the DOM
  */
  callbacks: {
  'flotr:afterconstruct': function(){
  // @TODO necessary?
  //this.el.select('.flotr-tabs-group,.flotr-datagrid-container').invoke('remove');
 
  if (!this.options.spreadsheet.show) return;
 
  var ss = this.spreadsheet,
  container = D.node('<div class="flotr-tabs-group" style="position:absolute;left:0px;width:'+this.canvasWidth+'px"></div>'),
  graph = D.node('<div style="float:left" class="flotr-tab selected">'+this.options.spreadsheet.tabGraphLabel+'</div>'),
  data = D.node('<div style="float:left" class="flotr-tab">'+this.options.spreadsheet.tabDataLabel+'</div>'),
  offset;
 
  ss.tabsContainer = container;
  ss.tabs = { graph : graph, data : data };
 
  D.insert(container, graph);
  D.insert(container, data);
  D.insert(this.el, container);
 
  offset = D.size(data).height + 2;
  this.plotOffset.bottom += offset;
 
  D.setStyles(container, {top: this.canvasHeight-offset+'px'});
 
  this.
  observe(graph, 'click', function(){ss.showTab('graph');}).
  observe(data, 'click', function(){ss.showTab('data');});
  if (this.options.spreadsheet.initialTab !== 'graph'){
  ss.showTab(this.options.spreadsheet.initialTab);
  }
  }
  },
  /**
  * Builds a matrix of the data to make the correspondance between the x values and the y values :
  * X value => Y values from the axes
  * @return {Array} The data grid
  */
  loadDataGrid: function(){
  if (this.seriesData) return this.seriesData;
 
  var s = this.series,
  rows = {};
 
  /* The data grid is a 2 dimensions array. There is a row for each X value.
  * Each row contains the x value and the corresponding y value for each serie ('undefined' if there isn't one)
  **/
  _.each(s, function(serie, i){
  _.each(serie.data, function (v) {
  var x = v[0],
  y = v[1],
  r = rows[x];
  if (r) {
  r[i+1] = y;
  } else {
  var newRow = [];
  newRow[0] = x;
  newRow[i+1] = y;
  rows[x] = newRow;
  }
  });
  });
 
  // The data grid is sorted by x value
  this.seriesData = _.sortBy(rows, function(row, x){
  return parseInt(x, 10);
  });
  return this.seriesData;
  },
  /**
  * Constructs the data table for the spreadsheet
  * @todo make a spreadsheet manager (Flotr.Spreadsheet)
  * @return {Element} The resulting table element
  */
  constructDataGrid: function(){
  // If the data grid has already been built, nothing to do here
  if (this.spreadsheet.datagrid) return this.spreadsheet.datagrid;
 
  var s = this.series,
  datagrid = this.spreadsheet.loadDataGrid(),
  colgroup = ['<colgroup><col />'],
  buttonDownload, buttonSelect, t;
 
  // First row : series' labels
  var html = ['<table class="flotr-datagrid"><tr class="first-row">'];
  html.push('<th>&nbsp;</th>');
  _.each(s, function(serie,i){
  html.push('<th scope="col">'+(serie.label || String.fromCharCode(65+i))+'</th>');
  colgroup.push('<col />');
  });
  html.push('</tr>');
  // Data rows
  _.each(datagrid, function(row){
  html.push('<tr>');
  _.times(s.length+1, function(i){
  var tag = 'td',
  value = row[i],
  // TODO: do we really want to handle problems with floating point
  // precision here?
  content = (!_.isUndefined(value) ? Math.round(value*100000)/100000 : '');
  if (i === 0) {
  tag = 'th';
  var label = getRowLabel.call(this, content);
  if (label) content = label;
  }
 
  html.push('<'+tag+(tag=='th'?' scope="row"':'')+'>'+content+'</'+tag+'>');
  }, this);
  html.push('</tr>');
  }, this);
  colgroup.push('</colgroup>');
  t = D.node(html.join(''));
 
  /**
  * @TODO disabled this
  if (!Flotr.isIE || Flotr.isIE == 9) {
  function handleMouseout(){
  t.select('colgroup col.hover, th.hover').invoke('removeClassName', 'hover');
  }
  function handleMouseover(e){
  var td = e.element(),
  siblings = td.previousSiblings();
  t.select('th[scope=col]')[siblings.length-1].addClassName('hover');
  t.select('colgroup col')[siblings.length].addClassName('hover');
  }
  _.each(t.select('td'), function(td) {
  Flotr.EventAdapter.
  observe(td, 'mouseover', handleMouseover).
  observe(td, 'mouseout', handleMouseout);
  });
  }
  */
 
  buttonDownload = D.node(
  '<button type="button" class="flotr-datagrid-toolbar-button">' +
  this.options.spreadsheet.toolbarDownload +
  '</button>');
 
  buttonSelect = D.node(
  '<button type="button" class="flotr-datagrid-toolbar-button">' +
  this.options.spreadsheet.toolbarSelectAll+
  '</button>');
 
  this.
  observe(buttonDownload, 'click', _.bind(this.spreadsheet.downloadCSV, this)).
  observe(buttonSelect, 'click', _.bind(this.spreadsheet.selectAllData, this));
 
  var toolbar = D.node('<div class="flotr-datagrid-toolbar"></div>');
  D.insert(toolbar, buttonDownload);
  D.insert(toolbar, buttonSelect);
 
  var containerHeight =this.canvasHeight - D.size(this.spreadsheet.tabsContainer).height-2,
  container = D.node('<div class="flotr-datagrid-container" style="position:absolute;left:0px;top:0px;width:'+
  this.canvasWidth+'px;height:'+containerHeight+'px;overflow:auto;z-index:10"></div>');
 
  D.insert(container, toolbar);
  D.insert(container, t);
  D.insert(this.el, container);
  this.spreadsheet.datagrid = t;
  this.spreadsheet.container = container;
 
  return t;
  },
  /**
  * Shows the specified tab, by its name
  * @todo make a tab manager (Flotr.Tabs)
  * @param {String} tabName - The tab name
  */
  showTab: function(tabName){
  if (this.spreadsheet.activeTab === tabName){
  return;
  }
  switch(tabName) {
  case 'graph':
  D.hide(this.spreadsheet.container);
  D.removeClass(this.spreadsheet.tabs.data, 'selected');
  D.addClass(this.spreadsheet.tabs.graph, 'selected');
  break;
  case 'data':
  if (!this.spreadsheet.datagrid)
  this.spreadsheet.constructDataGrid();
  D.show(this.spreadsheet.container);
  D.addClass(this.spreadsheet.tabs.data, 'selected');
  D.removeClass(this.spreadsheet.tabs.graph, 'selected');
  break;
  default:
  throw 'Illegal tab name: ' + tabName;
  }
  this.spreadsheet.activeTab = tabName;
  },
  /**
  * Selects the data table in the DOM for copy/paste
  */
  selectAllData: function(){
  if (this.spreadsheet.tabs) {
  var selection, range, doc, win, node = this.spreadsheet.constructDataGrid();
 
  this.spreadsheet.showTab('data');
 
  // deferred to be able to select the table
  setTimeout(function () {
  if ((doc = node.ownerDocument) && (win = doc.defaultView) &&
  win.getSelection && doc.createRange &&
  (selection = window.getSelection()) &&
  selection.removeAllRanges) {
  range = doc.createRange();
  range.selectNode(node);
  selection.removeAllRanges();
  selection.addRange(range);
  }
  else if (document.body && document.body.createTextRange &&
  (range = document.body.createTextRange())) {
  range.moveToElementText(node);
  range.select();
  }
  }, 0);
  return true;
  }
  else return false;
  },
  /**
  * Converts the data into CSV in order to download a file
  */
  downloadCSV: function(){
  var csv = '',
  series = this.series,
  options = this.options,
  dg = this.spreadsheet.loadDataGrid(),
  separator = encodeURIComponent(options.spreadsheet.csvFileSeparator);
 
  if (options.spreadsheet.decimalSeparator === options.spreadsheet.csvFileSeparator) {
  throw "The decimal separator is the same as the column separator ("+options.spreadsheet.decimalSeparator+")";
  }
 
  // The first row
  _.each(series, function(serie, i){
  csv += separator+'"'+(serie.label || String.fromCharCode(65+i)).replace(/\"/g, '\\"')+'"';
  });
 
  csv += "%0D%0A"; // \r\n
 
  // For each row
  csv += _.reduce(dg, function(memo, row){
  var rowLabel = getRowLabel.call(this, row[0]) || '';
  rowLabel = '"'+(rowLabel+'').replace(/\"/g, '\\"')+'"';
  var numbers = row.slice(1).join(separator);
  if (options.spreadsheet.decimalSeparator !== '.') {
  numbers = numbers.replace(/\./g, options.spreadsheet.decimalSeparator);
  }
  return memo + rowLabel+separator+numbers+"%0D%0A"; // \t and \r\n
  }, '', this);
 
  if (Flotr.isIE && Flotr.isIE < 9) {
  csv = csv.replace(new RegExp(separator, 'g'), decodeURIComponent(separator)).replace(/%0A/g, '\n').replace(/%0D/g, '\r');
  window.open().document.write(csv);
  }
  else window.open('data:text/csv,'+csv);
  }
  });
  })();
 
  (function () {
 
  var D = Flotr.DOM;
 
  Flotr.addPlugin('titles', {
  callbacks: {
  'flotr:afterdraw': function() {
  this.titles.drawTitles();
  }
  },
  /**
  * Draws the title and the subtitle
  */
  drawTitles : function () {
  var html,
  options = this.options,
  margin = options.grid.labelMargin,
  ctx = this.ctx,
  a = this.axes;
 
  if (!options.HtmlText && this.textEnabled) {
  var style = {
  size: options.fontSize,
  color: options.grid.color,
  textAlign: 'center'
  };
 
  // Add subtitle
  if (options.subtitle){
  Flotr.drawText(
  ctx, options.subtitle,
  this.plotOffset.left + this.plotWidth/2,
  this.titleHeight + this.subtitleHeight - 2,
  style
  );
  }
 
  style.weight = 1.5;
  style.size *= 1.5;
 
  // Add title
  if (options.title){
  Flotr.drawText(
  ctx, options.title,
  this.plotOffset.left + this.plotWidth/2,
  this.titleHeight - 2,
  style
  );
  }
 
  style.weight = 1.8;
  style.size *= 0.8;
 
  // Add x axis title
  if (a.x.options.title && a.x.used){
  style.textAlign = a.x.options.titleAlign || 'center';
  style.textBaseline = 'top';
  style.angle = Flotr.toRad(a.x.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.x.options.title,
  this.plotOffset.left + this.plotWidth/2,
  this.plotOffset.top + a.x.maxLabel.height + this.plotHeight + 2 * margin,
  style
  );
  }
 
  // Add x2 axis title
  if (a.x2.options.title && a.x2.used){
  style.textAlign = a.x2.options.titleAlign || 'center';
  style.textBaseline = 'bottom';
  style.angle = Flotr.toRad(a.x2.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.x2.options.title,
  this.plotOffset.left + this.plotWidth/2,
  this.plotOffset.top - a.x2.maxLabel.height - 2 * margin,
  style
  );
  }
 
  // Add y axis title
  if (a.y.options.title && a.y.used){
  style.textAlign = a.y.options.titleAlign || 'right';
  style.textBaseline = 'middle';
  style.angle = Flotr.toRad(a.y.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.y.options.title,
  this.plotOffset.left - a.y.maxLabel.width - 2 * margin,
  this.plotOffset.top + this.plotHeight / 2,
  style
  );
  }
 
  // Add y2 axis title
  if (a.y2.options.title && a.y2.used){
  style.textAlign = a.y2.options.titleAlign || 'left';
  style.textBaseline = 'middle';
  style.angle = Flotr.toRad(a.y2.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.y2.options.title,
  this.plotOffset.left + this.plotWidth + a.y2.maxLabel.width + 2 * margin,
  this.plotOffset.top + this.plotHeight / 2,
  style
  );
  }
  }
  else {
  html = [];
 
  // Add title
  if (options.title)
  html.push(
  '<div style="position:absolute;top:0;left:',
  this.plotOffset.left, 'px;font-size:1em;font-weight:bold;text-align:center;width:',
  this.plotWidth,'px;" class="flotr-title">', options.title, '</div>'
  );
 
  // Add subtitle
  if (options.subtitle)
  html.push(
  '<div style="position:absolute;top:', this.titleHeight, 'px;left:',
  this.plotOffset.left, 'px;font-size:smaller;text-align:center;width:',
  this.plotWidth, 'px;" class="flotr-subtitle">', options.subtitle, '</div>'
  );
 
  html.push('</div>');
 
  html.push('<div class="flotr-axis-title" style="font-weight:bold;">');
 
  // Add x axis title
  if (a.x.options.title && a.x.used)
  html.push(
  '<div style="position:absolute;top:',
  (this.plotOffset.top + this.plotHeight + options.grid.labelMargin + a.x.titleSize.height),
  'px;left:', this.plotOffset.left, 'px;width:', this.plotWidth,
  'px;text-align:', a.x.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-x1">', a.x.options.title, '</div>'
  );
 
  // Add x2 axis title
  if (a.x2.options.title && a.x2.used)
  html.push(
  '<div style="position:absolute;top:0;left:', this.plotOffset.left, 'px;width:',
  this.plotWidth, 'px;text-align:', a.x2.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-x2">', a.x2.options.title, '</div>'
  );
 
  // Add y axis title
  if (a.y.options.title && a.y.used)
  html.push(
  '<div style="position:absolute;top:',
  (this.plotOffset.top + this.plotHeight/2 - a.y.titleSize.height/2),
  'px;left:0;text-align:', a.y.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-y1">', a.y.options.title, '</div>'
  );
 
  // Add y2 axis title
  if (a.y2.options.title && a.y2.used)
  html.push(
  '<div style="position:absolute;top:',
  (this.plotOffset.top + this.plotHeight/2 - a.y.titleSize.height/2),
  'px;right:0;text-align:', a.y2.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-y2">', a.y2.options.title, '</div>'
  );
 
  html = html.join('');
 
  var div = D.create('div');
  D.setStyles({
  color: options.grid.color
  });
  div.className = 'flotr-titles';
  D.insert(this.el, div);
  D.insert(div, html);
  }
  }
  });
  })();
 
  /** Bars **/
  Flotr.addType('bars', {
 
  options: {
  show: false, // => setting to true will show bars, false will hide
  lineWidth: 2, // => in pixels
  barWidth: 1, // => in units of the x axis
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillColor: null, // => fill color
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  horizontal: false, // => horizontal bars (x and y inverted)
  stacked: false, // => stacked bar charts
  centered: true, // => center the bars to their x axis value
  topPadding: 0.1, // => top padding in percent
  grouped: false // => groups bars together which share x value, hit not supported.
  },
 
  stack : {
  positive : [],
  negative : [],
  _positive : [], // Shadow
  _negative : [] // Shadow
  },
 
  draw : function (options) {
  var
  context = options.context;
 
  this.current += 1;
 
  context.save();
  context.lineJoin = 'miter';
  // @TODO linewidth not interpreted the right way.
  context.lineWidth = options.lineWidth;
  context.strokeStyle = options.color;
  if (options.fill) context.fillStyle = options.fillStyle;
 
  this.plot(options);
 
  context.restore();
  },
 
  plot : function (options) {
 
  var
  data = options.data,
  context = options.context,
  shadowSize = options.shadowSize,
  i, geometry, left, top, width, height;
 
  if (data.length < 1) return;
 
  this.translate(context, options.horizontal);
 
  for (i = 0; i < data.length; i++) {
 
  geometry = this.getBarGeometry(data[i][0], data[i][1], options);
  if (geometry === null) continue;
 
  left = geometry.left;
  top = geometry.top;
  width = geometry.width;
  height = geometry.height;
 
  if (options.fill) context.fillRect(left, top, width, height);
  if (shadowSize) {
  context.save();
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.fillRect(left + shadowSize, top + shadowSize, width, height);
  context.restore();
  }
  if (options.lineWidth) {
  context.strokeRect(left, top, width, height);
  }
  }
  },
 
  translate : function (context, horizontal) {
  if (horizontal) {
  context.rotate(-Math.PI / 2);
  context.scale(-1, 1);
  }
  },
 
  getBarGeometry : function (x, y, options) {
 
  var
  horizontal = options.horizontal,
  barWidth = options.barWidth,
  centered = options.centered,
  stack = options.stacked ? this.stack : false,
  lineWidth = options.lineWidth,
  bisection = centered ? barWidth / 2 : 0,
  xScale = horizontal ? options.yScale : options.xScale,
  yScale = horizontal ? options.xScale : options.yScale,
  xValue = horizontal ? y : x,
  yValue = horizontal ? x : y,
  stackOffset = 0,
  stackValue, left, right, top, bottom;
 
  if (options.grouped) {
  this.current / this.groups;
  xValue = xValue - bisection;
  barWidth = barWidth / this.groups;
  bisection = barWidth / 2;
  xValue = xValue + barWidth * this.current - bisection;
  }
 
  // Stacked bars
  if (stack) {
  stackValue = yValue > 0 ? stack.positive : stack.negative;
  stackOffset = stackValue[xValue] || stackOffset;
  stackValue[xValue] = stackOffset + yValue;
  }
 
  left = xScale(xValue - bisection);
  right = xScale(xValue + barWidth - bisection);
  top = yScale(yValue + stackOffset);
  bottom = yScale(stackOffset);
 
  // TODO for test passing... probably looks better without this
  if (bottom < 0) bottom = 0;
 
  // TODO Skipping...
  // if (right < xa.min || left > xa.max || top < ya.min || bottom > ya.max) continue;
 
  return (x === null || y === null) ? null : {
  x : xValue,
  y : yValue,
  xScale : xScale,
  yScale : yScale,
  top : top,
  left : Math.min(left, right) - lineWidth / 2,
  width : Math.abs(right - left) - lineWidth,
  height : bottom - top
  };
  },
 
  hit : function (options) {
  var
  data = options.data,
  args = options.args,
  mouse = args[0],
  n = args[1],
  x = options.xInverse(mouse.relX),
  y = options.yInverse(mouse.relY),
  hitGeometry = this.getBarGeometry(x, y, options),
  width = hitGeometry.width / 2,
  left = hitGeometry.left,
  height = hitGeometry.y,
  geometry, i;
 
  for (i = data.length; i--;) {
  geometry = this.getBarGeometry(data[i][0], data[i][1], options);
  if (
  // Height:
  (
  // Positive Bars:
  (height > 0 && height < geometry.y) ||
  // Negative Bars:
  (height < 0 && height > geometry.y)
  ) &&
  // Width:
  (Math.abs(left - geometry.left) < width)
  ) {
  n.x = data[i][0];
  n.y = data[i][1];
  n.index = i;
  n.seriesIndex = options.index;
  }
  }
  },
 
  drawHit : function (options) {
  // TODO hits for stacked bars; implement using calculateStack option?
  var
  context = options.context,
  args = options.args,
  geometry = this.getBarGeometry(args.x, args.y, options),
  left = geometry.left,
  top = geometry.top,
  width = geometry.width,
  height = geometry.height;
 
  context.save();
  context.strokeStyle = options.color;
  context.lineWidth = options.lineWidth;
  this.translate(context, options.horizontal);
 
  // Draw highlight
  context.beginPath();
  context.moveTo(left, top + height);
  context.lineTo(left, top);
  context.lineTo(left + width, top);
  context.lineTo(left + width, top + height);
  if (options.fill) {
  context.fillStyle = options.fillStyle;
  context.fill();
  }
  context.stroke();
  context.closePath();
 
  context.restore();
  },
 
  clearHit: function (options) {
  var
  context = options.context,
  args = options.args,
  geometry = this.getBarGeometry(args.x, args.y, options),
  left = geometry.left,
  width = geometry.width,
  top = geometry.top,
  height = geometry.height,
  lineWidth = 2 * options.lineWidth;
 
  context.save();
  this.translate(context, options.horizontal);
  context.clearRect(
  left - lineWidth,
  Math.min(top, top + height) - lineWidth,
  width + 2 * lineWidth,
  Math.abs(height) + 2 * lineWidth
  );
  context.restore();
  },
 
  extendXRange : function (axis, data, options, bars) {
  this._extendRange(axis, data, options, bars);
  this.groups = (this.groups + 1) || 1;
  this.current = 0;
  },
 
  extendYRange : function (axis, data, options, bars) {
  this._extendRange(axis, data, options, bars);
  },
  _extendRange: function (axis, data, options, bars) {
 
  var
  max = axis.options.max;
 
  if (_.isNumber(max) || _.isString(max)) return;
 
  var
  newmin = axis.min,
  newmax = axis.max,
  horizontal = options.horizontal,
  orientation = axis.orientation,
  positiveSums = this.positiveSums || {},
  negativeSums = this.negativeSums || {},
  value, datum, index, j;
 
  // Sides of bars
  if ((orientation == 1 && !horizontal) || (orientation == -1 && horizontal)) {
  if (options.centered) {
  newmax = Math.max(axis.datamax + options.barWidth, newmax);
  newmin = Math.min(axis.datamin - options.barWidth, newmin);
  }
  }
 
  if (options.stacked &&
  ((orientation == 1 && horizontal) || (orientation == -1 && !horizontal))){
 
  for (j = data.length; j--;) {
  value = data[j][(orientation == 1 ? 1 : 0)]+'';
  datum = data[j][(orientation == 1 ? 0 : 1)];
 
  // Positive
  if (datum > 0) {
  positiveSums[value] = (positiveSums[value] || 0) + datum;
  newmax = Math.max(newmax, positiveSums[value]);
  }
 
  // Negative
  else {
  negativeSums[value] = (negativeSums[value] || 0) + datum;
  newmin = Math.min(newmin, negativeSums[value]);
  }
  }
  }
 
  // End of bars
  if ((orientation == 1 && horizontal) || (orientation == -1 && !horizontal)) {
  if (options.topPadding && (axis.max === axis.datamax || (options.stacked && this.stackMax !== newmax))) {
  newmax += options.topPadding * (newmax - newmin);
  }
  }
 
  this.stackMin = newmin;
  this.stackMax = newmax;
  this.negativeSums = negativeSums;
  this.positiveSums = positiveSums;
 
  axis.max = newmax;
  axis.min = newmin;
  }
 
  });
 
  /** Bubbles **/
  Flotr.addType('bubbles', {
  options: {
  show: false, // => setting to true will show radar chart, false will hide
  lineWidth: 2, // => line width in pixels
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  baseRadius: 2 // => ratio of the radar, against the plot size
  },
  draw : function (options) {
  var
  context = options.context,
  shadowSize = options.shadowSize;
 
  context.save();
  context.lineWidth = options.lineWidth;
 
  // Shadows
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.strokeStyle = 'rgba(0,0,0,0.05)';
  this.plot(options, shadowSize / 2);
  context.strokeStyle = 'rgba(0,0,0,0.1)';
  this.plot(options, shadowSize / 4);
 
  // Chart
  context.strokeStyle = options.color;
  context.fillStyle = options.fillStyle;
  this.plot(options);
 
  context.restore();
  },
  plot : function (options, offset) {
 
  var
  data = options.data,
  context = options.context,
  geometry,
  i, x, y, z;
 
  offset = offset || 0;
 
  for (i = 0; i < data.length; ++i){
 
  geometry = this.getGeometry(data[i], options);
 
  context.beginPath();
  context.arc(geometry.x + offset, geometry.y + offset, geometry.z, 0, 2 * Math.PI, true);
  context.stroke();
  if (options.fill) context.fill();
  context.closePath();
  }
  },
  getGeometry : function (point, options) {
  return {
  x : options.xScale(point[0]),
  y : options.yScale(point[1]),
  z : point[2] * options.baseRadius
  };
  },
  hit : function (options) {
  var
  data = options.data,
  args = options.args,
  mouse = args[0],
  n = args[1],
  relX = mouse.relX,
  relY = mouse.relY,
  distance,
  geometry,
  dx, dy;
 
  n.best = n.best || Number.MAX_VALUE;
 
  for (i = data.length; i--;) {
  geometry = this.getGeometry(data[i], options);
 
  dx = geometry.x - relX;
  dy = geometry.y - relY;
  distance = Math.sqrt(dx * dx + dy * dy);
 
  if (distance < geometry.z && geometry.z < n.best) {
  n.x = data[i][0];
  n.y = data[i][1];
  n.index = i;
  n.seriesIndex = options.index;
  n.best = geometry.z;
  }
  }
  },
  drawHit : function (options) {
 
  var
  context = options.context,
  geometry = this.getGeometry(options.data[options.args.index], options);
 
  context.save();
  context.lineWidth = options.lineWidth;
  context.fillStyle = options.fillStyle;
  context.strokeStyle = options.color;
  context.beginPath();
  context.arc(geometry.x, geometry.y, geometry.z, 0, 2 * Math.PI, true);
  context.fill();
  context.stroke();
  context.closePath();
  context.restore();
  },
  clearHit : function (options) {
 
  var
  context = options.context,
  geometry = this.getGeometry(options.data[options.args.index], options),
  offset = geometry.z + options.lineWidth;
 
  context.save();
  context.clearRect(
  geometry.x - offset,
  geometry.y - offset,
  2 * offset,
  2 * offset
  );
  context.restore();
  }
  // TODO Add a hit calculation method (like pie)
  });
 
  /** Candles **/
  Flotr.addType('candles', {
  options: {
  show: false, // => setting to true will show candle sticks, false will hide
  lineWidth: 1, // => in pixels
  wickLineWidth: 1, // => in pixels
  candleWidth: 0.6, // => in units of the x axis
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  upFillColor: '#00A8F0',// => up sticks fill color
  downFillColor: '#CB4B4B',// => down sticks fill color
  fillOpacity: 0.5, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  // TODO Test this barcharts option.
  barcharts: false // => draw as barcharts (not standard bars but financial barcharts)
  },
 
  draw : function (options) {
 
  var
  context = options.context;
 
  context.save();
  context.lineJoin = 'miter';
  context.lineCap = 'butt';
  // @TODO linewidth not interpreted the right way.
  context.lineWidth = options.wickLineWidth || options.lineWidth;
 
  this.plot(options);
 
  context.restore();
  },
 
  plot : function (options) {
 
  var
  data = options.data,
  context = options.context,
  xScale = options.xScale,
  yScale = options.yScale,
  width = options.candleWidth / 2,
  shadowSize = options.shadowSize,
  lineWidth = options.lineWidth,
  wickLineWidth = options.wickLineWidth,
  pixelOffset = (wickLineWidth % 2) / 2,
  color,
  datum, x, y,
  open, high, low, close,
  left, right, bottom, top, bottom2, top2,
  i;
 
  if (data.length < 1) return;
 
  for (i = 0; i < data.length; i++) {
  datum = data[i];
  x = datum[0];
  open = datum[1];
  high = datum[2];
  low = datum[3];
  close = datum[4];
  left = xScale(x - width);
  right = xScale(x + width);
  bottom = yScale(low);
  top = yScale(high);
  bottom2 = yScale(Math.min(open, close));
  top2 = yScale(Math.max(open, close));
 
  /*
  // TODO skipping
  if(right < xa.min || left > xa.max || top < ya.min || bottom > ya.max)
  continue;
  */
 
  color = options[open > close ? 'downFillColor' : 'upFillColor'];
 
  // Fill the candle.
  // TODO Test the barcharts option
  if (options.fill && !options.barcharts) {
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.fillRect(left + shadowSize, top2 + shadowSize, right - left, bottom2 - top2);
  context.save();
  context.globalAlpha = options.fillOpacity;
  context.fillStyle = color;
  context.fillRect(left, top2 + lineWidth, right - left, bottom2 - top2);
  context.restore();
  }
 
  // Draw candle outline/border, high, low.
  if (lineWidth || wickLineWidth) {
 
  x = Math.floor((left + right) / 2) + pixelOffset;
 
  context.strokeStyle = color;
  context.beginPath();
 
  // TODO Again with the bartcharts
  if (options.barcharts) {
 
  context.moveTo(x, Math.floor(top + width));
  context.lineTo(x, Math.floor(bottom + width));
 
  y = Math.floor(open + width) + 0.5;
  context.moveTo(Math.floor(left) + pixelOffset, y);
  context.lineTo(x, y);
 
  y = Math.floor(close + width) + 0.5;
  context.moveTo(Math.floor(right) + pixelOffset, y);
  context.lineTo(x, y);
  } else {
  context.strokeRect(left, top2 + lineWidth, right - left, bottom2 - top2);
 
  context.moveTo(x, Math.floor(top2 + lineWidth));
  context.lineTo(x, Math.floor(top + lineWidth));
  context.moveTo(x, Math.floor(bottom2 + lineWidth));
  context.lineTo(x, Math.floor(bottom + lineWidth));
  }
 
  context.closePath();
  context.stroke();
  }
  }
  },
  extendXRange: function (axis, data, options) {
  if (axis.options.max === null) {
  axis.max = Math.max(axis.datamax + 0.5, axis.max);
  axis.min = Math.min(axis.datamin - 0.5, axis.min);
  }
  }
  });
 
  /** Gantt
  * Base on data in form [s,y,d] where:
  * y - executor or simply y value
  * s - task start value
  * d - task duration
  * **/
  Flotr.addType('gantt', {
  options: {
  show: false, // => setting to true will show gantt, false will hide
  lineWidth: 2, // => in pixels
  barWidth: 1, // => in units of the x axis
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillColor: null, // => fill color
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  centered: true // => center the bars to their x axis value
  },
  /**
  * Draws gantt series in the canvas element.
  * @param {Object} series - Series with options.gantt.show = true.
  */
  draw: function(series) {
  var ctx = this.ctx,
  bw = series.gantt.barWidth,
  lw = Math.min(series.gantt.lineWidth, bw);
 
  ctx.save();
  ctx.translate(this.plotOffset.left, this.plotOffset.top);
  ctx.lineJoin = 'miter';
 
  /**
  * @todo linewidth not interpreted the right way.
  */
  ctx.lineWidth = lw;
  ctx.strokeStyle = series.color;
 
  ctx.save();
  this.gantt.plotShadows(series, bw, 0, series.gantt.fill);
  ctx.restore();
 
  if(series.gantt.fill){
  var color = series.gantt.fillColor || series.color;
  ctx.fillStyle = this.processColor(color, {opacity: series.gantt.fillOpacity});
  }
 
  this.gantt.plot(series, bw, 0, series.gantt.fill);
  ctx.restore();
  },
  plot: function(series, barWidth, offset, fill){
  var data = series.data;
  if(data.length < 1) return;
 
  var xa = series.xaxis,
  ya = series.yaxis,
  ctx = this.ctx, i;
 
  for(i = 0; i < data.length; i++){
  var y = data[i][0],
  s = data[i][1],
  d = data[i][2],
  drawLeft = true, drawTop = true, drawRight = true;
 
  if (s === null || d === null) continue;
 
  var left = s,
  right = s + d,
  bottom = y - (series.gantt.centered ? barWidth/2 : 0),
  top = y + barWidth - (series.gantt.centered ? barWidth/2 : 0);
 
  if(right < xa.min || left > xa.max || top < ya.min || bottom > ya.max)
  continue;
 
  if(left < xa.min){
  left = xa.min;
  drawLeft = false;
  }
 
  if(right > xa.max){
  right = xa.max;
  if (xa.lastSerie != series)
  drawTop = false;
  }
 
  if(bottom < ya.min)
  bottom = ya.min;
 
  if(top > ya.max){
  top = ya.max;
  if (ya.lastSerie != series)
  drawTop = false;
  }
 
  /**
  * Fill the bar.
  */
  if(fill){
  ctx.beginPath();
  ctx.moveTo(xa.d2p(left), ya.d2p(bottom) + offset);
  ctx.lineTo(xa.d2p(left), ya.d2p(top) + offset);
  ctx.lineTo(xa.d2p(right), ya.d2p(top) + offset);
  ctx.lineTo(xa.d2p(right), ya.d2p(bottom) + offset);
  ctx.fill();
  ctx.closePath();
  }
 
  /**
  * Draw bar outline/border.
  */
  if(series.gantt.lineWidth && (drawLeft || drawRight || drawTop)){
  ctx.beginPath();
  ctx.moveTo(xa.d2p(left), ya.d2p(bottom) + offset);
 
  ctx[drawLeft ?'lineTo':'moveTo'](xa.d2p(left), ya.d2p(top) + offset);
  ctx[drawTop ?'lineTo':'moveTo'](xa.d2p(right), ya.d2p(top) + offset);
  ctx[drawRight?'lineTo':'moveTo'](xa.d2p(right), ya.d2p(bottom) + offset);
 
  ctx.stroke();
  ctx.closePath();
  }
  }
  },
  plotShadows: function(series, barWidth, offset){
  var data = series.data;
  if(data.length < 1) return;
 
  var i, y, s, d,
  xa = series.xaxis,
  ya = series.yaxis,
  ctx = this.ctx,
  sw = this.options.shadowSize;
 
  for(i = 0; i < data.length; i++){
  y = data[i][0];
  s = data[i][1];
  d = data[i][2];
 
  if (s === null || d === null) continue;
 
  var left = s,
  right = s + d,
  bottom = y - (series.gantt.centered ? barWidth/2 : 0),
  top = y + barWidth - (series.gantt.centered ? barWidth/2 : 0);
 
  if(right < xa.min || left > xa.max || top < ya.min || bottom > ya.max)
  continue;
 
  if(left < xa.min) left = xa.min;
  if(right > xa.max) right = xa.max;
  if(bottom < ya.min) bottom = ya.min;
  if(top > ya.max) top = ya.max;
 
  var width = xa.d2p(right)-xa.d2p(left)-((xa.d2p(right)+sw <= this.plotWidth) ? 0 : sw);
  var height = ya.d2p(bottom)-ya.d2p(top)-((ya.d2p(bottom)+sw <= this.plotHeight) ? 0 : sw );
 
  ctx.fillStyle = 'rgba(0,0,0,0.05)';
  ctx.fillRect(Math.min(xa.d2p(left)+sw, this.plotWidth), Math.min(ya.d2p(top)+sw, this.plotHeight), width, height);
  }
  },
  extendXRange: function(axis) {
  if(axis.options.max === null){
  var newmin = axis.min,
  newmax = axis.max,
  i, j, x, s, g,
  stackedSumsPos = {},
  stackedSumsNeg = {},
  lastSerie = null;
 
  for(i = 0; i < this.series.length; ++i){
  s = this.series[i];
  g = s.gantt;
 
  if(g.show && s.xaxis == axis) {
  for (j = 0; j < s.data.length; j++) {
  if (g.show) {
  y = s.data[j][0]+'';
  stackedSumsPos[y] = Math.max((stackedSumsPos[y] || 0), s.data[j][1]+s.data[j][2]);
  lastSerie = s;
  }
  }
  for (j in stackedSumsPos) {
  newmax = Math.max(stackedSumsPos[j], newmax);
  }
  }
  }
  axis.lastSerie = lastSerie;
  axis.max = newmax;
  axis.min = newmin;
  }
  },
  extendYRange: function(axis){
  if(axis.options.max === null){
  var newmax = Number.MIN_VALUE,
  newmin = Number.MAX_VALUE,
  i, j, s, g,
  stackedSumsPos = {},
  stackedSumsNeg = {},
  lastSerie = null;
 
  for(i = 0; i < this.series.length; ++i){
  s = this.series[i];
  g = s.gantt;
 
  if (g.show && !s.hide && s.yaxis == axis) {
  var datamax = Number.MIN_VALUE, datamin = Number.MAX_VALUE;
  for(j=0; j < s.data.length; j++){
  datamax = Math.max(datamax,s.data[j][0]);
  datamin = Math.min(datamin,s.data[j][0]);
  }
 
  if (g.centered) {
  newmax = Math.max(datamax + 0.5, newmax);
  newmin = Math.min(datamin - 0.5, newmin);
  }
  else {
  newmax = Math.max(datamax + 1, newmax);
  newmin = Math.min(datamin, newmin);
  }
  // For normal horizontal bars
  if (g.barWidth + datamax > newmax){
  newmax = axis.max + g.barWidth;
  }
  }
  }
  axis.lastSerie = lastSerie;
  axis.max = newmax;
  axis.min = newmin;
  axis.tickSize = Flotr.getTickSize(axis.options.noTicks, newmin, newmax, axis.options.tickDecimals);
  }
  }
  });
 
  /** Lines **/
  Flotr.addType('lines', {
  options: {
  show: false, // => setting to true will show lines, false will hide
  lineWidth: 2, // => line width in pixels
  fill: false, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillBorder: false, // => draw a border around the fill
  fillColor: null, // => fill color
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  steps: false, // => draw steps
  stacked: false // => setting to true will show stacked lines, false will show normal lines
  },
 
  stack : {
  values : []
  },
 
  /**
  * Draws lines series in the canvas element.
  * @param {Object} options
  */
  draw : function (options) {
 
  var
  context = options.context,
  lineWidth = options.lineWidth,
  shadowSize = options.shadowSize,
  offset;
 
  context.save();
  context.lineJoin = 'round';
 
  if (shadowSize) {
 
  context.lineWidth = shadowSize / 2;
  offset = lineWidth / 2 + context.lineWidth / 2;
 
  // @TODO do this instead with a linear gradient
  context.strokeStyle = "rgba(0,0,0,0.1)";
  this.plot(options, offset + shadowSize / 2, false);
 
  context.strokeStyle = "rgba(0,0,0,0.2)";
  this.plot(options, offset, false);
  }
 
  context.lineWidth = lineWidth;
  context.strokeStyle = options.color;
 
  this.plot(options, 0, true);
 
  context.restore();
  },
 
  plot : function (options, shadowOffset, incStack) {
 
  var
  context = options.context,
  width = options.width,
  height = options.height,
  xScale = options.xScale,
  yScale = options.yScale,
  data = options.data,
  stack = options.stacked ? this.stack : false,
  length = data.length - 1,
  prevx = null,
  prevy = null,
  zero = yScale(0),
  start = null,
  x1, x2, y1, y2, stack1, stack2, i;
 
  if (length < 1) return;
 
  context.beginPath();
 
  for (i = 0; i < length; ++i) {
 
  // To allow empty values
  if (data[i][1] === null || data[i+1][1] === null) {
  if (options.fill) {
  if (i > 0 && data[i][1]) {
  context.stroke();
  fill();
  start = null;
  context.closePath();
  context.beginPath();
  }
  }
  continue;
  }
 
  // Zero is infinity for log scales
  // TODO handle zero for logarithmic
  // if (xa.options.scaling === 'logarithmic' && (data[i][0] <= 0 || data[i+1][0] <= 0)) continue;
  // if (ya.options.scaling === 'logarithmic' && (data[i][1] <= 0 || data[i+1][1] <= 0)) continue;
 
  x1 = xScale(data[i][0]);
  x2 = xScale(data[i+1][0]);
 
  if (start === null) start = data[i];
 
  if (stack) {
 
  stack1 = stack.values[data[i][0]] || 0;
  stack2 = stack.values[data[i+1][0]] || stack.values[data[i][0]] || 0;
 
  y1 = yScale(data[i][1] + stack1);
  y2 = yScale(data[i+1][1] + stack2);
 
  if(incStack){
  stack.values[data[i][0]] = data[i][1]+stack1;
 
  if(i == length-1)
  stack.values[data[i+1][0]] = data[i+1][1]+stack2;
  }
  }
  else{
  y1 = yScale(data[i][1]);
  y2 = yScale(data[i+1][1]);
  }
 
  if (
  (y1 > height && y2 > height) ||
  (y1 < 0 && y2 < 0) ||
  (x1 < 0 && x2 < 0) ||
  (x1 > width && x2 > width)
  ) continue;
 
  if((prevx != x1) || (prevy != y1 + shadowOffset))
  context.moveTo(x1, y1 + shadowOffset);
 
  prevx = x2;
  prevy = y2 + shadowOffset;
  if (options.steps) {
  context.lineTo(prevx + shadowOffset / 2, y1 + shadowOffset);
  context.lineTo(prevx + shadowOffset / 2, prevy);
  } else {
  context.lineTo(prevx, prevy);
  }
  }
 
  if (!options.fill || options.fill && !options.fillBorder) context.stroke();
 
  fill();
 
  function fill () {
  // TODO stacked lines
  if(!shadowOffset && options.fill && start){
  x1 = xScale(start[0]);
  context.fillStyle = options.fillStyle;
  context.lineTo(x2, zero);
  context.lineTo(x1, zero);
  context.lineTo(x1, yScale(start[1]));
  context.fill();
  if (options.fillBorder) {
  context.stroke();
  }
  }
  }
 
  context.closePath();
  },
 
  // Perform any pre-render precalculations (this should be run on data first)
  // - Pie chart total for calculating measures
  // - Stacks for lines and bars
  // precalculate : function () {
  // }
  //
  //
  // Get any bounds after pre calculation (axis can fetch this if does not have explicit min/max)
  // getBounds : function () {
  // }
  // getMin : function () {
  // }
  // getMax : function () {
  // }
  //
  //
  // Padding around rendered elements
  // getPadding : function () {
  // }
 
  extendYRange : function (axis, data, options, lines) {
 
  var o = axis.options;
 
  // If stacked and auto-min
  if (options.stacked && ((!o.max && o.max !== 0) || (!o.min && o.min !== 0))) {
 
  var
  newmax = axis.max,
  newmin = axis.min,
  positiveSums = lines.positiveSums || {},
  negativeSums = lines.negativeSums || {},
  x, j;
 
  for (j = 0; j < data.length; j++) {
 
  x = data[j][0] + '';
 
  // Positive
  if (data[j][1] > 0) {
  positiveSums[x] = (positiveSums[x] || 0) + data[j][1];
  newmax = Math.max(newmax, positiveSums[x]);
  }
 
  // Negative
  else {
  negativeSums[x] = (negativeSums[x] || 0) + data[j][1];
  newmin = Math.min(newmin, negativeSums[x]);
  }
  }
 
  lines.negativeSums = negativeSums;
  lines.positiveSums = positiveSums;
 
  axis.max = newmax;
  axis.min = newmin;
  }
 
  if (options.steps) {
 
  this.hit = function (options) {
  var
  data = options.data,
  args = options.args,
  yScale = options.yScale,
  mouse = args[0],
  length = data.length,
  n = args[1],
  x = options.xInverse(mouse.relX),
  relY = mouse.relY,
  i;
 
  for (i = 0; i < length - 1; i++) {
  if (x >= data[i][0] && x <= data[i+1][0]) {
  if (Math.abs(yScale(data[i][1]) - relY) < 8) {
  n.x = data[i][0];
  n.y = data[i][1];
  n.index = i;
  n.seriesIndex = options.index;
  }
  break;
  }
  }
  };
 
  this.drawHit = function (options) {
  var
  context = options.context,
  args = options.args,
  data = options.data,
  xScale = options.xScale,
  index = args.index,
  x = xScale(args.x),
  y = options.yScale(args.y),
  x2;
 
  if (data.length - 1 > index) {
  x2 = options.xScale(data[index + 1][0]);
  context.save();
  context.strokeStyle = options.color;
  context.lineWidth = options.lineWidth;
  context.beginPath();
  context.moveTo(x, y);
  context.lineTo(x2, y);
  context.stroke();
  context.closePath();
  context.restore();
  }
  };
 
  this.clearHit = function (options) {
  var
  context = options.context,
  args = options.args,
  data = options.data,
  xScale = options.xScale,
  width = options.lineWidth,
  index = args.index,
  x = xScale(args.x),
  y = options.yScale(args.y),
  x2;
 
  if (data.length - 1 > index) {
  x2 = options.xScale(data[index + 1][0]);
  context.clearRect(x - width, y - width, x2 - x + 2 * width, 2 * width);
  }
  };
  }
  }
 
  });
 
  /** Markers **/
  /**
  * Formats the marker labels.
  * @param {Object} obj - Marker value Object {x:..,y:..}
  * @return {String} Formatted marker string
  */
  (function () {
 
  Flotr.defaultMarkerFormatter = function(obj){
  return (Math.round(obj.y*100)/100)+'';
  };
 
  Flotr.addType('markers', {
  options: {
  show: false, // => setting to true will show markers, false will hide
  lineWidth: 1, // => line width of the rectangle around the marker
  color: '#000000', // => text color
  fill: false, // => fill or not the marekers' rectangles
  fillColor: "#FFFFFF", // => fill color
  fillOpacity: 0.4, // => fill opacity
  stroke: false, // => draw the rectangle around the markers
  position: 'ct', // => the markers position (vertical align: b, m, t, horizontal align: l, c, r)
  verticalMargin: 0, // => the margin between the point and the text.
  labelFormatter: Flotr.defaultMarkerFormatter,
  fontSize: Flotr.defaultOptions.fontSize,
  stacked: false, // => true if markers should be stacked
  stackingType: 'b', // => define staching behavior, (b- bars like, a - area like) (see Issue 125 for details)
  horizontal: false // => true if markers should be horizontal (For now only in a case on horizontal stacked bars, stacks should be calculated horizontaly)
  },
 
  // TODO test stacked markers.
  stack : {
  positive : [],
  negative : [],
  values : []
  },
 
  draw : function (options) {
 
  var
  data = options.data,
  context = options.context,
  stack = options.stacked ? options.stack : false,
  stackType = options.stackingType,
  stackOffsetNeg,
  stackOffsetPos,
  stackOffset,
  i, x, y, label;
 
  context.save();
  context.lineJoin = 'round';
  context.lineWidth = options.lineWidth;
  context.strokeStyle = 'rgba(0,0,0,0.5)';
  context.fillStyle = options.fillStyle;
 
  function stackPos (a, b) {
  stackOffsetPos = stack.negative[a] || 0;
  stackOffsetNeg = stack.positive[a] || 0;
  if (b > 0) {
  stack.positive[a] = stackOffsetPos + b;
  return stackOffsetPos + b;
  } else {
  stack.negative[a] = stackOffsetNeg + b;
  return stackOffsetNeg + b;
  }
  }
 
  for (i = 0; i < data.length; ++i) {
 
  x = data[i][0];
  y = data[i][1];
 
  if (stack) {
  if (stackType == 'b') {
  if (options.horizontal) y = stackPos(y, x);
  else x = stackPos(x, y);
  } else if (stackType == 'a') {
  stackOffset = stack.values[x] || 0;
  stack.values[x] = stackOffset + y;
  y = stackOffset + y;
  }
  }
 
  label = options.labelFormatter({x: x, y: y, index: i, data : data});
  this.plot(options.xScale(x), options.yScale(y), label, options);
  }
  context.restore();
  },
  plot: function(x, y, label, options) {
  var context = options.context;
  if (isImage(label) && !label.complete) {
  throw 'Marker image not loaded.';
  } else {
  this._plot(x, y, label, options);
  }
  },
 
  _plot: function(x, y, label, options) {
  var context = options.context,
  margin = 2,
  left = x,
  top = y,
  dim;
 
  if (isImage(label))
  dim = {height : label.height, width: label.width};
  else
  dim = options.text.canvas(label);
 
  dim.width = Math.floor(dim.width+margin*2);
  dim.height = Math.floor(dim.height+margin*2);
 
  if (options.position.indexOf('c') != -1) left -= dim.width/2 + margin;
  else if (options.position.indexOf('l') != -1) left -= dim.width;
 
  if (options.position.indexOf('m') != -1) top -= dim.height/2 + margin;
  else if (options.position.indexOf('t') != -1) top -= dim.height + options.verticalMargin;
  else top += options.verticalMargin;
 
  left = Math.floor(left)+0.5;
  top = Math.floor(top)+0.5;
 
  if(options.fill)
  context.fillRect(left, top, dim.width, dim.height);
 
  if(options.stroke)
  context.strokeRect(left, top, dim.width, dim.height);
 
  if (isImage(label))
  context.drawImage(label, left+margin, top+margin);
  else
  Flotr.drawText(context, label, left+margin, top+margin, {textBaseline: 'top', textAlign: 'left', size: options.fontSize, color: options.color});
  }
  });
 
  function isImage (i) {
  return typeof i === 'object' && i.constructor && (Image ? true : i.constructor === Image);
  }
 
  })();
 
  /**
  * Pie
  *
  * Formats the pies labels.
  * @param {Object} slice - Slice object
  * @return {String} Formatted pie label string
  */
  (function () {
 
  var
  _ = Flotr._;
 
  Flotr.defaultPieLabelFormatter = function (total, value) {
  return (100 * value / total).toFixed(2)+'%';
  };
 
  Flotr.addType('pie', {
  options: {
  show: false, // => setting to true will show bars, false will hide
  lineWidth: 1, // => in pixels
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillColor: null, // => fill color
  fillOpacity: 0.6, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  explode: 6, // => the number of pixels the splices will be far from the center
  sizeRatio: 0.6, // => the size ratio of the pie relative to the plot
  startAngle: Math.PI/4, // => the first slice start angle
  labelFormatter: Flotr.defaultPieLabelFormatter,
  pie3D: false, // => whether to draw the pie in 3 dimenstions or not (ineffective)
  pie3DviewAngle: (Math.PI/2 * 0.8),
  pie3DspliceThickness: 20,
  epsilon: 0.1 // => how close do you have to get to hit empty slice
  },
 
  draw : function (options) {
 
  // TODO 3D charts what?
 
  var
  data = options.data,
  context = options.context,
  canvas = context.canvas,
  lineWidth = options.lineWidth,
  shadowSize = options.shadowSize,
  sizeRatio = options.sizeRatio,
  height = options.height,
  width = options.width,
  explode = options.explode,
  color = options.color,
  fill = options.fill,
  fillStyle = options.fillStyle,
  radius = Math.min(canvas.width, canvas.height) * sizeRatio / 2,
  value = data[0][1],
  html = [],
  vScale = 1,//Math.cos(series.pie.viewAngle);
  measure = Math.PI * 2 * value / this.total,
  startAngle = this.startAngle || (2 * Math.PI * options.startAngle), // TODO: this initial startAngle is already in radians (fixing will be test-unstable)
  endAngle = startAngle + measure,
  bisection = startAngle + measure / 2,
  label = options.labelFormatter(this.total, value),
  //plotTickness = Math.sin(series.pie.viewAngle)*series.pie.spliceThickness / vScale;
  explodeCoeff = explode + radius + 4,
  distX = Math.cos(bisection) * explodeCoeff,
  distY = Math.sin(bisection) * explodeCoeff,
  textAlign = distX < 0 ? 'right' : 'left',
  textBaseline = distY > 0 ? 'top' : 'bottom',
  style,
  x, y;
 
  context.save();
  context.translate(width / 2, height / 2);
  context.scale(1, vScale);
 
  x = Math.cos(bisection) * explode;
  y = Math.sin(bisection) * explode;
 
  // Shadows
  if (shadowSize > 0) {
  this.plotSlice(x + shadowSize, y + shadowSize, radius, startAngle, endAngle, context);
  if (fill) {
  context.fillStyle = 'rgba(0,0,0,0.1)';
  context.fill();
  }
  }
 
  this.plotSlice(x, y, radius, startAngle, endAngle, context);
  if (fill) {
  context.fillStyle = fillStyle;
  context.fill();
  }
  context.lineWidth = lineWidth;
  context.strokeStyle = color;
  context.stroke();
 
  style = {
  size : options.fontSize * 1.2,
  color : options.fontColor,
  weight : 1.5
  };
 
  if (label) {
  if (options.htmlText || !options.textEnabled) {
  divStyle = 'position:absolute;' + textBaseline + ':' + (height / 2 + (textBaseline === 'top' ? distY : -distY)) + 'px;';
  divStyle += textAlign + ':' + (width / 2 + (textAlign === 'right' ? -distX : distX)) + 'px;';
  html.push('<div style="', divStyle, '" class="flotr-grid-label">', label, '</div>');
  }
  else {
  style.textAlign = textAlign;
  style.textBaseline = textBaseline;
  Flotr.drawText(context, label, distX, distY, style);
  }
  }
 
  if (options.htmlText || !options.textEnabled) {
  var div = Flotr.DOM.node('<div style="color:' + options.fontColor + '" class="flotr-labels"></div>');
  Flotr.DOM.insert(div, html.join(''));
  Flotr.DOM.insert(options.element, div);
  }
 
  context.restore();
 
  // New start angle
  this.startAngle = endAngle;
  this.slices = this.slices || [];
  this.slices.push({
  radius : Math.min(canvas.width, canvas.height) * sizeRatio / 2,
  x : x,
  y : y,
  explode : explode,
  start : startAngle,
  end : endAngle
  });
  },
  plotSlice : function (x, y, radius, startAngle, endAngle, context) {
  context.beginPath();
  context.moveTo(x, y);
  context.arc(x, y, radius, startAngle, endAngle, false);
  context.lineTo(x, y);
  context.closePath();
  },
  hit : function (options) {
 
  var
  data = options.data[0],
  args = options.args,
  index = options.index,
  mouse = args[0],
  n = args[1],
  slice = this.slices[index],
  x = mouse.relX - options.width / 2,
  y = mouse.relY - options.height / 2,
  r = Math.sqrt(x * x + y * y),
  theta = Math.atan(y / x),
  circle = Math.PI * 2,
  explode = slice.explode || options.explode,
  start = slice.start % circle,
  end = slice.end % circle,
  epsilon = options.epsilon;
 
  if (x < 0) {
  theta += Math.PI;
  } else if (x > 0 && y < 0) {
  theta += circle;
  }
 
  if (r < slice.radius + explode && r > explode) {
  if (
  (theta > start && theta < end) || // Normal Slice
  (start > end && (theta < end || theta > start)) || // First slice
  // TODO: Document the two cases at the end:
  (start === end && ((slice.start === slice.end && Math.abs(theta - start) < epsilon) || (slice.start !== slice.end && Math.abs(theta-start) > epsilon)))
  ) {
 
  // TODO Decouple this from hit plugin (chart shouldn't know what n means)
  n.x = data[0];
  n.y = data[1];
  n.sAngle = start;
  n.eAngle = end;
  n.index = 0;
  n.seriesIndex = index;
  n.fraction = data[1] / this.total;
  }
  }
  },
  drawHit: function (options) {
  var
  context = options.context,
  slice = this.slices[options.args.seriesIndex];
 
  context.save();
  context.translate(options.width / 2, options.height / 2);
  this.plotSlice(slice.x, slice.y, slice.radius, slice.start, slice.end, context);
  context.stroke();
  context.restore();
  },
  clearHit : function (options) {
  var
  context = options.context,
  slice = this.slices[options.args.seriesIndex],
  padding = 2 * options.lineWidth,
  radius = slice.radius + padding;
 
  context.save();
  context.translate(options.width / 2, options.height / 2);
  context.clearRect(
  slice.x - radius,
  slice.y - radius,
  2 * radius + padding,
  2 * radius + padding
  );
  context.restore();
  },
  extendYRange : function (axis, data) {
  this.total = (this.total || 0) + data[0][1];
  }
  });
  })();
 
  /** Points **/
  Flotr.addType('points', {
  options: {
  show: false, // => setting to true will show points, false will hide
  radius: 3, // => point radius (pixels)
  lineWidth: 2, // => line width in pixels
  fill: true, // => true to fill the points with a color, false for (transparent) no fill
  fillColor: '#FFFFFF', // => fill color. Null to use series color.
  fillOpacity: 1, // => opacity of color inside the points
  hitRadius: null // => override for points hit radius
  },
 
  draw : function (options) {
  var
  context = options.context,
  lineWidth = options.lineWidth,
  shadowSize = options.shadowSize;
 
  context.save();
 
  if (shadowSize > 0) {
  context.lineWidth = shadowSize / 2;
 
  context.strokeStyle = 'rgba(0,0,0,0.1)';
  this.plot(options, shadowSize / 2 + context.lineWidth / 2);
 
  context.strokeStyle = 'rgba(0,0,0,0.2)';
  this.plot(options, context.lineWidth / 2);
  }
 
  context.lineWidth = options.lineWidth;
  context.strokeStyle = options.color;
  if (options.fill) context.fillStyle = options.fillStyle;
 
  this.plot(options);
  context.restore();
  },
 
  plot : function (options, offset) {
  var
  data = options.data,
  context = options.context,
  xScale = options.xScale,
  yScale = options.yScale,
  i, x, y;
 
  for (i = data.length - 1; i > -1; --i) {
  y = data[i][1];
  if (y === null) continue;
 
  x = xScale(data[i][0]);
  y = yScale(y);
 
  if (x < 0 || x > options.width || y < 0 || y > options.height) continue;
 
  context.beginPath();
  if (offset) {
  context.arc(x, y + offset, options.radius, 0, Math.PI, false);
  } else {
  context.arc(x, y, options.radius, 0, 2 * Math.PI, true);
  if (options.fill) context.fill();
  }
  context.stroke();
  context.closePath();
  }
  }
  });
 
  /** Radar **/
  Flotr.addType('radar', {
  options: {
  show: false, // => setting to true will show radar chart, false will hide
  lineWidth: 2, // => line width in pixels
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  radiusRatio: 0.90 // => ratio of the radar, against the plot size
  },
  draw : function (options) {
  var
  context = options.context,
  shadowSize = options.shadowSize;
 
  context.save();
  context.translate(options.width / 2, options.height / 2);
  context.lineWidth = options.lineWidth;
 
  // Shadow
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.strokeStyle = 'rgba(0,0,0,0.05)';
  this.plot(options, shadowSize / 2);
  context.strokeStyle = 'rgba(0,0,0,0.1)';
  this.plot(options, shadowSize / 4);
 
  // Chart
  context.strokeStyle = options.color;
  context.fillStyle = options.fillStyle;
  this.plot(options);
 
  context.restore();
  },
  plot : function (options, offset) {
  var
  data = options.data,
  context = options.context,
  radius = Math.min(options.height, options.width) * options.radiusRatio / 2,
  step = 2 * Math.PI / data.length,
  angle = -Math.PI / 2,
  i, ratio;
 
  offset = offset || 0;
 
  context.beginPath();
  for (i = 0; i < data.length; ++i) {
  ratio = data[i][1] / this.max;
 
  context[i === 0 ? 'moveTo' : 'lineTo'](
  Math.cos(i * step + angle) * radius * ratio + offset,
  Math.sin(i * step + angle) * radius * ratio + offset
  );
  }
  context.closePath();
  if (options.fill) context.fill();
  context.stroke();
  },
  extendYRange : function (axis, data) {
  this.max = Math.max(axis.max, this.max || -Number.MAX_VALUE);
  }
  });
 
  Flotr.addType('timeline', {
  options: {
  show: false,
  lineWidth: 1,
  barWidth: 0.2,
  fill: true,
  fillColor: null,
  fillOpacity: 0.4,
  centered: true
  },
 
  draw : function (options) {
 
  var
  context = options.context;
 
  context.save();
  context.lineJoin = 'miter';
  context.lineWidth = options.lineWidth;
  context.strokeStyle = options.color;
  context.fillStyle = options.fillStyle;
 
  this.plot(options);
 
  context.restore();
  },
 
  plot : function (options) {
 
  var
  data = options.data,
  context = options.context,
  xScale = options.xScale,
  yScale = options.yScale,
  barWidth = options.barWidth,
  lineWidth = options.lineWidth,
  i;
 
  Flotr._.each(data, function (timeline) {
 
  var
  x = timeline[0],
  y = timeline[1],
  w = timeline[2],
  h = barWidth,
 
  xt = Math.ceil(xScale(x)),
  wt = Math.ceil(xScale(x + w)) - xt,
  yt = Math.round(yScale(y)),
  ht = Math.round(yScale(y - h)) - yt,
 
  x0 = xt - lineWidth / 2,
  y0 = Math.round(yt - ht / 2) - lineWidth / 2;
 
  context.strokeRect(x0, y0, wt, ht);
  context.fillRect(x0, y0, wt, ht);
 
  });
  },
 
  extendRange : function (series) {
 
  var
  data = series.data,
  xa = series.xaxis,
  ya = series.yaxis,
  w = series.timeline.barWidth;
 
  if (xa.options.min === null)
  xa.min = xa.datamin - w / 2;
 
  if (xa.options.max === null) {
 
  var
  max = xa.max;
 
  Flotr._.each(data, function (timeline) {
  max = Math.max(max, timeline[0] + timeline[2]);
  }, this);
 
  xa.max = max + w / 2;
  }
 
  if (ya.options.min === null)
  ya.min = ya.datamin - w;
  if (ya.options.min === null)
  ya.max = ya.datamax + w;
  }
 
  });
 
  /* Copyright (C) 1999 Masanao Izumo <iz@onicos.co.jp>
  * Version: 1.0
  * LastModified: Dec 25 1999
  * This library is free. You can redistribute it and/or modify it.
  */
 
  /*
  * Interfaces:
  * b64 = base64encode(data);
  * data = base64decode(b64);
  */
 
  (function() {
 
  var base64EncodeChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
  var base64DecodeChars = [
  -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
  -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63,
  52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1,
  -1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
  15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, -1, -1, -1, -1, -1,
  -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
  41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1, -1, -1];
 
  function base64encode(str) {
  var out, i, len;
  var c1, c2, c3;
 
  len = str.length;
  i = 0;
  out = "";
  while(i < len) {
  c1 = str.charCodeAt(i++) & 0xff;
  if(i == len)
  {
  out += base64EncodeChars.charAt(c1 >> 2);
  out += base64EncodeChars.charAt((c1 & 0x3) << 4);
  out += "==";
  break;
  }
  c2 = str.charCodeAt(i++);
  if(i == len)
  {
  out += base64EncodeChars.charAt(c1 >> 2);
  out += base64EncodeChars.charAt(((c1 & 0x3)<< 4) | ((c2 & 0xF0) >> 4));
  out += base64EncodeChars.charAt((c2 & 0xF) << 2);
  out += "=";
  break;
  }
  c3 = str.charCodeAt(i++);
  out += base64EncodeChars.charAt(c1 >> 2);
  out += base64EncodeChars.charAt(((c1 & 0x3)<< 4) | ((c2 & 0xF0) >> 4));
  out += base64EncodeChars.charAt(((c2 & 0xF) << 2) | ((c3 & 0xC0) >>6));
  out += base64EncodeChars.charAt(c3 & 0x3F);
  }
  return out;
  }
 
  function base64decode(str) {
  var c1, c2, c3, c4;
  var i, len, out;
 
  len = str.length;
  i = 0;
  out = "";
  while(i < len) {
  /* c1 */
  do {
  c1 = base64DecodeChars[str.charCodeAt(i++) & 0xff];
  } while(i < len && c1 == -1);
  if(c1 == -1)
  break;
 
  /* c2 */
  do {
  c2 = base64DecodeChars[str.charCodeAt(i++) & 0xff];
  } while(i < len && c2 == -1);
  if(c2 == -1)
  break;
 
  out += String.fromCharCode((c1 << 2) | ((c2 & 0x30) >> 4));
 
  /* c3 */
  do {
  c3 = str.charCodeAt(i++) & 0xff;
  if(c3 == 61)
  return out;
  c3 = base64DecodeChars[c3];
  } while(i < len && c3 == -1);
  if(c3 == -1)
  break;
 
  out += String.fromCharCode(((c2 & 0XF) << 4) | ((c3 & 0x3C) >> 2));
 
  /* c4 */
  do {
  c4 = str.charCodeAt(i++) & 0xff;
  if(c4 == 61)
  return out;
  c4 = base64DecodeChars[c4];
  } while(i < len && c4 == -1);
  if(c4 == -1)
  break;
  out += String.fromCharCode(((c3 & 0x03) << 6) | c4);
  }
  return out;
  }
 
  if (!window.btoa) window.btoa = base64encode;
  if (!window.atob) window.atob = base64decode;
 
  })();
  /*!
  * bean.js - copyright Jacob Thornton 2011
  * https://github.com/fat/bean
  * MIT License
  * special thanks to:
  * dean edwards: http://dean.edwards.name/
  * dperini: https://github.com/dperini/nwevents
  * the entire mootools team: github.com/mootools/mootools-core
  *//*global module:true, define:true*/
  !function(a,b,c){typeof module!="undefined"?module.exports=c(a,b):typeof define=="function"&&typeof define.amd=="object"?define(c):b[a]=c(a,b)}("bean",this,function(a,b){var c=window,d=b[a],e=/over|out/,f=/[^\.]*(?=\..*)\.|.*/,g=/\..*/,h="addEventListener",i="attachEvent",j="removeEventListener",k="detachEvent",l=document||{},m=l.documentElement||{},n=m[h],o=n?h:i,p=Array.prototype.slice,q=/click|mouse|menu|drag|drop/i,r=/^touch|^gesture/i,s={one:1},t=function(a,b,c){for(c=0;c<b.length;c++)a[b[c]]=1;return a}({},("click dblclick mouseup mousedown contextmenu mousewheel DOMMouseScroll mouseover mouseout mousemove selectstart selectend keydown keypress keyup orientationchange focus blur change reset select submit load unload beforeunload resize move DOMContentLoaded readystatechange error abort scroll "+(n?"show input invalid touchstart touchmove touchend touchcancel gesturestart gesturechange gestureend message readystatechange pageshow pagehide popstate hashchange offline online afterprint beforeprint dragstart dragenter dragover dragleave drag drop dragend loadstart progress suspend emptied stalled loadmetadata loadeddata canplay canplaythrough playing waiting seeking seeked ended durationchange timeupdate play pause ratechange volumechange cuechange checking noupdate downloading cached updateready obsolete ":"")).split(" ")),u=function(){function a(a,b){while((b=b.parentNode)!==null)if(b===a)return!0;return!1}function b(b){var c=b.relatedTarget;return c?c!==this&&c.prefix!=="xul"&&!/document/.test(this.toString())&&!a(this,c):c===null}return{mouseenter:{base:"mouseover",condition:b},mouseleave:{base:"mouseout",condition:b},mousewheel:{base:/Firefox/.test(navigator.userAgent)?"DOMMouseScroll":"mousewheel"}}}(),v=function(){var a="altKey attrChange attrName bubbles cancelable ctrlKey currentTarget detail eventPhase getModifierState isTrusted metaKey relatedNode relatedTarget shiftKey srcElement target timeStamp type view which".split(" "),b=a.concat("button buttons clientX clientY dataTransfer fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" ")),c=a.concat("char charCode key keyCode".split(" ")),d=a.concat("touches targetTouches changedTouches scale rotation".split(" ")),f="preventDefault",g=function(a){return function(){a[f]?a[f]():a.returnValue=!1}},h="stopPropagation",i=function(a){return function(){a[h]?a[h]():a.cancelBubble=!0}},j=function(a){return function(){a[f](),a[h](),a.stopped=!0}},k=function(a,b,c){var d,e;for(d=c.length;d--;)e=c[d],!(e in b)&&e in a&&(b[e]=a[e])};return function(n,o){var p={originalEvent:n,isNative:o};if(!n)return p;var s,t=n.type,u=n.target||n.srcElement;p[f]=g(n),p[h]=i(n),p.stop=j(p),p.target=u&&u.nodeType===3?u.parentNode:u;if(o){if(t.indexOf("key")!==-1)s=c,p.keyCode=n.which||n.keyCode;else if(q.test(t)){s=b,p.rightClick=n.which===3||n.button===2,p.pos={x:0,y:0};if(n.pageX||n.pageY)p.clientX=n.pageX,p.clientY=n.pageY;else if(n.clientX||n.clientY)p.clientX=n.clientX+l.body.scrollLeft+m.scrollLeft,p.clientY=n.clientY+l.body.scrollTop+m.scrollTop;e.test(t)&&(p.relatedTarget=n.relatedTarget||n[(t==="mouseover"?"from":"to")+"Element"])}else r.test(t)&&(s=d);k(n,p,s||a)}return p}}(),w=function(a,b){return!n&&!b&&(a===l||a===c)?m:a},x=function(){function a(a,b,c,d,e){this.element=a,this.type=b,this.handler=c,this.original=d,this.namespaces=e,this.custom=u[b],this.isNative=t[b]&&a[o],this.eventType=n||this.isNative?b:"propertychange",this.customType=!n&&!this.isNative&&b,this.target=w(a,this.isNative),this.eventSupport=this.target[o]}return a.prototype={inNamespaces:function(a){var b,c;if(!a)return!0;if(!this.namespaces)return!1;for(b=a.length;b--;)for(c=this.namespaces.length;c--;)if(a[b]===this.namespaces[c])return!0;return!1},matches:function(a,b,c){return this.element===a&&(!b||this.original===b)&&(!c||this.handler===c)}},a}(),y=function(){var a={},b=function(c,d,e,f,g){if(!d||d==="*")for(var h in a)h.charAt(0)==="$"&&b(c,h.substr(1),e,f,g);else{var i=0,j,k=a["$"+d],l=c==="*";if(!k)return;for(j=k.length;i<j;i++)if(l||k[i].matches(c,e,f))if(!g(k[i],k,i,d))return}},c=function(b,c,d){var e,f=a["$"+c];if(f)for(e=f.length;e--;)if(f[e].matches(b,d,null))return!0;return!1},d=function(a,c,d){var e=[];return b(a,c,d,null,function(a){return e.push(a)}),e},e=function(b){return(a["$"+b.type]||(a["$"+b.type]=[])).push(b),b},f=function(c){b(c.element,c.type,null,c.handler,function(b,c,d){return c.splice(d,1),c.length===0&&delete a["$"+b.type],!1})},g=function(){var b,c=[];for(b in a)b.charAt(0)==="$"&&(c=c.concat(a[b]));return c};return{has:c,get:d,put:e,del:f,entries:g}}(),z=n?function(a,b,c,d){a[d?h:j](b,c,!1)}:function(a,b,c,d,e){e&&d&&a["_on"+e]===null&&(a["_on"+e]=0),a[d?i:k]("on"+b,c)},A=function(a,b,d){return function(e){return e=v(e||((this.ownerDocument||this.document||this).parentWindow||c).event,!0),b.apply(a,[e].concat(d))}},B=function(a,b,d,e,f,g){return function(h){if(e?e.apply(this,arguments):n?!0:h&&h.propertyName==="_on"+d||!h)h&&(h=v(h||((this.ownerDocument||this.document||this).parentWindow||c).event,g)),b.apply(a,h&&(!f||f.length===0)?arguments:p.call(arguments,h?0:1).concat(f))}},C=function(a,b,c,d,e){return function(){a(b,c,e),d.apply(this,arguments)}},D=function(a,b,c,d){var e,f,h,i=b&&b.replace(g,""),j=y.get(a,i,c);for(e=0,f=j.length;e<f;e++)j[e].inNamespaces(d)&&((h=j[e]).eventSupport&&z(h.target,h.eventType,h.handler,!1,h.type),y.del(h))},E=function(a,b,c,d,e){var h,i=b.replace(g,""),j=b.replace(f,"").split(".");if(y.has(a,i,c))return a;i==="unload"&&(c=C(D,a,i,c,d)),u[i]&&(u[i].condition&&(c=B(a,c,i,u[i].condition,!0)),i=u[i].base||i),h=y.put(new x(a,i,c,d,j[0]&&j)),h.handler=h.isNative?A(a,h.handler,e):B(a,h.handler,i,!1,e,!1),h.eventSupport&&z(h.target,h.eventType,h.handler,!0,h.customType)},F=function(a,b,c){return function(d){var e,f,g=typeof a=="string"?c(a,this):a;for(e=d.target;e&&e!==this;e=e.parentNode)for(f=g.length;f--;)if(g[f]===e)return b.apply(e,arguments)}},G=function(a,b,c){var d,e,h,i,j,k=D,l=b&&typeof b=="string";if(l&&b.indexOf(" ")>0){b=b.split(" ");for(j=b.length;j--;)G(a,b[j],c);return a}h=l&&b.replace(g,""),h&&u[h]&&(h=u[h].type);if(!b||l){if(i=l&&b.replace(f,""))i=i.split(".");k(a,h,c,i)}else if(typeof b=="function")k(a,null,b);else for(d in b)b.hasOwnProperty(d)&&G(a,d,b[d]);return a},H=function(a,b,c,d,e){var f,g,h,i,j=c,k=c&&typeof c=="string";if(b&&!c&&typeof b=="object")for(f in b)b.hasOwnProperty(f)&&H.apply(this,[a,f,b[f]]);else{i=arguments.length>3?p.call(arguments,3):[],g=(k?c:b).split(" "),k&&(c=F(b,j=d,e))&&(i=p.call(i,1)),this===s&&(c=C(G,a,b,c,j));for(h=g.length;h--;)E(a,g[h],c,j,i)}return a},I=function(){return H.apply(s,arguments)},J=n?function(a,b,d){var e=l.createEvent(a?"HTMLEvents":"UIEvents");e[a?"initEvent":"initUIEvent"](b,!0,!0,c,1),d.dispatchEvent(e)}:function(a,b,c){c=w(c,a),a?c.fireEvent("on"+b,l.createEventObject()):c["_on"+b]++},K=function(a,b,c){var d,e,h,i,j,k=b.split(" ");for(d=k.length;d--;){b=k[d].replace(g,"");if(i=k[d].replace(f,""))i=i.split(".");if(!i&&!c&&a[o])J(t[b],b,a);else{j=y.get(a,b),c=[!1].concat(c);for(e=0,h=j.length;e<h;e++)j[e].inNamespaces(i)&&j[e].handler.apply(a,c)}}return a},L=function(a,b,c){var d=0,e=y.get(b,c),f=e.length;for(;d<f;d++)e[d].original&&H(a,e[d].type,e[d].original);return a},M={add:H,one:I,remove:G,clone:L,fire:K,noConflict:function(){return b[a]=d,this}};if(c[i]){var N=function(){var a,b=y.entries();for(a in b)b[a].type&&b[a].type!=="unload"&&G(b[a].element,b[a].type);c[k]("onunload",N),c.CollectGarbage&&c.CollectGarbage()};c[i]("onunload",N)}return M})
  /*!
  * bean.js - copyright Jacob Thornton 2011
  * https://github.com/fat/bean
  * MIT License
  * special thanks to:
  * dean edwards: http://dean.edwards.name/
  * dperini: https://github.com/dperini/nwevents
  * the entire mootools team: github.com/mootools/mootools-core
  */
  /*global module:true, define:true*/
  !function (name, context, definition) {
  if (typeof module !== 'undefined') module.exports = definition(name, context);
  else if (typeof define === 'function' && typeof define.amd === 'object') define(definition);
  else context[name] = definition(name, context);
  }('bean', this, function (name, context) {
  var win = window
  , old = context[name]
  , overOut = /over|out/
  , namespaceRegex = /[^\.]*(?=\..*)\.|.*/
  , nameRegex = /\..*/
  , addEvent = 'addEventListener'
  , attachEvent = 'attachEvent'
  , removeEvent = 'removeEventListener'
  , detachEvent = 'detachEvent'
  , doc = document || {}
  , root = doc.documentElement || {}
  , W3C_MODEL = root[addEvent]
  , eventSupport = W3C_MODEL ? addEvent : attachEvent
  , slice = Array.prototype.slice
  , mouseTypeRegex = /click|mouse|menu|drag|drop/i
  , touchTypeRegex = /^touch|^gesture/i
  , ONE = { one: 1 } // singleton for quick matching making add() do one()
 
  , nativeEvents = (function (hash, events, i) {
  for (i = 0; i < events.length; i++)
  hash[events[i]] = 1
  return hash
  })({}, (
  'click dblclick mouseup mousedown contextmenu ' + // mouse buttons
  'mousewheel DOMMouseScroll ' + // mouse wheel
  'mouseover mouseout mousemove selectstart selectend ' + // mouse movement
  'keydown keypress keyup ' + // keyboard
  'orientationchange ' + // mobile
  'focus blur change reset select submit ' + // form elements
  'load unload beforeunload resize move DOMContentLoaded readystatechange ' + // window
  'error abort scroll ' + // misc
  (W3C_MODEL ? // element.fireEvent('onXYZ'... is not forgiving if we try to fire an event
  // that doesn't actually exist, so make sure we only do these on newer browsers
  'show ' + // mouse buttons
  'input invalid ' + // form elements
  'touchstart touchmove touchend touchcancel ' + // touch
  'gesturestart gesturechange gestureend ' + // gesture
  'message readystatechange pageshow pagehide popstate ' + // window
  'hashchange offline online ' + // window
  'afterprint beforeprint ' + // printing
  'dragstart dragenter dragover dragleave drag drop dragend ' + // dnd
  'loadstart progress suspend emptied stalled loadmetadata ' + // media
  'loadeddata canplay canplaythrough playing waiting seeking ' + // media
  'seeked ended durationchange timeupdate play pause ratechange ' + // media
  'volumechange cuechange ' + // media
  'checking noupdate downloading cached updateready obsolete ' + // appcache
  '' : '')
  ).split(' ')
  )
 
  , customEvents = (function () {
  function isDescendant(parent, node) {
  while ((node = node.parentNode) !== null) {
  if (node === parent) return true
  }
  return false
  }
 
  function check(event) {
  var related = event.relatedTarget
  if (!related) return related === null
  return (related !== this && related.prefix !== 'xul' && !/document/.test(this.toString()) && !isDescendant(this, related))
  }
 
  return {
  mouseenter: { base: 'mouseover', condition: check }
  , mouseleave: { base: 'mouseout', condition: check }
  , mousewheel: { base: /Firefox/.test(navigator.userAgent) ? 'DOMMouseScroll' : 'mousewheel' }
  }
  })()
 
  , fixEvent = (function () {
  var commonProps = 'altKey attrChange attrName bubbles cancelable ctrlKey currentTarget detail eventPhase getModifierState isTrusted metaKey relatedNode relatedTarget shiftKey srcElement target timeStamp type view which'.split(' ')
  , mouseProps = commonProps.concat('button buttons clientX clientY dataTransfer fromElement offsetX offsetY pageX pageY screenX screenY toElement'.split(' '))
  , keyProps = commonProps.concat('char charCode key keyCode'.split(' '))
  , touchProps = commonProps.concat('touches targetTouches changedTouches scale rotation'.split(' '))
  , preventDefault = 'preventDefault'
  , createPreventDefault = function (event) {
  return function () {
  if (event[preventDefault])
  event[preventDefault]()
  else
  event.returnValue = false
  }
  }
  , stopPropagation = 'stopPropagation'
  , createStopPropagation = function (event) {
  return function () {
  if (event[stopPropagation])
  event[stopPropagation]()
  else
  event.cancelBubble = true
  }
  }
  , createStop = function (synEvent) {
  return function () {
  synEvent[preventDefault]()
  synEvent[stopPropagation]()
  synEvent.stopped = true
  }
  }
  , copyProps = function (event, result, props) {
  var i, p
  for (i = props.length; i--;) {
  p = props[i]
  if (!(p in result) && p in event) result[p] = event[p]
  }
  }
 
  return function (event, isNative) {
  var result = { originalEvent: event, isNative: isNative }
  if (!event)
  return result
 
  var props
  , type = event.type
  , target = event.target || event.srcElement
 
  result[preventDefault] = createPreventDefault(event)
  result[stopPropagation] = createStopPropagation(event)
  result.stop = createStop(result)
  result.target = target && target.nodeType === 3 ? target.parentNode : target
 
  if (isNative) { // we only need basic augmentation on custom events, the rest is too expensive
  if (type.indexOf('key') !== -1) {
  props = keyProps
  result.keyCode = event.which || event.keyCode
  } else if (mouseTypeRegex.test(type)) {
  props = mouseProps
  result.rightClick = event.which === 3 || event.button === 2
  result.pos = { x: 0, y: 0 }
  if (event.pageX || event.pageY) {
  result.clientX = event.pageX
  result.clientY = event.pageY
  } else if (event.clientX || event.clientY) {
  result.clientX = event.clientX + doc.body.scrollLeft + root.scrollLeft
  result.clientY = event.clientY + doc.body.scrollTop + root.scrollTop
  }
  if (overOut.test(type))
  result.relatedTarget = event.relatedTarget || event[(type === 'mouseover' ? 'from' : 'to') + 'Element']
  } else if (touchTypeRegex.test(type)) {
  props = touchProps
  }
  copyProps(event, result, props || commonProps)
  }
  return result
  }
  })()
 
  // if we're in old IE we can't do onpropertychange on doc or win so we use doc.documentElement for both
  , targetElement = function (element, isNative) {
  return !W3C_MODEL && !isNative && (element === doc || element === win) ? root : element
  }
 
  // we use one of these per listener, of any type
  , RegEntry = (function () {
  function entry(element, type, handler, original, namespaces) {
  this.element = element
  this.type = type
  this.handler = handler
  this.original = original
  this.namespaces = namespaces
  this.custom = customEvents[type]
  this.isNative = nativeEvents[type] && element[eventSupport]
  this.eventType = W3C_MODEL || this.isNative ? type : 'propertychange'
  this.customType = !W3C_MODEL && !this.isNative && type
  this.target = targetElement(element, this.isNative)
  this.eventSupport = this.target[eventSupport]
  }
 
  entry.prototype = {
  // given a list of namespaces, is our entry in any of them?
  inNamespaces: function (checkNamespaces) {
  var i, j
  if (!checkNamespaces)
  return true
  if (!this.namespaces)
  return false
  for (i = checkNamespaces.length; i--;) {
  for (j = this.namespaces.length; j--;) {
  if (checkNamespaces[i] === this.namespaces[j])
  return true
  }
  }
  return false
  }
 
  // match by element, original fn (opt), handler fn (opt)
  , matches: function (checkElement, checkOriginal, checkHandler) {
  return this.element === checkElement &&
  (!checkOriginal || this.original === checkOriginal) &&
  (!checkHandler || this.handler === checkHandler)
  }
  }
 
  return entry
  })()
 
  , registry = (function () {
  // our map stores arrays by event type, just because it's better than storing
  // everything in a single array. uses '$' as a prefix for the keys for safety
  var map = {}
 
  // generic functional search of our registry for matching listeners,
  // `fn` returns false to break out of the loop
  , forAll = function (element, type, original, handler, fn) {
  if (!type || type === '*') {
  // search the whole registry
  for (var t in map) {
  if (t.charAt(0) === '$')
  forAll(element, t.substr(1), original, handler, fn)
  }
  } else {
  var i = 0, l, list = map['$' + type], all = element === '*'
  if (!list)
  return
  for (l = list.length; i < l; i++) {
  if (all || list[i].matches(element, original, handler))
  if (!fn(list[i], list, i, type))
  return
  }
  }
  }
 
  , has = function (element, type, original) {
  // we're not using forAll here simply because it's a bit slower and this
  // needs to be fast
  var i, list = map['$' + type]
  if (list) {
  for (i = list.length; i--;) {
  if (list[i].matches(element, original, null))
  return true
  }
  }
  return false
  }
 
  , get = function (element, type, original) {
  var entries = []
  forAll(element, type, original, null, function (entry) { return entries.push(entry) })
  return entries
  }
 
  , put = function (entry) {
  (map['$' + entry.type] || (map['$' + entry.type] = [])).push(entry)
  return entry
  }
 
  , del = function (entry) {
  forAll(entry.element, entry.type, null, entry.handler, function (entry, list, i) {
  list.splice(i, 1)
  if (list.length === 0)
  delete map['$' + entry.type]
  return false
  })
  }
 
  // dump all entries, used for onunload
  , entries = function () {
  var t, entries = []
  for (t in map) {
  if (t.charAt(0) === '$')
  entries = entries.concat(map[t])
  }
  return entries
  }
 
  return { has: has, get: get, put: put, del: del, entries: entries }
  })()
 
  // add and remove listeners to DOM elements
  , listener = W3C_MODEL ? function (element, type, fn, add) {
  element[add ? addEvent : removeEvent](type, fn, false)
  } : function (element, type, fn, add, custom) {
  if (custom && add && element['_on' + custom] === null)
  element['_on' + custom] = 0
  element[add ? attachEvent : detachEvent]('on' + type, fn)
  }
 
  , nativeHandler = function (element, fn, args) {
  return function (event) {
  event = fixEvent(event || ((this.ownerDocument || this.document || this).parentWindow || win).event, true)
  return fn.apply(element, [event].concat(args))
  }
  }
 
  , customHandler = function (element, fn, type, condition, args, isNative) {
  return function (event) {
  if (condition ? condition.apply(this, arguments) : W3C_MODEL ? true : event && event.propertyName === '_on' + type || !event) {
  if (event)
  event = fixEvent(event || ((this.ownerDocument || this.document || this).parentWindow || win).event, isNative)
  fn.apply(element, event && (!args || args.length === 0) ? arguments : slice.call(arguments, event ? 0 : 1).concat(args))
  }
  }
  }
 
  , once = function (rm, element, type, fn, originalFn) {
  // wrap the handler in a handler that does a remove as well
  return function () {
  rm(element, type, originalFn)
  fn.apply(this, arguments)
  }
  }
 
  , removeListener = function (element, orgType, handler, namespaces) {
  var i, l, entry
  , type = (orgType && orgType.replace(nameRegex, ''))
  , handlers = registry.get(element, type, handler)
 
  for (i = 0, l = handlers.length; i < l; i++) {
  if (handlers[i].inNamespaces(namespaces)) {
  if ((entry = handlers[i]).eventSupport)
  listener(entry.target, entry.eventType, entry.handler, false, entry.type)
  // TODO: this is problematic, we have a registry.get() and registry.del() that
  // both do registry searches so we waste cycles doing this. Needs to be rolled into
  // a single registry.forAll(fn) that removes while finding, but the catch is that
  // we'll be splicing the arrays that we're iterating over. Needs extra tests to
  // make sure we don't screw it up. @rvagg
  registry.del(entry)
  }
  }
  }
 
  , addListener = function (element, orgType, fn, originalFn, args) {
  var entry
  , type = orgType.replace(nameRegex, '')
  , namespaces = orgType.replace(namespaceRegex, '').split('.')
 
  if (registry.has(element, type, fn))
  return element // no dupe
  if (type === 'unload')
  fn = once(removeListener, element, type, fn, originalFn) // self clean-up
  if (customEvents[type]) {
  if (customEvents[type].condition)
  fn = customHandler(element, fn, type, customEvents[type].condition, true)
  type = customEvents[type].base || type
  }
  entry = registry.put(new RegEntry(element, type, fn, originalFn, namespaces[0] && namespaces))
  entry.handler = entry.isNative ?
  nativeHandler(element, entry.handler, args) :
  customHandler(element, entry.handler, type, false, args, false)
  if (entry.eventSupport)
  listener(entry.target, entry.eventType, entry.handler, true, entry.customType)
  }
 
  , del = function (selector, fn, $) {
  return function (e) {
  var target, i, array = typeof selector === 'string' ? $(selector, this) : selector
  for (target = e.target; target && target !== this; target = target.parentNode) {
  for (i = array.length; i--;) {
  if (array[i] === target) {
  return fn.apply(target, arguments)
  }
  }
  }
  }
  }
 
  , remove = function (element, typeSpec, fn) {
  var k, m, type, namespaces, i
  , rm = removeListener
  , isString = typeSpec && typeof typeSpec === 'string'
 
  if (isString && typeSpec.indexOf(' ') > 0) {
  // remove(el, 't1 t2 t3', fn) or remove(el, 't1 t2 t3')
  typeSpec = typeSpec.split(' ')
  for (i = typeSpec.length; i--;)
  remove(element, typeSpec[i], fn)
  return element
  }
  type = isString && typeSpec.replace(nameRegex, '')
  if (type && customEvents[type])
  type = customEvents[type].type
  if (!typeSpec || isString) {
  // remove(el) or remove(el, t1.ns) or remove(el, .ns) or remove(el, .ns1.ns2.ns3)
  if (namespaces = isString && typeSpec.replace(namespaceRegex, ''))
  namespaces = namespaces.split('.')
  rm(element, type, fn, namespaces)
  } else if (typeof typeSpec === 'function') {
  // remove(el, fn)
  rm(element, null, typeSpec)
  } else {
  // remove(el, { t1: fn1, t2, fn2 })
  for (k in typeSpec) {
  if (typeSpec.hasOwnProperty(k))
  remove(element, k, typeSpec[k])
  }
  }
  return element
  }
 
  , add = function (element, events, fn, delfn, $) {
  var type, types, i, args
  , originalFn = fn
  , isDel = fn && typeof fn === 'string'
 
  if (events && !fn && typeof events === 'object') {
  for (type in events) {
  if (events.hasOwnProperty(type))
  add.apply(this, [ element, type, events[type] ])
  }
  } else {
  args = arguments.length > 3 ? slice.call(arguments, 3) : []
  types = (isDel ? fn : events).split(' ')
  isDel && (fn = del(events, (originalFn = delfn), $)) && (args = slice.call(args, 1))
  // special case for one()
  this === ONE && (fn = once(remove, element, events, fn, originalFn))
  for (i = types.length; i--;) addListener(element, types[i], fn, originalFn, args)
  }
  return element
  }
 
  , one = function () {
  return add.apply(ONE, arguments)
  }
 
  , fireListener = W3C_MODEL ? function (isNative, type, element) {
  var evt = doc.createEvent(isNative ? 'HTMLEvents' : 'UIEvents')
  evt[isNative ? 'initEvent' : 'initUIEvent'](type, true, true, win, 1)
  element.dispatchEvent(evt)
  } : function (isNative, type, element) {
  element = targetElement(element, isNative)
  // if not-native then we're using onpropertychange so we just increment a custom property
  isNative ? element.fireEvent('on' + type, doc.createEventObject()) : element['_on' + type]++
  }
 
  , fire = function (element, type, args) {
  var i, j, l, names, handlers
  , types = type.split(' ')
 
  for (i = types.length; i--;) {
  type = types[i].replace(nameRegex, '')
  if (names = types[i].replace(namespaceRegex, ''))
  names = names.split('.')
  if (!names && !args && element[eventSupport]) {
  fireListener(nativeEvents[type], type, element)
  } else {
  // non-native event, either because of a namespace, arguments or a non DOM element
  // iterate over all listeners and manually 'fire'
  handlers = registry.get(element, type)
  args = [false].concat(args)
  for (j = 0, l = handlers.length; j < l; j++) {
  if (handlers[j].inNamespaces(names))
  handlers[j].handler.apply(element, args)
  }
  }
  }
  return element
  }
 
  , clone = function (element, from, type) {
  var i = 0
  , handlers = registry.get(from, type)
  , l = handlers.length
 
  for (;i < l; i++)
  handlers[i].original && add(element, handlers[i].type, handlers[i].original)
  return element
  }
 
  , bean = {
  add: add
  , one: one
  , remove: remove
  , clone: clone
  , fire: fire
  , noConflict: function () {
  context[name] = old
  return this
  }
  }
 
  if (win[attachEvent]) {
  // for IE, clean up on unload to avoid leaks
  var cleanup = function () {
  var i, entries = registry.entries()
  for (i in entries) {
  if (entries[i].type && entries[i].type !== 'unload')
  remove(entries[i].element, entries[i].type)
  }
  win[detachEvent]('onunload', cleanup)
  win.CollectGarbage && win.CollectGarbage()
  }
  win[attachEvent]('onunload', cleanup)
  }
 
  return bean
  });
 
  /*
  * Canvas2Image v0.1
  * Copyright (c) 2008 Jacob Seidelin, cupboy@gmail.com
  * MIT License [http://www.opensource.org/licenses/mit-license.php]
  */
 
  var Canvas2Image = (function() {
  // check if we have canvas support
  var oCanvas = document.createElement("canvas"),
  sc = String.fromCharCode,
  strDownloadMime = "image/octet-stream",
  bReplaceDownloadMime = false;
 
  // no canvas, bail out.
  if (!oCanvas.getContext) {
  return {
  saveAsBMP : function(){},
  saveAsPNG : function(){},
  saveAsJPEG : function(){}
  }
  }
 
  var bHasImageData = !!(oCanvas.getContext("2d").getImageData),
  bHasDataURL = !!(oCanvas.toDataURL),
  bHasBase64 = !!(window.btoa);
 
  // ok, we're good
  var readCanvasData = function(oCanvas) {
  var iWidth = parseInt(oCanvas.width),
  iHeight = parseInt(oCanvas.height);
  return oCanvas.getContext("2d").getImageData(0,0,iWidth,iHeight);
  }
 
  // base64 encodes either a string or an array of charcodes
  var encodeData = function(data) {
  var i, aData, strData = "";
 
  if (typeof data == "string") {
  strData = data;
  } else {
  aData = data;
  for (i = 0; i < aData.length; i++) {
  strData += sc(aData[i]);
  }
  }
  return btoa(strData);
  }
 
  // creates a base64 encoded string containing BMP data takes an imagedata object as argument
  var createBMP = function(oData) {
  var strHeader = '',
  iWidth = oData.width,
  iHeight = oData.height;
 
  strHeader += 'BM';
 
  var iFileSize = iWidth*iHeight*4 + 54; // total header size = 54 bytes
  strHeader += sc(iFileSize % 256); iFileSize = Math.floor(iFileSize / 256);
  strHeader += sc(iFileSize % 256); iFileSize = Math.floor(iFileSize / 256);
  strHeader += sc(iFileSize % 256); iFileSize = Math.floor(iFileSize / 256);
  strHeader += sc(iFileSize % 256);
 
  strHeader += sc(0, 0, 0, 0, 54, 0, 0, 0); // data offset
  strHeader += sc(40, 0, 0, 0); // info header size
 
  var iImageWidth = iWidth;
  strHeader += sc(iImageWidth % 256); iImageWidth = Math.floor(iImageWidth / 256);
  strHeader += sc(iImageWidth % 256); iImageWidth = Math.floor(iImageWidth / 256);
  strHeader += sc(iImageWidth % 256); iImageWidth = Math.floor(iImageWidth / 256);
  strHeader += sc(iImageWidth % 256);
 
  var iImageHeight = iHeight;
  strHeader += sc(iImageHeight % 256); iImageHeight = Math.floor(iImageHeight / 256);
  strHeader += sc(iImageHeight % 256); iImageHeight = Math.floor(iImageHeight / 256);
  strHeader += sc(iImageHeight % 256); iImageHeight = Math.floor(iImageHeight / 256);
  strHeader += sc(iImageHeight % 256);
 
  strHeader += sc(1, 0, 32, 0); // num of planes & num of bits per pixel
  strHeader += sc(0, 0, 0, 0); // compression = none
 
  var iDataSize = iWidth*iHeight*4;
  strHeader += sc(iDataSize % 256); iDataSize = Math.floor(iDataSize / 256);
  strHeader += sc(iDataSize % 256); iDataSize = Math.floor(iDataSize / 256);
  strHeader += sc(iDataSize % 256); iDataSize = Math.floor(iDataSize / 256);
  strHeader += sc(iDataSize % 256);
 
  strHeader += sc(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); // these bytes are not used
 
  var aImgData = oData.data,
  strPixelData = "",
  c, x, y = iHeight,
  iOffsetX, iOffsetY, strPixelRow;
 
  do {
  iOffsetY = iWidth*(y-1)*4;
  strPixelRow = "";
  for (x = 0; x < iWidth; x++) {
  iOffsetX = 4*x;
  strPixelRow += sc(
  aImgData[iOffsetY + iOffsetX + 2], // B
  aImgData[iOffsetY + iOffsetX + 1], // G
  aImgData[iOffsetY + iOffsetX], // R
  aImgData[iOffsetY + iOffsetX + 3] // A
  );
  }
  strPixelData += strPixelRow;
  } while (--y);
 
  return encodeData(strHeader + strPixelData);
  }
 
  // sends the generated file to the client
  var saveFile = function(strData) {
  if (!window.open(strData)) {
  document.location.href = strData;
  }
  }
 
  var makeDataURI = function(strData, strMime) {
  return "data:" + strMime + ";base64," + strData;
  }
 
  // generates a <img> object containing the imagedata
  var makeImageObject = function(strSource) {
  var oImgElement = document.createElement("img");
  oImgElement.src = strSource;
  return oImgElement;
  }
 
  var scaleCanvas = function(oCanvas, iWidth, iHeight) {
  if (iWidth && iHeight) {
  var oSaveCanvas = document.createElement("canvas");
 
  oSaveCanvas.width = iWidth;
  oSaveCanvas.height = iHeight;
  oSaveCanvas.style.width = iWidth+"px";
  oSaveCanvas.style.height = iHeight+"px";
 
  var oSaveCtx = oSaveCanvas.getContext("2d");
 
  oSaveCtx.drawImage(oCanvas, 0, 0, oCanvas.width, oCanvas.height, 0, 0, iWidth, iWidth);
 
  return oSaveCanvas;
  }
  return oCanvas;
  }
 
  return {
  saveAsPNG : function(oCanvas, bReturnImg, iWidth, iHeight) {
  if (!bHasDataURL) return false;
 
  var oScaledCanvas = scaleCanvas(oCanvas, iWidth, iHeight),
  strMime = "image/png",
  strData = oScaledCanvas.toDataURL(strMime);
 
  if (bReturnImg) {
  return makeImageObject(strData);
  } else {
  saveFile(bReplaceDownloadMime ? strData.replace(strMime, strDownloadMime) : strData);
  }
  return true;
  },
 
  saveAsJPEG : function(oCanvas, bReturnImg, iWidth, iHeight) {
  if (!bHasDataURL) return false;
 
  var oScaledCanvas = scaleCanvas(oCanvas, iWidth, iHeight),
  strMime = "image/jpeg",
  strData = oScaledCanvas.toDataURL(strMime);
 
  // check if browser actually supports jpeg by looking for the mime type in the data uri. if not, return false
  if (strData.indexOf(strMime) != 5) return false;
 
  if (bReturnImg) {
  return makeImageObject(strData);
  } else {
  saveFile(bReplaceDownloadMime ? strData.replace(strMime, strDownloadMime) : strData);
  }
  return true;
  },
 
  saveAsBMP : function(oCanvas, bReturnImg, iWidth, iHeight) {
  if (!(bHasDataURL && bHasImageData && bHasBase64)) return false;
 
  var oScaledCanvas = scaleCanvas(oCanvas, iWidth, iHeight),
  strMime = "image/bmp",
  oData = readCanvasData(oScaledCanvas),
  strImgData = createBMP(oData);
 
  if (bReturnImg) {
  return makeImageObject(makeDataURI(strImgData, strMime));
  } else {
  saveFile(makeDataURI(strImgData, strMime));
  }
  return true;
  }
  };
  })();
  /**
  * This code is released to the public domain by Jim Studt, 2007.
  * He may keep some sort of up to date copy at http://www.federated.com/~jim/canvastext/
 
  * A partial support for special characters has been added too.
  */
  var CanvasText = {
  /** The letters definition. It is a list of letters,
  * with their width, and the coordinates of points compositing them.
  * The syntax for the points is : [x, y], null value means "pen up"
  */
  letters: {
  '\n':{ width: -1, points: [] },
  ' ': { width: 10, points: [] },
  '!': { width: 10, points: [[5,21],[5,7],null,[5,2],[4,1],[5,0],[6,1],[5,2]] },
  '"': { width: 16, points: [[4,21],[4,14],null,[12,21],[12,14]] },
  '#': { width: 21, points: [[11,25],[4,-7],null,[17,25],[10,-7],null,[4,12],[18,12],null,[3,6],[17,6]] },
  '$': { width: 20, points: [[8,25],[8,-4],null,[12,25],[12,-4],null,[17,18],[15,20],[12,21],[8,21],[5,20],[3,18],[3,16],[4,14],[5,13],[7,12],[13,10],[15,9],[16,8],[17,6],[17,3],[15,1],[12,0],[8,0],[5,1],[3,3]] },
  '%': { width: 24, points: [[21,21],[3,0],null,[8,21],[10,19],[10,17],[9,15],[7,14],[5,14],[3,16],[3,18],[4,20],[6,21],[8,21],null,[17,7],[15,6],[14,4],[14,2],[16,0],[18,0],[20,1],[21,3],[21,5],[19,7],[17,7]] },
  '&': { width: 26, points: [[23,12],[23,13],[22,14],[21,14],[20,13],[19,11],[17,6],[15,3],[13,1],[11,0],[7,0],[5,1],[4,2],[3,4],[3,6],[4,8],[5,9],[12,13],[13,14],[14,16],[14,18],[13,20],[11,21],[9,20],[8,18],[8,16],[9,13],[11,10],[16,3],[18,1],[20,0],[22,0],[23,1],[23,2]] },
  '\'':{ width: 10, points: [[5,19],[4,20],[5,21],[6,20],[6,18],[5,16],[4,15]] },
  '(': { width: 14, points: [[11,25],[9,23],[7,20],[5,16],[4,11],[4,7],[5,2],[7,-2],[9,-5],[11,-7]] },
  ')': { width: 14, points: [[3,25],[5,23],[7,20],[9,16],[10,11],[10,7],[9,2],[7,-2],[5,-5],[3,-7]] },
  '*': { width: 16, points: [[8,21],[8,9],null,[3,18],[13,12],null,[13,18],[3,12]] },
  '+': { width: 26, points: [[13,18],[13,0],null,[4,9],[22,9]] },
  ',': { width: 10, points: [[6,1],[5,0],[4,1],[5,2],[6,1],[6,-1],[5,-3],[4,-4]] },
  '-': { width: 26, points: [[4,9],[22,9]] },
  '.': { width: 10, points: [[5,2],[4,1],[5,0],[6,1],[5,2]] },
  '/': { width: 22, points: [[20,25],[2,-7]] },
  '0': { width: 20, points: [[9,21],[6,20],[4,17],[3,12],[3,9],[4,4],[6,1],[9,0],[11,0],[14,1],[16,4],[17,9],[17,12],[16,17],[14,20],[11,21],[9,21]] },
  '1': { width: 20, points: [[6,17],[8,18],[11,21],[11,0]] },
  '2': { width: 20, points: [[4,16],[4,17],[5,19],[6,20],[8,21],[12,21],[14,20],[15,19],[16,17],[16,15],[15,13],[13,10],[3,0],[17,0]] },
  '3': { width: 20, points: [[5,21],[16,21],[10,13],[13,13],[15,12],[16,11],[17,8],[17,6],[16,3],[14,1],[11,0],[8,0],[5,1],[4,2],[3,4]] },
  '4': { width: 20, points: [[13,21],[3,7],[18,7],null,[13,21],[13,0]] },
  '5': { width: 20, points: [[15,21],[5,21],[4,12],[5,13],[8,14],[11,14],[14,13],[16,11],[17,8],[17,6],[16,3],[14,1],[11,0],[8,0],[5,1],[4,2],[3,4]] },
  '6': { width: 20, points: [[16,18],[15,20],[12,21],[10,21],[7,20],[5,17],[4,12],[4,7],[5,3],[7,1],[10,0],[11,0],[14,1],[16,3],[17,6],[17,7],[16,10],[14,12],[11,13],[10,13],[7,12],[5,10],[4,7]] },
  '7': { width: 20, points: [[17,21],[7,0],null,[3,21],[17,21]] },
  '8': { width: 20, points: [[8,21],[5,20],[4,18],[4,16],[5,14],[7,13],[11,12],[14,11],[16,9],[17,7],[17,4],[16,2],[15,1],[12,0],[8,0],[5,1],[4,2],[3,4],[3,7],[4,9],[6,11],[9,12],[13,13],[15,14],[16,16],[16,18],[15,20],[12,21],[8,21]] },
  '9': { width: 20, points: [[16,14],[15,11],[13,9],[10,8],[9,8],[6,9],[4,11],[3,14],[3,15],[4,18],[6,20],[9,21],[10,21],[13,20],[15,18],[16,14],[16,9],[15,4],[13,1],[10,0],[8,0],[5,1],[4,3]] },
  ':': { width: 10, points: [[5,14],[4,13],[5,12],[6,13],[5,14],null,[5,2],[4,1],[5,0],[6,1],[5,2]] },
  ';': { width: 10, points: [[5,14],[4,13],[5,12],[6,13],[5,14],null,[6,1],[5,0],[4,1],[5,2],[6,1],[6,-1],[5,-3],[4,-4]] },
  '<': { width: 24, points: [[20,18],[4,9],[20,0]] },
  '=': { width: 26, points: [[4,12],[22,12],null,[4,6],[22,6]] },
  '>': { width: 24, points: [[4,18],[20,9],[4,0]] },
  '?': { width: 18, points: [[3,16],[3,17],[4,19],[5,20],[7,21],[11,21],[13,20],[14,19],[15,17],[15,15],[14,13],[13,12],[9,10],[9,7],null,[9,2],[8,1],[9,0],[10,1],[9,2]] },
  '@': { width: 27, points: [[18,13],[17,15],[15,16],[12,16],[10,15],[9,14],[8,11],[8,8],[9,6],[11,5],[14,5],[16,6],[17,8],null,[12,16],[10,14],[9,11],[9,8],[10,6],[11,5],null,[18,16],[17,8],[17,6],[19,5],[21,5],[23,7],[24,10],[24,12],[23,15],[22,17],[20,19],[18,20],[15,21],[12,21],[9,20],[7,19],[5,17],[4,15],[3,12],[3,9],[4,6],[5,4],[7,2],[9,1],[12,0],[15,0],[18,1],[20,2],[21,3],null,[19,16],[18,8],[18,6],[19,5]] },
  'A': { width: 18, points: [[9,21],[1,0],null,[9,21],[17,0],null,[4,7],[14,7]] },
  'B': { width: 21, points: [[4,21],[4,0],null,[4,21],[13,21],[16,20],[17,19],[18,17],[18,15],[17,13],[16,12],[13,11],null,[4,11],[13,11],[16,10],[17,9],[18,7],[18,4],[17,2],[16,1],[13,0],[4,0]] },
  'C': { width: 21, points: [[18,16],[17,18],[15,20],[13,21],[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5]] },
  'D': { width: 21, points: [[4,21],[4,0],null,[4,21],[11,21],[14,20],[16,18],[17,16],[18,13],[18,8],[17,5],[16,3],[14,1],[11,0],[4,0]] },
  'E': { width: 19, points: [[4,21],[4,0],null,[4,21],[17,21],null,[4,11],[12,11],null,[4,0],[17,0]] },
  'F': { width: 18, points: [[4,21],[4,0],null,[4,21],[17,21],null,[4,11],[12,11]] },
  'G': { width: 21, points: [[18,16],[17,18],[15,20],[13,21],[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5],[18,8],null,[13,8],[18,8]] },
  'H': { width: 22, points: [[4,21],[4,0],null,[18,21],[18,0],null,[4,11],[18,11]] },
  'I': { width: 8, points: [[4,21],[4,0]] },
  'J': { width: 16, points: [[12,21],[12,5],[11,2],[10,1],[8,0],[6,0],[4,1],[3,2],[2,5],[2,7]] },
  'K': { width: 21, points: [[4,21],[4,0],null,[18,21],[4,7],null,[9,12],[18,0]] },
  'L': { width: 17, points: [[4,21],[4,0],null,[4,0],[16,0]] },
  'M': { width: 24, points: [[4,21],[4,0],null,[4,21],[12,0],null,[20,21],[12,0],null,[20,21],[20,0]] },
  'N': { width: 22, points: [[4,21],[4,0],null,[4,21],[18,0],null,[18,21],[18,0]] },
  'O': { width: 22, points: [[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5],[19,8],[19,13],[18,16],[17,18],[15,20],[13,21],[9,21]] },
  'P': { width: 21, points: [[4,21],[4,0],null,[4,21],[13,21],[16,20],[17,19],[18,17],[18,14],[17,12],[16,11],[13,10],[4,10]] },
  'Q': { width: 22, points: [[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5],[19,8],[19,13],[18,16],[17,18],[15,20],[13,21],[9,21],null,[12,4],[18,-2]] },
  'R': { width: 21, points: [[4,21],[4,0],null,[4,21],[13,21],[16,20],[17,19],[18,17],[18,15],[17,13],[16,12],[13,11],[4,11],null,[11,11],[18,0]] },
  'S': { width: 20, points: [[17,18],[15,20],[12,21],[8,21],[5,20],[3,18],[3,16],[4,14],[5,13],[7,12],[13,10],[15,9],[16,8],[17,6],[17,3],[15,1],[12,0],[8,0],[5,1],[3,3]] },
  'T': { width: 16, points: [[8,21],[8,0],null,[1,21],[15,21]] },
  'U': { width: 22, points: [[4,21],[4,6],[5,3],[7,1],[10,0],[12,0],[15,1],[17,3],[18,6],[18,21]] },
  'V': { width: 18, points: [[1,21],[9,0],null,[17,21],[9,0]] },
  'W': { width: 24, points: [[2,21],[7,0],null,[12,21],[7,0],null,[12,21],[17,0],null,[22,21],[17,0]] },
  'X': { width: 20, points: [[3,21],[17,0],null,[17,21],[3,0]] },
  'Y': { width: 18, points: [[1,21],[9,11],[9,0],null,[17,21],[9,11]] },
  'Z': { width: 20, points: [[17,21],[3,0],null,[3,21],[17,21],null,[3,0],[17,0]] },
  '[': { width: 14, points: [[4,25],[4,-7],null,[5,25],[5,-7],null,[4,25],[11,25],null,[4,-7],[11,-7]] },
  '\\':{ width: 14, points: [[0,21],[14,-3]] },
  ']': { width: 14, points: [[9,25],[9,-7],null,[10,25],[10,-7],null,[3,25],[10,25],null,[3,-7],[10,-7]] },
  '^': { width: 14, points: [[3,10],[8,18],[13,10]] },
  '_': { width: 16, points: [[0,-2],[16,-2]] },
  '`': { width: 10, points: [[6,21],[5,20],[4,18],[4,16],[5,15],[6,16],[5,17]] },
  'a': { width: 19, points: [[15,14],[15,0],null,[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]] },
  'b': { width: 19, points: [[4,21],[4,0],null,[4,11],[6,13],[8,14],[11,14],[13,13],[15,11],[16,8],[16,6],[15,3],[13,1],[11,0],[8,0],[6,1],[4,3]] },
  'c': { width: 18, points: [[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]] },
  'd': { width: 19, points: [[15,21],[15,0],null,[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]] },
  'e': { width: 18, points: [[3,8],[15,8],[15,10],[14,12],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]] },
  'f': { width: 12, points: [[10,21],[8,21],[6,20],[5,17],[5,0],null,[2,14],[9,14]] },
  'g': { width: 19, points: [[15,14],[15,-2],[14,-5],[13,-6],[11,-7],[8,-7],[6,-6],null,[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]] },
  'h': { width: 19, points: [[4,21],[4,0],null,[4,10],[7,13],[9,14],[12,14],[14,13],[15,10],[15,0]] },
  'i': { width: 8, points: [[3,21],[4,20],[5,21],[4,22],[3,21],null,[4,14],[4,0]] },
  'j': { width: 10, points: [[5,21],[6,20],[7,21],[6,22],[5,21],null,[6,14],[6,-3],[5,-6],[3,-7],[1,-7]] },
  'k': { width: 17, points: [[4,21],[4,0],null,[14,14],[4,4],null,[8,8],[15,0]] },
  'l': { width: 8, points: [[4,21],[4,0]] },
  'm': { width: 30, points: [[4,14],[4,0],null,[4,10],[7,13],[9,14],[12,14],[14,13],[15,10],[15,0],null,[15,10],[18,13],[20,14],[23,14],[25,13],[26,10],[26,0]] },
  'n': { width: 19, points: [[4,14],[4,0],null,[4,10],[7,13],[9,14],[12,14],[14,13],[15,10],[15,0]] },
  'o': { width: 19, points: [[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3],[16,6],[16,8],[15,11],[13,13],[11,14],[8,14]] },
  'p': { width: 19, points: [[4,14],[4,-7],null,[4,11],[6,13],[8,14],[11,14],[13,13],[15,11],[16,8],[16,6],[15,3],[13,1],[11,0],[8,0],[6,1],[4,3]] },
  'q': { width: 19, points: [[15,14],[15,-7],null,[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]] },
  'r': { width: 13, points: [[4,14],[4,0],null,[4,8],[5,11],[7,13],[9,14],[12,14]] },
  's': { width: 17, points: [[14,11],[13,13],[10,14],[7,14],[4,13],[3,11],[4,9],[6,8],[11,7],[13,6],[14,4],[14,3],[13,1],[10,0],[7,0],[4,1],[3,3]] },
  't': { width: 12, points: [[5,21],[5,4],[6,1],[8,0],[10,0],null,[2,14],[9,14]] },
  'u': { width: 19, points: [[4,14],[4,4],[5,1],[7,0],[10,0],[12,1],[15,4],null,[15,14],[15,0]] },
  'v': { width: 16, points: [[2,14],[8,0],null,[14,14],[8,0]] },
  'w': { width: 22, points: [[3,14],[7,0],null,[11,14],[7,0],null,[11,14],[15,0],null,[19,14],[15,0]] },
  'x': { width: 17, points: [[3,14],[14,0],null,[14,14],[3,0]] },
  'y': { width: 16, points: [[2,14],[8,0],null,[14,14],[8,0],[6,-4],[4,-6],[2,-7],[1,-7]] },
  'z': { width: 17, points: [[14,14],[3,0],null,[3,14],[14,14],null,[3,0],[14,0]] },
  '{': { width: 14, points: [[9,25],[7,24],[6,23],[5,21],[5,19],[6,17],[7,16],[8,14],[8,12],[6,10],null,[7,24],[6,22],[6,20],[7,18],[8,17],[9,15],[9,13],[8,11],[4,9],[8,7],[9,5],[9,3],[8,1],[7,0],[6,-2],[6,-4],[7,-6],null,[6,8],[8,6],[8,4],[7,2],[6,1],[5,-1],[5,-3],[6,-5],[7,-6],[9,-7]] },
  '|': { width: 8, points: [[4,25],[4,-7]] },
  '}': { width: 14, points: [[5,25],[7,24],[8,23],[9,21],[9,19],[8,17],[7,16],[6,14],[6,12],[8,10],null,[7,24],[8,22],[8,20],[7,18],[6,17],[5,15],[5,13],[6,11],[10,9],[6,7],[5,5],[5,3],[6,1],[7,0],[8,-2],[8,-4],[7,-6],null,[8,8],[6,6],[6,4],[7,2],[8,1],[9,-1],[9,-3],[8,-5],[7,-6],[5,-7]] },
  '~': { width: 24, points: [[3,6],[3,8],[4,11],[6,12],[8,12],[10,11],[14,8],[16,7],[18,7],[20,8],[21,10],null,[3,8],[4,10],[6,11],[8,11],[10,10],[14,7],[16,6],[18,6],[20,7],[21,10],[21,12]] },
 
  // Lower case Latin-1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  // Upper case Latin-1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  },
 
  specialchars: {
  'pi': { width: 19, points: [[6,14],[6,0],null,[14,14],[14,0],null,[2,13],[6,16],[13,13],[17,16]] }
  },
 
  /** Diacritics, used to draw accentuated letters */
  diacritics: {
 
 
  '`': { entity: 'grave', points: [[7,22],[12,19]] },
  '^': { entity: 'circ', points: [[5.5,19],[9.5,23],[12.5,19]] },
 
  '~': { entity: 'tilde', points: [[4,18],[7,22],[10,18],[13,22]] }
  },
 
  /** The default font styling */
  style: {
  size: 8, // font height in pixels
  font: null, // not yet implemented
  color: '#000000', // font color
  weight: 1, // float, 1 for 'normal'
  textAlign: 'left', // left, right, center
  textBaseline: 'bottom', // top, middle, bottom
  adjustAlign: false, // modifies the alignments if the angle is different from 0 to make the spin point always at the good position
  angle: 0, // in radians, anticlockwise
  tracking: 1, // space between the letters, float, 1 for 'normal'
  boundingBoxColor: '#ff0000', // color of the bounding box (null to hide), can be used for debug and font drawing
  originPointColor: '#000000' // color of the bounding box (null to hide), can be used for debug and font drawing
  },
 
  debug: false,
  _bufferLexemes: {},
 
  extend: function(dest, src) {
  for (var property in src) {
  if (property in dest) continue;
  dest[property] = src[property];
  }
  return dest;
  },
 
  /** Get the letter data corresponding to a char
  * @param {String} ch - The char
  */
  letter: function(ch) {
  return CanvasText.letters[ch];
  },
 
  parseLexemes: function(str) {
  if (CanvasText._bufferLexemes[str])
  return CanvasText._bufferLexemes[str];
 
  var i, c, matches = str.match(/&[A-Za-z]{2,5};|\s|./g),
  result = [], chars = [];
 
  for (i = 0; i < matches.length; i++) {
  c = matches[i];
  if (c.length == 1)
  chars.push(c);
  else {
  var entity = c.substring(1, c.length-1);
  if (CanvasText.specialchars[entity])
  chars.push(entity);
  else
  chars = chars.concat(c.toArray());
  }
  }
  for (i = 0; i < chars.length; i++) {
  c = chars[i];
  if (c = CanvasText.letters[c] || CanvasText.specialchars[c]) result.push(c);
  }
  for (i = 0; i < result.length; i++) {
  if (result === null || typeof result === 'undefined')
  delete result[i];
  }
  return CanvasText._bufferLexemes[str] = result;
  },
 
  /** Get the font ascent for a given style
  * @param {Object} style - The reference style
  */
  ascent: function(style) {
  style = style || CanvasText.style;
  return (style.size || CanvasText.style.size);
  },
 
  /** Get the font descent for a given style
  * @param {Object} style - The reference style
  * */
  descent: function(style) {
  style = style || CanvasText.style;
  return 7.0*(style.size || CanvasText.style.size)/25.0;
  },
 
  /** Measure the text horizontal size
  * @param {String} str - The text
  * @param {Object} style - Text style
  * */
  measure: function(str, style) {
  if (!str) return;
  style = style || CanvasText.style;
 
  var i, width, lexemes = CanvasText.parseLexemes(str),
  total = 0;
 
  for (i = lexemes.length-1; i > -1; --i) {
  c = lexemes[i];
  width = (c.diacritic) ? CanvasText.letter(c.letter).width : c.width;
  total += width * (style.tracking || CanvasText.style.tracking) * (style.size || CanvasText.style.size) / 25.0;
  }
  return total;
  },
 
  getDimensions: function(str, style) {
  style = style || CanvasText.style;
 
  var width = CanvasText.measure(str, style),
  height = style.size || CanvasText.style.size,
  angle = style.angle || CanvasText.style.angle;
 
  if (style.angle == 0) return {width: width, height: height};
  return {
  width: Math.abs(Math.cos(angle) * width) + Math.abs(Math.sin(angle) * height),
  height: Math.abs(Math.sin(angle) * width) + Math.abs(Math.cos(angle) * height)
  }
  },
 
  /** Draws serie of points at given coordinates
  * @param {Canvas context} ctx - The canvas context
  * @param {Array} points - The points to draw
  * @param {Number} x - The X coordinate
  * @param {Number} y - The Y coordinate
  * @param {Number} mag - The scale
  */
  drawPoints: function (ctx, points, x, y, mag, offset) {
  var i, a, penUp = true, needStroke = 0;
  offset = offset || {x:0, y:0};
 
  ctx.beginPath();
  for (i = 0; i < points.length; i++) {
  a = points[i];
  if (!a) {
  penUp = true;
  continue;
  }
  if (penUp) {
  ctx.moveTo(x + a[0]*mag + offset.x, y - a[1]*mag + offset.y);
  penUp = false;
  }
  else {
  ctx.lineTo(x + a[0]*mag + offset.x, y - a[1]*mag + offset.y);
  }
  }
  ctx.stroke();
  ctx.closePath();
  },
 
  /** Draws a text at given coordinates and with a given style
  * @param {String} str - The text to draw
  * @param {Number} xOrig - The X coordinate
  * @param {Number} yOrig - The Y coordinate
  * @param {Object} style - The font style
  */
  draw: function(str, xOrig, yOrig, style) {
  if (!str) return;
  CanvasText.extend(style, CanvasText.style);
 
  var i, c, total = 0,
  mag = style.size / 25.0,
  x = 0, y = 0,
  lexemes = CanvasText.parseLexemes(str),
  offset = {x: 0, y: 0},
  measure = CanvasText.measure(str, style),
  align;
 
  if (style.adjustAlign) {
  align = CanvasText.getBestAlign(style.angle, style);
  CanvasText.extend(style, align);
  }
 
  switch (style.textAlign) {
  case 'left': break;
  case 'center': offset.x = -measure / 2; break;
  case 'right': offset.x = -measure; break;
  }
 
  switch (style.textBaseline) {
  case 'bottom': break;
  case 'middle': offset.y = style.size / 2; break;
  case 'top': offset.y = style.size; break;
  }
 
  this.save();
  this.translate(xOrig, yOrig);
  this.rotate(style.angle);
  this.lineCap = "round";
  this.lineWidth = 2.0 * mag * (style.weight || CanvasText.style.weight);
  this.strokeStyle = style.color || CanvasText.style.color;
 
  for (i = 0; i < lexemes.length; i++) {
  c = lexemes[i];
  if (c.width == -1) {
  x = 0;
  y = style.size * 1.4;
  continue;
  }
 
  var points = c.points,
  width = c.width;
 
  if (c.diacritic) {
  var dia = CanvasText.diacritics[c.diacritic],
  character = CanvasText.letter(c.letter);
 
  CanvasText.drawPoints(this, dia.points, x, y - (c.letter.toUpperCase() == c.letter ? 3 : 0), mag, offset);
  points = character.points;
  width = character.width;
  }
 
  CanvasText.drawPoints(this, points, x, y, mag, offset);
 
  if (CanvasText.debug) {
  this.save();
  this.lineJoin = "miter";
  this.lineWidth = 0.5;
  this.strokeStyle = (style.boundingBoxColor || CanvasText.style.boundingBoxColor);
  this.strokeRect(x+offset.x, y+offset.y, width*mag, -style.size);
 
  this.fillStyle = (style.originPointColor || CanvasText.style.originPointColor);
  this.beginPath();
  this.arc(0, 0, 1.5, 0, Math.PI*2, true);
  this.fill();
  this.closePath();
  this.restore();
  }
 
  x += width*mag*(style.tracking || CanvasText.style.tracking);
  }
  this.restore();
  return total;
  }
  };
 
  /** The text functions are bound to the CanvasRenderingContext2D prototype */
  CanvasText.proto = window.CanvasRenderingContext2D ? window.CanvasRenderingContext2D.prototype : document.createElement('canvas').getContext('2d').__proto__;
 
  if (CanvasText.proto) {
  CanvasText.proto.drawText = CanvasText.draw;
  CanvasText.proto.measure = CanvasText.measure;
  CanvasText.proto.getTextBounds = CanvasText.getDimensions;
  CanvasText.proto.fontAscent = CanvasText.ascent;
  CanvasText.proto.fontDescent = CanvasText.descent;
  }
  // Copyright 2006 Google Inc.
  //
  // Licensed under the Apache License, Version 2.0 (the "License");
  // you may not use this file except in compliance with the License.
  // You may obtain a copy of the License at
  //
  // http://www.apache.org/licenses/LICENSE-2.0
  //
  // Unless required by applicable law or agreed to in writing, software
  // distributed under the License is distributed on an "AS IS" BASIS,
  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  // See the License for the specific language governing permissions and
  // limitations under the License.
 
 
  // Known Issues:
  //
  // * Patterns only support repeat.
  // * Radial gradient are not implemented. The VML version of these look very
  // different from the canvas one.
  // * Clipping paths are not implemented.
  // * Coordsize. The width and height attribute have higher priority than the
  // width and height style values which isn't correct.
  // * Painting mode isn't implemented.
  // * Canvas width/height should is using content-box by default. IE in
  // Quirks mode will draw the canvas using border-box. Either change your
  // doctype to HTML5
  // (http://www.whatwg.org/specs/web-apps/current-work/#the-doctype)
  // or use Box Sizing Behavior from WebFX
  // (http://webfx.eae.net/dhtml/boxsizing/boxsizing.html)
  // * Non uniform scaling does not correctly scale strokes.
  // * Optimize. There is always room for speed improvements.
 
  // Only add this code if we do not already have a canvas implementation
  if (!document.createElement('canvas').getContext) {
 
  (function() {
 
  // alias some functions to make (compiled) code shorter
  var m = Math;
  var mr = m.round;
  var ms = m.sin;
  var mc = m.cos;
  var abs = m.abs;
  var sqrt = m.sqrt;
 
  // this is used for sub pixel precision
  var Z = 10;
  var Z2 = Z / 2;
 
  var IE_VERSION = +navigator.userAgent.match(/MSIE ([\d.]+)?/)[1];
 
  /**
  * This funtion is assigned to the <canvas> elements as element.getContext().
  * @this {HTMLElement}
  * @return {CanvasRenderingContext2D_}
  */
  function getContext() {
  return this.context_ ||
  (this.context_ = new CanvasRenderingContext2D_(this));
  }
 
  var slice = Array.prototype.slice;
 
  /**
  * Binds a function to an object. The returned function will always use the
  * passed in {@code obj} as {@code this}.
  *
  * Example:
  *
  * g = bind(f, obj, a, b)
  * g(c, d) // will do f.call(obj, a, b, c, d)
  *
  * @param {Function} f The function to bind the object to
  * @param {Object} obj The object that should act as this when the function
  * is called
  * @param {*} var_args Rest arguments that will be used as the initial
  * arguments when the function is called
  * @return {Function} A new function that has bound this
  */
  function bind(f, obj, var_args) {
  var a = slice.call(arguments, 2);
  return function() {
  return f.apply(obj, a.concat(slice.call(arguments)));
  };
  }
 
  function encodeHtmlAttribute(s) {
  return String(s).replace(/&/g, '&amp;').replace(/"/g, '&quot;');
  }
 
  function addNamespace(doc, prefix, urn) {
  if (!doc.namespaces[prefix]) {
  doc.namespaces.add(prefix, urn, '#default#VML');
  }
  }
 
  function addNamespacesAndStylesheet(doc) {
  addNamespace(doc, 'g_vml_', 'urn:schemas-microsoft-com:vml');
  addNamespace(doc, 'g_o_', 'urn:schemas-microsoft-com:office:office');
 
  // Setup default CSS. Only add one style sheet per document
  if (!doc.styleSheets['ex_canvas_']) {
  var ss = doc.createStyleSheet();
  ss.owningElement.id = 'ex_canvas_';
  ss.cssText = 'canvas{display:inline-block;overflow:hidden;' +
  // default size is 300x150 in Gecko and Opera
  'text-align:left;width:300px;height:150px}';
  }
  }
 
  // Add namespaces and stylesheet at startup.
  addNamespacesAndStylesheet(document);
 
  var G_vmlCanvasManager_ = {
  init: function(opt_doc) {
  var doc = opt_doc || document;
  // Create a dummy element so that IE will allow canvas elements to be
  // recognized.
  doc.createElement('canvas');
  doc.attachEvent('onreadystatechange', bind(this.init_, this, doc));
  },
 
  init_: function(doc) {
  // find all canvas elements
  var els = doc.getElementsByTagName('canvas');
  for (var i = 0; i < els.length; i++) {
  this.initElement(els[i]);
  }
  },
 
  /**
  * Public initializes a canvas element so that it can be used as canvas
  * element from now on. This is called automatically before the page is
  * loaded but if you are creating elements using createElement you need to
  * make sure this is called on the element.
  * @param {HTMLElement} el The canvas element to initialize.
  * @return {HTMLElement} the element that was created.
  */
  initElement: function(el) {
  if (!el.getContext) {
  el.getContext = getContext;
 
  // Add namespaces and stylesheet to document of the element.
  addNamespacesAndStylesheet(el.ownerDocument);
 
  // Remove fallback content. There is no way to hide text nodes so we
  // just remove all childNodes. We could hide all elements and remove
  // text nodes but who really cares about the fallback content.
  el.innerHTML = '';
 
  // do not use inline function because that will leak memory
  el.attachEvent('onpropertychange', onPropertyChange);
  el.attachEvent('onresize', onResize);
 
  var attrs = el.attributes;
  if (attrs.width && attrs.width.specified) {
  // TODO: use runtimeStyle and coordsize
  // el.getContext().setWidth_(attrs.width.nodeValue);
  el.style.width = attrs.width.nodeValue + 'px';
  } else {
  el.width = el.clientWidth;
  }
  if (attrs.height && attrs.height.specified) {
  // TODO: use runtimeStyle and coordsize
  // el.getContext().setHeight_(attrs.height.nodeValue);
  el.style.height = attrs.height.nodeValue + 'px';
  } else {
  el.height = el.clientHeight;
  }
  //el.getContext().setCoordsize_()
  }
  return el;
  }
  };
 
  function onPropertyChange(e) {
  var el = e.srcElement;
 
  switch (e.propertyName) {
  case 'width':
  el.getContext().clearRect();
  el.style.width = el.attributes.width.nodeValue + 'px';
  // In IE8 this does not trigger onresize.
  if (el.firstChild) {
  el.firstChild.style.width = el.clientWidth + 'px';
  }
  break;
  case 'height':
  el.getContext().clearRect();
  el.style.height = el.attributes.height.nodeValue + 'px';
  if (el.firstChild) {
  el.firstChild.style.height = el.clientHeight + 'px';
  }
  break;
  }
  }
 
  function onResize(e) {
  var el = e.srcElement;
  if (el.firstChild) {
  el.firstChild.style.width = el.clientWidth + 'px';
  el.firstChild.style.height = el.clientHeight + 'px';
  }
  }
 
  G_vmlCanvasManager_.init();
 
  // precompute "00" to "FF"
  var decToHex = [];
  for (var i = 0; i < 16; i++) {
  for (var j = 0; j < 16; j++) {
  decToHex[i * 16 + j] = i.toString(16) + j.toString(16);
  }
  }
 
  function createMatrixIdentity() {
  return [
  [1, 0, 0],
  [0, 1, 0],
  [0, 0, 1]
  ];
  }
 
  function matrixMultiply(m1, m2) {
  var result = createMatrixIdentity();
 
  for (var x = 0; x < 3; x++) {
  for (var y = 0; y < 3; y++) {
  var sum = 0;
 
  for (var z = 0; z < 3; z++) {
  sum += m1[x][z] * m2[z][y];
  }
 
  result[x][y] = sum;
  }
  }
  return result;
  }
 
  function copyState(o1, o2) {
  o2.fillStyle = o1.fillStyle;
  o2.lineCap = o1.lineCap;
  o2.lineJoin = o1.lineJoin;
  o2.lineWidth = o1.lineWidth;
  o2.miterLimit = o1.miterLimit;
  o2.shadowBlur = o1.shadowBlur;
  o2.shadowColor = o1.shadowColor;
  o2.shadowOffsetX = o1.shadowOffsetX;
  o2.shadowOffsetY = o1.shadowOffsetY;
  o2.strokeStyle = o1.strokeStyle;
  o2.globalAlpha = o1.globalAlpha;
  o2.font = o1.font;
  o2.textAlign = o1.textAlign;
  o2.textBaseline = o1.textBaseline;
  o2.arcScaleX_ = o1.arcScaleX_;
  o2.arcScaleY_ = o1.arcScaleY_;
  o2.lineScale_ = o1.lineScale_;
  }
 
  var colorData = {
  aliceblue: '#F0F8FF',
  antiquewhite: '#FAEBD7',
  aquamarine: '#7FFFD4',
  azure: '#F0FFFF',
  beige: '#F5F5DC',
  bisque: '#FFE4C4',
  black: '#000000',
  blanchedalmond: '#FFEBCD',
  blueviolet: '#8A2BE2',
  brown: '#A52A2A',
  burlywood: '#DEB887',
  cadetblue: '#5F9EA0',
  chartreuse: '#7FFF00',
  chocolate: '#D2691E',
  coral: '#FF7F50',
  cornflowerblue: '#6495ED',
  cornsilk: '#FFF8DC',
  crimson: '#DC143C',
  cyan: '#00FFFF',
  darkblue: '#00008B',
  darkcyan: '#008B8B',
  darkgoldenrod: '#B8860B',
  darkgray: '#A9A9A9',
  darkgreen: '#006400',
  darkgrey: '#A9A9A9',
  darkkhaki: '#BDB76B',
  darkmagenta: '#8B008B',
  darkolivegreen: '#556B2F',
  darkorange: '#FF8C00',
  darkorchid: '#9932CC',
  darkred: '#8B0000',
  darksalmon: '#E9967A',
  darkseagreen: '#8FBC8F',
  darkslateblue: '#483D8B',
  darkslategray: '#2F4F4F',
  darkslategrey: '#2F4F4F',
  darkturquoise: '#00CED1',
  darkviolet: '#9400D3',
  deeppink: '#FF1493',
  deepskyblue: '#00BFFF',
  dimgray: '#696969',
  dimgrey: '#696969',
  dodgerblue: '#1E90FF',
  firebrick: '#B22222',
  floralwhite: '#FFFAF0',
  forestgreen: '#228B22',
  gainsboro: '#DCDCDC',
  ghostwhite: '#F8F8FF',
  gold: '#FFD700',
  goldenrod: '#DAA520',
  grey: '#808080',
  greenyellow: '#ADFF2F',
  honeydew: '#F0FFF0',
  hotpink: '#FF69B4',
  indianred: '#CD5C5C',
  indigo: '#4B0082',
  ivory: '#FFFFF0',
  khaki: '#F0E68C',
  lavender: '#E6E6FA',
  lavenderblush: '#FFF0F5',
  lawngreen: '#7CFC00',
  lemonchiffon: '#FFFACD',
  lightblue: '#ADD8E6',
  lightcoral: '#F08080',
  lightcyan: '#E0FFFF',
  lightgoldenrodyellow: '#FAFAD2',
  lightgreen: '#90EE90',
  lightgrey: '#D3D3D3',
  lightpink: '#FFB6C1',
  lightsalmon: '#FFA07A',
  lightseagreen: '#20B2AA',
  lightskyblue: '#87CEFA',
  lightslategray: '#778899',
  lightslategrey: '#778899',
  lightsteelblue: '#B0C4DE',
  lightyellow: '#FFFFE0',
  limegreen: '#32CD32',
  linen: '#FAF0E6',
  magenta: '#FF00FF',
  mediumaquamarine: '#66CDAA',
  mediumblue: '#0000CD',
  mediumorchid: '#BA55D3',
  mediumpurple: '#9370DB',
  mediumseagreen: '#3CB371',
  mediumslateblue: '#7B68EE',
  mediumspringgreen: '#00FA9A',
  mediumturquoise: '#48D1CC',
  mediumvioletred: '#C71585',
  midnightblue: '#191970',
  mintcream: '#F5FFFA',
  mistyrose: '#FFE4E1',
  moccasin: '#FFE4B5',
  navajowhite: '#FFDEAD',
  oldlace: '#FDF5E6',
  olivedrab: '#6B8E23',
  orange: '#FFA500',
  orangered: '#FF4500',
  orchid: '#DA70D6',
  palegoldenrod: '#EEE8AA',
  palegreen: '#98FB98',
  paleturquoise: '#AFEEEE',
  palevioletred: '#DB7093',
  papayawhip: '#FFEFD5',
  peachpuff: '#FFDAB9',
  peru: '#CD853F',
  pink: '#FFC0CB',
  plum: '#DDA0DD',
  powderblue: '#B0E0E6',
  rosybrown: '#BC8F8F',
  royalblue: '#4169E1',
  saddlebrown: '#8B4513',
  salmon: '#FA8072',
  sandybrown: '#F4A460',
  seagreen: '#2E8B57',
  seashell: '#FFF5EE',
  sienna: '#A0522D',
  skyblue: '#87CEEB',
  slateblue: '#6A5ACD',
  slategray: '#708090',
  slategrey: '#708090',
  snow: '#FFFAFA',
  springgreen: '#00FF7F',
  steelblue: '#4682B4',
  tan: '#D2B48C',
  thistle: '#D8BFD8',
  tomato: '#FF6347',
  turquoise: '#40E0D0',
  violet: '#EE82EE',
  wheat: '#F5DEB3',
  whitesmoke: '#F5F5F5',
  yellowgreen: '#9ACD32'
  };
 
 
  function getRgbHslContent(styleString) {
  var start = styleString.indexOf('(', 3);
  var end = styleString.indexOf(')', start + 1);
  var parts = styleString.substring(start + 1, end).split(',');
  // add alpha if needed
  if (parts.length != 4 || styleString.charAt(3) != 'a') {
  parts[3] = 1;
  }
  return parts;
  }
 
  function percent(s) {
  return parseFloat(s) / 100;
  }
 
  function clamp(v, min, max) {
  return Math.min(max, Math.max(min, v));
  }
 
  function hslToRgb(parts){
  var r, g, b, h, s, l;
  h = parseFloat(parts[0]) / 360 % 360;
  if (h < 0)
  h++;
  s = clamp(percent(parts[1]), 0, 1);
  l = clamp(percent(parts[2]), 0, 1);
  if (s == 0) {
  r = g = b = l; // achromatic
  } else {
  var q = l < 0.5 ? l * (1 + s) : l + s - l * s;
  var p = 2 * l - q;
  r = hueToRgb(p, q, h + 1 / 3);
  g = hueToRgb(p, q, h);
  b = hueToRgb(p, q, h - 1 / 3);
  }
 
  return '#' + decToHex[Math.floor(r * 255)] +
  decToHex[Math.floor(g * 255)] +
  decToHex[Math.floor(b * 255)];
  }
 
  function hueToRgb(m1, m2, h) {
  if (h < 0)
  h++;
  if (h > 1)
  h--;
 
  if (6 * h < 1)
  return m1 + (m2 - m1) * 6 * h;
  else if (2 * h < 1)
  return m2;
  else if (3 * h < 2)
  return m1 + (m2 - m1) * (2 / 3 - h) * 6;
  else
  return m1;
  }
 
  var processStyleCache = {};
 
  function processStyle(styleString) {
  if (styleString in processStyleCache) {
  return processStyleCache[styleString];
  }
 
  var str, alpha = 1;
 
  styleString = String(styleString);
  if (styleString.charAt(0) == '#') {
  str = styleString;
  } else if (/^rgb/.test(styleString)) {
  var parts = getRgbHslContent(styleString);
  var str = '#', n;
  for (var i = 0; i < 3; i++) {
  if (parts[i].indexOf('%') != -1) {
  n = Math.floor(percent(parts[i]) * 255);
  } else {
  n = +parts[i];
  }
  str += decToHex[clamp(n, 0, 255)];
  }
  alpha = +parts[3];
  } else if (/^hsl/.test(styleString)) {
  var parts = getRgbHslContent(styleString);
  str = hslToRgb(parts);
  alpha = parts[3];
  } else {
  str = colorData[styleString] || styleString;
  }
  return processStyleCache[styleString] = {color: str, alpha: alpha};
  }
 
  var DEFAULT_STYLE = {
  style: 'normal',
  variant: 'normal',
  weight: 'normal',
  size: 10,
  family: 'sans-serif'
  };
 
  // Internal text style cache
  var fontStyleCache = {};
 
  function processFontStyle(styleString) {
  if (fontStyleCache[styleString]) {
  return fontStyleCache[styleString];
  }
 
  var el = document.createElement('div');
  var style = el.style;
  try {
  style.font = styleString;
  } catch (ex) {
  // Ignore failures to set to invalid font.
  }
 
  return fontStyleCache[styleString] = {
  style: style.fontStyle || DEFAULT_STYLE.style,
  variant: style.fontVariant || DEFAULT_STYLE.variant,
  weight: style.fontWeight || DEFAULT_STYLE.weight,
  size: style.fontSize || DEFAULT_STYLE.size,
  family: style.fontFamily || DEFAULT_STYLE.family
  };
  }
 
  function getComputedStyle(style, element) {
  var computedStyle = {};
 
  for (var p in style) {
  computedStyle[p] = style[p];
  }
 
  // Compute the size
  var canvasFontSize = parseFloat(element.currentStyle.fontSize),
  fontSize = parseFloat(style.size);
 
  if (typeof style.size == 'number') {
  computedStyle.size = style.size;
  } else if (style.size.indexOf('px') != -1) {
  computedStyle.size = fontSize;
  } else if (style.size.indexOf('em') != -1) {
  computedStyle.size = canvasFontSize * fontSize;
  } else if(style.size.indexOf('%') != -1) {
  computedStyle.size = (canvasFontSize / 100) * fontSize;
  } else if (style.size.indexOf('pt') != -1) {
  computedStyle.size = fontSize / .75;
  } else {
  computedStyle.size = canvasFontSize;
  }
 
  // Different scaling between normal text and VML text. This was found using
  // trial and error to get the same size as non VML text.
  //computedStyle.size *= 0.981;
 
  return computedStyle;
  }
 
  function buildStyle(style) {
  return style.style + ' ' + style.variant + ' ' + style.weight + ' ' +
  style.size + 'px ' + style.family;
  }
 
  var lineCapMap = {
  'butt': 'flat',
  'round': 'round'
  };
 
  function processLineCap(lineCap) {
  return lineCapMap[lineCap] || 'square';
  }
 
  /**
  * This class implements CanvasRenderingContext2D interface as described by
  * the WHATWG.
  * @param {HTMLElement} canvasElement The element that the 2D context should
  * be associated with
  */
  function CanvasRenderingContext2D_(canvasElement) {
  this.m_ = createMatrixIdentity();
 
  this.mStack_ = [];
  this.aStack_ = [];
  this.currentPath_ = [];
 
  // Canvas context properties
  this.strokeStyle = '#000';
  this.fillStyle = '#000';
 
  this.lineWidth = 1;
  this.lineJoin = 'miter';
  this.lineCap = 'butt';
  this.miterLimit = Z * 1;
  this.globalAlpha = 1;
  this.font = '10px sans-serif';
  this.textAlign = 'left';
  this.textBaseline = 'alphabetic';
  this.canvas = canvasElement;
 
  var cssText = 'width:' + canvasElement.clientWidth + 'px;height:' +
  canvasElement.clientHeight + 'px;overflow:hidden;position:absolute';
  var el = canvasElement.ownerDocument.createElement('div');
  el.style.cssText = cssText;
  canvasElement.appendChild(el);
 
  var overlayEl = el.cloneNode(false);
  // Use a non transparent background.
  overlayEl.style.backgroundColor = 'red';
  overlayEl.style.filter = 'alpha(opacity=0)';
  canvasElement.appendChild(overlayEl);
 
  this.element_ = el;
  this.arcScaleX_ = 1;
  this.arcScaleY_ = 1;
  this.lineScale_ = 1;
  }
 
  var contextPrototype = CanvasRenderingContext2D_.prototype;
  contextPrototype.clearRect = function() {
  if (this.textMeasureEl_) {
  this.textMeasureEl_.removeNode(true);
  this.textMeasureEl_ = null;
  }
  this.element_.innerHTML = '';
  };
 
  contextPrototype.beginPath = function() {
  // TODO: Branch current matrix so that save/restore has no effect
  // as per safari docs.
  this.currentPath_ = [];
  };
 
  contextPrototype.moveTo = function(aX, aY) {
  var p = getCoords(this, aX, aY);
  this.currentPath_.push({type: 'moveTo', x: p.x, y: p.y});
  this.currentX_ = p.x;
  this.currentY_ = p.y;
  };
 
  contextPrototype.lineTo = function(aX, aY) {
  var p = getCoords(this, aX, aY);
  this.currentPath_.push({type: 'lineTo', x: p.x, y: p.y});
 
  this.currentX_ = p.x;
  this.currentY_ = p.y;
  };
 
  contextPrototype.bezierCurveTo = function(aCP1x, aCP1y,
  aCP2x, aCP2y,
  aX, aY) {
  var p = getCoords(this, aX, aY);
  var cp1 = getCoords(this, aCP1x, aCP1y);
  var cp2 = getCoords(this, aCP2x, aCP2y);
  bezierCurveTo(this, cp1, cp2, p);
  };
 
  // Helper function that takes the already fixed cordinates.
  function bezierCurveTo(self, cp1, cp2, p) {
  self.currentPath_.push({
  type: 'bezierCurveTo',
  cp1x: cp1.x,
  cp1y: cp1.y,
  cp2x: cp2.x,
  cp2y: cp2.y,
  x: p.x,
  y: p.y
  });
  self.currentX_ = p.x;
  self.currentY_ = p.y;
  }
 
  contextPrototype.quadraticCurveTo = function(aCPx, aCPy, aX, aY) {
  // the following is lifted almost directly from
  // http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes
 
  var cp = getCoords(this, aCPx, aCPy);
  var p = getCoords(this, aX, aY);
 
  var cp1 = {
  x: this.currentX_ + 2.0 / 3.0 * (cp.x - this.currentX_),
  y: this.currentY_ + 2.0 / 3.0 * (cp.y - this.currentY_)
  };
  var cp2 = {
  x: cp1.x + (p.x - this.currentX_) / 3.0,
  y: cp1.y + (p.y - this.currentY_) / 3.0
  };
 
  bezierCurveTo(this, cp1, cp2, p);
  };
 
  contextPrototype.arc = function(aX, aY, aRadius,
  aStartAngle, aEndAngle, aClockwise) {
  aRadius *= Z;
  var arcType = aClockwise ? 'at' : 'wa';
 
  var xStart = aX + mc(aStartAngle) * aRadius - Z2;
  var yStart = aY + ms(aStartAngle) * aRadius - Z2;
 
  var xEnd = aX + mc(aEndAngle) * aRadius - Z2;
  var yEnd = aY + ms(aEndAngle) * aRadius - Z2;
 
  // IE won't render arches drawn counter clockwise if xStart == xEnd.
  if ((abs(xStart - xEnd) < 10e-8) && !aClockwise) {
  xStart += 0.125; // Offset xStart by 1/80 of a pixel. Use something
  // that can be represented in binary
  }
  // IE won't render arches drawn clockwise if yStart is very close to yEnd.
  if ((abs(yStart - yEnd) < 10e-8) && aClockwise) {
  yStart -= 0.125; // Offset yStart by 1/80 of a pixel. Use something
  // that can be represented in binary
  }
 
  var p = getCoords(this, aX, aY);
  var pStart = getCoords(this, xStart, yStart);
  var pEnd = getCoords(this, xEnd, yEnd);
 
  this.currentPath_.push({type: arcType,
  x: p.x,
  y: p.y,
  radius: aRadius,
  xStart: pStart.x,
  yStart: pStart.y,
  xEnd: pEnd.x,
  yEnd: pEnd.y});
 
  };
 
  contextPrototype.rect = function(aX, aY, aWidth, aHeight) {
  this.moveTo(aX, aY);
  this.lineTo(aX + aWidth, aY);
  this.lineTo(aX + aWidth, aY + aHeight);
  this.lineTo(aX, aY + aHeight);
  this.closePath();
  };
 
  contextPrototype.strokeRect = function(aX, aY, aWidth, aHeight) {
  var oldPath = this.currentPath_;
  this.beginPath();
 
  this.moveTo(aX, aY);
  this.lineTo(aX + aWidth, aY);
  this.lineTo(aX + aWidth, aY + aHeight);
  this.lineTo(aX, aY + aHeight);
  this.closePath();
  this.stroke();
 
  this.currentPath_ = oldPath;
  };
 
  contextPrototype.fillRect = function(aX, aY, aWidth, aHeight) {
  var oldPath = this.currentPath_;
  this.beginPath();
 
  this.moveTo(aX, aY);
  this.lineTo(aX + aWidth, aY);
  this.lineTo(aX + aWidth, aY + aHeight);
  this.lineTo(aX, aY + aHeight);
  this.closePath();
  this.fill();
 
  this.currentPath_ = oldPath;
  };
 
  contextPrototype.createLinearGradient = function(aX0, aY0, aX1, aY1) {
  var gradient = new CanvasGradient_('gradient');
  gradient.x0_ = aX0;
  gradient.y0_ = aY0;
  gradient.x1_ = aX1;
  gradient.y1_ = aY1;
  return gradient;
  };
 
  contextPrototype.createRadialGradient = function(aX0, aY0, aR0,
  aX1, aY1, aR1) {
  var gradient = new CanvasGradient_('gradientradial');
  gradient.x0_ = aX0;
  gradient.y0_ = aY0;
  gradient.r0_ = aR0;
  gradient.x1_ = aX1;
  gradient.y1_ = aY1;
  gradient.r1_ = aR1;
  return gradient;
  };
 
  contextPrototype.drawImage = function(image, var_args) {
  var dx, dy, dw, dh, sx, sy, sw, sh;
 
  // to find the original width we overide the width and height
  var oldRuntimeWidth = image.runtimeStyle.width;
  var oldRuntimeHeight = image.runtimeStyle.height;
  image.runtimeStyle.width = 'auto';
  image.runtimeStyle.height = 'auto';
 
  // get the original size
  var w = image.width;
  var h = image.height;
 
  // and remove overides
  image.runtimeStyle.width = oldRuntimeWidth;
  image.runtimeStyle.height = oldRuntimeHeight;
 
  if (arguments.length == 3) {
  dx = arguments[1];
  dy = arguments[2];
  sx = sy = 0;
  sw = dw = w;
  sh = dh = h;
  } else if (arguments.length == 5) {
  dx = arguments[1];
  dy = arguments[2];
  dw = arguments[3];
  dh = arguments[4];
  sx = sy = 0;
  sw = w;
  sh = h;
  } else if (arguments.length == 9) {
  sx = arguments[1];
  sy = arguments[2];
  sw = arguments[3];
  sh = arguments[4];
  dx = arguments[5];
  dy = arguments[6];
  dw = arguments[7];
  dh = arguments[8];
  } else {
  throw Error('Invalid number of arguments');
  }
 
  var d = getCoords(this, dx, dy);
 
  var w2 = sw / 2;
  var h2 = sh / 2;
 
  var vmlStr = [];
 
  var W = 10;
  var H = 10;
 
  // For some reason that I've now forgotten, using divs didn't work
  vmlStr.push(' <g_vml_:group',
  ' coordsize="', Z * W, ',', Z * H, '"',
  ' coordorigin="0,0"' ,
  ' style="width:', W, 'px;height:', H, 'px;position:absolute;');
 
  // If filters are necessary (rotation exists), create them
  // filters are bog-slow, so only create them if abbsolutely necessary
  // The following check doesn't account for skews (which don't exist
  // in the canvas spec (yet) anyway.
 
  if (this.m_[0][0] != 1 || this.m_[0][1] ||
  this.m_[1][1] != 1 || this.m_[1][0]) {
  var filter = [];
 
  // Note the 12/21 reversal
  filter.push('M11=', this.m_[0][0], ',',
  'M12=', this.m_[1][0], ',',
  'M21=', this.m_[0][1], ',',
  'M22=', this.m_[1][1], ',',
  'Dx=', mr(d.x / Z), ',',
  'Dy=', mr(d.y / Z), '');
 
  // Bounding box calculation (need to minimize displayed area so that
  // filters don't waste time on unused pixels.
  var max = d;
  var c2 = getCoords(this, dx + dw, dy);
  var c3 = getCoords(this, dx, dy + dh);
  var c4 = getCoords(this, dx + dw, dy + dh);
 
  max.x = m.max(max.x, c2.x, c3.x, c4.x);
  max.y = m.max(max.y, c2.y, c3.y, c4.y);
 
  vmlStr.push('padding:0 ', mr(max.x / Z), 'px ', mr(max.y / Z),
  'px 0;filter:progid:DXImageTransform.Microsoft.Matrix(',
  filter.join(''), ", sizingmethod='clip');");
 
  } else {
  vmlStr.push('top:', mr(d.y / Z), 'px;left:', mr(d.x / Z), 'px;');
  }
 
  vmlStr.push(' ">' ,
  '<g_vml_:image src="', image.src, '"',
  ' style="width:', Z * dw, 'px;',
  ' height:', Z * dh, 'px"',
  ' cropleft="', sx / w, '"',
  ' croptop="', sy / h, '"',
  ' cropright="', (w - sx - sw) / w, '"',
  ' cropbottom="', (h - sy - sh) / h, '"',
  ' />',
  '</g_vml_:group>');
 
  this.element_.insertAdjacentHTML('BeforeEnd', vmlStr.join(''));
  };
 
  contextPrototype.stroke = function(aFill) {
  var lineStr = [];
  var lineOpen = false;
 
  var W = 10;
  var H = 10;
 
  lineStr.push('<g_vml_:shape',
  ' filled="', !!aFill, '"',
  ' style="position:absolute;width:', W, 'px;height:', H, 'px;"',
  ' coordorigin="0,0"',
  ' coordsize="', Z * W, ',', Z * H, '"',
  ' stroked="', !aFill, '"',
  ' path="');
 
  var newSeq = false;
  var min = {x: null, y: null};
  var max = {x: null, y: null};
 
  for (var i = 0; i < this.currentPath_.length; i++) {
  var p = this.currentPath_[i];
  var c;
 
  switch (p.type) {
  case 'moveTo':
  c = p;
  lineStr.push(' m ', mr(p.x), ',', mr(p.y));
  break;
  case 'lineTo':
  lineStr.push(' l ', mr(p.x), ',', mr(p.y));
  break;
  case 'close':
  lineStr.push(' x ');
  p = null;
  break;
  case 'bezierCurveTo':
  lineStr.push(' c ',
  mr(p.cp1x), ',', mr(p.cp1y), ',',
  mr(p.cp2x), ',', mr(p.cp2y), ',',
  mr(p.x), ',', mr(p.y));
  break;
  case 'at':
  case 'wa':
  lineStr.push(' ', p.type, ' ',
  mr(p.x - this.arcScaleX_ * p.radius), ',',
  mr(p.y - this.arcScaleY_ * p.radius), ' ',
  mr(p.x + this.arcScaleX_ * p.radius), ',',
  mr(p.y + this.arcScaleY_ * p.radius), ' ',
  mr(p.xStart), ',', mr(p.yStart), ' ',
  mr(p.xEnd), ',', mr(p.yEnd));
  break;
  }
 
 
  // TODO: Following is broken for curves due to
  // move to proper paths.
 
  // Figure out dimensions so we can do gradient fills
  // properly
  if (p) {
  if (min.x == null || p.x < min.x) {
  min.x = p.x;
  }
  if (max.x == null || p.x > max.x) {
  max.x = p.x;
  }
  if (min.y == null || p.y < min.y) {
  min.y = p.y;
  }
  if (max.y == null || p.y > max.y) {
  max.y = p.y;
  }
  }
  }
  lineStr.push(' ">');
 
  if (!aFill) {
  appendStroke(this, lineStr);
  } else {
  appendFill(this, lineStr, min, max);
  }
 
  lineStr.push('</g_vml_:shape>');
 
  this.element_.insertAdjacentHTML('beforeEnd', lineStr.join(''));
  };
 
  function appendStroke(ctx, lineStr) {
  var a = processStyle(ctx.strokeStyle);
  var color = a.color;
  var opacity = a.alpha * ctx.globalAlpha;
  var lineWidth = ctx.lineScale_ * ctx.lineWidth;
 
  // VML cannot correctly render a line if the width is less than 1px.
  // In that case, we dilute the color to make the line look thinner.
  if (lineWidth < 1) {
  opacity *= lineWidth;
  }
 
  lineStr.push(
  '<g_vml_:stroke',
  ' opacity="', opacity, '"',
  ' joinstyle="', ctx.lineJoin, '"',
  ' miterlimit="', ctx.miterLimit, '"',
  ' endcap="', processLineCap(ctx.lineCap), '"',
  ' weight="', lineWidth, 'px"',
  ' color="', color, '" />'
  );
  }
 
  function appendFill(ctx, lineStr, min, max) {
  var fillStyle = ctx.fillStyle;
  var arcScaleX = ctx.arcScaleX_;
  var arcScaleY = ctx.arcScaleY_;
  var width = max.x - min.x;
  var height = max.y - min.y;
  if (fillStyle instanceof CanvasGradient_) {
  // TODO: Gradients transformed with the transformation matrix.
  var angle = 0;
  var focus = {x: 0, y: 0};
 
  // additional offset
  var shift = 0;
  // scale factor for offset
  var expansion = 1;
 
  if (fillStyle.type_ == 'gradient') {
  var x0 = fillStyle.x0_ / arcScaleX;
  var y0 = fillStyle.y0_ / arcScaleY;
  var x1 = fillStyle.x1_ / arcScaleX;
  var y1 = fillStyle.y1_ / arcScaleY;
  var p0 = getCoords(ctx, x0, y0);
  var p1 = getCoords(ctx, x1, y1);
  var dx = p1.x - p0.x;
  var dy = p1.y - p0.y;
  angle = Math.atan2(dx, dy) * 180 / Math.PI;
 
  // The angle should be a non-negative number.
  if (angle < 0) {
  angle += 360;
  }
 
  // Very small angles produce an unexpected result because they are
  // converted to a scientific notation string.
  if (angle < 1e-6) {
  angle = 0;
  }
  } else {
  var p0 = getCoords(ctx, fillStyle.x0_, fillStyle.y0_);
  focus = {
  x: (p0.x - min.x) / width,
  y: (p0.y - min.y) / height
  };
 
  width /= arcScaleX * Z;
  height /= arcScaleY * Z;
  var dimension = m.max(width, height);
  shift = 2 * fillStyle.r0_ / dimension;
  expansion = 2 * fillStyle.r1_ / dimension - shift;
  }
 
  // We need to sort the color stops in ascending order by offset,
  // otherwise IE won't interpret it correctly.
  var stops = fillStyle.colors_;
  stops.sort(function(cs1, cs2) {
  return cs1.offset - cs2.offset;
  });
 
  var length = stops.length;
  var color1 = stops[0].color;
  var color2 = stops[length - 1].color;
  var opacity1 = stops[0].alpha * ctx.globalAlpha;
  var opacity2 = stops[length - 1].alpha * ctx.globalAlpha;
 
  var colors = [];
  for (var i = 0; i < length; i++) {
  var stop = stops[i];
  colors.push(stop.offset * expansion + shift + ' ' + stop.color);
  }
 
  // When colors attribute is used, the meanings of opacity and o:opacity2
  // are reversed.
  lineStr.push('<g_vml_:fill type="', fillStyle.type_, '"',
  ' method="none" focus="100%"',
  ' color="', color1, '"',
  ' color2="', color2, '"',
  ' colors="', colors.join(','), '"',
  ' opacity="', opacity2, '"',
  ' g_o_:opacity2="', opacity1, '"',
  ' angle="', angle, '"',
  ' focusposition="', focus.x, ',', focus.y, '" />');
  } else if (fillStyle instanceof CanvasPattern_) {
  if (width && height) {
  var deltaLeft = -min.x;
  var deltaTop = -min.y;
  lineStr.push('<g_vml_:fill',
  ' position="',
  deltaLeft / width * arcScaleX * arcScaleX, ',',
  deltaTop / height * arcScaleY * arcScaleY, '"',
  ' type="tile"',
  // TODO: Figure out the correct size to fit the scale.
  //' size="', w, 'px ', h, 'px"',
  ' src="', fillStyle.src_, '" />');
  }
  } else {
  var a = processStyle(ctx.fillStyle);
  var color = a.color;
  var opacity = a.alpha * ctx.globalAlpha;
  lineStr.push('<g_vml_:fill color="', color, '" opacity="', opacity,
  '" />');
  }
  }
 
  contextPrototype.fill = function() {
  this.stroke(true);
  };
 
  contextPrototype.closePath = function() {
  this.currentPath_.push({type: 'close'});
  };
 
  function getCoords(ctx, aX, aY) {
  var m = ctx.m_;
  return {
  x: Z * (aX * m[0][0] + aY * m[1][0] + m[2][0]) - Z2,
  y: Z * (aX * m[0][1] + aY * m[1][1] + m[2][1]) - Z2
  };
  };
 
  contextPrototype.save = function() {
  var o = {};
  copyState(this, o);
  this.aStack_.push(o);
  this.mStack_.push(this.m_);
  this.m_ = matrixMultiply(createMatrixIdentity(), this.m_);
  };
 
  contextPrototype.restore = function() {
  if (this.aStack_.length) {
  copyState(this.aStack_.pop(), this);
  this.m_ = this.mStack_.pop();
  }
  };
 
  function matrixIsFinite(m) {
  return isFinite(m[0][0]) && isFinite(m[0][1]) &&
  isFinite(m[1][0]) && isFinite(m[1][1]) &&
  isFinite(m[2][0]) && isFinite(m[2][1]);
  }
 
  function setM(ctx, m, updateLineScale) {
  if (!matrixIsFinite(m)) {
  return;
  }
  ctx.m_ = m;
 
  if (updateLineScale) {
  // Get the line scale.
  // Determinant of this.m_ means how much the area is enlarged by the
  // transformation. So its square root can be used as a scale factor
  // for width.
  var det = m[0][0] * m[1][1] - m[0][1] * m[1][0];
  ctx.lineScale_ = sqrt(abs(det));
  }
  }
 
  contextPrototype.translate = function(aX, aY) {
  var m1 = [
  [1, 0, 0],
  [0, 1, 0],
  [aX, aY, 1]
  ];
 
  setM(this, matrixMultiply(m1, this.m_), false);
  };
 
  contextPrototype.rotate = function(aRot) {
  var c = mc(aRot);
  var s = ms(aRot);
 
  var m1 = [
  [c, s, 0],
  [-s, c, 0],
  [0, 0, 1]
  ];
 
  setM(this, matrixMultiply(m1, this.m_), false);
  };
 
  contextPrototype.scale = function(aX, aY) {
  this.arcScaleX_ *= aX;
  this.arcScaleY_ *= aY;
  var m1 = [
  [aX, 0, 0],
  [0, aY, 0],
  [0, 0, 1]
  ];
 
  setM(this, matrixMultiply(m1, this.m_), true);
  };
 
  contextPrototype.transform = function(m11, m12, m21, m22, dx, dy) {
  var m1 = [
  [m11, m12, 0],
  [m21, m22, 0],
  [dx, dy, 1]
  ];
 
  setM(this, matrixMultiply(m1, this.m_), true);
  };
 
  contextPrototype.setTransform = function(m11, m12, m21, m22, dx, dy) {
  var m = [
  [m11, m12, 0],
  [m21, m22, 0],
  [dx, dy, 1]
  ];
 
  setM(this, m, true);
  };
 
  /**
  * The text drawing function.
  * The maxWidth argument isn't taken in account, since no browser supports
  * it yet.
  */
  contextPrototype.drawText_ = function(text, x, y, maxWidth, stroke) {
  var m = this.m_,
  delta = 1000,
  left = 0,
  right = delta,
  offset = {x: 0, y: 0},
  lineStr = [];
 
  var fontStyle = getComputedStyle(processFontStyle(this.font),
  this.element_);
 
  var fontStyleString = buildStyle(fontStyle);
 
  var elementStyle = this.element_.currentStyle;
  var textAlign = this.textAlign.toLowerCase();
  switch (textAlign) {
  case 'left':
  case 'center':
  case 'right':
  break;
  case 'end':
  textAlign = elementStyle.direction == 'ltr' ? 'right' : 'left';
  break;
  case 'start':
  textAlign = elementStyle.direction == 'rtl' ? 'right' : 'left';
  break;
  default:
  textAlign = 'left';
  }
 
  // 1.75 is an arbitrary number, as there is no info about the text baseline
  switch (this.textBaseline) {
  case 'hanging':
  case 'top':
  offset.y = fontStyle.size / 1.75;
  break;
  case 'middle':
  break;
  default:
  case null:
  case 'alphabetic':
  case 'ideographic':
  case 'bottom':
  offset.y = -fontStyle.size / 2.25;
  break;
  }
 
  switch(textAlign) {
  case 'right':
  left = delta;
  right = 0.05;
  break;
  case 'center':
  left = right = delta / 2;
  break;
  }
 
  var d = getCoords(this, x + offset.x, y + offset.y);
 
  lineStr.push('<g_vml_:line from="', -left ,' 0" to="', right ,' 0.05" ',
  ' coordsize="100 100" coordorigin="0 0"',
  ' filled="', !stroke, '" stroked="', !!stroke,
  '" style="position:absolute;width:1px;height:1px;">');
 
  if (stroke) {
  appendStroke(this, lineStr);
  } else {
  // TODO: Fix the min and max params.
  appendFill(this, lineStr, {x: -left, y: 0},
  {x: right, y: fontStyle.size});
  }
 
  var skewM = m[0][0].toFixed(3) + ',' + m[1][0].toFixed(3) + ',' +
  m[0][1].toFixed(3) + ',' + m[1][1].toFixed(3) + ',0,0';
 
  var skewOffset = mr(d.x / Z) + ',' + mr(d.y / Z);
 
  lineStr.push('<g_vml_:skew on="t" matrix="', skewM ,'" ',
  ' offset="', skewOffset, '" origin="', left ,' 0" />',
  '<g_vml_:path textpathok="true" />',
  '<g_vml_:textpath on="true" string="',
  encodeHtmlAttribute(text),
  '" style="v-text-align:', textAlign,
  ';font:', encodeHtmlAttribute(fontStyleString),
  '" /></g_vml_:line>');
 
  this.element_.insertAdjacentHTML('beforeEnd', lineStr.join(''));
  };
 
  contextPrototype.fillText = function(text, x, y, maxWidth) {
  this.drawText_(text, x, y, maxWidth, false);
  };
 
  contextPrototype.strokeText = function(text, x, y, maxWidth) {
  this.drawText_(text, x, y, maxWidth, true);
  };
 
  contextPrototype.measureText = function(text) {
  if (!this.textMeasureEl_) {
  var s = '<span style="position:absolute;' +
  'top:-20000px;left:0;padding:0;margin:0;border:none;' +
  'white-space:pre;"></span>';
  this.element_.insertAdjacentHTML('beforeEnd', s);
  this.textMeasureEl_ = this.element_.lastChild;
  }
  var doc = this.element_.ownerDocument;
  this.textMeasureEl_.innerHTML = '';
  this.textMeasureEl_.style.font = this.font;
  // Don't use innerHTML or innerText because they allow markup/whitespace.
  this.textMeasureEl_.appendChild(doc.createTextNode(text));
  return {width: this.textMeasureEl_.offsetWidth};
  };
 
  /******** STUBS ********/
  contextPrototype.clip = function() {
  // TODO: Implement
  };
 
  contextPrototype.arcTo = function() {
  // TODO: Implement
  };
 
  contextPrototype.createPattern = function(image, repetition) {
  return new CanvasPattern_(image, repetition);
  };
 
  // Gradient / Pattern Stubs
  function CanvasGradient_(aType) {
  this.type_ = aType;
  this.x0_ = 0;
  this.y0_ = 0;
  this.r0_ = 0;
  this.x1_ = 0;
  this.y1_ = 0;
  this.r1_ = 0;
  this.colors_ = [];
  }
 
  CanvasGradient_.prototype.addColorStop = function(aOffset, aColor) {
  aColor = processStyle(aColor);
  this.colors_.push({offset: aOffset,
  color: aColor.color,
  alpha: aColor.alpha});
  };
 
  function CanvasPattern_(image, repetition) {
  assertImageIsValid(image);
  switch (repetition) {
  case 'repeat':
  case null:
  case '':
  this.repetition_ = 'repeat';
  break
  case 'repeat-x':
  case 'repeat-y':
  case 'no-repeat':
  this.repetition_ = repetition;
  break;
  default:
  throwException('SYNTAX_ERR');
  }
 
  this.src_ = image.src;
  this.width_ = image.width;
  this.height_ = image.height;
  }
 
  function throwException(s) {
  throw new DOMException_(s);
  }
 
  function assertImageIsValid(img) {
  if (!img || img.nodeType != 1 || img.tagName != 'IMG') {
  throwException('TYPE_MISMATCH_ERR');
  }
  if (img.readyState != 'complete') {
  throwException('INVALID_STATE_ERR');
  }
  }
 
  function DOMException_(s) {
  this.code = this[s];
  this.message = s +': DOM Exception ' + this.code;
  }
  var p = DOMException_.prototype = new Error;
  p.INDEX_SIZE_ERR = 1;
  p.DOMSTRING_SIZE_ERR = 2;
  p.HIERARCHY_REQUEST_ERR = 3;
  p.WRONG_DOCUMENT_ERR = 4;
  p.INVALID_CHARACTER_ERR = 5;
  p.NO_DATA_ALLOWED_ERR = 6;
  p.NO_MODIFICATION_ALLOWED_ERR = 7;
  p.NOT_FOUND_ERR = 8;
  p.NOT_SUPPORTED_ERR = 9;
  p.INUSE_ATTRIBUTE_ERR = 10;
  p.INVALID_STATE_ERR = 11;
  p.SYNTAX_ERR = 12;
  p.INVALID_MODIFICATION_ERR = 13;
  p.NAMESPACE_ERR = 14;
  p.INVALID_ACCESS_ERR = 15;
  p.VALIDATION_ERR = 16;
  p.TYPE_MISMATCH_ERR = 17;
 
  // set up externs
  G_vmlCanvasManager = G_vmlCanvasManager_;
  CanvasRenderingContext2D = CanvasRenderingContext2D_;
  CanvasGradient = CanvasGradient_;
  CanvasPattern = CanvasPattern_;
  DOMException = DOMException_;
  })();
 
  } // if
 
  /*! imagediff.js 1.0.2
  * (c) 2011 Carl Sutherland, Humble Software Development
  * imagediff.js is freely distributable under the MIT license.
  * Thanks to Jacob Thornton for the node/amd integration bits.
  * For details and documentation:
  * https://github.com/HumbleSoftware/js-imagediff
  */
  (function (name, definition) {
  var root = this;
  if (typeof module != 'undefined') {
  module.exports = definition();
  } else if (typeof define == 'function' && typeof define.amd == 'object') {
  define(definition);
  } else {
  root[name] = definition(root, name);
  }
  })('imagediff', function (root, name) {
 
  var
  TYPE_ARRAY = '[object Array]',
  TYPE_CANVAS = '[object HTMLCanvasElement]',
  TYPE_CONTEXT = '[object CanvasRenderingContext2D]',
  TYPE_IMAGE = '[object HTMLImageElement]',
 
  OBJECT = 'object',
  UNDEFINED = 'undefined',
 
  canvas = getCanvas(),
  context = canvas.getContext('2d'),
  previous = root[name],
  imagediff, jasmine;
 
  // Creation
  function getCanvas (width, height) {
  var
  canvas = document.createElement('canvas');
  if (width) canvas.width = width;
  if (height) canvas.height = height;
  return canvas;
  }
  function getImageData (width, height) {
  canvas.width = width;
  canvas.height = height;
  context.clearRect(0, 0, width, height);
  return context.createImageData(width, height);
  }
 
 
  // Type Checking
  function isImage (object) {
  return isType(object, TYPE_IMAGE);
  }
  function isCanvas (object) {
  return isType(object, TYPE_CANVAS);
  }
  function isContext (object) {
  return isType(object, TYPE_CONTEXT);
  }
  function isImageData (object) {
  var
  imageData = getImageData(1, 1);
  isImageData = function (object) {
  return (object && imageData.constructor === object.constructor ? true : false);
  };
  return isImageData(object);
  }
  function isImageType (object) {
  return (
  isImage(object) ||
  isCanvas(object) ||
  isContext(object) ||
  isImageData(object)
  );
  }
  function isType (object, type) {
  return typeof (object) === 'object' && Object.prototype.toString.apply(object) === type;
  }
 
 
  // Type Conversion
  function copyImageData (imageData) {
  var
  height = imageData.height,
  width = imageData.width;
  canvas.width = width;
  canvas.height = height;
  context.putImageData(imageData, 0, 0);
  return context.getImageData(0, 0, width, height);
  }
  function toImageData (object) {
  if (isImage(object)) { return toImageDataFromImage(object); }
  if (isCanvas(object)) { return toImageDataFromCanvas(object); }
  if (isContext(object)) { return toImageDataFromContext(object); }
  if (isImageData(object)) { return object; }
  }
  function toImageDataFromImage (image) {
  var
  height = image.height,
  width = image.width;
  canvas.width = width;
  canvas.height = height;
  context.clearRect(0, 0, width, height);
  context.drawImage(image, 0, 0);
  return context.getImageData(0, 0, width, height);
  }
  function toImageDataFromCanvas (canvas) {
  var
  height = canvas.height,
  width = canvas.width,
  context = canvas.getContext('2d');
  return context.getImageData(0, 0, width, height);
  }
  function toImageDataFromContext (context) {
  var
  canvas = context.canvas,
  height = canvas.height,
  width = canvas.width;
  return context.getImageData(0, 0, width, height);
  }
  function toCanvas (object) {
  var
  data = toImageData(object),
  canvas = getCanvas(data.width, data.height),
  context = canvas.getContext('2d');
 
  context.putImageData(data, 0, 0);
  return canvas;
  }
 
 
  // ImageData Equality Operators
  function equalWidth (a, b) {
  return a.width === b.width;
  }
  function equalHeight (a, b) {
  return a.height === b.height;
  }
  function equalDimensions (a, b) {
  return equalHeight(a, b) && equalWidth(a, b);
  }
  function equal (a, b, tolerance) {
 
  var
  aData = a.data,
  bData = b.data,
  length = aData.length,
  tolerance = tolerance || 0,
  i;
 
  if (!equalDimensions(a, b)) return false;
  for (i = length; i--;) if (aData[i] !== bData[i] && Math.abs(aData[i] - bData[i]) > tolerance) return false;
 
  return true;
  }
 
 
  // Diff
  function diff (a, b) {
  return (equalDimensions(a, b) ? diffEqual : diffUnequal)(a, b);
  }
  function diffEqual (a, b) {
 
  var
  height = a.height,
  width = a.width,
  c = getImageData(width, height), // c = a - b
  aData = a.data,
  bData = b.data,
  cData = c.data,
  length = cData.length,
  row, column,
  i, j, k, v;
 
  for (i = 0; i < length; i += 4) {
  cData[i] = Math.abs(aData[i] - bData[i]);
  cData[i+1] = Math.abs(aData[i+1] - bData[i+1]);
  cData[i+2] = Math.abs(aData[i+2] - bData[i+2]);
  cData[i+3] = Math.abs(255 - aData[i+3] - bData[i+3]);
  }
 
  return c;
  }
  function diffUnequal (a, b) {
 
  var
  height = Math.max(a.height, b.height),
  width = Math.max(a.width, b.width),
  c = getImageData(width, height), // c = a - b
  aData = a.data,
  bData = b.data,
  cData = c.data,
  rowOffset,
  columnOffset,
  row, column,
  i, j, k, v;
 
 
  for (i = cData.length - 1; i > 0; i = i - 4) {
  cData[i] = 255;
  }
 
  // Add First Image
  offsets(a);
  for (row = a.height; row--;){
  for (column = a.width; column--;) {
  i = 4 * ((row + rowOffset) * width + (column + columnOffset));
  j = 4 * (row * a.width + column);
  cData[i+0] = aData[j+0]; // r
  cData[i+1] = aData[j+1]; // g
  cData[i+2] = aData[j+2]; // b
  // cData[i+3] = aData[j+3]; // a
  }
  }
 
  // Subtract Second Image
  offsets(b);
  for (row = b.height; row--;){
  for (column = b.width; column--;) {
  i = 4 * ((row + rowOffset) * width + (column + columnOffset));
  j = 4 * (row * b.width + column);
  cData[i+0] = Math.abs(cData[i+0] - bData[j+0]); // r
  cData[i+1] = Math.abs(cData[i+1] - bData[j+1]); // g
  cData[i+2] = Math.abs(cData[i+2] - bData[j+2]); // b
  }
  }
 
  // Helpers
  function offsets (imageData) {
  rowOffset = Math.floor((height - imageData.height) / 2);
  columnOffset = Math.floor((width - imageData.width) / 2);
  }
 
  return c;
  }
 
 
  // Validation
  function checkType () {
  var i;
  for (i = 0; i < arguments.length; i++) {
  if (!isImageType(arguments[i])) {
  throw {
  name : 'ImageTypeError',
  message : 'Submitted object was not an image.'
  };
  }
  }
  }
 
 
  // Jasmine Matchers
  function get (element, content) {
  element = document.createElement(element);
  if (element && content) {
  element.innerHTML = content;
  }
  return element;
  }
  jasmine = {
 
  toBeImageData : function () {
  return imagediff.isImageData(this.actual);
  },
 
  toImageDiffEqual : function (expected, tolerance) {
 
  this.message = function() {
 
  var
  div = get('div'),
  a = get('div', '<div>Actual:</div>'),
  b = get('div', '<div>Expected:</div>'),
  c = get('div', '<div>Diff:</div>'),
  diff = imagediff.diff(this.actual, expected),
  canvas = getCanvas(),
  context;
 
  canvas.height = diff.height;
  canvas.width = diff.width;
 
  context = canvas.getContext('2d');
  context.putImageData(diff, 0, 0);
 
  a.appendChild(toCanvas(this.actual));
  b.appendChild(toCanvas(expected));
  c.appendChild(canvas);
 
  div.appendChild(a);
  div.appendChild(b);
  div.appendChild(c);
 
  return [
  div,
  "Expected not to be equal."
  ];
  };
 
  return imagediff.equal(this.actual, expected, tolerance);
  }
  };
 
  // Definition
  imagediff = {
 
  createCanvas : getCanvas,
  createImageData : getImageData,
 
  isImage : isImage,
  isCanvas : isCanvas,
  isContext : isContext,
  isImageData : isImageData,
  isImageType : isImageType,
 
  toImageData : function (object) {
  checkType(object);
  if (isImageData(object)) { return copyImageData(object); }
  return toImageData(object);
  },
 
  equal : function (a, b, tolerance) {
  checkType(a, b);
  a = toImageData(a);
  b = toImageData(b);
  return equal(a, b, tolerance);
  },
  diff : function (a, b) {
  checkType(a, b);
  a = toImageData(a);
  b = toImageData(b);
  return diff(a, b);
  },
 
  jasmine : jasmine,
 
  // Compatibility
  noConflict : function () {
  root[name] = previous;
  return imagediff;
  }
  };
 
  return imagediff;
  });
 
  Copyright (c) 2008-2011 Pivotal Labs
 
  Permission is hereby granted, free of charge, to any person obtaining
  a copy of this software and associated documentation files (the
  "Software"), to deal in the Software without restriction, including
  without limitation the rights to use, copy, modify, merge, publish,
  distribute, sublicense, and/or sell copies of the Software, and to
  permit persons to whom the Software is furnished to do so, subject to
  the following conditions:
 
  The above copyright notice and this permission notice shall be
  included in all copies or substantial portions of the Software.
 
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
  jasmine.HtmlReporterHelpers = {};
 
  jasmine.HtmlReporterHelpers.createDom = function(type, attrs, childrenVarArgs) {
  var el = document.createElement(type);
 
  for (var i = 2; i < arguments.length; i++) {
  var child = arguments[i];
 
  if (typeof child === 'string') {
  el.appendChild(document.createTextNode(child));
  } else {
  if (child) {
  el.appendChild(child);
  }
  }
  }
 
  for (var attr in attrs) {
  if (attr == "className") {
  el[attr] = attrs[attr];
  } else {
  el.setAttribute(attr, attrs[attr]);
  }
  }
 
  return el;
  };
 
  jasmine.HtmlReporterHelpers.getSpecStatus = function(child) {
  var results = child.results();
  var status = results.passed() ? 'passed' : 'failed';
  if (results.skipped) {
  status = 'skipped';
  }
 
  return status;
  };
 
  jasmine.HtmlReporterHelpers.appendToSummary = function(child, childElement) {
  var parentDiv = this.dom.summary;
  var parentSuite = (typeof child.parentSuite == 'undefined') ? 'suite' : 'parentSuite';
  var parent = child[parentSuite];
 
  if (parent) {
  if (typeof this.views.suites[parent.id] == 'undefined') {
  this.views.suites[parent.id] = new jasmine.HtmlReporter.SuiteView(parent, this.dom, this.views);
  }
  parentDiv = this.views.suites[parent.id].element;
  }
 
  parentDiv.appendChild(childElement);
  };
 
 
  jasmine.HtmlReporterHelpers.addHelpers = function(ctor) {
  for(var fn in jasmine.HtmlReporterHelpers) {
  ctor.prototype[fn] = jasmine.HtmlReporterHelpers[fn];
  }
  };
 
  jasmine.HtmlReporter = function(_doc) {
  var self = this;
  var doc = _doc || window.document;
 
  var reporterView;
 
  var dom = {};
 
  // Jasmine Reporter Public Interface
  self.logRunningSpecs = false;
 
  self.reportRunnerStarting = function(runner) {
  var specs = runner.specs() || [];
 
  if (specs.length == 0) {
  return;
  }
 
  createReporterDom(runner.env.versionString());
  doc.body.appendChild(dom.reporter);
 
  reporterView = new jasmine.HtmlReporter.ReporterView(dom);
  reporterView.addSpecs(specs, self.specFilter);
  };
 
  self.reportRunnerResults = function(runner) {
  reporterView && reporterView.complete();
  };
 
  self.reportSuiteResults = function(suite) {
  reporterView.suiteComplete(suite);
  };
 
  self.reportSpecStarting = function(spec) {
  if (self.logRunningSpecs) {
  self.log('>> Jasmine Running ' + spec.suite.description + ' ' + spec.description + '...');
  }
  };
 
  self.reportSpecResults = function(spec) {
  reporterView.specComplete(spec);
  };
 
  self.log = function() {
  var console = jasmine.getGlobal().console;
  if (console && console.log) {
  if (console.log.apply) {
  console.log.apply(console, arguments);
  } else {
  console.log(arguments); // ie fix: console.log.apply doesn't exist on ie
  }
  }
  };
 
  self.specFilter = function(spec) {
  if (!focusedSpecName()) {
  return true;
  }
 
  return spec.getFullName().indexOf(focusedSpecName()) === 0;
  };
 
  return self;
 
  function focusedSpecName() {
  var specName;
 
  (function memoizeFocusedSpec() {
  if (specName) {
  return;
  }
 
  var paramMap = [];
  var params = doc.location.search.substring(1).split('&');
 
  for (var i = 0; i < params.length; i++) {
  var p = params[i].split('=');
  paramMap[decodeURIComponent(p[0])] = decodeURIComponent(p[1]);
  }
 
  specName = paramMap.spec;
  })();
 
  return specName;
  }
 
  function createReporterDom(version) {
  dom.reporter = self.createDom('div', { id: 'HTMLReporter', className: 'jasmine_reporter' },
  dom.banner = self.createDom('div', { className: 'banner' },
  self.createDom('span', { className: 'title' }, "Jasmine "),
  self.createDom('span', { className: 'version' }, version)),
 
  dom.symbolSummary = self.createDom('ul', {className: 'symbolSummary'}),
  dom.alert = self.createDom('div', {className: 'alert'}),
  dom.results = self.createDom('div', {className: 'results'},
  dom.summary = self.createDom('div', { className: 'summary' }),
  dom.details = self.createDom('div', { id: 'details' }))
  );
  }
  };
  jasmine.HtmlReporterHelpers.addHelpers(jasmine.HtmlReporter);jasmine.HtmlReporter.ReporterView = function(dom) {
  this.startedAt = new Date();
  this.runningSpecCount = 0;
  this.completeSpecCount = 0;
  this.passedCount = 0;
  this.failedCount = 0;
  this.skippedCount = 0;
 
  this.createResultsMenu = function() {
  this.resultsMenu = this.createDom('span', {className: 'resultsMenu bar'},
  this.summaryMenuItem = this.createDom('a', {className: 'summaryMenuItem', href: "#"}, '0 specs'),
  ' | ',
  this.detailsMenuItem = this.createDom('a', {className: 'detailsMenuItem', href: "#"}, '0 failing'));
 
  this.summaryMenuItem.onclick = function() {
  dom.reporter.className = dom.reporter.className.replace(/ showDetails/g, '');
  };
 
  this.detailsMenuItem.onclick = function() {
  showDetails();
  };
  };
 
  this.addSpecs = function(specs, specFilter) {
  this.totalSpecCount = specs.length;
 
  this.views = {
  specs: {},
  suites: {}
  };
 
  for (var i = 0; i < specs.length; i++) {
  var spec = specs[i];
  this.views.specs[spec.id] = new jasmine.HtmlReporter.SpecView(spec, dom, this.views);
  if (specFilter(spec)) {
  this.runningSpecCount++;
  }
  }
  };
 
  this.specComplete = function(spec) {
  this.completeSpecCount++;
 
  if (isUndefined(this.views.specs[spec.id])) {
  this.views.specs[spec.id] = new jasmine.HtmlReporter.SpecView(spec, dom);
  }
 
  var specView = this.views.specs[spec.id];
 
  switch (specView.status()) {
  case 'passed':
  this.passedCount++;
  break;
 
  case 'failed':
  this.failedCount++;
  break;
 
  case 'skipped':
  this.skippedCount++;
  break;
  }
 
  specView.refresh();
  this.refresh();
  };
 
  this.suiteComplete = function(suite) {
  var suiteView = this.views.suites[suite.id];
  if (isUndefined(suiteView)) {
  return;
  }
  suiteView.refresh();
  };
 
  this.refresh = function() {
 
  if (isUndefined(this.resultsMenu)) {
  this.createResultsMenu();
  }
 
  // currently running UI
  if (isUndefined(this.runningAlert)) {
  this.runningAlert = this.createDom('a', {href: "?", className: "runningAlert bar"});
  dom.alert.appendChild(this.runningAlert);
  }
  this.runningAlert.innerHTML = "Running " + this.completeSpecCount + " of " + specPluralizedFor(this.totalSpecCount);
 
  // skipped specs UI
  if (isUndefined(this.skippedAlert)) {
  this.skippedAlert = this.createDom('a', {href: "?", className: "skippedAlert bar"});
  }
 
  this.skippedAlert.innerHTML = "Skipping " + this.skippedCount + " of " + specPluralizedFor(this.totalSpecCount) + " - run all";
 
  if (this.skippedCount === 1 && isDefined(dom.alert)) {
  dom.alert.appendChild(this.skippedAlert);
  }
 
  // passing specs UI
  if (isUndefined(this.passedAlert)) {
  this.passedAlert = this.createDom('span', {href: "?", className: "passingAlert bar"});
  }
  this.passedAlert.innerHTML = "Passing " + specPluralizedFor(this.passedCount);
 
  // failing specs UI
  if (isUndefined(this.failedAlert)) {
  this.failedAlert = this.createDom('span', {href: "?", className: "failingAlert bar"});
  }
  this.failedAlert.innerHTML = "Failing " + specPluralizedFor(this.failedCount);
 
  if (this.failedCount === 1 && isDefined(dom.alert)) {
  dom.alert.appendChild(this.failedAlert);
  dom.alert.appendChild(this.resultsMenu);
  }
 
  // summary info
  this.summaryMenuItem.innerHTML = "" + specPluralizedFor(this.runningSpecCount);
  this.detailsMenuItem.innerHTML = "" + this.failedCount + " failing";
  };
 
  this.complete = function() {
  dom.alert.removeChild(this.runningAlert);
 
  this.skippedAlert.innerHTML = "Ran " + this.runningSpecCount + " of " + specPluralizedFor(this.totalSpecCount) + " - run all";
 
  if (this.failedCount === 0) {
  dom.alert.appendChild(this.createDom('span', {className: 'passingAlert bar'}, "Passing " + specPluralizedFor(this.passedCount)));
  } else {
  showDetails();
  }
 
  dom.banner.appendChild(this.createDom('span', {className: 'duration'}, "finished in " + ((new Date().getTime() - this.startedAt.getTime()) / 1000) + "s"));
  };
 
  return this;
 
  function showDetails() {
  if (dom.reporter.className.search(/showDetails/) === -1) {
  dom.reporter.className += " showDetails";
  }
  }
 
  function isUndefined(obj) {
  return typeof obj === 'undefined';
  }
 
  function isDefined(obj) {
  return !isUndefined(obj);
  }
 
  function specPluralizedFor(count) {
  var str = count + " spec";
  if (count > 1) {
  str += "s"
  }
  return str;
  }
 
  };
 
  jasmine.HtmlReporterHelpers.addHelpers(jasmine.HtmlReporter.ReporterView);
 
 
  jasmine.HtmlReporter.SpecView = function(spec, dom, views) {
  this.spec = spec;
  this.dom = dom;
  this.views = views;
 
  this.symbol = this.createDom('li', { className: 'pending' });
  this.dom.symbolSummary.appendChild(this.symbol);
 
  this.summary = this.createDom('div', { className: 'specSummary' },
  this.createDom('a', {
  className: 'description',
  href: '?spec=' + encodeURIComponent(this.spec.getFullName()),
  title: this.spec.getFullName()
  }, this.spec.description)
  );
 
  this.detail = this.createDom('div', { className: 'specDetail' },
  this.createDom('a', {
  className: 'description',
  href: '?spec=' + encodeURIComponent(this.spec.getFullName()),
  title: this.spec.getFullName()
  }, this.spec.getFullName())
  );
  };
 
  jasmine.HtmlReporter.SpecView.prototype.status = function() {
  return this.getSpecStatus(this.spec);
  };
 
  jasmine.HtmlReporter.SpecView.prototype.refresh = function() {
  this.symbol.className = this.status();
 
  switch (this.status()) {
  case 'skipped':
  break;
 
  case 'passed':
  this.appendSummaryToSuiteDiv();
  break;
 
  case 'failed':
  this.appendSummaryToSuiteDiv();
  this.appendFailureDetail();
  break;
  }
  };
 
  jasmine.HtmlReporter.SpecView.prototype.appendSummaryToSuiteDiv = function() {
  this.summary.className += ' ' + this.status();
  this.appendToSummary(this.spec, this.summary);
  };
 
  jasmine.HtmlReporter.SpecView.prototype.appendFailureDetail = function() {
  this.detail.className += ' ' + this.status();
 
  var resultItems = this.spec.results().getItems();
  var messagesDiv = this.createDom('div', { className: 'messages' });
 
  for (var i = 0; i < resultItems.length; i++) {
  var result = resultItems[i];
 
  if (result.type == 'log') {
  messagesDiv.appendChild(this.createDom('div', {className: 'resultMessage log'}, result.toString()));
  } else if (result.type == 'expect' && result.passed && !result.passed()) {
  messagesDiv.appendChild(this.createDom('div', {className: 'resultMessage fail'}, result.message));
 
  if (result.trace.stack) {
  messagesDiv.appendChild(this.createDom('div', {className: 'stackTrace'}, result.trace.stack));
  }
  }
  }
 
  if (messagesDiv.childNodes.length > 0) {
  this.detail.appendChild(messagesDiv);
  this.dom.details.appendChild(this.detail);
  }
  };
 
  jasmine.HtmlReporterHelpers.addHelpers(jasmine.HtmlReporter.SpecView);jasmine.HtmlReporter.SuiteView = function(suite, dom, views) {
  this.suite = suite;
  this.dom = dom;
  this.views = views;
 
  this.element = this.createDom('div', { className: 'suite' },
  this.createDom('a', { className: 'description', href: '?spec=' + encodeURIComponent(this.suite.getFullName()) }, this.suite.description)
  );
 
  this.appendToSummary(this.suite, this.element);
  };
 
  jasmine.HtmlReporter.SuiteView.prototype.status = function() {
  return this.getSpecStatus(this.suite);
  };
 
  jasmine.HtmlReporter.SuiteView.prototype.refresh = function() {
  this.element.className += " " + this.status();
  };
 
  jasmine.HtmlReporterHelpers.addHelpers(jasmine.HtmlReporter.SuiteView);
 
  /* @deprecated Use jasmine.HtmlReporter instead
  */
  jasmine.TrivialReporter = function(doc) {
  this.document = doc || document;
  this.suiteDivs = {};
  this.logRunningSpecs = false;
  };
 
  jasmine.TrivialReporter.prototype.createDom = function(type, attrs, childrenVarArgs) {
  var el = document.createElement(type);
 
  for (var i = 2; i < arguments.length; i++) {
  var child = arguments[i];
 
  if (typeof child === 'string') {
  el.appendChild(document.createTextNode(child));
  } else {
  if (child) { el.appendChild(child); }
  }
  }
 
  for (var attr in attrs) {
  if (attr == "className") {
  el[attr] = attrs[attr];
  } else {
  el.setAttribute(attr, attrs[attr]);
  }
  }
 
  return el;
  };
 
  jasmine.TrivialReporter.prototype.reportRunnerStarting = function(runner) {
  var showPassed, showSkipped;
 
  this.outerDiv = this.createDom('div', { id: 'TrivialReporter', className: 'jasmine_reporter' },
  this.createDom('div', { className: 'banner' },
  this.createDom('div', { className: 'logo' },
  this.createDom('span', { className: 'title' }, "Jasmine"),
  this.createDom('span', { className: 'version' }, runner.env.versionString())),
  this.createDom('div', { className: 'options' },
  "Show ",
  showPassed = this.createDom('input', { id: "__jasmine_TrivialReporter_showPassed__", type: 'checkbox' }),
  this.createDom('label', { "for": "__jasmine_TrivialReporter_showPassed__" }, " passed "),
  showSkipped = this.createDom('input', { id: "__jasmine_TrivialReporter_showSkipped__", type: 'checkbox' }),
  this.createDom('label', { "for": "__jasmine_TrivialReporter_showSkipped__" }, " skipped")
  )
  ),
 
  this.runnerDiv = this.createDom('div', { className: 'runner running' },
  this.createDom('a', { className: 'run_spec', href: '?' }, "run all"),
  this.runnerMessageSpan = this.createDom('span', {}, "Running..."),
  this.finishedAtSpan = this.createDom('span', { className: 'finished-at' }, ""))
  );
 
  this.document.body.appendChild(this.outerDiv);
 
  var suites = runner.suites();
  for (var i = 0; i < suites.length; i++) {
  var suite = suites[i];
  var suiteDiv = this.createDom('div', { className: 'suite' },
  this.createDom('a', { className: 'run_spec', href: '?spec=' + encodeURIComponent(suite.getFullName()) }, "run"),
  this.createDom('a', { className: 'description', href: '?spec=' + encodeURIComponent(suite.getFullName()) }, suite.description));
  this.suiteDivs[suite.id] = suiteDiv;
  var parentDiv = this.outerDiv;
  if (suite.parentSuite) {
  parentDiv = this.suiteDivs[suite.parentSuite.id];
  }
  parentDiv.appendChild(suiteDiv);
  }
 
  this.startedAt = new Date();
 
  var self = this;
  showPassed.onclick = function(evt) {
  if (showPassed.checked) {
  self.outerDiv.className += ' show-passed';
  } else {
  self.outerDiv.className = self.outerDiv.className.replace(/ show-passed/, '');
  }
  };
 
  showSkipped.onclick = function(evt) {
  if (showSkipped.checked) {
  self.outerDiv.className += ' show-skipped';
  } else {
  self.outerDiv.className = self.outerDiv.className.replace(/ show-skipped/, '');
  }
  };
  };
 
  jasmine.TrivialReporter.prototype.reportRunnerResults = function(runner) {
  var results = runner.results();
  var className = (results.failedCount > 0) ? "runner failed" : "runner passed";
  this.runnerDiv.setAttribute("class", className);
  //do it twice for IE
  this.runnerDiv.setAttribute("className", className);
  var specs = runner.specs();
  var specCount = 0;
  for (var i = 0; i < specs.length; i++) {
  if (this.specFilter(specs[i])) {
  specCount++;
  }
  }
  var message = "" + specCount + " spec" + (specCount == 1 ? "" : "s" ) + ", " + results.failedCount + " failure" + ((results.failedCount == 1) ? "" : "s");
  message += " in " + ((new Date().getTime() - this.startedAt.getTime()) / 1000) + "s";
  this.runnerMessageSpan.replaceChild(this.createDom('a', { className: 'description', href: '?'}, message), this.runnerMessageSpan.firstChild);
 
  this.finishedAtSpan.appendChild(document.createTextNode("Finished at " + new Date().toString()));
  };
 
  jasmine.TrivialReporter.prototype.reportSuiteResults = function(suite) {
  var results = suite.results();
  var status = results.passed() ? 'passed' : 'failed';
  if (results.totalCount === 0) { // todo: change this to check results.skipped
  status = 'skipped';
  }
  this.suiteDivs[suite.id].className += " " + status;
  };
 
  jasmine.TrivialReporter.prototype.reportSpecStarting = function(spec) {
  if (this.logRunningSpecs) {
  this.log('>> Jasmine Running ' + spec.suite.description + ' ' + spec.description + '...');
  }
  };
 
  jasmine.TrivialReporter.prototype.reportSpecResults = function(spec) {
  var results = spec.results();
  var status = results.passed() ? 'passed' : 'failed';
  if (results.skipped) {
  status = 'skipped';
  }
  var specDiv = this.createDom('div', { className: 'spec ' + status },
  this.createDom('a', { className: 'run_spec', href: '?spec=' + encodeURIComponent(spec.getFullName()) }, "run"),
  this.createDom('a', {
  className: 'description',
  href: '?spec=' + encodeURIComponent(spec.getFullName()),
  title: spec.getFullName()
  }, spec.description));
 
 
  var resultItems = results.getItems();
  var messagesDiv = this.createDom('div', { className: 'messages' });
  for (var i = 0; i < resultItems.length; i++) {
  var result = resultItems[i];
 
  if (result.type == 'log') {
  messagesDiv.appendChild(this.createDom('div', {className: 'resultMessage log'}, result.toString()));
  } else if (result.type == 'expect' && result.passed && !result.passed()) {
  messagesDiv.appendChild(this.createDom('div', {className: 'resultMessage fail'}, result.message));
 
  if (result.trace.stack) {
  messagesDiv.appendChild(this.createDom('div', {className: 'stackTrace'}, result.trace.stack));
  }
  }
  }
 
  if (messagesDiv.childNodes.length > 0) {
  specDiv.appendChild(messagesDiv);
  }
 
  this.suiteDivs[spec.suite.id].appendChild(specDiv);
  };
 
  jasmine.TrivialReporter.prototype.log = function() {
  var console = jasmine.getGlobal().console;
  if (console && console.log) {
  if (console.log.apply) {
  console.log.apply(console, arguments);
  } else {
  console.log(arguments); // ie fix: console.log.apply doesn't exist on ie
  }
  }
  };
 
  jasmine.TrivialReporter.prototype.getLocation = function() {
  return this.document.location;
  };
 
  jasmine.TrivialReporter.prototype.specFilter = function(spec) {
  var paramMap = {};
  var params = this.getLocation().search.substring(1).split('&');
  for (var i = 0; i < params.length; i++) {
  var p = params[i].split('=');
  paramMap[decodeURIComponent(p[0])] = decodeURIComponent(p[1]);
  }
 
  if (!paramMap.spec) {
  return true;
  }
  return spec.getFullName().indexOf(paramMap.spec) === 0;
  };
 
  body { background-color: #eeeeee; padding: 0; margin: 5px; overflow-y: scroll; }
 
  #HTMLReporter { font-size: 11px; font-family: Monaco, "Lucida Console", monospace; line-height: 14px; color: #333333; }
  #HTMLReporter a { text-decoration: none; }
  #HTMLReporter a:hover { text-decoration: underline; }
  #HTMLReporter p, #HTMLReporter h1, #HTMLReporter h2, #HTMLReporter h3, #HTMLReporter h4, #HTMLReporter h5, #HTMLReporter h6 { margin: 0; line-height: 14px; }
  #HTMLReporter .banner, #HTMLReporter .symbolSummary, #HTMLReporter .summary, #HTMLReporter .resultMessage, #HTMLReporter .specDetail .description, #HTMLReporter .alert .bar, #HTMLReporter .stackTrace { padding-left: 9px; padding-right: 9px; }
  #HTMLReporter #jasmine_content { position: fixed; right: 100%; }
  #HTMLReporter .version { color: #aaaaaa; }
  #HTMLReporter .banner { margin-top: 14px; }
  #HTMLReporter .duration { color: #aaaaaa; float: right; }
  #HTMLReporter .symbolSummary { overflow: hidden; *zoom: 1; margin: 14px 0; }
  #HTMLReporter .symbolSummary li { display: block; float: left; height: 7px; width: 14px; margin-bottom: 7px; font-size: 16px; }
  #HTMLReporter .symbolSummary li.passed { font-size: 14px; }
  #HTMLReporter .symbolSummary li.passed:before { color: #5e7d00; content: "\02022"; }
  #HTMLReporter .symbolSummary li.failed { line-height: 9px; }
  #HTMLReporter .symbolSummary li.failed:before { color: #b03911; content: "x"; font-weight: bold; margin-left: -1px; }
  #HTMLReporter .symbolSummary li.skipped { font-size: 14px; }
  #HTMLReporter .symbolSummary li.skipped:before { color: #bababa; content: "\02022"; }
  #HTMLReporter .symbolSummary li.pending { line-height: 11px; }
  #HTMLReporter .symbolSummary li.pending:before { color: #aaaaaa; content: "-"; }
  #HTMLReporter .bar { line-height: 28px; font-size: 14px; display: block; color: #eee; }
  #HTMLReporter .runningAlert { background-color: #666666; }
  #HTMLReporter .skippedAlert { background-color: #aaaaaa; }
  #HTMLReporter .skippedAlert:first-child { background-color: #333333; }
  #HTMLReporter .skippedAlert:hover { text-decoration: none; color: white; text-decoration: underline; }
  #HTMLReporter .passingAlert { background-color: #a6b779; }
  #HTMLReporter .passingAlert:first-child { background-color: #5e7d00; }
  #HTMLReporter .failingAlert { background-color: #cf867e; }
  #HTMLReporter .failingAlert:first-child { background-color: #b03911; }
  #HTMLReporter .results { margin-top: 14px; }
  #HTMLReporter #details { display: none; }
  #HTMLReporter .resultsMenu, #HTMLReporter .resultsMenu a { background-color: #fff; color: #333333; }
  #HTMLReporter.showDetails .summaryMenuItem { font-weight: normal; text-decoration: inherit; }
  #HTMLReporter.showDetails .summaryMenuItem:hover { text-decoration: underline; }
  #HTMLReporter.showDetails .detailsMenuItem { font-weight: bold; text-decoration: underline; }
  #HTMLReporter.showDetails .summary { display: none; }
  #HTMLReporter.showDetails #details { display: block; }
  #HTMLReporter .summaryMenuItem { font-weight: bold; text-decoration: underline; }
  #HTMLReporter .summary { margin-top: 14px; }
  #HTMLReporter .summary .suite .suite, #HTMLReporter .summary .specSummary { margin-left: 14px; }
  #HTMLReporter .summary .specSummary.passed a { color: #5e7d00; }
  #HTMLReporter .summary .specSummary.failed a { color: #b03911; }
  #HTMLReporter .description + .suite { margin-top: 0; }
  #HTMLReporter .suite { margin-top: 14px; }
  #HTMLReporter .suite a { color: #333333; }
  #HTMLReporter #details .specDetail { margin-bottom: 28px; }
  #HTMLReporter #details .specDetail .description { display: block; color: white; background-color: #b03911; }
  #HTMLReporter .resultMessage { padding-top: 14px; color: #333333; }
  #HTMLReporter .resultMessage span.result { display: block; }
  #HTMLReporter .stackTrace { margin: 5px 0 0 0; max-height: 224px; overflow: auto; line-height: 18px; color: #666666; border: 1px solid #ddd; background: white; white-space: pre; }
 
  #TrivialReporter { padding: 8px 13px; position: absolute; top: 0; bottom: 0; left: 0; right: 0; overflow-y: scroll; background-color: white; font-family: "Helvetica Neue Light", "Lucida Grande", "Calibri", "Arial", sans-serif; /*.resultMessage {*/ /*white-space: pre;*/ /*}*/ }
  #TrivialReporter a:visited, #TrivialReporter a { color: #303; }
  #TrivialReporter a:hover, #TrivialReporter a:active { color: blue; }
  #TrivialReporter .run_spec { float: right; padding-right: 5px; font-size: .8em; text-decoration: none; }
  #TrivialReporter .banner { color: #303; background-color: #fef; padding: 5px; }
  #TrivialReporter .logo { float: left; font-size: 1.1em; padding-left: 5px; }
  #TrivialReporter .logo .version { font-size: .6em; padding-left: 1em; }
  #TrivialReporter .runner.running { background-color: yellow; }
  #TrivialReporter .options { text-align: right; font-size: .8em; }
  #TrivialReporter .suite { border: 1px outset gray; margin: 5px 0; padding-left: 1em; }
  #TrivialReporter .suite .suite { margin: 5px; }
  #TrivialReporter .suite.passed { background-color: #dfd; }
  #TrivialReporter .suite.failed { background-color: #fdd; }
  #TrivialReporter .spec { margin: 5px; padding-left: 1em; clear: both; }
  #TrivialReporter .spec.failed, #TrivialReporter .spec.passed, #TrivialReporter .spec.skipped { padding-bottom: 5px; border: 1px solid gray; }
  #TrivialReporter .spec.failed { background-color: #fbb; border-color: red; }
  #TrivialReporter .spec.passed { background-color: #bfb; border-color: green; }
  #TrivialReporter .spec.skipped { background-color: #bbb; }
  #TrivialReporter .messages { border-left: 1px dashed gray; padding-left: 1em; padding-right: 1em; }
  #TrivialReporter .passed { background-color: #cfc; display: none; }
  #TrivialReporter .failed { background-color: #fbb; }
  #TrivialReporter .skipped { color: #777; background-color: #eee; display: none; }
  #TrivialReporter .resultMessage span.result { display: block; line-height: 2em; color: black; }
  #TrivialReporter .resultMessage .mismatch { color: black; }
  #TrivialReporter .stackTrace { white-space: pre; font-size: .8em; margin-left: 10px; max-height: 5em; overflow: auto; border: 1px inset red; padding: 1em; background: #eef; }
  #TrivialReporter .finished-at { padding-left: 1em; font-size: .6em; }
  #TrivialReporter.show-passed .passed, #TrivialReporter.show-skipped .skipped { display: block; }
  #TrivialReporter #jasmine_content { position: fixed; right: 100%; }
  #TrivialReporter .runner { border: 1px solid gray; display: block; margin: 5px 0; padding: 2px 0 2px 10px; }
 
  var isCommonJS = typeof window == "undefined";
 
  /**
  * Top level namespace for Jasmine, a lightweight JavaScript BDD/spec/testing framework.
  *
  * @namespace
  */
  var jasmine = {};
  if (isCommonJS) exports.jasmine = jasmine;
  /**
  * @private
  */
  jasmine.unimplementedMethod_ = function() {
  throw new Error("unimplemented method");
  };
 
  /**
  * Use <code>jasmine.undefined</code> instead of <code>undefined</code>, since <code>undefined</code> is just
  * a plain old variable and may be redefined by somebody else.
  *
  * @private
  */
  jasmine.undefined = jasmine.___undefined___;
 
  /**
  * Show diagnostic messages in the console if set to true
  *
  */
  jasmine.VERBOSE = false;
 
  /**
  * Default interval in milliseconds for event loop yields (e.g. to allow network activity or to refresh the screen with the HTML-based runner). Small values here may result in slow test running. Zero means no updates until all tests have completed.
  *
  */
  jasmine.DEFAULT_UPDATE_INTERVAL = 250;
 
  /**
  * Default timeout interval in milliseconds for waitsFor() blocks.
  */
  jasmine.DEFAULT_TIMEOUT_INTERVAL = 5000;
 
  jasmine.getGlobal = function() {
  function getGlobal() {
  return this;
  }
 
  return getGlobal();
  };
 
  /**
  * Allows for bound functions to be compared. Internal use only.
  *
  * @ignore
  * @private
  * @param base {Object} bound 'this' for the function
  * @param name {Function} function to find
  */
  jasmine.bindOriginal_ = function(base, name) {
  var original = base[name];
  if (original.apply) {
  return function() {
  return original.apply(base, arguments);
  };
  } else {
  // IE support
  return jasmine.getGlobal()[name];
  }
  };
 
  jasmine.setTimeout = jasmine.bindOriginal_(jasmine.getGlobal(), 'setTimeout');
  jasmine.clearTimeout = jasmine.bindOriginal_(jasmine.getGlobal(), 'clearTimeout');
  jasmine.setInterval = jasmine.bindOriginal_(jasmine.getGlobal(), 'setInterval');
  jasmine.clearInterval = jasmine.bindOriginal_(jasmine.getGlobal(), 'clearInterval');
 
  jasmine.MessageResult = function(values) {
  this.type = 'log';
  this.values = values;
  this.trace = new Error(); // todo: test better
  };
 
  jasmine.MessageResult.prototype.toString = function() {
  var text = "";
  for (var i = 0; i < this.values.length; i++) {
  if (i > 0) text += " ";
  if (jasmine.isString_(this.values[i])) {
  text += this.values[i];
  } else {
  text += jasmine.pp(this.values[i]);
  }
  }
  return text;
  };
 
  jasmine.ExpectationResult = function(params) {
  this.type = 'expect';
  this.matcherName = params.matcherName;
  this.passed_ = params.passed;
  this.expected = params.expected;
  this.actual = params.actual;
  this.message = this.passed_ ? 'Passed.' : params.message;
 
  var trace = (params.trace || new Error(this.message));
  this.trace = this.passed_ ? '' : trace;
  };
 
  jasmine.ExpectationResult.prototype.toString = function () {
  return this.message;
  };
 
  jasmine.ExpectationResult.prototype.passed = function () {
  return this.passed_;
  };
 
  /**
  * Getter for the Jasmine environment. Ensures one gets created
  */
  jasmine.getEnv = function() {
  var env = jasmine.currentEnv_ = jasmine.currentEnv_ || new jasmine.Env();
  return env;
  };
 
  /**
  * @ignore
  * @private
  * @param value
  * @returns {Boolean}
  */
  jasmine.isArray_ = function(value) {
  return jasmine.isA_("Array", value);
  };
 
  /**
  * @ignore
  * @private
  * @param value
  * @returns {Boolean}
  */
  jasmine.isString_ = function(value) {
  return jasmine.isA_("String", value);
  };
 
  /**
  * @ignore
  * @private
  * @param value
  * @returns {Boolean}
  */
  jasmine.isNumber_ = function(value) {
  return jasmine.isA_("Number", value);
  };
 
  /**
  * @ignore
  * @private
  * @param {String} typeName
  * @param value
  * @returns {Boolean}
  */
  jasmine.isA_ = function(typeName, value) {
  return Object.prototype.toString.apply(value) === '[object ' + typeName + ']';
  };
 
  /**
  * Pretty printer for expecations. Takes any object and turns it into a human-readable string.
  *
  * @param value {Object} an object to be outputted
  * @returns {String}
  */
  jasmine.pp = function(value) {
  var stringPrettyPrinter = new jasmine.StringPrettyPrinter();
  stringPrettyPrinter.format(value);
  return stringPrettyPrinter.string;
  };
 
  /**
  * Returns true if the object is a DOM Node.
  *
  * @param {Object} obj object to check
  * @returns {Boolean}
  */
  jasmine.isDomNode = function(obj) {
  return obj.nodeType > 0;
  };
 
  /**
  * Returns a matchable 'generic' object of the class type. For use in expecations of type when values don't matter.
  *
  * @example
  * // don't care about which function is passed in, as long as it's a function
  * expect(mySpy).toHaveBeenCalledWith(jasmine.any(Function));
  *
  * @param {Class} clazz
  * @returns matchable object of the type clazz
  */
  jasmine.any = function(clazz) {
  return new jasmine.Matchers.Any(clazz);
  };
 
  /**
  * Returns a matchable subset of a JSON object. For use in expectations when you don't care about all of the
  * attributes on the object.
  *
  * @example
  * // don't care about any other attributes than foo.
  * expect(mySpy).toHaveBeenCalledWith(jasmine.objectContaining({foo: "bar"});
  *
  * @param sample {Object} sample
  * @returns matchable object for the sample
  */
  jasmine.objectContaining = function (sample) {
  return new jasmine.Matchers.ObjectContaining(sample);
  };
 
  /**
  * Jasmine Spies are test doubles that can act as stubs, spies, fakes or when used in an expecation, mocks.
  *
  * Spies should be created in test setup, before expectations. They can then be checked, using the standard Jasmine
  * expectation syntax. Spies can be checked if they were called or not and what the calling params were.
  *
  * A Spy has the following fields: wasCalled, callCount, mostRecentCall, and argsForCall (see docs).
  *
  * Spies are torn down at the end of every spec.
  *
  * Note: Do <b>not</b> call new jasmine.Spy() directly - a spy must be created using spyOn, jasmine.createSpy or jasmine.createSpyObj.
  *
  * @example
  * // a stub
  * var myStub = jasmine.createSpy('myStub'); // can be used anywhere
  *
  * // spy example
  * var foo = {
  * not: function(bool) { return !bool; }
  * }
  *
  * // actual foo.not will not be called, execution stops
  * spyOn(foo, 'not');
 
  // foo.not spied upon, execution will continue to implementation
  * spyOn(foo, 'not').andCallThrough();
  *
  * // fake example
  * var foo = {
  * not: function(bool) { return !bool; }
  * }
  *
  * // foo.not(val) will return val
  * spyOn(foo, 'not').andCallFake(function(value) {return value;});
  *
  * // mock example
  * foo.not(7 == 7);
  * expect(foo.not).toHaveBeenCalled();
  * expect(foo.not).toHaveBeenCalledWith(true);
  *
  * @constructor
  * @see spyOn, jasmine.createSpy, jasmine.createSpyObj
  * @param {String} name
  */
  jasmine.Spy = function(name) {
  /**
  * The name of the spy, if provided.
  */
  this.identity = name || 'unknown';
  /**
  * Is this Object a spy?
  */
  this.isSpy = true;
  /**
  * The actual function this spy stubs.
  */
  this.plan = function() {
  };
  /**
  * Tracking of the most recent call to the spy.
  * @example
  * var mySpy = jasmine.createSpy('foo');
  * mySpy(1, 2);
  * mySpy.mostRecentCall.args = [1, 2];
  */
  this.mostRecentCall = {};
 
  /**
  * Holds arguments for each call to the spy, indexed by call count
  * @example
  * var mySpy = jasmine.createSpy('foo');
  * mySpy(1, 2);
  * mySpy(7, 8);
  * mySpy.mostRecentCall.args = [7, 8];
  * mySpy.argsForCall[0] = [1, 2];
  * mySpy.argsForCall[1] = [7, 8];
  */
  this.argsForCall = [];
  this.calls = [];
  };
 
  /**
  * Tells a spy to call through to the actual implemenatation.
  *
  * @example
  * var foo = {
  * bar: function() { // do some stuff }
  * }
  *
  * // defining a spy on an existing property: foo.bar
  * spyOn(foo, 'bar').andCallThrough();
  */
  jasmine.Spy.prototype.andCallThrough = function() {
  this.plan = this.originalValue;
  return this;
  };
 
  /**
  * For setting the return value of a spy.
  *
  * @example
  * // defining a spy from scratch: foo() returns 'baz'
  * var foo = jasmine.createSpy('spy on foo').andReturn('baz');
  *
  * // defining a spy on an existing property: foo.bar() returns 'baz'
  * spyOn(foo, 'bar').andReturn('baz');
  *
  * @param {Object} value
  */
  jasmine.Spy.prototype.andReturn = function(value) {
  this.plan = function() {
  return value;
  };
  return this;
  };
 
  /**
  * For throwing an exception when a spy is called.
  *
  * @example
  * // defining a spy from scratch: foo() throws an exception w/ message 'ouch'
  * var foo = jasmine.createSpy('spy on foo').andThrow('baz');
  *
  * // defining a spy on an existing property: foo.bar() throws an exception w/ message 'ouch'
  * spyOn(foo, 'bar').andThrow('baz');
  *
  * @param {String} exceptionMsg
  */
  jasmine.Spy.prototype.andThrow = function(exceptionMsg) {
  this.plan = function() {
  throw exceptionMsg;
  };
  return this;
  };
 
  /**
  * Calls an alternate implementation when a spy is called.
  *
  * @example
  * var baz = function() {
  * // do some stuff, return something
  * }
  * // defining a spy from scratch: foo() calls the function baz
  * var foo = jasmine.createSpy('spy on foo').andCall(baz);
  *
  * // defining a spy on an existing property: foo.bar() calls an anonymnous function
  * spyOn(foo, 'bar').andCall(function() { return 'baz';} );
  *
  * @param {Function} fakeFunc
  */
  jasmine.Spy.prototype.andCallFake = function(fakeFunc) {
  this.plan = fakeFunc;
  return this;
  };
 
  /**
  * Resets all of a spy's the tracking variables so that it can be used again.
  *
  * @example
  * spyOn(foo, 'bar');
  *
  * foo.bar();
  *
  * expect(foo.bar.callCount).toEqual(1);
  *
  * foo.bar.reset();
  *
  * expect(foo.bar.callCount).toEqual(0);
  */
  jasmine.Spy.prototype.reset = function() {
  this.wasCalled = false;
  this.callCount = 0;
  this.argsForCall = [];
  this.calls = [];
  this.mostRecentCall = {};
  };
 
  jasmine.createSpy = function(name) {
 
  var spyObj = function() {
  spyObj.wasCalled = true;
  spyObj.callCount++;
  var args = jasmine.util.argsToArray(arguments);
  spyObj.mostRecentCall.object = this;
  spyObj.mostRecentCall.args = args;
  spyObj.argsForCall.push(args);
  spyObj.calls.push({object: this, args: args});
  return spyObj.plan.apply(this, arguments);
  };
 
  var spy = new jasmine.Spy(name);
 
  for (var prop in spy) {
  spyObj[prop] = spy[prop];
  }
 
  spyObj.reset();
 
  return spyObj;
  };
 
  /**
  * Determines whether an object is a spy.
  *
  * @param {jasmine.Spy|Object} putativeSpy
  * @returns {Boolean}
  */
  jasmine.isSpy = function(putativeSpy) {
  return putativeSpy && putativeSpy.isSpy;
  };
 
  /**
  * Creates a more complicated spy: an Object that has every property a function that is a spy. Used for stubbing something
  * large in one call.
  *
  * @param {String} baseName name of spy class
  * @param {Array} methodNames array of names of methods to make spies
  */
  jasmine.createSpyObj = function(baseName, methodNames) {
  if (!jasmine.isArray_(methodNames) || methodNames.length === 0) {
  throw new Error('createSpyObj requires a non-empty array of method names to create spies for');
  }
  var obj = {};
  for (var i = 0; i < methodNames.length; i++) {
  obj[methodNames[i]] = jasmine.createSpy(baseName + '.' + methodNames[i]);
  }
  return obj;
  };
 
  /**
  * All parameters are pretty-printed and concatenated together, then written to the current spec's output.
  *
  * Be careful not to leave calls to <code>jasmine.log</code> in production code.
  */
  jasmine.log = function() {
  var spec = jasmine.getEnv().currentSpec;
  spec.log.apply(spec, arguments);
  };
 
  /**
  * Function that installs a spy on an existing object's method name. Used within a Spec to create a spy.
  *
  * @example
  * // spy example
  * var foo = {
  * not: function(bool) { return !bool; }
  * }
  * spyOn(foo, 'not'); // actual foo.not will not be called, execution stops
  *
  * @see jasmine.createSpy
  * @param obj
  * @param methodName
  * @returns a Jasmine spy that can be chained with all spy methods
  */
  var spyOn = function(obj, methodName) {
  return jasmine.getEnv().currentSpec.spyOn(obj, methodName);
  };
  if (isCommonJS) exports.spyOn = spyOn;
 
  /**
  * Creates a Jasmine spec that will be added to the current suite.
  *
  * // TODO: pending tests
  *
  * @example
  * it('should be true', function() {
  * expect(true).toEqual(true);
  * });
  *
  * @param {String} desc description of this specification
  * @param {Function} func defines the preconditions and expectations of the spec
  */
  var it = function(desc, func) {
  return jasmine.getEnv().it(desc, func);
  };
  if (isCommonJS) exports.it = it;
 
  /**
  * Creates a <em>disabled</em> Jasmine spec.
  *
  * A convenience method that allows existing specs to be disabled temporarily during development.
  *
  * @param {String} desc description of this specification
  * @param {Function} func defines the preconditions and expectations of the spec
  */
  var xit = function(desc, func) {
  return jasmine.getEnv().xit(desc, func);
  };
  if (isCommonJS) exports.xit = xit;
 
  /**
  * Starts a chain for a Jasmine expectation.
  *
  * It is passed an Object that is the actual value and should chain to one of the many
  * jasmine.Matchers functions.
  *
  * @param {Object} actual Actual value to test against and expected value
  */
  var expect = function(actual) {
  return jasmine.getEnv().currentSpec.expect(actual);
  };
  if (isCommonJS) exports.expect = expect;
 
  /**
  * Defines part of a jasmine spec. Used in cominbination with waits or waitsFor in asynchrnous specs.
  *
  * @param {Function} func Function that defines part of a jasmine spec.
  */
  var runs = function(func) {
  jasmine.getEnv().currentSpec.runs(func);
  };
  if (isCommonJS) exports.runs = runs;
 
  /**
  * Waits a fixed time period before moving to the next block.
  *
  * @deprecated Use waitsFor() instead
  * @param {Number} timeout milliseconds to wait
  */
  var waits = function(timeout) {
  jasmine.getEnv().currentSpec.waits(timeout);
  };
  if (isCommonJS) exports.waits = waits;
 
  /**
  * Waits for the latchFunction to return true before proceeding to the next block.
  *
  * @param {Function} latchFunction
  * @param {String} optional_timeoutMessage
  * @param {Number} optional_timeout
  */
  var waitsFor = function(latchFunction, optional_timeoutMessage, optional_timeout) {
  jasmine.getEnv().currentSpec.waitsFor.apply(jasmine.getEnv().currentSpec, arguments);
  };
  if (isCommonJS) exports.waitsFor = waitsFor;
 
  /**
  * A function that is called before each spec in a suite.
  *
  * Used for spec setup, including validating assumptions.
  *
  * @param {Function} beforeEachFunction
  */
  var beforeEach = function(beforeEachFunction) {
  jasmine.getEnv().beforeEach(beforeEachFunction);
  };
  if (isCommonJS) exports.beforeEach = beforeEach;
 
  /**
  * A function that is called after each spec in a suite.
  *
  * Used for restoring any state that is hijacked during spec execution.
  *
  * @param {Function} afterEachFunction
  */
  var afterEach = function(afterEachFunction) {
  jasmine.getEnv().afterEach(afterEachFunction);
  };
  if (isCommonJS) exports.afterEach = afterEach;
 
  /**
  * Defines a suite of specifications.
  *
  * Stores the description and all defined specs in the Jasmine environment as one suite of specs. Variables declared
  * are accessible by calls to beforeEach, it, and afterEach. Describe blocks can be nested, allowing for specialization
  * of setup in some tests.
  *
  * @example
  * // TODO: a simple suite
  *
  * // TODO: a simple suite with a nested describe block
  *
  * @param {String} description A string, usually the class under test.
  * @param {Function} specDefinitions function that defines several specs.
  */
  var describe = function(description, specDefinitions) {
  return jasmine.getEnv().describe(description, specDefinitions);
  };
  if (isCommonJS) exports.describe = describe;
 
  /**
  * Disables a suite of specifications. Used to disable some suites in a file, or files, temporarily during development.
  *
  * @param {String} description A string, usually the class under test.
  * @param {Function} specDefinitions function that defines several specs.
  */
  var xdescribe = function(description, specDefinitions) {
  return jasmine.getEnv().xdescribe(description, specDefinitions);
  };
  if (isCommonJS) exports.xdescribe = xdescribe;
 
 
  // Provide the XMLHttpRequest class for IE 5.x-6.x:
  jasmine.XmlHttpRequest = (typeof XMLHttpRequest == "undefined") ? function() {
  function tryIt(f) {
  try {
  return f();
  } catch(e) {
  }
  return null;
  }
 
  var xhr = tryIt(function() {
  return new ActiveXObject("Msxml2.XMLHTTP.6.0");
  }) ||
  tryIt(function() {
  return new ActiveXObject("Msxml2.XMLHTTP.3.0");
  }) ||
  tryIt(function() {
  return new ActiveXObject("Msxml2.XMLHTTP");
  }) ||
  tryIt(function() {
  return new ActiveXObject("Microsoft.XMLHTTP");
  });
 
  if (!xhr) throw new Error("This browser does not support XMLHttpRequest.");
 
  return xhr;
  } : XMLHttpRequest;
  /**
  * @namespace
  */
  jasmine.util = {};
 
  /**
  * Declare that a child class inherit it's prototype from the parent class.
  *
  * @private
  * @param {Function} childClass
  * @param {Function} parentClass
  */
  jasmine.util.inherit = function(childClass, parentClass) {
  /**
  * @private
  */
  var subclass = function() {
  };
  subclass.prototype = parentClass.prototype;
  childClass.prototype = new subclass();
  };
 
  jasmine.util.formatException = function(e) {
  var lineNumber;
  if (e.line) {
  lineNumber = e.line;
  }
  else if (e.lineNumber) {
  lineNumber = e.lineNumber;
  }
 
  var file;
 
  if (e.sourceURL) {
  file = e.sourceURL;
  }
  else if (e.fileName) {
  file = e.fileName;
  }
 
  var message = (e.name && e.message) ? (e.name + ': ' + e.message) : e.toString();
 
  if (file && lineNumber) {
  message += ' in ' + file + ' (line ' + lineNumber + ')';
  }
 
  return message;
  };
 
  jasmine.util.htmlEscape = function(str) {
  if (!str) return str;
  return str.replace(/&/g, '&amp;')
  .replace(/</g, '&lt;')
  .replace(/>/g, '&gt;');
  };
 
  jasmine.util.argsToArray = function(args) {
  var arrayOfArgs = [];
  for (var i = 0; i < args.length; i++) arrayOfArgs.push(args[i]);
  return arrayOfArgs;
  };
 
  jasmine.util.extend = function(destination, source) {
  for (var property in source) destination[property] = source[property];
  return destination;
  };
 
  /**
  * Environment for Jasmine
  *
  * @constructor
  */
  jasmine.Env = function() {
  this.currentSpec = null;
  this.currentSuite = null;
  this.currentRunner_ = new jasmine.Runner(this);
 
  this.reporter = new jasmine.MultiReporter();
 
  this.updateInterval = jasmine.DEFAULT_UPDATE_INTERVAL;
  this.defaultTimeoutInterval = jasmine.DEFAULT_TIMEOUT_INTERVAL;
  this.lastUpdate = 0;
  this.specFilter = function() {
  return true;
  };
 
  this.nextSpecId_ = 0;
  this.nextSuiteId_ = 0;
  this.equalityTesters_ = [];
 
  // wrap matchers
  this.matchersClass = function() {
  jasmine.Matchers.apply(this, arguments);
  };
  jasmine.util.inherit(this.matchersClass, jasmine.Matchers);
 
  jasmine.Matchers.wrapInto_(jasmine.Matchers.prototype, this.matchersClass);
  };
 
 
  jasmine.Env.prototype.setTimeout = jasmine.setTimeout;
  jasmine.Env.prototype.clearTimeout = jasmine.clearTimeout;
  jasmine.Env.prototype.setInterval = jasmine.setInterval;
  jasmine.Env.prototype.clearInterval = jasmine.clearInterval;
 
  /**
  * @returns an object containing jasmine version build info, if set.
  */
  jasmine.Env.prototype.version = function () {
  if (jasmine.version_) {
  return jasmine.version_;
  } else {
  throw new Error('Version not set');
  }
  };
 
  /**
  * @returns string containing jasmine version build info, if set.
  */
  jasmine.Env.prototype.versionString = function() {
  if (!jasmine.version_) {
  return "version unknown";
  }
 
  var version = this.version();
  var versionString = version.major + "." + version.minor + "." + version.build;
  if (version.release_candidate) {
  versionString += ".rc" + version.release_candidate;
  }
  versionString += " revision " + version.revision;
  return versionString;
  };
 
  /**
  * @returns a sequential integer starting at 0
  */
  jasmine.Env.prototype.nextSpecId = function () {
  return this.nextSpecId_++;
  };
 
  /**
  * @returns a sequential integer starting at 0
  */
  jasmine.Env.prototype.nextSuiteId = function () {
  return this.nextSuiteId_++;
  };
 
  /**
  * Register a reporter to receive status updates from Jasmine.
  * @param {jasmine.Reporter} reporter An object which will receive status updates.
  */
  jasmine.Env.prototype.addReporter = function(reporter) {
  this.reporter.addReporter(reporter);
  };
 
  jasmine.Env.prototype.execute = function() {
  this.currentRunner_.execute();
  };
 
  jasmine.Env.prototype.describe = function(description, specDefinitions) {
  var suite = new jasmine.Suite(this, description, specDefinitions, this.currentSuite);
 
  var parentSuite = this.currentSuite;
  if (parentSuite) {
  parentSuite.add(suite);
  } else {
  this.currentRunner_.add(suite);
  }
 
  this.currentSuite = suite;
 
  var declarationError = null;
  try {
  specDefinitions.call(suite);
  } catch(e) {
  declarationError = e;
  }
 
  if (declarationError) {
  this.it("encountered a declaration exception", function() {
  throw declarationError;
  });
  }
 
  this.currentSuite = parentSuite;
 
  return suite;
  };
 
  jasmine.Env.prototype.beforeEach = function(beforeEachFunction) {
  if (this.currentSuite) {
  this.currentSuite.beforeEach(beforeEachFunction);
  } else {
  this.currentRunner_.beforeEach(beforeEachFunction);
  }
  };
 
  jasmine.Env.prototype.currentRunner = function () {
  return this.currentRunner_;
  };
 
  jasmine.Env.prototype.afterEach = function(afterEachFunction) {
  if (this.currentSuite) {
  this.currentSuite.afterEach(afterEachFunction);
  } else {
  this.currentRunner_.afterEach(afterEachFunction);
  }
 
  };
 
  jasmine.Env.prototype.xdescribe = function(desc, specDefinitions) {
  return {
  execute: function() {
  }
  };
  };
 
  jasmine.Env.prototype.it = function(description, func) {
  var spec = new jasmine.Spec(this, this.currentSuite, description);
  this.currentSuite.add(spec);
  this.currentSpec = spec;
 
  if (func) {
  spec.runs(func);
  }
 
  return spec;
  };
 
  jasmine.Env.prototype.xit = function(desc, func) {
  return {
  id: this.nextSpecId(),
  runs: function() {
  }
  };
  };
 
  jasmine.Env.prototype.compareObjects_ = function(a, b, mismatchKeys, mismatchValues) {
  if (a.__Jasmine_been_here_before__ === b && b.__Jasmine_been_here_before__ === a) {
  return true;
  }
 
  a.__Jasmine_been_here_before__ = b;
  b.__Jasmine_been_here_before__ = a;
 
  var hasKey = function(obj, keyName) {
  return obj !== null && obj[keyName] !== jasmine.undefined;
  };
 
  for (var property in b) {
  if (!hasKey(a, property) && hasKey(b, property)) {
  mismatchKeys.push("expected has key '" + property + "', but missing from actual.");
  }
  }
  for (property in a) {
  if (!hasKey(b, property) && hasKey(a, property)) {
  mismatchKeys.push("expected missing key '" + property + "', but present in actual.");
  }
  }
  for (property in b) {
  if (property == '__Jasmine_been_here_before__') continue;
  if (!this.equals_(a[property], b[property], mismatchKeys, mismatchValues)) {
  mismatchValues.push("'" + property + "' was '" + (b[property] ? jasmine.util.htmlEscape(b[property].toString()) : b[property]) + "' in expected, but was '" + (a[property] ? jasmine.util.htmlEscape(a[property].toString()) : a[property]) + "' in actual.");
  }
  }
 
  if (jasmine.isArray_(a) && jasmine.isArray_(b) && a.length != b.length) {
  mismatchValues.push("arrays were not the same length");
  }
 
  delete a.__Jasmine_been_here_before__;
  delete b.__Jasmine_been_here_before__;
  return (mismatchKeys.length === 0 && mismatchValues.length === 0);
  };
 
  jasmine.Env.prototype.equals_ = function(a, b, mismatchKeys, mismatchValues) {
  mismatchKeys = mismatchKeys || [];
  mismatchValues = mismatchValues || [];
 
  for (var i = 0; i < this.equalityTesters_.length; i++) {
  var equalityTester = this.equalityTesters_[i];
  var result = equalityTester(a, b, this, mismatchKeys, mismatchValues);
  if (result !== jasmine.undefined) return result;
  }
 
  if (a === b) return true;
 
  if (a === jasmine.undefined || a === null || b === jasmine.undefined || b === null) {
  return (a == jasmine.undefined && b == jasmine.undefined);
  }
 
  if (jasmine.isDomNode(a) && jasmine.isDomNode(b)) {
  return a === b;
  }
 
  if (a instanceof Date && b instanceof Date) {
  return a.getTime() == b.getTime();
  }
 
  if (a.jasmineMatches) {
  return a.jasmineMatches(b);
  }
 
  if (b.jasmineMatches) {
  return b.jasmineMatches(a);
  }
 
  if (a instanceof jasmine.Matchers.ObjectContaining) {
  return a.matches(b);
  }
 
  if (b instanceof jasmine.Matchers.ObjectContaining) {
  return b.matches(a);
  }
 
  if (jasmine.isString_(a) && jasmine.isString_(b)) {
  return (a == b);
  }
 
  if (jasmine.isNumber_(a) && jasmine.isNumber_(b)) {
  return (a == b);
  }
 
  if (typeof a === "object" && typeof b === "object") {
  return this.compareObjects_(a, b, mismatchKeys, mismatchValues);
  }
 
  //Straight check
  return (a === b);
  };
 
  jasmine.Env.prototype.contains_ = function(haystack, needle) {
  if (jasmine.isArray_(haystack)) {
  for (var i = 0; i < haystack.length; i++) {
  if (this.equals_(haystack[i], needle)) return true;
  }
  return false;
  }
  return haystack.indexOf(needle) >= 0;
  };
 
  jasmine.Env.prototype.addEqualityTester = function(equalityTester) {
  this.equalityTesters_.push(equalityTester);
  };
  /** No-op base class for Jasmine reporters.
  *
  * @constructor
  */
  jasmine.Reporter = function() {
  };
 
  //noinspection JSUnusedLocalSymbols
  jasmine.Reporter.prototype.reportRunnerStarting = function(runner) {
  };
 
  //noinspection JSUnusedLocalSymbols
  jasmine.Reporter.prototype.reportRunnerResults = function(runner) {
  };
 
  //noinspection JSUnusedLocalSymbols
  jasmine.Reporter.prototype.reportSuiteResults = function(suite) {
  };
 
  //noinspection JSUnusedLocalSymbols
  jasmine.Reporter.prototype.reportSpecStarting = function(spec) {
  };
 
  //noinspection JSUnusedLocalSymbols
  jasmine.Reporter.prototype.reportSpecResults = function(spec) {
  };
 
  //noinspection JSUnusedLocalSymbols
  jasmine.Reporter.prototype.log = function(str) {
  };
 
  /**
  * Blocks are functions with executable code that make up a spec.
  *
  * @constructor
  * @param {jasmine.Env} env
  * @param {Function} func
  * @param {jasmine.Spec} spec
  */
  jasmine.Block = function(env, func, spec) {
  this.env = env;
  this.func = func;
  this.spec = spec;
  };
 
  jasmine.Block.prototype.execute = function(onComplete) {
  try {
  this.func.apply(this.spec);
  } catch (e) {
  this.spec.fail(e);
  }
  onComplete();
  };
  /** JavaScript API reporter.
  *
  * @constructor
  */
  jasmine.JsApiReporter = function() {
  this.started = false;
  this.finished = false;
  this.suites_ = [];
  this.results_ = {};
  };
 
  jasmine.JsApiReporter.prototype.reportRunnerStarting = function(runner) {
  this.started = true;
  var suites = runner.topLevelSuites();
  for (var i = 0; i < suites.length; i++) {
  var suite = suites[i];
  this.suites_.push(this.summarize_(suite));
  }
  };
 
  jasmine.JsApiReporter.prototype.suites = function() {
  return this.suites_;
  };
 
  jasmine.JsApiReporter.prototype.summarize_ = function(suiteOrSpec) {
  var isSuite = suiteOrSpec instanceof jasmine.Suite;
  var summary = {
  id: suiteOrSpec.id,
  name: suiteOrSpec.description,
  type: isSuite ? 'suite' : 'spec',
  children: []
  };
 
  if (isSuite) {
  var children = suiteOrSpec.children();
  for (var i = 0; i < children.length; i++) {
  summary.children.push(this.summarize_(children[i]));
  }
  }
  return summary;
  };
 
  jasmine.JsApiReporter.prototype.results = function() {
  return this.results_;
  };
 
  jasmine.JsApiReporter.prototype.resultsForSpec = function(specId) {
  return this.results_[specId];
  };
 
  //noinspection JSUnusedLocalSymbols
  jasmine.JsApiReporter.prototype.reportRunnerResults = function(runner) {
  this.finished = true;
  };
 
  //noinspection JSUnusedLocalSymbols
  jasmine.JsApiReporter.prototype.reportSuiteResults = function(suite) {
  };
 
  //noinspection JSUnusedLocalSymbols
  jasmine.JsApiReporter.prototype.reportSpecResults = function(spec) {
  this.results_[spec.id] = {
  messages: spec.results().getItems(),
  result: spec.results().failedCount > 0 ? "failed" : "passed"
  };
  };
 
  //noinspection JSUnusedLocalSymbols
  jasmine.JsApiReporter.prototype.log = function(str) {
  };
 
  jasmine.JsApiReporter.prototype.resultsForSpecs = function(specIds){
  var results = {};
  for (var i = 0; i < specIds.length; i++) {
  var specId = specIds[i];
  results[specId] = this.summarizeResult_(this.results_[specId]);
  }
  return results;
  };
 
  jasmine.JsApiReporter.prototype.summarizeResult_ = function(result){
  var summaryMessages = [];
  var messagesLength = result.messages.length;
  for (var messageIndex = 0; messageIndex < messagesLength; messageIndex++) {
  var resultMessage = result.messages[messageIndex];
  summaryMessages.push({
  text: resultMessage.type == 'log' ? resultMessage.toString() : jasmine.undefined,
  passed: resultMessage.passed ? resultMessage.passed() : true,
  type: resultMessage.type,
  message: resultMessage.message,
  trace: {
  stack: resultMessage.passed && !resultMessage.passed() ? resultMessage.trace.stack : jasmine.undefined
  }
  });
  }
 
  return {
  result : result.result,
  messages : summaryMessages
  };
  };
 
  /**
  * @constructor
  * @param {jasmine.Env} env
  * @param actual
  * @param {jasmine.Spec} spec
  */
  jasmine.Matchers = function(env, actual, spec, opt_isNot) {
  this.env = env;
  this.actual = actual;
  this.spec = spec;
  this.isNot = opt_isNot || false;
  this.reportWasCalled_ = false;
  };
 
  // todo: @deprecated as of Jasmine 0.11, remove soon [xw]
  jasmine.Matchers.pp = function(str) {
  throw new Error("jasmine.Matchers.pp() is no longer supported, please use jasmine.pp() instead!");
  };
 
  // todo: @deprecated Deprecated as of Jasmine 0.10. Rewrite your custom matchers to return true or false. [xw]
  jasmine.Matchers.prototype.report = function(result, failing_message, details) {
  throw new Error("As of jasmine 0.11, custom matchers must be implemented differently -- please see jasmine docs");
  };
 
  jasmine.Matchers.wrapInto_ = function(prototype, matchersClass) {
  for (var methodName in prototype) {
  if (methodName == 'report') continue;
  var orig = prototype[methodName];
  matchersClass.prototype[methodName] = jasmine.Matchers.matcherFn_(methodName, orig);
  }
  };
 
  jasmine.Matchers.matcherFn_ = function(matcherName, matcherFunction) {
  return function() {
  var matcherArgs = jasmine.util.argsToArray(arguments);
  var result = matcherFunction.apply(this, arguments);
 
  if (this.isNot) {
  result = !result;
  }
 
  if (this.reportWasCalled_) return result;
 
  var message;
  if (!result) {
  if (this.message) {
  message = this.message.apply(this, arguments);
  if (jasmine.isArray_(message)) {
  message = message[this.isNot ? 1 : 0];
  }
  } else {
  var englishyPredicate = matcherName.replace(/[A-Z]/g, function(s) { return ' ' + s.toLowerCase(); });
  message = "Expected " + jasmine.pp(this.actual) + (this.isNot ? " not " : " ") + englishyPredicate;
  if (matcherArgs.length > 0) {
  for (var i = 0; i < matcherArgs.length; i++) {
  if (i > 0) message += ",";
  message += " " + jasmine.pp(matcherArgs[i]);
  }
  }
  message += ".";
  }
  }
  var expectationResult = new jasmine.ExpectationResult({
  matcherName: matcherName,
  passed: result,
  expected: matcherArgs.length > 1 ? matcherArgs : matcherArgs[0],
  actual: this.actual,
  message: message
  });
  this.spec.addMatcherResult(expectationResult);
  return jasmine.undefined;
  };
  };
 
 
 
 
  /**
  * toBe: compares the actual to the expected using ===
  * @param expected
  */
  jasmine.Matchers.prototype.toBe = function(expected) {
  return this.actual === expected;
  };
 
  /**
  * toNotBe: compares the actual to the expected using !==
  * @param expected
  * @deprecated as of 1.0. Use not.toBe() instead.
  */
  jasmine.Matchers.prototype.toNotBe = function(expected) {
  return this.actual !== expected;
  };
 
  /**
  * toEqual: compares the actual to the expected using common sense equality. Handles Objects, Arrays, etc.
  *
  * @param expected
  */
  jasmine.Matchers.prototype.toEqual = function(expected) {
  return this.env.equals_(this.actual, expected);
  };
 
  /**
  * toNotEqual: compares the actual to the expected using the ! of jasmine.Matchers.toEqual
  * @param expected
  * @deprecated as of 1.0. Use not.toEqual() instead.
  */
  jasmine.Matchers.prototype.toNotEqual = function(expected) {
  return !this.env.equals_(this.actual, expected);
  };
 
  /**
  * Matcher that compares the actual to the expected using a regular expression. Constructs a RegExp, so takes
  * a pattern or a String.
  *
  * @param expected
  */
  jasmine.Matchers.prototype.toMatch = function(expected) {
  return new RegExp(expected).test(this.actual);
  };
 
  /**
  * Matcher that compares the actual to the expected using the boolean inverse of jasmine.Matchers.toMatch
  * @param expected
  * @deprecated as of 1.0. Use not.toMatch() instead.
  */
  jasmine.Matchers.prototype.toNotMatch = function(expected) {
  return !(new RegExp(expected).test(this.actual));
  };
 
  /**
  * Matcher that compares the actual to jasmine.undefined.
  */
  jasmine.Matchers.prototype.toBeDefined = function() {
  return (this.actual !== jasmine.undefined);
  };
 
  /**
  * Matcher that compares the actual to jasmine.undefined.
  */
  jasmine.Matchers.prototype.toBeUndefined = function() {
  return (this.actual === jasmine.undefined);
  };
 
  /**
  * Matcher that compares the actual to null.
  */
  jasmine.Matchers.prototype.toBeNull = function() {
  return (this.actual === null);
  };
 
  /**
  * Matcher that boolean not-nots the actual.
  */
  jasmine.Matchers.prototype.toBeTruthy = function() {
  return !!this.actual;
  };
 
 
  /**
  * Matcher that boolean nots the actual.
  */
  jasmine.Matchers.prototype.toBeFalsy = function() {
  return !this.actual;
  };
 
 
  /**
  * Matcher that checks to see if the actual, a Jasmine spy, was called.
  */
  jasmine.Matchers.prototype.toHaveBeenCalled = function() {
  if (arguments.length > 0) {
  throw new Error('toHaveBeenCalled does not take arguments, use toHaveBeenCalledWith');
  }
 
  if (!jasmine.isSpy(this.actual)) {
  throw new Error('Expected a spy, but got ' + jasmine.pp(this.actual) + '.');
  }
 
  this.message = function() {
  return [
  "Expected spy " + this.actual.identity + " to have been called.",
  "Expected spy " + this.actual.identity + " not to have been called."
  ];
  };
 
  return this.actual.wasCalled;
  };
 
  /** @deprecated Use expect(xxx).toHaveBeenCalled() instead */
  jasmine.Matchers.prototype.wasCalled = jasmine.Matchers.prototype.toHaveBeenCalled;
 
  /**
  * Matcher that checks to see if the actual, a Jasmine spy, was not called.
  *
  * @deprecated Use expect(xxx).not.toHaveBeenCalled() instead
  */
  jasmine.Matchers.prototype.wasNotCalled = function() {
  if (arguments.length > 0) {
  throw new Error('wasNotCalled does not take arguments');
  }
 
  if (!jasmine.isSpy(this.actual)) {
  throw new Error('Expected a spy, but got ' + jasmine.pp(this.actual) + '.');
  }
 
  this.message = function() {
  return [
  "Expected spy " + this.actual.identity + " to not have been called.",
  "Expected spy " + this.actual.identity + " to have been called."
  ];
  };
 
  return !this.actual.wasCalled;
  };
 
  /**
  * Matcher that checks to see if the actual, a Jasmine spy, was called with a set of parameters.
  *
  * @example
  *
  */
  jasmine.Matchers.prototype.toHaveBeenCalledWith = function() {
  var expectedArgs = jasmine.util.argsToArray(arguments);
  if (!jasmine.isSpy(this.actual)) {
  throw new Error('Expected a spy, but got ' + jasmine.pp(this.actual) + '.');
  }
  this.message = function() {
  if (this.actual.callCount === 0) {
  // todo: what should the failure message for .not.toHaveBeenCalledWith() be? is this right? test better. [xw]
  return [
  "Expected spy " + this.actual.identity + " to have been called with " + jasmine.pp(expectedArgs) + " but it was never called.",
  "Expected spy " + this.actual.identity + " not to have been called with " + jasmine.pp(expectedArgs) + " but it was."
  ];
  } else {
  return [
  "Expected spy " + this.actual.identity + " to have been called with " + jasmine.pp(expectedArgs) + " but was called with " + jasmine.pp(this.actual.argsForCall),
  "Expected spy " + this.actual.identity + " not to have been called with " + jasmine.pp(expectedArgs) + " but was called with " + jasmine.pp(this.actual.argsForCall)
  ];
  }
  };
 
  return this.env.contains_(this.actual.argsForCall, expectedArgs);
  };
 
  /** @deprecated Use expect(xxx).toHaveBeenCalledWith() instead */
  jasmine.Matchers.prototype.wasCalledWith = jasmine.Matchers.prototype.toHaveBeenCalledWith;
 
  /** @deprecated Use expect(xxx).not.toHaveBeenCalledWith() instead */
  jasmine.Matchers.prototype.wasNotCalledWith = function() {
  var expectedArgs = jasmine.util.argsToArray(arguments);
  if (!jasmine.isSpy(this.actual)) {
  throw new Error('Expected a spy, but got ' + jasmine.pp(this.actual) + '.');
  }
 
  this.message = function() {
  return [
  "Expected spy not to have been called with " + jasmine.pp(expectedArgs) + " but it was",
  "Expected spy to have been called with " + jasmine.pp(expectedArgs) + " but it was"
  ];
  };
 
  return !this.env.contains_(this.actual.argsForCall, expectedArgs);
  };
 
  /**
  * Matcher that checks that the expected item is an element in the actual Array.
  *
  * @param {Object} expected
  */
  jasmine.Matchers.prototype.toContain = function(expected) {
  return this.env.contains_(this.actual, expected);
  };
 
  /**
  * Matcher that checks that the expected item is NOT an element in the actual Array.
  *
  * @param {Object} expected
  * @deprecated as of 1.0. Use not.toContain() instead.
  */
  jasmine.Matchers.prototype.toNotContain = function(expected) {
  return !this.env.contains_(this.actual, expected);
  };
 
  jasmine.Matchers.prototype.toBeLessThan = function(expected) {
  return this.actual < expected;
  };
 
  jasmine.Matchers.prototype.toBeGreaterThan = function(expected) {
  return this.actual > expected;
  };
 
  /**
  * Matcher that checks that the expected item is equal to the actual item
  * up to a given level of decimal precision (default 2).
  *
  * @param {Number} expected
  * @param {Number} precision
  */
  jasmine.Matchers.prototype.toBeCloseTo = function(expected, precision) {
  if (!(precision === 0)) {
  precision = precision || 2;
  }
  var multiplier = Math.pow(10, precision);
  var actual = Math.round(this.actual * multiplier);
  expected = Math.round(expected * multiplier);
  return expected == actual;
  };
 
  /**
  * Matcher that checks that the expected exception was thrown by the actual.
  *
  * @param {String} expected
  */
  jasmine.Matchers.prototype.toThrow = function(expected) {
  var result = false;
  var exception;
  if (typeof this.actual != 'function') {
  throw new Error('Actual is not a function');
  }
  try {
  this.actual();
  } catch (e) {
  exception = e;
  }
  if (exception) {
  result = (expected === jasmine.undefined || this.env.equals_(exception.message || exception, expected.message || expected));
  }
 
  var not = this.isNot ? "not " : "";
 
  this.message = function() {
  if (exception && (expected === jasmine.undefined || !this.env.equals_(exception.message || exception, expected.message || expected))) {
  return ["Expected function " + not + "to throw", expected ? expected.message || expected : "an exception", ", but it threw", exception.message || exception].join(' ');
  } else {
  return "Expected function to throw an exception.";
  }
  };
 
  return result;
  };
 
  jasmine.Matchers.Any = function(expectedClass) {
  this.expectedClass = expectedClass;
  };
 
  jasmine.Matchers.Any.prototype.jasmineMatches = function(other) {
  if (this.expectedClass == String) {
  return typeof other == 'string' || other instanceof String;
  }
 
  if (this.expectedClass == Number) {
  return typeof other == 'number' || other instanceof Number;
  }
 
  if (this.expectedClass == Function) {
  return typeof other == 'function' || other instanceof Function;
  }
 
  if (this.expectedClass == Object) {
  return typeof other == 'object';
  }
 
  return other instanceof this.expectedClass;
  };
 
  jasmine.Matchers.Any.prototype.jasmineToString = function() {
  return '<jasmine.any(' + this.expectedClass + ')>';
  };
 
  jasmine.Matchers.ObjectContaining = function (sample) {
  this.sample = sample;
  };
 
  jasmine.Matchers.ObjectContaining.prototype.jasmineMatches = function(other, mismatchKeys, mismatchValues) {
  mismatchKeys = mismatchKeys || [];
  mismatchValues = mismatchValues || [];
 
  var env = jasmine.getEnv();
 
  var hasKey = function(obj, keyName) {
  return obj != null && obj[keyName] !== jasmine.undefined;
  };
 
  for (var property in this.sample) {
  if (!hasKey(other, property) && hasKey(this.sample, property)) {
  mismatchKeys.push("expected has key '" + property + "', but missing from actual.");
  }
  else if (!env.equals_(this.sample[property], other[property], mismatchKeys, mismatchValues)) {
  mismatchValues.push("'" + property + "' was '" + (other[property] ? jasmine.util.htmlEscape(other[property].toString()) : other[property]) + "' in expected, but was '" + (this.sample[property] ? jasmine.util.htmlEscape(this.sample[property].toString()) : this.sample[property]) + "' in actual.");
  }
  }
 
  return (mismatchKeys.length === 0 && mismatchValues.length === 0);
  };
 
  jasmine.Matchers.ObjectContaining.prototype.jasmineToString = function () {
  return "<jasmine.objectContaining(" + jasmine.pp(this.sample) + ")>";
  };
  // Mock setTimeout, clearTimeout
  // Contributed by Pivotal Computer Systems, www.pivotalsf.com
 
  jasmine.FakeTimer = function() {
  this.reset();
 
  var self = this;
  self.setTimeout = function(funcToCall, millis) {
  self.timeoutsMade++;
  self.scheduleFunction(self.timeoutsMade, funcToCall, millis, false);
  return self.timeoutsMade;
  };
 
  self.setInterval = function(funcToCall, millis) {
  self.timeoutsMade++;
  self.scheduleFunction(self.timeoutsMade, funcToCall, millis, true);
  return self.timeoutsMade;
  };
 
  self.clearTimeout = function(timeoutKey) {
  self.scheduledFunctions[timeoutKey] = jasmine.undefined;
  };
 
  self.clearInterval = function(timeoutKey) {
  self.scheduledFunctions[timeoutKey] = jasmine.undefined;
  };
 
  };
 
  jasmine.FakeTimer.prototype.reset = function() {
  this.timeoutsMade = 0;
  this.scheduledFunctions = {};
  this.nowMillis = 0;
  };
 
  jasmine.FakeTimer.prototype.tick = function(millis) {
  var oldMillis = this.nowMillis;
  var newMillis = oldMillis + millis;
  this.runFunctionsWithinRange(oldMillis, newMillis);
  this.nowMillis = newMillis;
  };
 
  jasmine.FakeTimer.prototype.runFunctionsWithinRange = function(oldMillis, nowMillis) {
  var scheduledFunc;
  var funcsToRun = [];
  for (var timeoutKey in this.scheduledFunctions) {
  scheduledFunc = this.scheduledFunctions[timeoutKey];
  if (scheduledFunc != jasmine.undefined &&
  scheduledFunc.runAtMillis >= oldMillis &&
  scheduledFunc.runAtMillis <= nowMillis) {
  funcsToRun.push(scheduledFunc);
  this.scheduledFunctions[timeoutKey] = jasmine.undefined;
  }
  }
 
  if (funcsToRun.length > 0) {
  funcsToRun.sort(function(a, b) {
  return a.runAtMillis - b.runAtMillis;
  });
  for (var i = 0; i < funcsToRun.length; ++i) {
  try {
  var funcToRun = funcsToRun[i];
  this.nowMillis = funcToRun.runAtMillis;
  funcToRun.funcToCall();
  if (funcToRun.recurring) {
  this.scheduleFunction(funcToRun.timeoutKey,
  funcToRun.funcToCall,
  funcToRun.millis,
  true);
  }
  } catch(e) {
  }
  }
  this.runFunctionsWithinRange(oldMillis, nowMillis);
  }
  };
 
  jasmine.FakeTimer.prototype.scheduleFunction = function(timeoutKey, funcToCall, millis, recurring) {
  this.scheduledFunctions[timeoutKey] = {
  runAtMillis: this.nowMillis + millis,
  funcToCall: funcToCall,
  recurring: recurring,
  timeoutKey: timeoutKey,
  millis: millis
  };
  };
 
  /**
  * @namespace
  */
  jasmine.Clock = {
  defaultFakeTimer: new jasmine.FakeTimer(),
 
  reset: function() {
  jasmine.Clock.assertInstalled();
  jasmine.Clock.defaultFakeTimer.reset();
  },
 
  tick: function(millis) {
  jasmine.Clock.assertInstalled();
  jasmine.Clock.defaultFakeTimer.tick(millis);
  },
 
  runFunctionsWithinRange: function(oldMillis, nowMillis) {
  jasmine.Clock.defaultFakeTimer.runFunctionsWithinRange(oldMillis, nowMillis);
  },
 
  scheduleFunction: function(timeoutKey, funcToCall, millis, recurring) {
  jasmine.Clock.defaultFakeTimer.scheduleFunction(timeoutKey, funcToCall, millis, recurring);
  },
 
  useMock: function() {
  if (!jasmine.Clock.isInstalled()) {
  var spec = jasmine.getEnv().currentSpec;
  spec.after(jasmine.Clock.uninstallMock);
 
  jasmine.Clock.installMock();
  }
  },
 
  installMock: function() {
  jasmine.Clock.installed = jasmine.Clock.defaultFakeTimer;
  },
 
  uninstallMock: function() {
  jasmine.Clock.assertInstalled();
  jasmine.Clock.installed = jasmine.Clock.real;
  },
 
  real: {
  setTimeout: jasmine.getGlobal().setTimeout,
  clearTimeout: jasmine.getGlobal().clearTimeout,
  setInterval: jasmine.getGlobal().setInterval,
  clearInterval: jasmine.getGlobal().clearInterval
  },
 
  assertInstalled: function() {
  if (!jasmine.Clock.isInstalled()) {
  throw new Error("Mock clock is not installed, use jasmine.Clock.useMock()");
  }
  },
 
  isInstalled: function() {
  return jasmine.Clock.installed == jasmine.Clock.defaultFakeTimer;
  },
 
  installed: null
  };
  jasmine.Clock.installed = jasmine.Clock.real;
 
  //else for IE support
  jasmine.getGlobal().setTimeout = function(funcToCall, millis) {
  if (jasmine.Clock.installed.setTimeout.apply) {
  return jasmine.Clock.installed.setTimeout.apply(this, arguments);
  } else {
  return jasmine.Clock.installed.setTimeout(funcToCall, millis);
  }
  };
 
  jasmine.getGlobal().setInterval = function(funcToCall, millis) {
  if (jasmine.Clock.installed.setInterval.apply) {
  return jasmine.Clock.installed.setInterval.apply(this, arguments);
  } else {
  return jasmine.Clock.installed.setInterval(funcToCall, millis);
  }
  };
 
  jasmine.getGlobal().clearTimeout = function(timeoutKey) {
  if (jasmine.Clock.installed.clearTimeout.apply) {
  return jasmine.Clock.installed.clearTimeout.apply(this, arguments);
  } else {
  return jasmine.Clock.installed.clearTimeout(timeoutKey);
  }
  };
 
  jasmine.getGlobal().clearInterval = function(timeoutKey) {
  if (jasmine.Clock.installed.clearTimeout.apply) {
  return jasmine.Clock.installed.clearInterval.apply(this, arguments);
  } else {
  return jasmine.Clock.installed.clearInterval(timeoutKey);
  }
  };
 
  /**
  * @constructor
  */
  jasmine.MultiReporter = function() {
  this.subReporters_ = [];
  };
  jasmine.util.inherit(jasmine.MultiReporter, jasmine.Reporter);
 
  jasmine.MultiReporter.prototype.addReporter = function(reporter) {
  this.subReporters_.push(reporter);
  };
 
  (function() {
  var functionNames = [
  "reportRunnerStarting",
  "reportRunnerResults",
  "reportSuiteResults",
  "reportSpecStarting",
  "reportSpecResults",
  "log"
  ];
  for (var i = 0; i < functionNames.length; i++) {
  var functionName = functionNames[i];
  jasmine.MultiReporter.prototype[functionName] = (function(functionName) {
  return function() {
  for (var j = 0; j < this.subReporters_.length; j++) {
  var subReporter = this.subReporters_[j];
  if (subReporter[functionName]) {
  subReporter[functionName].apply(subReporter, arguments);
  }
  }
  };
  })(functionName);
  }
  })();
  /**
  * Holds results for a set of Jasmine spec. Allows for the results array to hold another jasmine.NestedResults
  *
  * @constructor
  */
  jasmine.NestedResults = function() {
  /**
  * The total count of results
  */
  this.totalCount = 0;
  /**
  * Number of passed results
  */
  this.passedCount = 0;
  /**
  * Number of failed results
  */
  this.failedCount = 0;
  /**
  * Was this suite/spec skipped?
  */
  this.skipped = false;
  /**
  * @ignore
  */
  this.items_ = [];
  };
 
  /**
  * Roll up the result counts.
  *
  * @param result
  */
  jasmine.NestedResults.prototype.rollupCounts = function(result) {
  this.totalCount += result.totalCount;
  this.passedCount += result.passedCount;
  this.failedCount += result.failedCount;
  };
 
  /**
  * Adds a log message.
  * @param values Array of message parts which will be concatenated later.
  */
  jasmine.NestedResults.prototype.log = function(values) {
  this.items_.push(new jasmine.MessageResult(values));
  };
 
  /**
  * Getter for the results: message & results.
  */
  jasmine.NestedResults.prototype.getItems = function() {
  return this.items_;
  };
 
  /**
  * Adds a result, tracking counts (total, passed, & failed)
  * @param {jasmine.ExpectationResult|jasmine.NestedResults} result
  */
  jasmine.NestedResults.prototype.addResult = function(result) {
  if (result.type != 'log') {
  if (result.items_) {
  this.rollupCounts(result);
  } else {
  this.totalCount++;
  if (result.passed()) {
  this.passedCount++;
  } else {
  this.failedCount++;
  }
  }
  }
  this.items_.push(result);
  };
 
  /**
  * @returns {Boolean} True if <b>everything</b> below passed
  */
  jasmine.NestedResults.prototype.passed = function() {
  return this.passedCount === this.totalCount;
  };
  /**
  * Base class for pretty printing for expectation results.
  */
  jasmine.PrettyPrinter = function() {
  this.ppNestLevel_ = 0;
  };
 
  /**
  * Formats a value in a nice, human-readable string.
  *
  * @param value
  */
  jasmine.PrettyPrinter.prototype.format = function(value) {
  if (this.ppNestLevel_ > 40) {
  throw new Error('jasmine.PrettyPrinter: format() nested too deeply!');
  }
 
  this.ppNestLevel_++;
  try {
  if (value === jasmine.undefined) {
  this.emitScalar('undefined');
  } else if (value === null) {
  this.emitScalar('null');
  } else if (value === jasmine.getGlobal()) {
  this.emitScalar('<global>');
  } else if (value.jasmineToString) {
  this.emitScalar(value.jasmineToString());
  } else if (typeof value === 'string') {
  this.emitString(value);
  } else if (jasmine.isSpy(value)) {
  this.emitScalar("spy on " + value.identity);
  } else if (value instanceof RegExp) {
  this.emitScalar(value.toString());
  } else if (typeof value === 'function') {
  this.emitScalar('Function');
  } else if (typeof value.nodeType === 'number') {
  this.emitScalar('HTMLNode');
  } else if (value instanceof Date) {
  this.emitScalar('Date(' + value + ')');
  } else if (value.__Jasmine_been_here_before__) {
  this.emitScalar('<circular reference: ' + (jasmine.isArray_(value) ? 'Array' : 'Object') + '>');
  } else if (jasmine.isArray_(value) || typeof value == 'object') {
  value.__Jasmine_been_here_before__ = true;
  if (jasmine.isArray_(value)) {
  this.emitArray(value);
  } else {
  this.emitObject(value);
  }
  delete value.__Jasmine_been_here_before__;
  } else {
  this.emitScalar(value.toString());
  }
  } finally {
  this.ppNestLevel_--;
  }
  };
 
  jasmine.PrettyPrinter.prototype.iterateObject = function(obj, fn) {
  for (var property in obj) {
  if (property == '__Jasmine_been_here_before__') continue;
  fn(property, obj.__lookupGetter__ ? (obj.__lookupGetter__(property) !== jasmine.undefined &&
  obj.__lookupGetter__(property) !== null) : false);
  }
  };
 
  jasmine.PrettyPrinter.prototype.emitArray = jasmine.unimplementedMethod_;
  jasmine.PrettyPrinter.prototype.emitObject = jasmine.unimplementedMethod_;
  jasmine.PrettyPrinter.prototype.emitScalar = jasmine.unimplementedMethod_;
  jasmine.PrettyPrinter.prototype.emitString = jasmine.unimplementedMethod_;
 
  jasmine.StringPrettyPrinter = function() {
  jasmine.PrettyPrinter.call(this);
 
  this.string = '';
  };
  jasmine.util.inherit(jasmine.StringPrettyPrinter, jasmine.PrettyPrinter);
 
  jasmine.StringPrettyPrinter.prototype.emitScalar = function(value) {
  this.append(value);
  };
 
  jasmine.StringPrettyPrinter.prototype.emitString = function(value) {
  this.append("'" + value + "'");
  };
 
  jasmine.StringPrettyPrinter.prototype.emitArray = function(array) {
  this.append('[ ');
  for (var i = 0; i < array.length; i++) {
  if (i > 0) {
  this.append(', ');
  }
  this.format(array[i]);
  }
  this.append(' ]');
  };
 
  jasmine.StringPrettyPrinter.prototype.emitObject = function(obj) {
  var self = this;
  this.append('{ ');
  var first = true;
 
  this.iterateObject(obj, function(property, isGetter) {
  if (first) {
  first = false;
  } else {
  self.append(', ');
  }
 
  self.append(property);
  self.append(' : ');
  if (isGetter) {
  self.append('<getter>');
  } else {
  self.format(obj[property]);
  }
  });
 
  this.append(' }');
  };
 
  jasmine.StringPrettyPrinter.prototype.append = function(value) {
  this.string += value;
  };
  jasmine.Queue = function(env) {
  this.env = env;
  this.blocks = [];
  this.running = false;
  this.index = 0;
  this.offset = 0;
  this.abort = false;
  };
 
  jasmine.Queue.prototype.addBefore = function(block) {
  this.blocks.unshift(block);
  };
 
  jasmine.Queue.prototype.add = function(block) {
  this.blocks.push(block);
  };
 
  jasmine.Queue.prototype.insertNext = function(block) {
  this.blocks.splice((this.index + this.offset + 1), 0, block);
  this.offset++;
  };
 
  jasmine.Queue.prototype.start = function(onComplete) {
  this.running = true;
  this.onComplete = onComplete;
  this.next_();
  };
 
  jasmine.Queue.prototype.isRunning = function() {
  return this.running;
  };
 
  jasmine.Queue.LOOP_DONT_RECURSE = true;
 
  jasmine.Queue.prototype.next_ = function() {
  var self = this;
  var goAgain = true;
 
  while (goAgain) {
  goAgain = false;
 
  if (self.index < self.blocks.length && !this.abort) {
  var calledSynchronously = true;
  var completedSynchronously = false;
 
  var onComplete = function () {
  if (jasmine.Queue.LOOP_DONT_RECURSE && calledSynchronously) {
  completedSynchronously = true;
  return;
  }
 
  if (self.blocks[self.index].abort) {
  self.abort = true;
  }
 
  self.offset = 0;
  self.index++;
 
  var now = new Date().getTime();
  if (self.env.updateInterval && now - self.env.lastUpdate > self.env.updateInterval) {
  self.env.lastUpdate = now;
  self.env.setTimeout(function() {
  self.next_();
  }, 0);
  } else {
  if (jasmine.Queue.LOOP_DONT_RECURSE && completedSynchronously) {
  goAgain = true;
  } else {
  self.next_();
  }
  }
  };
  self.blocks[self.index].execute(onComplete);
 
  calledSynchronously = false;
  if (completedSynchronously) {
  onComplete();
  }
 
  } else {
  self.running = false;
  if (self.onComplete) {
  self.onComplete();
  }
  }
  }
  };
 
  jasmine.Queue.prototype.results = function() {
  var results = new jasmine.NestedResults();
  for (var i = 0; i < this.blocks.length; i++) {
  if (this.blocks[i].results) {
  results.addResult(this.blocks[i].results());
  }
  }
  return results;
  };
 
 
  /**
  * Runner
  *
  * @constructor
  * @param {jasmine.Env} env
  */
  jasmine.Runner = function(env) {
  var self = this;
  self.env = env;
  self.queue = new jasmine.Queue(env);
  self.before_ = [];
  self.after_ = [];
  self.suites_ = [];
  };
 
  jasmine.Runner.prototype.execute = function() {
  var self = this;
  if (self.env.reporter.reportRunnerStarting) {
  self.env.reporter.reportRunnerStarting(this);
  }
  self.queue.start(function () {
  self.finishCallback();
  });
  };
 
  jasmine.Runner.prototype.beforeEach = function(beforeEachFunction) {
  beforeEachFunction.typeName = 'beforeEach';
  this.before_.splice(0,0,beforeEachFunction);
  };
 
  jasmine.Runner.prototype.afterEach = function(afterEachFunction) {
  afterEachFunction.typeName = 'afterEach';
  this.after_.splice(0,0,afterEachFunction);
  };
 
 
  jasmine.Runner.prototype.finishCallback = function() {
  this.env.reporter.reportRunnerResults(this);
  };
 
  jasmine.Runner.prototype.addSuite = function(suite) {
  this.suites_.push(suite);
  };
 
  jasmine.Runner.prototype.add = function(block) {
  if (block instanceof jasmine.Suite) {
  this.addSuite(block);
  }
  this.queue.add(block);
  };
 
  jasmine.Runner.prototype.specs = function () {
  var suites = this.suites();
  var specs = [];
  for (var i = 0; i < suites.length; i++) {
  specs = specs.concat(suites[i].specs());
  }
  return specs;
  };
 
  jasmine.Runner.prototype.suites = function() {
  return this.suites_;
  };
 
  jasmine.Runner.prototype.topLevelSuites = function() {
  var topLevelSuites = [];
  for (var i = 0; i < this.suites_.length; i++) {
  if (!this.suites_[i].parentSuite) {
  topLevelSuites.push(this.suites_[i]);
  }
  }
  return topLevelSuites;
  };
 
  jasmine.Runner.prototype.results = function() {
  return this.queue.results();
  };
  /**
  * Internal representation of a Jasmine specification, or test.
  *
  * @constructor
  * @param {jasmine.Env} env
  * @param {jasmine.Suite} suite
  * @param {String} description
  */
  jasmine.Spec = function(env, suite, description) {
  if (!env) {
  throw new Error('jasmine.Env() required');
  }
  if (!suite) {
  throw new Error('jasmine.Suite() required');
  }
  var spec = this;
  spec.id = env.nextSpecId ? env.nextSpecId() : null;
  spec.env = env;
  spec.suite = suite;
  spec.description = description;
  spec.queue = new jasmine.Queue(env);
 
  spec.afterCallbacks = [];
  spec.spies_ = [];
 
  spec.results_ = new jasmine.NestedResults();
  spec.results_.description = description;
  spec.matchersClass = null;
  };
 
  jasmine.Spec.prototype.getFullName = function() {
  return this.suite.getFullName() + ' ' + this.description + '.';
  };
 
 
  jasmine.Spec.prototype.results = function() {
  return this.results_;
  };
 
  /**
  * All parameters are pretty-printed and concatenated together, then written to the spec's output.
  *
  * Be careful not to leave calls to <code>jasmine.log</code> in production code.
  */
  jasmine.Spec.prototype.log = function() {
  return this.results_.log(arguments);
  };
 
  jasmine.Spec.prototype.runs = function (func) {
  var block = new jasmine.Block(this.env, func, this);
  this.addToQueue(block);
  return this;
  };
 
  jasmine.Spec.prototype.addToQueue = function (block) {
  if (this.queue.isRunning()) {
  this.queue.insertNext(block);
  } else {
  this.queue.add(block);
  }
  };
 
  /**
  * @param {jasmine.ExpectationResult} result
  */
  jasmine.Spec.prototype.addMatcherResult = function(result) {
  this.results_.addResult(result);
  };
 
  jasmine.Spec.prototype.expect = function(actual) {
  var positive = new (this.getMatchersClass_())(this.env, actual, this);
  positive.not = new (this.getMatchersClass_())(this.env, actual, this, true);
  return positive;
  };
 
  /**
  * Waits a fixed time period before moving to the next block.
  *
  * @deprecated Use waitsFor() instead
  * @param {Number} timeout milliseconds to wait
  */
  jasmine.Spec.prototype.waits = function(timeout) {
  var waitsFunc = new jasmine.WaitsBlock(this.env, timeout, this);
  this.addToQueue(waitsFunc);
  return this;
  };
 
  /**
  * Waits for the latchFunction to return true before proceeding to the next block.
  *
  * @param {Function} latchFunction
  * @param {String} optional_timeoutMessage
  * @param {Number} optional_timeout
  */
  jasmine.Spec.prototype.waitsFor = function(latchFunction, optional_timeoutMessage, optional_timeout) {
  var latchFunction_ = null;
  var optional_timeoutMessage_ = null;
  var optional_timeout_ = null;
 
  for (var i = 0; i < arguments.length; i++) {
  var arg = arguments[i];
  switch (typeof arg) {
  case 'function':
  latchFunction_ = arg;
  break;
  case 'string':
  optional_timeoutMessage_ = arg;
  break;
  case 'number':
  optional_timeout_ = arg;
  break;
  }
  }
 
  var waitsForFunc = new jasmine.WaitsForBlock(this.env, optional_timeout_, latchFunction_, optional_timeoutMessage_, this);
  this.addToQueue(waitsForFunc);
  return this;
  };
 
  jasmine.Spec.prototype.fail = function (e) {
  var expectationResult = new jasmine.ExpectationResult({
  passed: false,
  message: e ? jasmine.util.formatException(e) : 'Exception',
  trace: { stack: e.stack }
  });
  this.results_.addResult(expectationResult);
  };
 
  jasmine.Spec.prototype.getMatchersClass_ = function() {
  return this.matchersClass || this.env.matchersClass;
  };
 
  jasmine.Spec.prototype.addMatchers = function(matchersPrototype) {
  var parent = this.getMatchersClass_();
  var newMatchersClass = function() {
  parent.apply(this, arguments);
  };
  jasmine.util.inherit(newMatchersClass, parent);
  jasmine.Matchers.wrapInto_(matchersPrototype, newMatchersClass);
  this.matchersClass = newMatchersClass;
  };
 
  jasmine.Spec.prototype.finishCallback = function() {
  this.env.reporter.reportSpecResults(this);
  };
 
  jasmine.Spec.prototype.finish = function(onComplete) {
  this.removeAllSpies();
  this.finishCallback();
  if (onComplete) {
  onComplete();
  }
  };
 
  jasmine.Spec.prototype.after = function(doAfter) {
  if (this.queue.isRunning()) {
  this.queue.add(new jasmine.Block(this.env, doAfter, this));
  } else {
  this.afterCallbacks.unshift(doAfter);
  }
  };
 
  jasmine.Spec.prototype.execute = function(onComplete) {
  var spec = this;
  if (!spec.env.specFilter(spec)) {
  spec.results_.skipped = true;
  spec.finish(onComplete);
  return;
  }
 
  this.env.reporter.reportSpecStarting(this);
 
  spec.env.currentSpec = spec;
 
  spec.addBeforesAndAftersToQueue();
 
  spec.queue.start(function () {
  spec.finish(onComplete);
  });
  };
 
  jasmine.Spec.prototype.addBeforesAndAftersToQueue = function() {
  var runner = this.env.currentRunner();
  var i;
 
  for (var suite = this.suite; suite; suite = suite.parentSuite) {
  for (i = 0; i < suite.before_.length; i++) {
  this.queue.addBefore(new jasmine.Block(this.env, suite.before_[i], this));
  }
  }
  for (i = 0; i < runner.before_.length; i++) {
  this.queue.addBefore(new jasmine.Block(this.env, runner.before_[i], this));
  }
  for (i = 0; i < this.afterCallbacks.length; i++) {
  this.queue.add(new jasmine.Block(this.env, this.afterCallbacks[i], this));
  }
  for (suite = this.suite; suite; suite = suite.parentSuite) {
  for (i = 0; i < suite.after_.length; i++) {
  this.queue.add(new jasmine.Block(this.env, suite.after_[i], this));
  }
  }
  for (i = 0; i < runner.after_.length; i++) {
  this.queue.add(new jasmine.Block(this.env, runner.after_[i], this));
  }
  };
 
  jasmine.Spec.prototype.explodes = function() {
  throw 'explodes function should not have been called';
  };
 
  jasmine.Spec.prototype.spyOn = function(obj, methodName, ignoreMethodDoesntExist) {
  if (obj == jasmine.undefined) {
  throw "spyOn could not find an object to spy upon for " + methodName + "()";
  }
 
  if (!ignoreMethodDoesntExist && obj[methodName] === jasmine.undefined) {
  throw methodName + '() method does not exist';
  }
 
  if (!ignoreMethodDoesntExist && obj[methodName] && obj[methodName].isSpy) {
  throw new Error(methodName + ' has already been spied upon');
  }
 
  var spyObj = jasmine.createSpy(methodName);
 
  this.spies_.push(spyObj);
  spyObj.baseObj = obj;
  spyObj.methodName = methodName;
  spyObj.originalValue = obj[methodName];
 
  obj[methodName] = spyObj;
 
  return spyObj;
  };
 
  jasmine.Spec.prototype.removeAllSpies = function() {
  for (var i = 0; i < this.spies_.length; i++) {
  var spy = this.spies_[i];
  spy.baseObj[spy.methodName] = spy.originalValue;
  }
  this.spies_ = [];
  };
 
  /**
  * Internal representation of a Jasmine suite.
  *
  * @constructor
  * @param {jasmine.Env} env
  * @param {String} description
  * @param {Function} specDefinitions
  * @param {jasmine.Suite} parentSuite
  */
  jasmine.Suite = function(env, description, specDefinitions, parentSuite) {
  var self = this;
  self.id = env.nextSuiteId ? env.nextSuiteId() : null;
  self.description = description;
  self.queue = new jasmine.Queue(env);
  self.parentSuite = parentSuite;
  self.env = env;
  self.before_ = [];
  self.after_ = [];
  self.children_ = [];
  self.suites_ = [];
  self.specs_ = [];
  };
 
  jasmine.Suite.prototype.getFullName = function() {
  var fullName = this.description;
  for (var parentSuite = this.parentSuite; parentSuite; parentSuite = parentSuite.parentSuite) {
  fullName = parentSuite.description + ' ' + fullName;
  }
  return fullName;
  };
 
  jasmine.Suite.prototype.finish = function(onComplete) {
  this.env.reporter.reportSuiteResults(this);
  this.finished = true;
  if (typeof(onComplete) == 'function') {
  onComplete();
  }
  };
 
  jasmine.Suite.prototype.beforeEach = function(beforeEachFunction) {
  beforeEachFunction.typeName = 'beforeEach';
  this.before_.unshift(beforeEachFunction);
  };
 
  jasmine.Suite.prototype.afterEach = function(afterEachFunction) {
  afterEachFunction.typeName = 'afterEach';
  this.after_.unshift(afterEachFunction);
  };
 
  jasmine.Suite.prototype.results = function() {
  return this.queue.results();
  };
 
  jasmine.Suite.prototype.add = function(suiteOrSpec) {
  this.children_.push(suiteOrSpec);
  if (suiteOrSpec instanceof jasmine.Suite) {
  this.suites_.push(suiteOrSpec);
  this.env.currentRunner().addSuite(suiteOrSpec);
  } else {
  this.specs_.push(suiteOrSpec);
  }
  this.queue.add(suiteOrSpec);
  };
 
  jasmine.Suite.prototype.specs = function() {
  return this.specs_;
  };
 
  jasmine.Suite.prototype.suites = function() {
  return this.suites_;
  };
 
  jasmine.Suite.prototype.children = function() {
  return this.children_;
  };
 
  jasmine.Suite.prototype.execute = function(onComplete) {
  var self = this;
  this.queue.start(function () {
  self.finish(onComplete);
  });
  };
  jasmine.WaitsBlock = function(env, timeout, spec) {
  this.timeout = timeout;
  jasmine.Block.call(this, env, null, spec);
  };
 
  jasmine.util.inherit(jasmine.WaitsBlock, jasmine.Block);
 
  jasmine.WaitsBlock.prototype.execute = function (onComplete) {
  if (jasmine.VERBOSE) {
  this.env.reporter.log('>> Jasmine waiting for ' + this.timeout + ' ms...');
  }
  this.env.setTimeout(function () {
  onComplete();
  }, this.timeout);
  };
  /**
  * A block which waits for some condition to become true, with timeout.
  *
  * @constructor
  * @extends jasmine.Block
  * @param {jasmine.Env} env The Jasmine environment.
  * @param {Number} timeout The maximum time in milliseconds to wait for the condition to become true.
  * @param {Function} latchFunction A function which returns true when the desired condition has been met.
  * @param {String} message The message to display if the desired condition hasn't been met within the given time period.
  * @param {jasmine.Spec} spec The Jasmine spec.
  */
  jasmine.WaitsForBlock = function(env, timeout, latchFunction, message, spec) {
  this.timeout = timeout || env.defaultTimeoutInterval;
  this.latchFunction = latchFunction;
  this.message = message;
  this.totalTimeSpentWaitingForLatch = 0;
  jasmine.Block.call(this, env, null, spec);
  };
  jasmine.util.inherit(jasmine.WaitsForBlock, jasmine.Block);
 
  jasmine.WaitsForBlock.TIMEOUT_INCREMENT = 10;
 
  jasmine.WaitsForBlock.prototype.execute = function(onComplete) {
  if (jasmine.VERBOSE) {
  this.env.reporter.log('>> Jasmine waiting for ' + (this.message || 'something to happen'));
  }
  var latchFunctionResult;
  try {
  latchFunctionResult = this.latchFunction.apply(this.spec);
  } catch (e) {
  this.spec.fail(e);
  onComplete();
  return;
  }
 
  if (latchFunctionResult) {
  onComplete();
  } else if (this.totalTimeSpentWaitingForLatch >= this.timeout) {
  var message = 'timed out after ' + this.timeout + ' msec waiting for ' + (this.message || 'something to happen');
  this.spec.fail({
  name: 'timeout',
  message: message
  });
 
  this.abort = true;
  onComplete();
  } else {
  this.totalTimeSpentWaitingForLatch += jasmine.WaitsForBlock.TIMEOUT_INCREMENT;
  var self = this;
  this.env.setTimeout(function() {
  self.execute(onComplete);
  }, jasmine.WaitsForBlock.TIMEOUT_INCREMENT);
  }
  };
 
  jasmine.version_= {
  "major": 1,
  "minor": 2,
  "build": 0,
  "revision": 1337005947
  };
 
 Binary files /dev/null and b/js/flotr2/lib/jasmine/jasmine_favicon.png differ
  /* Prototype JavaScript framework, version 1.6.0.3
  * (c) 2005-2008 Sam Stephenson
  *
  * Prototype is freely distributable under the terms of an MIT-style license.
  * For details, see the Prototype web site: http://www.prototypejs.org/
  *
  *--------------------------------------------------------------------------*/
 
  var Prototype = {
  Version: '1.6.0.3',
 
  Browser: {
  IE: !!(window.attachEvent &&
  navigator.userAgent.indexOf('Opera') === -1),
  Opera: navigator.userAgent.indexOf('Opera') > -1,
  WebKit: navigator.userAgent.indexOf('AppleWebKit/') > -1,
  Gecko: navigator.userAgent.indexOf('Gecko') > -1 &&
  navigator.userAgent.indexOf('KHTML') === -1,
  MobileSafari: !!navigator.userAgent.match(/Apple.*Mobile.*Safari/)
  },
 
  BrowserFeatures: {
  XPath: !!document.evaluate,
  SelectorsAPI: !!document.querySelector,
  ElementExtensions: !!window.HTMLElement,
  SpecificElementExtensions:
  document.createElement('div')['__proto__'] &&
  document.createElement('div')['__proto__'] !==
  document.createElement('form')['__proto__']
  },
 
  ScriptFragment: '<script[^>]*>([\\S\\s]*?)<\/script>',
  JSONFilter: /^\/\*-secure-([\s\S]*)\*\/\s*$/,
 
  emptyFunction: function() { },
  K: function(x) { return x }
  };
 
  if (Prototype.Browser.MobileSafari)
  Prototype.BrowserFeatures.SpecificElementExtensions = false;
 
 
  /* Based on Alex Arnell's inheritance implementation. */
  var Class = {
  create: function() {
  var parent = null, properties = $A(arguments);
  if (Object.isFunction(properties[0]))
  parent = properties.shift();
 
  function klass() {
  this.initialize.apply(this, arguments);
  }
 
  Object.extend(klass, Class.Methods);
  klass.superclass = parent;
  klass.subclasses = [];
 
  if (parent) {
  var subclass = function() { };
  subclass.prototype = parent.prototype;
  klass.prototype = new subclass;
  parent.subclasses.push(klass);
  }
 
  for (var i = 0; i < properties.length; i++)
  klass.addMethods(properties[i]);
 
  if (!klass.prototype.initialize)
  klass.prototype.initialize = Prototype.emptyFunction;
 
  klass.prototype.constructor = klass;
 
  return klass;
  }
  };
 
  Class.Methods = {
  addMethods: function(source) {
  var ancestor = this.superclass && this.superclass.prototype;
  var properties = Object.keys(source);
 
  if (!Object.keys({ toString: true }).length)
  properties.push("toString", "valueOf");
 
  for (var i = 0, length = properties.length; i < length; i++) {
  var property = properties[i], value = source[property];
  if (ancestor && Object.isFunction(value) &&
  value.argumentNames().first() == "$super") {
  var method = value;
  value = (function(m) {
  return function() { return ancestor[m].apply(this, arguments) };
  })(property).wrap(method);
 
  value.valueOf = method.valueOf.bind(method);
  value.toString = method.toString.bind(method);
  }
  this.prototype[property] = value;
  }
 
  return this;
  }
  };
 
  var Abstract = { };
 
  Object.extend = function(destination, source) {
  for (var property in source)
  destination[property] = source[property];
  return destination;
  };
 
  Object.extend(Object, {
  inspect: function(object) {
  try {
  if (Object.isUndefined(object)) return 'undefined';
  if (object === null) return 'null';
  return object.inspect ? object.inspect() : String(object);
  } catch (e) {
  if (e instanceof RangeError) return '...';
  throw e;
  }
  },
 
  toJSON: function(object) {
  var type = typeof object;
  switch (type) {
  case 'undefined':
  case 'function':
  case 'unknown': return;
  case 'boolean': return object.toString();
  }
 
  if (object === null) return 'null';
  if (object.toJSON) return object.toJSON();
  if (Object.isElement(object)) return;
 
  var results = [];
  for (var property in object) {
  var value = Object.toJSON(object[property]);
  if (!Object.isUndefined(value))
  results.push(property.toJSON() + ': ' + value);
  }
 
  return '{' + results.join(', ') + '}';
  },
 
  toQueryString: function(object) {
  return $H(object).toQueryString();
  },
 
  toHTML: function(object) {
  return object && object.toHTML ? object.toHTML() : String.interpret(object);
  },
 
  keys: function(object) {
  var keys = [];
  for (var property in object)
  keys.push(property);
  return keys;
  },
 
  values: function(object) {
  var values = [];
  for (var property in object)
  values.push(object[property]);
  return values;
  },
 
  clone: function(object) {
  return Object.extend({ }, object);
  },
 
  isElement: function(object) {
  return !!(object && object.nodeType == 1);
  },
 
  isArray: function(object) {
  return object != null && typeof object == "object" &&
  'splice' in object && 'join' in object;
  },
 
  isHash: function(object) {
  return object instanceof Hash;
  },
 
  isFunction: function(object) {
  return typeof object == "function";
  },
 
  isString: function(object) {
  return typeof object == "string";
  },
 
  isNumber: function(object) {
  return typeof object == "number";
  },
 
  isUndefined: function(object) {
  return typeof object == "undefined";
  }
  });
 
  Object.extend(Function.prototype, {
  argumentNames: function() {
  var names = this.toString().match(/^[\s\(]*function[^(]*\(([^\)]*)\)/)[1]
  .replace(/\s+/g, '').split(',');
  return names.length == 1 && !names[0] ? [] : names;
  },
 
  bind: function() {
  if (arguments.length < 2 && Object.isUndefined(arguments[0])) return this;
  var __method = this, args = $A(arguments), object = args.shift();
  return function() {
  return __method.apply(object, args.concat($A(arguments)));
  }
  },
 
  bindAsEventListener: function() {
  var __method = this, args = $A(arguments), object = args.shift();
  return function(event) {
  return __method.apply(object, [event || window.event].concat(args));
  }
  },
 
  curry: function() {
  if (!arguments.length) return this;
  var __method = this, args = $A(arguments);
  return function() {
  return __method.apply(this, args.concat($A(arguments)));
  }
  },
 
  delay: function() {
  var __method = this, args = $A(arguments), timeout = args.shift() * 1000;
  return window.setTimeout(function() {
  return __method.apply(__method, args);
  }, timeout);
  },
 
  defer: function() {
  var args = [0.01].concat($A(arguments));
  return this.delay.apply(this, args);
  },
 
  wrap: function(wrapper) {
  var __method = this;
  return function() {
  return wrapper.apply(this, [__method.bind(this)].concat($A(arguments)));
  }
  },
 
  methodize: function() {
  if (this._methodized) return this._methodized;
  var __method = this;
  return this._methodized = function() {
  return __method.apply(null, [this].concat($A(arguments)));
  };
  }
  });
 
  Date.prototype.toJSON = function() {
  return '"' + this.getUTCFullYear() + '-' +
  (this.getUTCMonth() + 1).toPaddedString(2) + '-' +
  this.getUTCDate().toPaddedString(2) + 'T' +
  this.getUTCHours().toPaddedString(2) + ':' +
  this.getUTCMinutes().toPaddedString(2) + ':' +
  this.getUTCSeconds().toPaddedString(2) + 'Z"';
  };
 
  var Try = {
  these: function() {
  var returnValue;
 
  for (var i = 0, length = arguments.length; i < length; i++) {
  var lambda = arguments[i];
  try {
  returnValue = lambda();
  break;
  } catch (e) { }
  }
 
  return returnValue;
  }
  };
 
  RegExp.prototype.match = RegExp.prototype.test;
 
  RegExp.escape = function(str) {
  return String(str).replace(/([.*+?^=!:${}()|[\]\/\\])/g, '\\$1');
  };
 
  /*--------------------------------------------------------------------------*/
 
  var PeriodicalExecuter = Class.create({
  initialize: function(callback, frequency) {
  this.callback = callback;
  this.frequency = frequency;
  this.currentlyExecuting = false;
 
  this.registerCallback();
  },
 
  registerCallback: function() {
  this.timer = setInterval(this.onTimerEvent.bind(this), this.frequency * 1000);
  },
 
  execute: function() {
  this.callback(this);
  },
 
  stop: function() {
  if (!this.timer) return;
  clearInterval(this.timer);
  this.timer = null;
  },
 
  onTimerEvent: function() {
  if (!this.currentlyExecuting) {
  try {
  this.currentlyExecuting = true;
  this.execute();
  } finally {
  this.currentlyExecuting = false;
  }
  }
  }
  });
  Object.extend(String, {
  interpret: function(value) {
  return value == null ? '' : String(value);
  },
  specialChar: {
  '\b': '\\b',
  '\t': '\\t',
  '\n': '\\n',
  '\f': '\\f',
  '\r': '\\r',
  '\\': '\\\\'
  }
  });
 
  Object.extend(String.prototype, {
  gsub: function(pattern, replacement) {
  var result = '', source = this, match;
  replacement = arguments.callee.prepareReplacement(replacement);
 
  while (source.length > 0) {
  if (match = source.match(pattern)) {
  result += source.slice(0, match.index);
  result += String.interpret(replacement(match));
  source = source.slice(match.index + match[0].length);
  } else {
  result += source, source = '';
  }
  }
  return result;
  },
 
  sub: function(pattern, replacement, count) {
  replacement = this.gsub.prepareReplacement(replacement);
  count = Object.isUndefined(count) ? 1 : count;
 
  return this.gsub(pattern, function(match) {
  if (--count < 0) return match[0];
  return replacement(match);
  });
  },
 
  scan: function(pattern, iterator) {
  this.gsub(pattern, iterator);
  return String(this);
  },
 
  truncate: function(length, truncation) {
  length = length || 30;
  truncation = Object.isUndefined(truncation) ? '...' : truncation;
  return this.length > length ?
  this.slice(0, length - truncation.length) + truncation : String(this);
  },
 
  strip: function() {
  return this.replace(/^\s+/, '').replace(/\s+$/, '');
  },
 
  stripTags: function() {
  return this.replace(/<\/?[^>]+>/gi, '');
  },
 
  stripScripts: function() {
  return this.replace(new RegExp(Prototype.ScriptFragment, 'img'), '');
  },
 
  extractScripts: function() {
  var matchAll = new RegExp(Prototype.ScriptFragment, 'img');
  var matchOne = new RegExp(Prototype.ScriptFragment, 'im');
  return (this.match(matchAll) || []).map(function(scriptTag) {
  return (scriptTag.match(matchOne) || ['', ''])[1];
  });
  },
 
  evalScripts: function() {
  return this.extractScripts().map(function(script) { return eval(script) });
  },
 
  escapeHTML: function() {
  var self = arguments.callee;
  self.text.data = this;
  return self.div.innerHTML;
  },
 
  unescapeHTML: function() {
  var div = new Element('div');
  div.innerHTML = this.stripTags();
  return div.childNodes[0] ? (div.childNodes.length > 1 ?
  $A(div.childNodes).inject('', function(memo, node) { return memo+node.nodeValue }) :
  div.childNodes[0].nodeValue) : '';
  },
 
  toQueryParams: function(separator) {
  var match = this.strip().match(/([^?#]*)(#.*)?$/);
  if (!match) return { };
 
  return match[1].split(separator || '&').inject({ }, function(hash, pair) {
  if ((pair = pair.split('='))[0]) {
  var key = decodeURIComponent(pair.shift());
  var value = pair.length > 1 ? pair.join('=') : pair[0];
  if (value != undefined) value = decodeURIComponent(value);
 
  if (key in hash) {
  if (!Object.isArray(hash[key])) hash[key] = [hash[key]];
  hash[key].push(value);
  }
  else hash[key] = value;
  }
  return hash;
  });
  },
 
  toArray: function() {
  return this.split('');
  },
 
  succ: function() {
  return this.slice(0, this.length - 1) +
  String.fromCharCode(this.charCodeAt(this.length - 1) + 1);
  },
 
  times: function(count) {
  return count < 1 ? '' : new Array(count + 1).join(this);
  },
 
  camelize: function() {
  var parts = this.split('-'), len = parts.length;
  if (len == 1) return parts[0];
 
  var camelized = this.charAt(0) == '-'
  ? parts[0].charAt(0).toUpperCase() + parts[0].substring(1)
  : parts[0];
 
  for (var i = 1; i < len; i++)
  camelized += parts[i].charAt(0).toUpperCase() + parts[i].substring(1);
 
  return camelized;
  },
 
  capitalize: function() {
  return this.charAt(0).toUpperCase() + this.substring(1).toLowerCase();
  },
 
  underscore: function() {
  return this.gsub(/::/, '/').gsub(/([A-Z]+)([A-Z][a-z])/,'#{1}_#{2}').gsub(/([a-z\d])([A-Z])/,'#{1}_#{2}').gsub(/-/,'_').toLowerCase();
  },
 
  dasherize: function() {
  return this.gsub(/_/,'-');
  },
 
  inspect: function(useDoubleQuotes) {
  var escapedString = this.gsub(/[\x00-\x1f\\]/, function(match) {
  var character = String.specialChar[match[0]];
  return character ? character : '\\u00' + match[0].charCodeAt().toPaddedString(2, 16);
  });
  if (useDoubleQuotes) return '"' + escapedString.replace(/"/g, '\\"') + '"';
  return "'" + escapedString.replace(/'/g, '\\\'') + "'";
  },
 
  toJSON: function() {
  return this.inspect(true);
  },
 
  unfilterJSON: function(filter) {
  return this.sub(filter || Prototype.JSONFilter, '#{1}');
  },
 
  isJSON: function() {
  var str = this;
  if (str.blank()) return false;
  str = this.replace(/\\./g, '@').replace(/"[^"\\\n\r]*"/g, '');
  return (/^[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]*$/).test(str);
  },
 
  evalJSON: function(sanitize) {
  var json = this.unfilterJSON();
  try {
  if (!sanitize || json.isJSON()) return eval('(' + json + ')');
  } catch (e) { }
  throw new SyntaxError('Badly formed JSON string: ' + this.inspect());
  },
 
  include: function(pattern) {
  return this.indexOf(pattern) > -1;
  },
 
  startsWith: function(pattern) {
  return this.indexOf(pattern) === 0;
  },
 
  endsWith: function(pattern) {
  var d = this.length - pattern.length;
  return d >= 0 && this.lastIndexOf(pattern) === d;
  },
 
  empty: function() {
  return this == '';
  },
 
  blank: function() {
  return /^\s*$/.test(this);
  },
 
  interpolate: function(object, pattern) {
  return new Template(this, pattern).evaluate(object);
  }
  });
 
  if (Prototype.Browser.WebKit || Prototype.Browser.IE) Object.extend(String.prototype, {
  escapeHTML: function() {
  return this.replace(/&/g,'&amp;').replace(/</g,'&lt;').replace(/>/g,'&gt;');
  },
  unescapeHTML: function() {
  return this.stripTags().replace(/&amp;/g,'&').replace(/&lt;/g,'<').replace(/&gt;/g,'>');
  }
  });
 
  String.prototype.gsub.prepareReplacement = function(replacement) {
  if (Object.isFunction(replacement)) return replacement;
  var template = new Template(replacement);
  return function(match) { return template.evaluate(match) };
  };
 
  String.prototype.parseQuery = String.prototype.toQueryParams;
 
  Object.extend(String.prototype.escapeHTML, {
  div: document.createElement('div'),
  text: document.createTextNode('')
  });
 
  String.prototype.escapeHTML.div.appendChild(String.prototype.escapeHTML.text);
 
  var Template = Class.create({
  initialize: function(template, pattern) {
  this.template = template.toString();
  this.pattern = pattern || Template.Pattern;
  },
 
  evaluate: function(object) {
  if (Object.isFunction(object.toTemplateReplacements))
  object = object.toTemplateReplacements();
 
  return this.template.gsub(this.pattern, function(match) {
  if (object == null) return '';
 
  var before = match[1] || '';
  if (before == '\\') return match[2];
 
  var ctx = object, expr = match[3];
  var pattern = /^([^.[]+|\[((?:.*?[^\\])?)\])(\.|\[|$)/;
  match = pattern.exec(expr);
  if (match == null) return before;
 
  while (match != null) {
  var comp = match[1].startsWith('[') ? match[2].gsub('\\\\]', ']') : match[1];
  ctx = ctx[comp];
  if (null == ctx || '' == match[3]) break;
  expr = expr.substring('[' == match[3] ? match[1].length : match[0].length);
  match = pattern.exec(expr);
  }
 
  return before + String.interpret(ctx);
  });
  }
  });
  Template.Pattern = /(^|.|\r|\n)(#\{(.*?)\})/;
 
  var $break = { };
 
  var Enumerable = {
  each: function(iterator, context) {
  var index = 0;
  try {
  this._each(function(value) {
  iterator.call(context, value, index++);
  });
  } catch (e) {
  if (e != $break) throw e;
  }
  return this;
  },
 
  eachSlice: function(number, iterator, context) {
  var index = -number, slices = [], array = this.toArray();
  if (number < 1) return array;
  while ((index += number) < array.length)
  slices.push(array.slice(index, index+number));
  return slices.collect(iterator, context);
  },
 
  all: function(iterator, context) {
  iterator = iterator || Prototype.K;
  var result = true;
  this.each(function(value, index) {
  result = result && !!iterator.call(context, value, index);
  if (!result) throw $break;
  });
  return result;
  },
 
  any: function(iterator, context) {
  iterator = iterator || Prototype.K;
  var result = false;
  this.each(function(value, index) {
  if (result = !!iterator.call(context, value, index))
  throw $break;
  });
  return result;
  },
 
  collect: function(iterator, context) {
  iterator = iterator || Prototype.K;
  var results = [];
  this.each(function(value, index) {
  results.push(iterator.call(context, value, index));
  });
  return results;
  },
 
  detect: function(iterator, context) {
  var result;
  this.each(function(value, index) {
  if (iterator.call(context, value, index)) {
  result = value;
  throw $break;
  }
  });
  return result;
  },
 
  findAll: function(iterator, context) {
  var results = [];
  this.each(function(value, index) {
  if (iterator.call(context, value, index))
  results.push(value);
  });
  return results;
  },
 
  grep: function(filter, iterator, context) {
  iterator = iterator || Prototype.K;
  var results = [];
 
  if (Object.isString(filter))
  filter = new RegExp(filter);
 
  this.each(function(value, index) {
  if (filter.match(value))
  results.push(iterator.call(context, value, index));
  });
  return results;
  },
 
  include: function(object) {
  if (Object.isFunction(this.indexOf))
  if (this.indexOf(object) != -1) return true;
 
  var found = false;
  this.each(function(value) {
  if (value == object) {
  found = true;
  throw $break;
  }
  });
  return found;
  },
 
  inGroupsOf: function(number, fillWith) {
  fillWith = Object.isUndefined(fillWith) ? null : fillWith;
  return this.eachSlice(number, function(slice) {
  while(slice.length < number) slice.push(fillWith);
  return slice;
  });
  },
 
  inject: function(memo, iterator, context) {
  this.each(function(value, index) {
  memo = iterator.call(context, memo, value, index);
  });
  return memo;
  },
 
  invoke: function(method) {
  var args = $A(arguments).slice(1);
  return this.map(function(value) {
  return value[method].apply(value, args);
  });
  },
 
  max: function(iterator, context) {
  iterator = iterator || Prototype.K;
  var result;
  this.each(function(value, index) {
  value = iterator.call(context, value, index);
  if (result == null || value >= result)
  result = value;
  });
  return result;
  },
 
  min: function(iterator, context) {
  iterator = iterator || Prototype.K;
  var result;
  this.each(function(value, index) {
  value = iterator.call(context, value, index);
  if (result == null || value < result)
  result = value;
  });
  return result;
  },
 
  partition: function(iterator, context) {
  iterator = iterator || Prototype.K;
  var trues = [], falses = [];
  this.each(function(value, index) {
  (iterator.call(context, value, index) ?
  trues : falses).push(value);
  });
  return [trues, falses];
  },
 
  pluck: function(property) {
  var results = [];
  this.each(function(value) {
  results.push(value[property]);
  });
  return results;
  },
 
  reject: function(iterator, context) {
  var results = [];
  this.each(function(value, index) {
  if (!iterator.call(context, value, index))
  results.push(value);
  });
  return results;
  },
 
  sortBy: function(iterator, context) {
  return this.map(function(value, index) {
  return {
  value: value,
  criteria: iterator.call(context, value, index)
  };
  }).sort(function(left, right) {
  var a = left.criteria, b = right.criteria;
  return a < b ? -1 : a > b ? 1 : 0;
  }).pluck('value');
  },
 
  toArray: function() {
  return this.map();
  },
 
  zip: function() {
  var iterator = Prototype.K, args = $A(arguments);
  if (Object.isFunction(args.last()))
  iterator = args.pop();
 
  var collections = [this].concat(args).map($A);
  return this.map(function(value, index) {
  return iterator(collections.pluck(index));
  });
  },
 
  size: function() {
  return this.toArray().length;
  },
 
  inspect: function() {
  return '#<Enumerable:' + this.toArray().inspect() + '>';
  }
  };
 
  Object.extend(Enumerable, {
  map: Enumerable.collect,
  find: Enumerable.detect,
  select: Enumerable.findAll,
  filter: Enumerable.findAll,
  member: Enumerable.include,
  entries: Enumerable.toArray,
  every: Enumerable.all,
  some: Enumerable.any
  });
  function $A(iterable) {
  if (!iterable) return [];
  if (iterable.toArray) return iterable.toArray();
  var length = iterable.length || 0, results = new Array(length);
  while (length--) results[length] = iterable[length];
  return results;
  }
 
  if (Prototype.Browser.WebKit) {
  $A = function(iterable) {
  if (!iterable) return [];
  // In Safari, only use the `toArray` method if it's not a NodeList.
  // A NodeList is a function, has an function `item` property, and a numeric
  // `length` property. Adapted from Google Doctype.
  if (!(typeof iterable === 'function' && typeof iterable.length ===
  'number' && typeof iterable.item === 'function') && iterable.toArray)
  return iterable.toArray();
  var length = iterable.length || 0, results = new Array(length);
  while (length--) results[length] = iterable[length];
  return results;
  };
  }
 
  Array.from = $A;
 
  Object.extend(Array.prototype, Enumerable);
 
  if (!Array.prototype._reverse) Array.prototype._reverse = Array.prototype.reverse;
 
  Object.extend(Array.prototype, {
  _each: function(iterator) {
  for (var i = 0, length = this.length; i < length; i++)
  iterator(this[i]);
  },
 
  clear: function() {
  this.length = 0;
  return this;
  },
 
  first: function() {
  return this[0];
  },
 
  last: function() {
  return this[this.length - 1];
  },
 
  compact: function() {
  return this.select(function(value) {
  return value != null;
  });
  },
 
  flatten: function() {
  return this.inject([], function(array, value) {
  return array.concat(Object.isArray(value) ?
  value.flatten() : [value]);
  });
  },
 
  without: function() {
  var values = $A(arguments);
  return this.select(function(value) {
  return !values.include(value);
  });
  },
 
  reverse: function(inline) {
  return (inline !== false ? this : this.toArray())._reverse();
  },
 
  reduce: function() {
  return this.length > 1 ? this : this[0];
  },
 
  uniq: function(sorted) {
  return this.inject([], function(array, value, index) {
  if (0 == index || (sorted ? array.last() != value : !array.include(value)))
  array.push(value);
  return array;
  });
  },
 
  intersect: function(array) {
  return this.uniq().findAll(function(item) {
  return array.detect(function(value) { return item === value });
  });
  },
 
  clone: function() {
  return [].concat(this);
  },
 
  size: function() {
  return this.length;
  },
 
  inspect: function() {
  return '[' + this.map(Object.inspect).join(', ') + ']';
  },
 
  toJSON: function() {
  var results = [];
  this.each(function(object) {
  var value = Object.toJSON(object);
  if (!Object.isUndefined(value)) results.push(value);
  });
  return '[' + results.join(', ') + ']';
  }
  });
 
  // use native browser JS 1.6 implementation if available
  if (Object.isFunction(Array.prototype.forEach))
  Array.prototype._each = Array.prototype.forEach;
 
  if (!Array.prototype.indexOf) Array.prototype.indexOf = function(item, i) {
  i || (i = 0);
  var length = this.length;
  if (i < 0) i = length + i;
  for (; i < length; i++)
  if (this[i] === item) return i;
  return -1;
  };
 
  if (!Array.prototype.lastIndexOf) Array.prototype.lastIndexOf = function(item, i) {
  i = isNaN(i) ? this.length : (i < 0 ? this.length + i : i) + 1;
  var n = this.slice(0, i).reverse().indexOf(item);
  return (n < 0) ? n : i - n - 1;
  };
 
  Array.prototype.toArray = Array.prototype.clone;
 
  function $w(string) {
  if (!Object.isString(string)) return [];
  string = string.strip();
  return string ? string.split(/\s+/) : [];
  }
 
  if (Prototype.Browser.Opera){
  Array.prototype.concat = function() {
  var array = [];
  for (var i = 0, length = this.length; i < length; i++) array.push(this[i]);
  for (var i = 0, length = arguments.length; i < length; i++) {
  if (Object.isArray(arguments[i])) {
  for (var j = 0, arrayLength = arguments[i].length; j < arrayLength; j++)
  array.push(arguments[i][j]);
  } else {
  array.push(arguments[i]);
  }
  }
  return array;
  };
  }
  Object.extend(Number.prototype, {
  toColorPart: function() {
  return this.toPaddedString(2, 16);
  },
 
  succ: function() {
  return this + 1;
  },
 
  times: function(iterator, context) {
  $R(0, this, true).each(iterator, context);
  return this;
  },
 
  toPaddedString: function(length, radix) {
  var string = this.toString(radix || 10);
  return '0'.times(length - string.length) + string;
  },
 
  toJSON: function() {
  return isFinite(this) ? this.toString() : 'null';
  }
  });
 
  $w('abs round ceil floor').each(function(method){
  Number.prototype[method] = Math[method].methodize();
  });
  function $H(object) {
  return new Hash(object);
  };
 
  var Hash = Class.create(Enumerable, (function() {
 
  function toQueryPair(key, value) {
  if (Object.isUndefined(value)) return key;
  return key + '=' + encodeURIComponent(String.interpret(value));
  }
 
  return {
  initialize: function(object) {
  this._object = Object.isHash(object) ? object.toObject() : Object.clone(object);
  },
 
  _each: function(iterator) {
  for (var key in this._object) {
  var value = this._object[key], pair = [key, value];
  pair.key = key;
  pair.value = value;
  iterator(pair);
  }
  },
 
  set: function(key, value) {
  return this._object[key] = value;
  },
 
  get: function(key) {
  // simulating poorly supported hasOwnProperty
  if (this._object[key] !== Object.prototype[key])
  return this._object[key];
  },
 
  unset: function(key) {
  var value = this._object[key];
  delete this._object[key];
  return value;
  },
 
  toObject: function() {
  return Object.clone(this._object);
  },
 
  keys: function() {
  return this.pluck('key');
  },
 
  values: function() {
  return this.pluck('value');
  },
 
  index: function(value) {
  var match = this.detect(function(pair) {
  return pair.value === value;
  });
  return match && match.key;
  },
 
  merge: function(object) {
  return this.clone().update(object);
  },
 
  update: function(object) {
  return new Hash(object).inject(this, function(result, pair) {
  result.set(pair.key, pair.value);
  return result;
  });
  },
 
  toQueryString: function() {
  return this.inject([], function(results, pair) {
  var key = encodeURIComponent(pair.key), values = pair.value;
 
  if (values && typeof values == 'object') {
  if (Object.isArray(values))
  return results.concat(values.map(toQueryPair.curry(key)));
  } else results.push(toQueryPair(key, values));
  return results;
  }).join('&');
  },
 
  inspect: function() {
  return '#<Hash:{' + this.map(function(pair) {
  return pair.map(Object.inspect).join(': ');
  }).join(', ') + '}>';
  },
 
  toJSON: function() {
  return Object.toJSON(this.toObject());
  },
 
  clone: function() {
  return new Hash(this);
  }
  }
  })());
 
  Hash.prototype.toTemplateReplacements = Hash.prototype.toObject;
  Hash.from = $H;
  var ObjectRange = Class.create(Enumerable, {
  initialize: function(start, end, exclusive) {
  this.start = start;
  this.end = end;
  this.exclusive = exclusive;
  },
 
  _each: function(iterator) {
  var value = this.start;
  while (this.include(value)) {
  iterator(value);
  value = value.succ();
  }
  },
 
  include: function(value) {
  if (value < this.start)
  return false;
  if (this.exclusive)
  return value < this.end;
  return value <= this.end;
  }
  });
 
  var $R = function(start, end, exclusive) {
  return new ObjectRange(start, end, exclusive);
  };
 
  var Ajax = {
  getTransport: function() {
  return Try.these(
  function() {return new XMLHttpRequest()},
  function() {return new ActiveXObject('Msxml2.XMLHTTP')},
  function() {return new ActiveXObject('Microsoft.XMLHTTP')}
  ) || false;
  },
 
  activeRequestCount: 0
  };
 
  Ajax.Responders = {
  responders: [],
 
  _each: function(iterator) {
  this.responders._each(iterator);
  },
 
  register: function(responder) {
  if (!this.include(responder))
  this.responders.push(responder);
  },
 
  unregister: function(responder) {
  this.responders = this.responders.without(responder);
  },
 
  dispatch: function(callback, request, transport, json) {
  this.each(function(responder) {
  if (Object.isFunction(responder[callback])) {
  try {
  responder[callback].apply(responder, [request, transport, json]);
  } catch (e) { }
  }
  });
  }
  };
 
  Object.extend(Ajax.Responders, Enumerable);
 
  Ajax.Responders.register({
  onCreate: function() { Ajax.activeRequestCount++ },
  onComplete: function() { Ajax.activeRequestCount-- }
  });
 
  Ajax.Base = Class.create({
  initialize: function(options) {
  this.options = {
  method: 'post',
  asynchronous: true,
  contentType: 'application/x-www-form-urlencoded',
  encoding: 'UTF-8',
  parameters: '',
  evalJSON: true,
  evalJS: true
  };
  Object.extend(this.options, options || { });
 
  this.options.method = this.options.method.toLowerCase();
 
  if (Object.isString(this.options.parameters))
  this.options.parameters = this.options.parameters.toQueryParams();
  else if (Object.isHash(this.options.parameters))
  this.options.parameters = this.options.parameters.toObject();
  }
  });
 
  Ajax.Request = Class.create(Ajax.Base, {
  _complete: false,
 
  initialize: function($super, url, options) {
  $super(options);
  this.transport = Ajax.getTransport();
  this.request(url);
  },
 
  request: function(url) {
  this.url = url;
  this.method = this.options.method;
  var params = Object.clone(this.options.parameters);
 
  if (!['get', 'post'].include(this.method)) {
  // simulate other verbs over post
  params['_method'] = this.method;
  this.method = 'post';
  }
 
  this.parameters = params;
 
  if (params = Object.toQueryString(params)) {
  // when GET, append parameters to URL
  if (this.method == 'get')
  this.url += (this.url.include('?') ? '&' : '?') + params;
  else if (/Konqueror|Safari|KHTML/.test(navigator.userAgent))
  params += '&_=';
  }
 
  try {
  var response = new Ajax.Response(this);
  if (this.options.onCreate) this.options.onCreate(response);
  Ajax.Responders.dispatch('onCreate', this, response);
 
  this.transport.open(this.method.toUpperCase(), this.url,
  this.options.asynchronous);
 
  if (this.options.asynchronous) this.respondToReadyState.bind(this).defer(1);
 
  this.transport.onreadystatechange = this.onStateChange.bind(this);
  this.setRequestHeaders();
 
  this.body = this.method == 'post' ? (this.options.postBody || params) : null;
  this.transport.send(this.body);
 
  /* Force Firefox to handle ready state 4 for synchronous requests */
  if (!this.options.asynchronous && this.transport.overrideMimeType)
  this.onStateChange();
 
  }
  catch (e) {
  this.dispatchException(e);
  }
  },
 
  onStateChange: function() {
  var readyState = this.transport.readyState;
  if (readyState > 1 && !((readyState == 4) && this._complete))
  this.respondToReadyState(this.transport.readyState);
  },
 
  setRequestHeaders: function() {
  var headers = {
  'X-Requested-With': 'XMLHttpRequest',
  'X-Prototype-Version': Prototype.Version,
  'Accept': 'text/javascript, text/html, application/xml, text/xml, */*'
  };
 
  if (this.method == 'post') {
  headers['Content-type'] = this.options.contentType +
  (this.options.encoding ? '; charset=' + this.options.encoding : '');
 
  /* Force "Connection: close" for older Mozilla browsers to work
  * around a bug where XMLHttpRequest sends an incorrect
  * Content-length header. See Mozilla Bugzilla #246651.
  */
  if (this.transport.overrideMimeType &&
  (navigator.userAgent.match(/Gecko\/(\d{4})/) || [0,2005])[1] < 2005)
  headers['Connection'] = 'close';
  }
 
  // user-defined headers
  if (typeof this.options.requestHeaders == 'object') {
  var extras = this.options.requestHeaders;
 
  if (Object.isFunction(extras.push))
  for (var i = 0, length = extras.length; i < length; i += 2)
  headers[extras[i]] = extras[i+1];
  else
  $H(extras).each(function(pair) { headers[pair.key] = pair.value });
  }
 
  for (var name in headers)
  this.transport.setRequestHeader(name, headers[name]);
  },
 
  success: function() {
  var status = this.getStatus();
  return !status || (status >= 200 && status < 300);
  },
 
  getStatus: function() {
  try {
  return this.transport.status || 0;
  } catch (e) { return 0 }
  },
 
  respondToReadyState: function(readyState) {
  var state = Ajax.Request.Events[readyState], response = new Ajax.Response(this);
 
  if (state == 'Complete') {
  try {
  this._complete = true;
  (this.options['on' + response.status]
  || this.options['on' + (this.success() ? 'Success' : 'Failure')]
  || Prototype.emptyFunction)(response, response.headerJSON);
  } catch (e) {
  this.dispatchException(e);
  }
 
  var contentType = response.getHeader('Content-type');
  if (this.options.evalJS == 'force'
  || (this.options.evalJS && this.isSameOrigin() && contentType
  && contentType.match(/^\s*(text|application)\/(x-)?(java|ecma)script(;.*)?\s*$/i)))
  this.evalResponse();
  }
 
  try {
  (this.options['on' + state] || Prototype.emptyFunction)(response, response.headerJSON);
  Ajax.Responders.dispatch('on' + state, this, response, response.headerJSON);
  } catch (e) {
  this.dispatchException(e);
  }
 
  if (state == 'Complete') {
  // avoid memory leak in MSIE: clean up
  this.transport.onreadystatechange = Prototype.emptyFunction;
  }
  },
 
  isSameOrigin: function() {
  var m = this.url.match(/^\s*https?:\/\/[^\/]*/);
  return !m || (m[0] == '#{protocol}//#{domain}#{port}'.interpolate({
  protocol: location.protocol,
  domain: document.domain,
  port: location.port ? ':' + location.port : ''
  }));
  },
 
  getHeader: function(name) {
  try {
  return this.transport.getResponseHeader(name) || null;
  } catch (e) { return null }
  },
 
  evalResponse: function() {
  try {
  return eval((this.transport.responseText || '').unfilterJSON());
  } catch (e) {
  this.dispatchException(e);
  }
  },
 
  dispatchException: function(exception) {
  (this.options.onException || Prototype.emptyFunction)(this, exception);
  Ajax.Responders.dispatch('onException', this, exception);
  }
  });
 
  Ajax.Request.Events =
  ['Uninitialized', 'Loading', 'Loaded', 'Interactive', 'Complete'];
 
  Ajax.Response = Class.create({
  initialize: function(request){
  this.request = request;
  var transport = this.transport = request.transport,
  readyState = this.readyState = transport.readyState;
 
  if((readyState > 2 && !Prototype.Browser.IE) || readyState == 4) {
  this.status = this.getStatus();
  this.statusText = this.getStatusText();
  this.responseText = String.interpret(transport.responseText);
  this.headerJSON = this._getHeaderJSON();
  }
 
  if(readyState == 4) {
  var xml = transport.responseXML;
  this.responseXML = Object.isUndefined(xml) ? null : xml;
  this.responseJSON = this._getResponseJSON();
  }
  },
 
  status: 0,
  statusText: '',
 
  getStatus: Ajax.Request.prototype.getStatus,
 
  getStatusText: function() {
  try {
  return this.transport.statusText || '';
  } catch (e) { return '' }
  },
 
  getHeader: Ajax.Request.prototype.getHeader,
 
  getAllHeaders: function() {
  try {
  return this.getAllResponseHeaders();
  } catch (e) { return null }
  },
 
  getResponseHeader: function(name) {
  return this.transport.getResponseHeader(name);
  },
 
  getAllResponseHeaders: function() {
  return this.transport.getAllResponseHeaders();
  },
 
  _getHeaderJSON: function() {
  var json = this.getHeader('X-JSON');
  if (!json) return null;
  json = decodeURIComponent(escape(json));
  try {
  return json.evalJSON(this.request.options.sanitizeJSON ||
  !this.request.isSameOrigin());
  } catch (e) {
  this.request.dispatchException(e);
  }
  },
 
  _getResponseJSON: function() {
  var options = this.request.options;
  if (!options.evalJSON || (options.evalJSON != 'force' &&
  !(this.getHeader('Content-type') || '').include('application/json')) ||
  this.responseText.blank())
  return null;
  try {
  return this.responseText.evalJSON(options.sanitizeJSON ||
  !this.request.isSameOrigin());
  } catch (e) {
  this.request.dispatchException(e);
  }
  }
  });
 
  Ajax.Updater = Class.create(Ajax.Request, {
  initialize: function($super, container, url, options) {
  this.container = {
  success: (container.success || container),
  failure: (container.failure || (container.success ? null : container))
  };
 
  options = Object.clone(options);
  var onComplete = options.onComplete;
  options.onComplete = (function(response, json) {
  this.updateContent(response.responseText);
  if (Object.isFunction(onComplete)) onComplete(response, json);
  }).bind(this);
 
  $super(url, options);
  },
 
  updateContent: function(responseText) {
  var receiver = this.container[this.success() ? 'success' : 'failure'],
  options = this.options;
 
  if (!options.evalScripts) responseText = responseText.stripScripts();
 
  if (receiver = $(receiver)) {
  if (options.insertion) {
  if (Object.isString(options.insertion)) {
  var insertion = { }; insertion[options.insertion] = responseText;
  receiver.insert(insertion);
  }
  else options.insertion(receiver, responseText);
  }
  else receiver.update(responseText);
  }
  }
  });
 
  Ajax.PeriodicalUpdater = Class.create(Ajax.Base, {
  initialize: function($super, container, url, options) {
  $super(options);
  this.onComplete = this.options.onComplete;
 
  this.frequency = (this.options.frequency || 2);
  this.decay = (this.options.decay || 1);
 
  this.updater = { };
  this.container = container;
  this.url = url;
 
  this.start();
  },
 
  start: function() {
  this.options.onComplete = this.updateComplete.bind(this);
  this.onTimerEvent();
  },
 
  stop: function() {
  this.updater.options.onComplete = undefined;
  clearTimeout(this.timer);
  (this.onComplete || Prototype.emptyFunction).apply(this, arguments);
  },
 
  updateComplete: function(response) {
  if (this.options.decay) {
  this.decay = (response.responseText == this.lastText ?
  this.decay * this.options.decay : 1);
 
  this.lastText = response.responseText;
  }
  this.timer = this.onTimerEvent.bind(this).delay(this.decay * this.frequency);
  },
 
  onTimerEvent: function() {
  this.updater = new Ajax.Updater(this.container, this.url, this.options);
  }
  });
  function $(element) {
  if (arguments.length > 1) {
  for (var i = 0, elements = [], length = arguments.length; i < length; i++)
  elements.push($(arguments[i]));
  return elements;
  }
  if (Object.isString(element))
  element = document.getElementById(element);
  return Element.extend(element);
  }
 
  if (Prototype.BrowserFeatures.XPath) {
  document._getElementsByXPath = function(expression, parentElement) {
  var results = [];
  var query = document.evaluate(expression, $(parentElement) || document,
  null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
  for (var i = 0, length = query.snapshotLength; i < length; i++)
  results.push(Element.extend(query.snapshotItem(i)));
  return results;
  };
  }
 
  /*--------------------------------------------------------------------------*/
 
  if (!window.Node) var Node = { };
 
  if (!Node.ELEMENT_NODE) {
  // DOM level 2 ECMAScript Language Binding
  Object.extend(Node, {
  ELEMENT_NODE: 1,
  ATTRIBUTE_NODE: 2,
  TEXT_NODE: 3,
  CDATA_SECTION_NODE: 4,
  ENTITY_REFERENCE_NODE: 5,
  ENTITY_NODE: 6,
  PROCESSING_INSTRUCTION_NODE: 7,
  COMMENT_NODE: 8,
  DOCUMENT_NODE: 9,
  DOCUMENT_TYPE_NODE: 10,
  DOCUMENT_FRAGMENT_NODE: 11,
  NOTATION_NODE: 12
  });
  }
 
  (function() {
  var element = this.Element;
  this.Element = function(tagName, attributes) {
  attributes = attributes || { };
  tagName = tagName.toLowerCase();
  var cache = Element.cache;
  if (Prototype.Browser.IE && attributes.name) {
  tagName = '<' + tagName + ' name="' + attributes.name + '">';
  delete attributes.name;
  return Element.writeAttribute(document.createElement(tagName), attributes);
  }
  if (!cache[tagName]) cache[tagName] = Element.extend(document.createElement(tagName));
  return Element.writeAttribute(cache[tagName].cloneNode(false), attributes);
  };
  Object.extend(this.Element, element || { });
  if (element) this.Element.prototype = element.prototype;
  }).call(window);
 
  Element.cache = { };
 
  Element.Methods = {
  visible: function(element) {
  return $(element).style.display != 'none';
  },
 
  toggle: function(element) {
  element = $(element);
  Element[Element.visible(element) ? 'hide' : 'show'](element);
  return element;
  },
 
  hide: function(element) {
  element = $(element);
  element.style.display = 'none';
  return element;
  },
 
  show: function(element) {
  element = $(element);
  element.style.display = '';
  return element;
  },
 
  remove: function(element) {
  element = $(element);
  element.parentNode.removeChild(element);
  return element;
  },
 
  update: function(element, content) {
  element = $(element);
  if (content && content.toElement) content = content.toElement();
  if (Object.isElement(content)) return element.update().insert(content);
  content = Object.toHTML(content);
  element.innerHTML = content.stripScripts();
  content.evalScripts.bind(content).defer();
  return element;
  },
 
  replace: function(element, content) {
  element = $(element);
  if (content && content.toElement) content = content.toElement();
  else if (!Object.isElement(content)) {
  content = Object.toHTML(content);
  var range = element.ownerDocument.createRange();
  range.selectNode(element);
  content.evalScripts.bind(content).defer();
  content = range.createContextualFragment(content.stripScripts());
  }
  element.parentNode.replaceChild(content, element);
  return element;
  },
 
  insert: function(element, insertions) {
  element = $(element);
 
  if (Object.isString(insertions) || Object.isNumber(insertions) ||
  Object.isElement(insertions) || (insertions && (insertions.toElement || insertions.toHTML)))
  insertions = {bottom:insertions};
 
  var content, insert, tagName, childNodes;
 
  for (var position in insertions) {
  content = insertions[position];
  position = position.toLowerCase();
  insert = Element._insertionTranslations[position];
 
  if (content && content.toElement) content = content.toElement();
  if (Object.isElement(content)) {
  insert(element, content);
  continue;
  }
 
  content = Object.toHTML(content);
 
  tagName = ((position == 'before' || position == 'after')
  ? element.parentNode : element).tagName.toUpperCase();
 
  childNodes = Element._getContentFromAnonymousElement(tagName, content.stripScripts());
 
  if (position == 'top' || position == 'after') childNodes.reverse();
  childNodes.each(insert.curry(element));
 
  content.evalScripts.bind(content).defer();
  }
 
  return element;
  },
 
  wrap: function(element, wrapper, attributes) {
  element = $(element);
  if (Object.isElement(wrapper))
  $(wrapper).writeAttribute(attributes || { });
  else if (Object.isString(wrapper)) wrapper = new Element(wrapper, attributes);
  else wrapper = new Element('div', wrapper);
  if (element.parentNode)
  element.parentNode.replaceChild(wrapper, element);
  wrapper.appendChild(element);
  return wrapper;
  },
 
  inspect: function(element) {
  element = $(element);
  var result = '<' + element.tagName.toLowerCase();
  $H({'id': 'id', 'className': 'class'}).each(function(pair) {
  var property = pair.first(), attribute = pair.last();
  var value = (element[property] || '').toString();
  if (value) result += ' ' + attribute + '=' + value.inspect(true);
  });
  return result + '>';
  },
 
  recursivelyCollect: function(element, property) {
  element = $(element);
  var elements = [];
  while (element = element[property])
  if (element.nodeType == 1)
  elements.push(Element.extend(element));
  return elements;
  },
 
  ancestors: function(element) {
  return $(element).recursivelyCollect('parentNode');
  },
 
  descendants: function(element) {
  return $(element).select("*");
  },
 
  firstDescendant: function(element) {
  element = $(element).firstChild;
  while (element && element.nodeType != 1) element = element.nextSibling;
  return $(element);
  },
 
  immediateDescendants: function(element) {
  if (!(element = $(element).firstChild)) return [];
  while (element && element.nodeType != 1) element = element.nextSibling;
  if (element) return [element].concat($(element).nextSiblings());
  return [];
  },
 
  previousSiblings: function(element) {
  return $(element).recursivelyCollect('previousSibling');
  },
 
  nextSiblings: function(element) {
  return $(element).recursivelyCollect('nextSibling');
  },
 
  siblings: function(element) {
  element = $(element);
  return element.previousSiblings().reverse().concat(element.nextSiblings());
  },
 
  match: function(element, selector) {
  if (Object.isString(selector))
  selector = new Selector(selector);
  return selector.match($(element));
  },
 
  up: function(element, expression, index) {
  element = $(element);
  if (arguments.length == 1) return $(element.parentNode);
  var ancestors = element.ancestors();
  return Object.isNumber(expression) ? ancestors[expression] :
  Selector.findElement(ancestors, expression, index);
  },
 
  down: function(element, expression, index) {
  element = $(element);
  if (arguments.length == 1) return element.firstDescendant();
  return Object.isNumber(expression) ? element.descendants()[expression] :
  Element.select(element, expression)[index || 0];
  },
 
  previous: function(element, expression, index) {
  element = $(element);
  if (arguments.length == 1) return $(Selector.handlers.previousElementSibling(element));
  var previousSiblings = element.previousSiblings();
  return Object.isNumber(expression) ? previousSiblings[expression] :
  Selector.findElement(previousSiblings, expression, index);
  },
 
  next: function(element, expression, index) {
  element = $(element);
  if (arguments.length == 1) return $(Selector.handlers.nextElementSibling(element));
  var nextSiblings = element.nextSiblings();
  return Object.isNumber(expression) ? nextSiblings[expression] :
  Selector.findElement(nextSiblings, expression, index);
  },
 
  select: function() {
  var args = $A(arguments), element = $(args.shift());
  return Selector.findChildElements(element, args);
  },
 
  adjacent: function() {
  var args = $A(arguments), element = $(args.shift());
  return Selector.findChildElements(element.parentNode, args).without(element);
  },
 
  identify: function(element) {
  element = $(element);
  var id = element.readAttribute('id'), self = arguments.callee;
  if (id) return id;
  do { id = 'anonymous_element_' + self.counter++ } while ($(id));
  element.writeAttribute('id', id);
  return id;
  },
 
  readAttribute: function(element, name) {
  element = $(element);
  if (Prototype.Browser.IE) {
  var t = Element._attributeTranslations.read;
  if (t.values[name]) return t.values[name](element, name);
  if (t.names[name]) name = t.names[name];
  if (name.include(':')) {
  return (!element.attributes || !element.attributes[name]) ? null :
  element.attributes[name].value;
  }
  }
  return element.getAttribute(name);
  },
 
  writeAttribute: function(element, name, value) {
  element = $(element);
  var attributes = { }, t = Element._attributeTranslations.write;
 
  if (typeof name == 'object') attributes = name;
  else attributes[name] = Object.isUndefined(value) ? true : value;
 
  for (var attr in attributes) {
  name = t.names[attr] || attr;
  value = attributes[attr];
  if (t.values[attr]) name = t.values[attr](element, value);
  if (value === false || value === null)
  element.removeAttribute(name);
  else if (value === true)
  element.setAttribute(name, name);
  else element.setAttribute(name, value);
  }
  return element;
  },
 
  getHeight: function(element) {
  return $(element).getDimensions().height;
  },
 
  getWidth: function(element) {
  return $(element).getDimensions().width;
  },
 
  classNames: function(element) {
  return new Element.ClassNames(element);
  },
 
  hasClassName: function(element, className) {
  if (!(element = $(element))) return;
  var elementClassName = element.className;
  return (elementClassName.length > 0 && (elementClassName == className ||
  new RegExp("(^|\\s)" + className + "(\\s|$)").test(elementClassName)));
  },
 
  addClassName: function(element, className) {
  if (!(element = $(element))) return;
  if (!element.hasClassName(className))
  element.className += (element.className ? ' ' : '') + className;
  return element;
  },
 
  removeClassName: function(element, className) {
  if (!(element = $(element))) return;
  element.className = element.className.replace(
  new RegExp("(^|\\s+)" + className + "(\\s+|$)"), ' ').strip();
  return element;
  },
 
  toggleClassName: function(element, className) {
  if (!(element = $(element))) return;
  return element[element.hasClassName(className) ?
  'removeClassName' : 'addClassName'](className);
  },
 
  // removes whitespace-only text node children
  cleanWhitespace: function(element) {
  element = $(element);
  var node = element.firstChild;
  while (node) {
  var nextNode = node.nextSibling;
  if (node.nodeType == 3 && !/\S/.test(node.nodeValue))
  element.removeChild(node);
  node = nextNode;
  }
  return element;
  },
 
  empty: function(element) {
  return $(element).innerHTML.blank();
  },
 
  descendantOf: function(element, ancestor) {
  element = $(element), ancestor = $(ancestor);
 
  if (element.compareDocumentPosition)
  return (element.compareDocumentPosition(ancestor) & 8) === 8;
 
  if (ancestor.contains)
  return ancestor.contains(element) && ancestor !== element;
 
  while (element = element.parentNode)
  if (element == ancestor) return true;
 
  return false;
  },
 
  scrollTo: function(element) {
  element = $(element);
  var pos = element.cumulativeOffset();
  window.scrollTo(pos[0], pos[1]);
  return element;
  },
 
  getStyle: function(element, style) {
  element = $(element);
  style = style == 'float' ? 'cssFloat' : style.camelize();
  var value = element.style[style];
  if (!value || value == 'auto') {
  var css = document.defaultView.getComputedStyle(element, null);
  value = css ? css[style] : null;
  }
  if (style == 'opacity') return value ? parseFloat(value) : 1.0;
  return value == 'auto' ? null : value;
  },
 
  getOpacity: function(element) {
  return $(element).getStyle('opacity');
  },
 
  setStyle: function(element, styles) {
  element = $(element);
  var elementStyle = element.style, match;
  if (Object.isString(styles)) {
  element.style.cssText += ';' + styles;
  return styles.include('opacity') ?
  element.setOpacity(styles.match(/opacity:\s*(\d?\.?\d*)/)[1]) : element;
  }
  for (var property in styles)
  if (property == 'opacity') element.setOpacity(styles[property]);
  else
  elementStyle[(property == 'float' || property == 'cssFloat') ?
  (Object.isUndefined(elementStyle.styleFloat) ? 'cssFloat' : 'styleFloat') :
  property] = styles[property];
 
  return element;
  },
 
  setOpacity: function(element, value) {
  element = $(element);
  element.style.opacity = (value == 1 || value === '') ? '' :
  (value < 0.00001) ? 0 : value;
  return element;
  },
 
  getDimensions: function(element) {
  element = $(element);
  var display = element.getStyle('display');
  if (display != 'none' && display != null) // Safari bug
  return {width: element.offsetWidth, height: element.offsetHeight};
 
  // All *Width and *Height properties give 0 on elements with display none,
  // so enable the element temporarily
  var els = element.style;
  var originalVisibility = els.visibility;
  var originalPosition = els.position;
  var originalDisplay = els.display;
  els.visibility = 'hidden';
  els.position = 'absolute';
  els.display = 'block';
  var originalWidth = element.clientWidth;
  var originalHeight = element.clientHeight;
  els.display = originalDisplay;
  els.position = originalPosition;
  els.visibility = originalVisibility;
  return {width: originalWidth, height: originalHeight};
  },
 
  makePositioned: function(element) {
  element = $(element);
  var pos = Element.getStyle(element, 'position');
  if (pos == 'static' || !pos) {
  element._madePositioned = true;
  element.style.position = 'relative';
  // Opera returns the offset relative to the positioning context, when an
  // element is position relative but top and left have not been defined
  if (Prototype.Browser.Opera) {
  element.style.top = 0;
  element.style.left = 0;
  }
  }
  return element;
  },
 
  undoPositioned: function(element) {
  element = $(element);
  if (element._madePositioned) {
  element._madePositioned = undefined;
  element.style.position =
  element.style.top =
  element.style.left =
  element.style.bottom =
  element.style.right = '';
  }
  return element;
  },
 
  makeClipping: function(element) {
  element = $(element);
  if (element._overflow) return element;
  element._overflow = Element.getStyle(element, 'overflow') || 'auto';
  if (element._overflow !== 'hidden')
  element.style.overflow = 'hidden';
  return element;
  },
 
  undoClipping: function(element) {
  element = $(element);
  if (!element._overflow) return element;
  element.style.overflow = element._overflow == 'auto' ? '' : element._overflow;
  element._overflow = null;
  return element;
  },
 
  cumulativeOffset: function(element) {
  var valueT = 0, valueL = 0;
  do {
  valueT += element.offsetTop || 0;
  valueL += element.offsetLeft || 0;
  element = element.offsetParent;
  } while (element);
  return Element._returnOffset(valueL, valueT);
  },
 
  positionedOffset: function(element) {
  var valueT = 0, valueL = 0;
  do {
  valueT += element.offsetTop || 0;
  valueL += element.offsetLeft || 0;
  element = element.offsetParent;
  if (element) {
  if (element.tagName.toUpperCase() == 'BODY') break;
  var p = Element.getStyle(element, 'position');
  if (p !== 'static') break;
  }
  } while (element);
  return Element._returnOffset(valueL, valueT);
  },
 
  absolutize: function(element) {
  element = $(element);
  if (element.getStyle('position') == 'absolute') return element;
  // Position.prepare(); // To be done manually by Scripty when it needs it.
 
  var offsets = element.positionedOffset();
  var top = offsets[1];
  var left = offsets[0];
  var width = element.clientWidth;
  var height = element.clientHeight;
 
  element._originalLeft = left - parseFloat(element.style.left || 0);
  element._originalTop = top - parseFloat(element.style.top || 0);
  element._originalWidth = element.style.width;
  element._originalHeight = element.style.height;
 
  element.style.position = 'absolute';
  element.style.top = top + 'px';
  element.style.left = left + 'px';
  element.style.width = width + 'px';
  element.style.height = height + 'px';
  return element;
  },
 
  relativize: function(element) {
  element = $(element);
  if (element.getStyle('position') == 'relative') return element;
  // Position.prepare(); // To be done manually by Scripty when it needs it.
 
  element.style.position = 'relative';
  var top = parseFloat(element.style.top || 0) - (element._originalTop || 0);
  var left = parseFloat(element.style.left || 0) - (element._originalLeft || 0);
 
  element.style.top = top + 'px';
  element.style.left = left + 'px';
  element.style.height = element._originalHeight;
  element.style.width = element._originalWidth;
  return element;
  },
 
  cumulativeScrollOffset: function(element) {
  var valueT = 0, valueL = 0;
  do {
  valueT += element.scrollTop || 0;
  valueL += element.scrollLeft || 0;
  element = element.parentNode;
  } while (element);
  return Element._returnOffset(valueL, valueT);
  },
 
  getOffsetParent: function(element) {
  if (element.offsetParent) return $(element.offsetParent);
  if (element == document.body) return $(element);
 
  while ((element = element.parentNode) && element != document.body)
  if (Element.getStyle(element, 'position') != 'static')
  return $(element);
 
  return $(document.body);
  },
 
  viewportOffset: function(forElement) {
  var valueT = 0, valueL = 0;
 
  var element = forElement;
  do {
  valueT += element.offsetTop || 0;
  valueL += element.offsetLeft || 0;
 
  // Safari fix
  if (element.offsetParent == document.body &&
  Element.getStyle(element, 'position') == 'absolute') break;
 
  } while (element = element.offsetParent);
 
  element = forElement;
  do {
  if (!Prototype.Browser.Opera || (element.tagName && (element.tagName.toUpperCase() == 'BODY'))) {
  valueT -= element.scrollTop || 0;
  valueL -= element.scrollLeft || 0;
  }
  } while (element = element.parentNode);
 
  return Element._returnOffset(valueL, valueT);
  },
 
  clonePosition: function(element, source) {
  var options = Object.extend({
  setLeft: true,
  setTop: true,
  setWidth: true,
  setHeight: true,
  offsetTop: 0,
  offsetLeft: 0
  }, arguments[2] || { });
 
  // find page position of source
  source = $(source);
  var p = source.viewportOffset();
 
  // find coordinate system to use
  element = $(element);
  var delta = [0, 0];
  var parent = null;
  // delta [0,0] will do fine with position: fixed elements,
  // position:absolute needs offsetParent deltas
  if (Element.getStyle(element, 'position') == 'absolute') {
  parent = element.getOffsetParent();
  delta = parent.viewportOffset();
  }
 
  // correct by body offsets (fixes Safari)
  if (parent == document.body) {
  delta[0] -= document.body.offsetLeft;
  delta[1] -= document.body.offsetTop;
  }
 
  // set position
  if (options.setLeft) element.style.left = (p[0] - delta[0] + options.offsetLeft) + 'px';
  if (options.setTop) element.style.top = (p[1] - delta[1] + options.offsetTop) + 'px';
  if (options.setWidth) element.style.width = source.offsetWidth + 'px';
  if (options.setHeight) element.style.height = source.offsetHeight + 'px';
  return element;
  }
  };
 
  Element.Methods.identify.counter = 1;
 
  Object.extend(Element.Methods, {
  getElementsBySelector: Element.Methods.select,
  childElements: Element.Methods.immediateDescendants
  });
 
  Element._attributeTranslations = {
  write: {
  names: {
  className: 'class',
  htmlFor: 'for'
  },
  values: { }
  }
  };
 
  if (Prototype.Browser.Opera) {
  Element.Methods.getStyle = Element.Methods.getStyle.wrap(
  function(proceed, element, style) {
  switch (style) {
  case 'left': case 'top': case 'right': case 'bottom':
  if (proceed(element, 'position') === 'static') return null;
  case 'height': case 'width':
  // returns '0px' for hidden elements; we want it to return null
  if (!Element.visible(element)) return null;
 
  // returns the border-box dimensions rather than the content-box
  // dimensions, so we subtract padding and borders from the value
  var dim = parseInt(proceed(element, style), 10);
 
  if (dim !== element['offset' + style.capitalize()])
  return dim + 'px';
 
  var properties;
  if (style === 'height') {
  properties = ['border-top-width', 'padding-top',
  'padding-bottom', 'border-bottom-width'];
  }
  else {
  properties = ['border-left-width', 'padding-left',
  'padding-right', 'border-right-width'];
  }
  return properties.inject(dim, function(memo, property) {
  var val = proceed(element, property);
  return val === null ? memo : memo - parseInt(val, 10);
  }) + 'px';
  default: return proceed(element, style);
  }
  }
  );
 
  Element.Methods.readAttribute = Element.Methods.readAttribute.wrap(
  function(proceed, element, attribute) {
  if (attribute === 'title') return element.title;
  return proceed(element, attribute);
  }
  );
  }
 
  else if (Prototype.Browser.IE) {
  // IE doesn't report offsets correctly for static elements, so we change them
  // to "relative" to get the values, then change them back.
  Element.Methods.getOffsetParent = Element.Methods.getOffsetParent.wrap(
  function(proceed, element) {
  element = $(element);
  // IE throws an error if element is not in document
  try { element.offsetParent }
  catch(e) { return $(document.body) }
  var position = element.getStyle('position');
  if (position !== 'static') return proceed(element);
  element.setStyle({ position: 'relative' });
  var value = proceed(element);
  element.setStyle({ position: position });
  return value;
  }
  );
 
  $w('positionedOffset viewportOffset').each(function(method) {
  Element.Methods[method] = Element.Methods[method].wrap(
  function(proceed, element) {
  element = $(element);
  try { element.offsetParent }
  catch(e) { return Element._returnOffset(0,0) }
  var position = element.getStyle('position');
  if (position !== 'static') return proceed(element);
  // Trigger hasLayout on the offset parent so that IE6 reports
  // accurate offsetTop and offsetLeft values for position: fixed.
  var offsetParent = element.getOffsetParent();
  if (offsetParent && offsetParent.getStyle('position') === 'fixed')
  offsetParent.setStyle({ zoom: 1 });
  element.setStyle({ position: 'relative' });
  var value = proceed(element);
  element.setStyle({ position: position });
  return value;
  }
  );
  });
 
  Element.Methods.cumulativeOffset = Element.Methods.cumulativeOffset.wrap(
  function(proceed, element) {
  try { element.offsetParent }
  catch(e) { return Element._returnOffset(0,0) }
  return proceed(element);
  }
  );
 
  Element.Methods.getStyle = function(element, style) {
  element = $(element);
  style = (style == 'float' || style == 'cssFloat') ? 'styleFloat' : style.camelize();
  var value = element.style[style];
  if (!value && element.currentStyle) value = element.currentStyle[style];
 
  if (style == 'opacity') {
  if (value = (element.getStyle('filter') || '').match(/alpha\(opacity=(.*)\)/))
  if (value[1]) return parseFloat(value[1]) / 100;
  return 1.0;
  }
 
  if (value == 'auto') {
  if ((style == 'width' || style == 'height') && (element.getStyle('display') != 'none'))
  return element['offset' + style.capitalize()] + 'px';
  return null;
  }
  return value;
  };
 
  Element.Methods.setOpacity = function(element, value) {
  function stripAlpha(filter){
  return filter.replace(/alpha\([^\)]*\)/gi,'');
  }
  element = $(element);
  var currentStyle = element.currentStyle;
  if ((currentStyle && !currentStyle.hasLayout) ||
  (!currentStyle && element.style.zoom == 'normal'))
  element.style.zoom = 1;
 
  var filter = element.getStyle('filter'), style = element.style;
  if (value == 1 || value === '') {
  (filter = stripAlpha(filter)) ?
  style.filter = filter : style.removeAttribute('filter');
  return element;
  } else if (value < 0.00001) value = 0;
  style.filter = stripAlpha(filter) +
  'alpha(opacity=' + (value * 100) + ')';
  return element;
  };
 
  Element._attributeTranslations = {
  read: {
  names: {
  'class': 'className',
  'for': 'htmlFor'
  },
  values: {
  _getAttr: function(element, attribute) {
  return element.getAttribute(attribute, 2);
  },
  _getAttrNode: function(element, attribute) {
  var node = element.getAttributeNode(attribute);
  return node ? node.value : "";
  },
  _getEv: function(element, attribute) {
  attribute = element.getAttribute(attribute);
  return attribute ? attribute.toString().slice(23, -2) : null;
  },
  _flag: function(element, attribute) {
  return $(element).hasAttribute(attribute) ? attribute : null;
  },
  style: function(element) {
  return element.style.cssText.toLowerCase();
  },
  title: function(element) {
  return element.title;
  }
  }
  }
  };
 
  Element._attributeTranslations.write = {
  names: Object.extend({
  cellpadding: 'cellPadding',
  cellspacing: 'cellSpacing'
  }, Element._attributeTranslations.read.names),
  values: {
  checked: function(element, value) {
  element.checked = !!value;
  },
 
  style: function(element, value) {
  element.style.cssText = value ? value : '';
  }
  }
  };
 
  Element._attributeTranslations.has = {};
 
  $w('colSpan rowSpan vAlign dateTime accessKey tabIndex ' +
  'encType maxLength readOnly longDesc frameBorder').each(function(attr) {
  Element._attributeTranslations.write.names[attr.toLowerCase()] = attr;
  Element._attributeTranslations.has[attr.toLowerCase()] = attr;
  });
 
  (function(v) {
  Object.extend(v, {
  href: v._getAttr,
  src: v._getAttr,
  type: v._getAttr,
  action: v._getAttrNode,
  disabled: v._flag,
  checked: v._flag,
  readonly: v._flag,
  multiple: v._flag,
  onload: v._getEv,
  onunload: v._getEv,
  onclick: v._getEv,
  ondblclick: v._getEv,
  onmousedown: v._getEv,
  onmouseup: v._getEv,
  onmouseover: v._getEv,
  onmousemove: v._getEv,
  onmouseout: v._getEv,
  onfocus: v._getEv,
  onblur: v._getEv,
  onkeypress: v._getEv,
  onkeydown: v._getEv,
  onkeyup: v._getEv,
  onsubmit: v._getEv,
  onreset: v._getEv,
  onselect: v._getEv,
  onchange: v._getEv
  });
  })(Element._attributeTranslations.read.values);
  }
 
  else if (Prototype.Browser.Gecko && /rv:1\.8\.0/.test(navigator.userAgent)) {
  Element.Methods.setOpacity = function(element, value) {
  element = $(element);
  element.style.opacity = (value == 1) ? 0.999999 :
  (value === '') ? '' : (value < 0.00001) ? 0 : value;
  return element;
  };
  }
 
  else if (Prototype.Browser.WebKit) {
  Element.Methods.setOpacity = function(element, value) {
  element = $(element);
  element.style.opacity = (value == 1 || value === '') ? '' :
  (value < 0.00001) ? 0 : value;
 
  if (value == 1)
  if(element.tagName.toUpperCase() == 'IMG' && element.width) {
  element.width++; element.width--;
  } else try {
  var n = document.createTextNode(' ');
  element.appendChild(n);
  element.removeChild(n);
  } catch (e) { }
 
  return element;
  };
 
  // Safari returns margins on body which is incorrect if the child is absolutely
  // positioned. For performance reasons, redefine Element#cumulativeOffset for
  // KHTML/WebKit only.
  Element.Methods.cumulativeOffset = function(element) {
  var valueT = 0, valueL = 0;
  do {
  valueT += element.offsetTop || 0;
  valueL += element.offsetLeft || 0;
  if (element.offsetParent == document.body)
  if (Element.getStyle(element, 'position') == 'absolute') break;
 
  element = element.offsetParent;
  } while (element);
 
  return Element._returnOffset(valueL, valueT);
  };
  }
 
  if (Prototype.Browser.IE || Prototype.Browser.Opera) {
  // IE and Opera are missing .innerHTML support for TABLE-related and SELECT elements
  Element.Methods.update = function(element, content) {
  element = $(element);
 
  if (content && content.toElement) content = content.toElement();
  if (Object.isElement(content)) return element.update().insert(content);
 
  content = Object.toHTML(content);
  var tagName = element.tagName.toUpperCase();
 
  if (tagName in Element._insertionTranslations.tags) {
  $A(element.childNodes).each(function(node) { element.removeChild(node) });
  Element._getContentFromAnonymousElement(tagName, content.stripScripts())
  .each(function(node) { element.appendChild(node) });
  }
  else element.innerHTML = content.stripScripts();
 
  content.evalScripts.bind(content).defer();
  return element;
  };
  }
 
  if ('outerHTML' in document.createElement('div')) {
  Element.Methods.replace = function(element, content) {
  element = $(element);
 
  if (content && content.toElement) content = content.toElement();
  if (Object.isElement(content)) {
  element.parentNode.replaceChild(content, element);
  return element;
  }
 
  content = Object.toHTML(content);
  var parent = element.parentNode, tagName = parent.tagName.toUpperCase();
 
  if (Element._insertionTranslations.tags[tagName]) {
  var nextSibling = element.next();
  var fragments = Element._getContentFromAnonymousElement(tagName, content.stripScripts());
  parent.removeChild(element);
  if (nextSibling)
  fragments.each(function(node) { parent.insertBefore(node, nextSibling) });
  else
  fragments.each(function(node) { parent.appendChild(node) });
  }
  else element.outerHTML = content.stripScripts();
 
  content.evalScripts.bind(content).defer();
  return element;
  };
  }
 
  Element._returnOffset = function(l, t) {
  var result = [l, t];
  result.left = l;
  result.top = t;
  return result;
  };
 
  Element._getContentFromAnonymousElement = function(tagName, html) {
  var div = new Element('div'), t = Element._insertionTranslations.tags[tagName];
  if (t) {
  div.innerHTML = t[0] + html + t[1];
  t[2].times(function() { div = div.firstChild });
  } else div.innerHTML = html;
  return $A(div.childNodes);
  };
 
  Element._insertionTranslations = {
  before: function(element, node) {
  element.parentNode.insertBefore(node, element);
  },
  top: function(element, node) {
  element.insertBefore(node, element.firstChild);
  },
  bottom: function(element, node) {
  element.appendChild(node);
  },
  after: function(element, node) {
  element.parentNode.insertBefore(node, element.nextSibling);
  },
  tags: {
  TABLE: ['<table>', '</table>', 1],
  TBODY: ['<table><tbody>', '</tbody></table>', 2],
  TR: ['<table><tbody><tr>', '</tr></tbody></table>', 3],
  TD: ['<table><tbody><tr><td>', '</td></tr></tbody></table>', 4],
  SELECT: ['<select>', '</select>', 1]
  }
  };
 
  (function() {
  Object.extend(this.tags, {
  THEAD: this.tags.TBODY,
  TFOOT: this.tags.TBODY,
  TH: this.tags.TD
  });
  }).call(Element._insertionTranslations);
 
  Element.Methods.Simulated = {
  hasAttribute: function(element, attribute) {
  attribute = Element._attributeTranslations.has[attribute] || attribute;
  var node = $(element).getAttributeNode(attribute);
  return !!(node && node.specified);
  }
  };
 
  Element.Methods.ByTag = { };
 
  Object.extend(Element, Element.Methods);
 
  if (!Prototype.BrowserFeatures.ElementExtensions &&
  document.createElement('div')['__proto__']) {
  window.HTMLElement = { };
  window.HTMLElement.prototype = document.createElement('div')['__proto__'];
  Prototype.BrowserFeatures.ElementExtensions = true;
  }
 
  Element.extend = (function() {
  if (Prototype.BrowserFeatures.SpecificElementExtensions)
  return Prototype.K;
 
  var Methods = { }, ByTag = Element.Methods.ByTag;
 
  var extend = Object.extend(function(element) {
  if (!element || element._extendedByPrototype ||
  element.nodeType != 1 || element == window) return element;
 
  var methods = Object.clone(Methods),
  tagName = element.tagName.toUpperCase(), property, value;
 
  // extend methods for specific tags
  if (ByTag[tagName]) Object.extend(methods, ByTag[tagName]);
 
  for (property in methods) {
  value = methods[property];
  if (Object.isFunction(value) && !(property in element))
  element[property] = value.methodize();
  }
 
  element._extendedByPrototype = Prototype.emptyFunction;
  return element;
 
  }, {
  refresh: function() {
  // extend methods for all tags (Safari doesn't need this)
  if (!Prototype.BrowserFeatures.ElementExtensions) {
  Object.extend(Methods, Element.Methods);
  Object.extend(Methods, Element.Methods.Simulated);
  }
  }
  });
 
  extend.refresh();
  return extend;
  })();
 
  Element.hasAttribute = function(element, attribute) {
  if (element.hasAttribute) return element.hasAttribute(attribute);
  return Element.Methods.Simulated.hasAttribute(element, attribute);
  };
 
  Element.addMethods = function(methods) {
  var F = Prototype.BrowserFeatures, T = Element.Methods.ByTag;
 
  if (!methods) {
  Object.extend(Form, Form.Methods);
  Object.extend(Form.Element, Form.Element.Methods);
  Object.extend(Element.Methods.ByTag, {
  "FORM": Object.clone(Form.Methods),
  "INPUT": Object.clone(Form.Element.Methods),
  "SELECT": Object.clone(Form.Element.Methods),
  "TEXTAREA": Object.clone(Form.Element.Methods)
  });
  }
 
  if (arguments.length == 2) {
  var tagName = methods;
  methods = arguments[1];
  }
 
  if (!tagName) Object.extend(Element.Methods, methods || { });
  else {
  if (Object.isArray(tagName)) tagName.each(extend);
  else extend(tagName);
  }
 
  function extend(tagName) {
  tagName = tagName.toUpperCase();
  if (!Element.Methods.ByTag[tagName])
  Element.Methods.ByTag[tagName] = { };
  Object.extend(Element.Methods.ByTag[tagName], methods);
  }
 
  function copy(methods, destination, onlyIfAbsent) {
  onlyIfAbsent = onlyIfAbsent || false;
  for (var property in methods) {
  var value = methods[property];
  if (!Object.isFunction(value)) continue;
  if (!onlyIfAbsent || !(property in destination))
  destination[property] = value.methodize();
  }
  }
 
  function findDOMClass(tagName) {
  var klass;
  var trans = {
  "OPTGROUP": "OptGroup", "TEXTAREA": "TextArea", "P": "Paragraph",
  "FIELDSET": "FieldSet", "UL": "UList", "OL": "OList", "DL": "DList",
  "DIR": "Directory", "H1": "Heading", "H2": "Heading", "H3": "Heading",
  "H4": "Heading", "H5": "Heading", "H6": "Heading", "Q": "Quote",
  "INS": "Mod", "DEL": "Mod", "A": "Anchor", "IMG": "Image", "CAPTION":
  "TableCaption", "COL": "TableCol", "COLGROUP": "TableCol", "THEAD":
  "TableSection", "TFOOT": "TableSection", "TBODY": "TableSection", "TR":
  "TableRow", "TH": "TableCell", "TD": "TableCell", "FRAMESET":
  "FrameSet", "IFRAME": "IFrame"
  };
  if (trans[tagName]) klass = 'HTML' + trans[tagName] + 'Element';
  if (window[klass]) return window[klass];
  klass = 'HTML' + tagName + 'Element';
  if (window[klass]) return window[klass];
  klass = 'HTML' + tagName.capitalize() + 'Element';
  if (window[klass]) return window[klass];
 
  window[klass] = { };
  window[klass].prototype = document.createElement(tagName)['__proto__'];
  return window[klass];
  }
 
  if (F.ElementExtensions) {
  copy(Element.Methods, HTMLElement.prototype);
  copy(Element.Methods.Simulated, HTMLElement.prototype, true);
  }
 
  if (F.SpecificElementExtensions) {
  for (var tag in Element.Methods.ByTag) {
  var klass = findDOMClass(tag);
  if (Object.isUndefined(klass)) continue;
  copy(T[tag], klass.prototype);
  }
  }
 
  Object.extend(Element, Element.Methods);
  delete Element.ByTag;
 
  if (Element.extend.refresh) Element.extend.refresh();
  Element.cache = { };
  };
 
  document.viewport = {
  getDimensions: function() {
  var dimensions = { }, B = Prototype.Browser;
  $w('width height').each(function(d) {
  var D = d.capitalize();
  if (B.WebKit && !document.evaluate) {
  // Safari <3.0 needs self.innerWidth/Height
  dimensions[d] = self['inner' + D];
  } else if (B.Opera && parseFloat(window.opera.version()) < 9.5) {
  // Opera <9.5 needs document.body.clientWidth/Height
  dimensions[d] = document.body['client' + D]
  } else {
  dimensions[d] = document.documentElement['client' + D];
  }
  });
  return dimensions;
  },
 
  getWidth: function() {
  return this.getDimensions().width;
  },
 
  getHeight: function() {
  return this.getDimensions().height;
  },
 
  getScrollOffsets: function() {
  return Element._returnOffset(
  window.pageXOffset || document.documentElement.scrollLeft || document.body.scrollLeft,
  window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop);
  }
  };
  /* Portions of the Selector class are derived from Jack Slocum's DomQuery,
  * part of YUI-Ext version 0.40, distributed under the terms of an MIT-style
  * license. Please see http://www.yui-ext.com/ for more information. */
 
  var Selector = Class.create({
  initialize: function(expression) {
  this.expression = expression.strip();
 
  if (this.shouldUseSelectorsAPI()) {
  this.mode = 'selectorsAPI';
  } else if (this.shouldUseXPath()) {
  this.mode = 'xpath';
  this.compileXPathMatcher();
  } else {
  this.mode = "normal";
  this.compileMatcher();
  }
 
  },
 
  shouldUseXPath: function() {
  if (!Prototype.BrowserFeatures.XPath) return false;
 
  var e = this.expression;
 
  // Safari 3 chokes on :*-of-type and :empty
  if (Prototype.Browser.WebKit &&
  (e.include("-of-type") || e.include(":empty")))
  return false;
 
  // XPath can't do namespaced attributes, nor can it read
  // the "checked" property from DOM nodes
  if ((/(\[[\w-]*?:|:checked)/).test(e))
  return false;
 
  return true;
  },
 
  shouldUseSelectorsAPI: function() {
  if (!Prototype.BrowserFeatures.SelectorsAPI) return false;
 
  if (!Selector._div) Selector._div = new Element('div');
 
  // Make sure the browser treats the selector as valid. Test on an
  // isolated element to minimize cost of this check.
  try {
  Selector._div.querySelector(this.expression);
  } catch(e) {
  return false;
  }
 
  return true;
  },
 
  compileMatcher: function() {
  var e = this.expression, ps = Selector.patterns, h = Selector.handlers,
  c = Selector.criteria, le, p, m;
 
  if (Selector._cache[e]) {
  this.matcher = Selector._cache[e];
  return;
  }
 
  this.matcher = ["this.matcher = function(root) {",
  "var r = root, h = Selector.handlers, c = false, n;"];
 
  while (e && le != e && (/\S/).test(e)) {
  le = e;
  for (var i in ps) {
  p = ps[i];
  if (m = e.match(p)) {
  this.matcher.push(Object.isFunction(c[i]) ? c[i](m) :
  new Template(c[i]).evaluate(m));
  e = e.replace(m[0], '');
  break;
  }
  }
  }
 
  this.matcher.push("return h.unique(n);\n}");
  eval(this.matcher.join('\n'));
  Selector._cache[this.expression] = this.matcher;
  },
 
  compileXPathMatcher: function() {
  var e = this.expression, ps = Selector.patterns,
  x = Selector.xpath, le, m;
 
  if (Selector._cache[e]) {
  this.xpath = Selector._cache[e]; return;
  }
 
  this.matcher = ['.//*'];
  while (e && le != e && (/\S/).test(e)) {
  le = e;
  for (var i in ps) {
  if (m = e.match(ps[i])) {
  this.matcher.push(Object.isFunction(x[i]) ? x[i](m) :
  new Template(x[i]).evaluate(m));
  e = e.replace(m[0], '');
  break;
  }
  }
  }
 
  this.xpath = this.matcher.join('');
  Selector._cache[this.expression] = this.xpath;
  },
 
  findElements: function(root) {
  root = root || document;
  var e = this.expression, results;
 
  switch (this.mode) {
  case 'selectorsAPI':
  // querySelectorAll queries document-wide, then filters to descendants
  // of the context element. That's not what we want.
  // Add an explicit context to the selector if necessary.
  if (root !== document) {
  var oldId = root.id, id = $(root).identify();
  e = "#" + id + " " + e;
  }
 
  results = $A(root.querySelectorAll(e)).map(Element.extend);
  root.id = oldId;
 
  return results;
  case 'xpath':
  return document._getElementsByXPath(this.xpath, root);
  default:
  return this.matcher(root);
  }
  },
 
  match: function(element) {
  this.tokens = [];
 
  var e = this.expression, ps = Selector.patterns, as = Selector.assertions;
  var le, p, m;
 
  while (e && le !== e && (/\S/).test(e)) {
  le = e;
  for (var i in ps) {
  p = ps[i];
  if (m = e.match(p)) {
  // use the Selector.assertions methods unless the selector
  // is too complex.
  if (as[i]) {
  this.tokens.push([i, Object.clone(m)]);
  e = e.replace(m[0], '');
  } else {
  // reluctantly do a document-wide search
  // and look for a match in the array
  return this.findElements(document).include(element);
  }
  }
  }
  }
 
  var match = true, name, matches;
  for (var i = 0, token; token = this.tokens[i]; i++) {
  name = token[0], matches = token[1];
  if (!Selector.assertions[name](element, matches)) {
  match = false; break;
  }
  }
 
  return match;
  },
 
  toString: function() {
  return this.expression;
  },
 
  inspect: function() {
  return "#<Selector:" + this.expression.inspect() + ">";
  }
  });
 
  Object.extend(Selector, {
  _cache: { },
 
  xpath: {
  descendant: "//*",
  child: "/*",
  adjacent: "/following-sibling::*[1]",
  laterSibling: '/following-sibling::*',
  tagName: function(m) {
  if (m[1] == '*') return '';
  return "[local-name()='" + m[1].toLowerCase() +
  "' or local-name()='" + m[1].toUpperCase() + "']";
  },
  className: "[contains(concat(' ', @class, ' '), ' #{1} ')]",
  id: "[@id='#{1}']",
  attrPresence: function(m) {
  m[1] = m[1].toLowerCase();
  return new Template("[@#{1}]").evaluate(m);
  },
  attr: function(m) {
  m[1] = m[1].toLowerCase();
  m[3] = m[5] || m[6];
  return new Template(Selector.xpath.operators[m[2]]).evaluate(m);
  },
  pseudo: function(m) {
  var h = Selector.xpath.pseudos[m[1]];
  if (!h) return '';
  if (Object.isFunction(h)) return h(m);
  return new Template(Selector.xpath.pseudos[m[1]]).evaluate(m);
  },
  operators: {
  '=': "[@#{1}='#{3}']",
  '!=': "[@#{1}!='#{3}']",
  '^=': "[starts-with(@#{1}, '#{3}')]",
  '$=': "[substring(@#{1}, (string-length(@#{1}) - string-length('#{3}') + 1))='#{3}']",
  '*=': "[contains(@#{1}, '#{3}')]",
  '~=': "[contains(concat(' ', @#{1}, ' '), ' #{3} ')]",
  '|=': "[contains(concat('-', @#{1}, '-'), '-#{3}-')]"
  },
  pseudos: {
  'first-child': '[not(preceding-sibling::*)]',
  'last-child': '[not(following-sibling::*)]',
  'only-child': '[not(preceding-sibling::* or following-sibling::*)]',
  'empty': "[count(*) = 0 and (count(text()) = 0)]",
  'checked': "[@checked]",
  'disabled': "[(@disabled) and (@type!='hidden')]",
  'enabled': "[not(@disabled) and (@type!='hidden')]",
  'not': function(m) {
  var e = m[6], p = Selector.patterns,
  x = Selector.xpath, le, v;
 
  var exclusion = [];
  while (e && le != e && (/\S/).test(e)) {
  le = e;
  for (var i in p) {
  if (m = e.match(p[i])) {
  v = Object.isFunction(x[i]) ? x[i](m) : new Template(x[i]).evaluate(m);
  exclusion.push("(" + v.substring(1, v.length - 1) + ")");
  e = e.replace(m[0], '');
  break;
  }
  }
  }
  return "[not(" + exclusion.join(" and ") + ")]";
  },
  'nth-child': function(m) {
  return Selector.xpath.pseudos.nth("(count(./preceding-sibling::*) + 1) ", m);
  },
  'nth-last-child': function(m) {
  return Selector.xpath.pseudos.nth("(count(./following-sibling::*) + 1) ", m);
  },
  'nth-of-type': function(m) {
  return Selector.xpath.pseudos.nth("position() ", m);
  },
  'nth-last-of-type': function(m) {
  return Selector.xpath.pseudos.nth("(last() + 1 - position()) ", m);
  },
  'first-of-type': function(m) {
  m[6] = "1"; return Selector.xpath.pseudos['nth-of-type'](m);
  },
  'last-of-type': function(m) {
  m[6] = "1"; return Selector.xpath.pseudos['nth-last-of-type'](m);
  },
  'only-of-type': function(m) {
  var p = Selector.xpath.pseudos; return p['first-of-type'](m) + p['last-of-type'](m);
  },
  nth: function(fragment, m) {
  var mm, formula = m[6], predicate;
  if (formula == 'even') formula = '2n+0';
  if (formula == 'odd') formula = '2n+1';
  if (mm = formula.match(/^(\d+)$/)) // digit only
  return '[' + fragment + "= " + mm[1] + ']';
  if (mm = formula.match(/^(-?\d*)?n(([+-])(\d+))?/)) { // an+b
  if (mm[1] == "-") mm[1] = -1;
  var a = mm[1] ? Number(mm[1]) : 1;
  var b = mm[2] ? Number(mm[2]) : 0;
  predicate = "[((#{fragment} - #{b}) mod #{a} = 0) and " +
  "((#{fragment} - #{b}) div #{a} >= 0)]";
  return new Template(predicate).evaluate({
  fragment: fragment, a: a, b: b });
  }
  }
  }
  },
 
  criteria: {
  tagName: 'n = h.tagName(n, r, "#{1}", c); c = false;',
  className: 'n = h.className(n, r, "#{1}", c); c = false;',
  id: 'n = h.id(n, r, "#{1}", c); c = false;',
  attrPresence: 'n = h.attrPresence(n, r, "#{1}", c); c = false;',
  attr: function(m) {
  m[3] = (m[5] || m[6]);
  return new Template('n = h.attr(n, r, "#{1}", "#{3}", "#{2}", c); c = false;').evaluate(m);
  },
  pseudo: function(m) {
  if (m[6]) m[6] = m[6].replace(/"/g, '\\"');
  return new Template('n = h.pseudo(n, "#{1}", "#{6}", r, c); c = false;').evaluate(m);
  },
  descendant: 'c = "descendant";',
  child: 'c = "child";',
  adjacent: 'c = "adjacent";',
  laterSibling: 'c = "laterSibling";'
  },
 
  patterns: {
  // combinators must be listed first
  // (and descendant needs to be last combinator)
  laterSibling: /^\s*~\s*/,
  child: /^\s*>\s*/,
  adjacent: /^\s*\+\s*/,
  descendant: /^\s/,
 
  // selectors follow
  tagName: /^\s*(\*|[\w\-]+)(\b|$)?/,
  id: /^#([\w\-\*]+)(\b|$)/,
  className: /^\.([\w\-\*]+)(\b|$)/,
  pseudo:
  /^:((first|last|nth|nth-last|only)(-child|-of-type)|empty|checked|(en|dis)abled|not)(\((.*?)\))?(\b|$|(?=\s|[:+~>]))/,
  attrPresence: /^\[((?:[\w]+:)?[\w]+)\]/,
  attr: /\[((?:[\w-]*:)?[\w-]+)\s*(?:([!^$*~|]?=)\s*((['"])([^\4]*?)\4|([^'"][^\]]*?)))?\]/
  },
 
  // for Selector.match and Element#match
  assertions: {
  tagName: function(element, matches) {
  return matches[1].toUpperCase() == element.tagName.toUpperCase();
  },
 
  className: function(element, matches) {
  return Element.hasClassName(element, matches[1]);
  },
 
  id: function(element, matches) {
  return element.id === matches[1];
  },
 
  attrPresence: function(element, matches) {
  return Element.hasAttribute(element, matches[1]);
  },
 
  attr: function(element, matches) {
  var nodeValue = Element.readAttribute(element, matches[1]);
  return nodeValue && Selector.operators[matches[2]](nodeValue, matches[5] || matches[6]);
  }
  },
 
  handlers: {
  // UTILITY FUNCTIONS
  // joins two collections
  concat: function(a, b) {
  for (var i = 0, node; node = b[i]; i++)
  a.push(node);
  return a;
  },
 
  // marks an array of nodes for counting
  mark: function(nodes) {
  var _true = Prototype.emptyFunction;
  for (var i = 0, node; node = nodes[i]; i++)
  node._countedByPrototype = _true;
  return nodes;
  },
 
  unmark: function(nodes) {
  for (var i = 0, node; node = nodes[i]; i++)
  node._countedByPrototype = undefined;
  return nodes;
  },
 
  // mark each child node with its position (for nth calls)
  // "ofType" flag indicates whether we're indexing for nth-of-type
  // rather than nth-child
  index: function(parentNode, reverse, ofType) {
  parentNode._countedByPrototype = Prototype.emptyFunction;
  if (reverse) {
  for (var nodes = parentNode.childNodes, i = nodes.length - 1, j = 1; i >= 0; i--) {
  var node = nodes[i];
  if (node.nodeType == 1 && (!ofType || node._countedByPrototype)) node.nodeIndex = j++;
  }
  } else {
  for (var i = 0, j = 1, nodes = parentNode.childNodes; node = nodes[i]; i++)
  if (node.nodeType == 1 && (!ofType || node._countedByPrototype)) node.nodeIndex = j++;
  }
  },
 
  // filters out duplicates and extends all nodes
  unique: function(nodes) {
  if (nodes.length == 0) return nodes;
  var results = [], n;
  for (var i = 0, l = nodes.length; i < l; i++)
  if (!(n = nodes[i])._countedByPrototype) {
  n._countedByPrototype = Prototype.emptyFunction;
  results.push(Element.extend(n));
  }
  return Selector.handlers.unmark(results);
  },
 
  // COMBINATOR FUNCTIONS
  descendant: function(nodes) {
  var h = Selector.handlers;
  for (var i = 0, results = [], node; node = nodes[i]; i++)
  h.concat(results, node.getElementsByTagName('*'));
  return results;
  },
 
  child: function(nodes) {
  var h = Selector.handlers;
  for (var i = 0, results = [], node; node = nodes[i]; i++) {
  for (var j = 0, child; child = node.childNodes[j]; j++)
  if (child.nodeType == 1 && child.tagName != '!') results.push(child);
  }
  return results;
  },
 
  adjacent: function(nodes) {
  for (var i = 0, results = [], node; node = nodes[i]; i++) {
  var next = this.nextElementSibling(node);
  if (next) results.push(next);
  }
  return results;
  },
 
  laterSibling: function(nodes) {
  var h = Selector.handlers;
  for (var i = 0, results = [], node; node = nodes[i]; i++)
  h.concat(results, Element.nextSiblings(node));
  return results;
  },
 
  nextElementSibling: function(node) {
  while (node = node.nextSibling)
  if (node.nodeType == 1) return node;
  return null;
  },
 
  previousElementSibling: function(node) {
  while (node = node.previousSibling)
  if (node.nodeType == 1) return node;
  return null;
  },
 
  // TOKEN FUNCTIONS
  tagName: function(nodes, root, tagName, combinator) {
  var uTagName = tagName.toUpperCase();
  var results = [], h = Selector.handlers;
  if (nodes) {
  if (combinator) {
  // fastlane for ordinary descendant combinators
  if (combinator == "descendant") {
  for (var i = 0, node; node = nodes[i]; i++)
  h.concat(results, node.getElementsByTagName(tagName));
  return results;
  } else nodes = this[combinator](nodes);
  if (tagName == "*") return nodes;
  }
  for (var i = 0, node; node = nodes[i]; i++)
  if (node.tagName.toUpperCase() === uTagName) results.push(node);
  return results;
  } else return root.getElementsByTagName(tagName);
  },
 
  id: function(nodes, root, id, combinator) {
  var targetNode = $(id), h = Selector.handlers;
  if (!targetNode) return [];
  if (!nodes && root == document) return [targetNode];
  if (nodes) {
  if (combinator) {
  if (combinator == 'child') {
  for (var i = 0, node; node = nodes[i]; i++)
  if (targetNode.parentNode == node) return [targetNode];
  } else if (combinator == 'descendant') {
  for (var i = 0, node; node = nodes[i]; i++)
  if (Element.descendantOf(targetNode, node)) return [targetNode];
  } else if (combinator == 'adjacent') {
  for (var i = 0, node; node = nodes[i]; i++)
  if (Selector.handlers.previousElementSibling(targetNode) == node)
  return [targetNode];
  } else nodes = h[combinator](nodes);
  }
  for (var i = 0, node; node = nodes[i]; i++)
  if (node == targetNode) return [targetNode];
  return [];
  }
  return (targetNode && Element.descendantOf(targetNode, root)) ? [targetNode] : [];
  },
 
  className: function(nodes, root, className, combinator) {
  if (nodes && combinator) nodes = this[combinator](nodes);
  return Selector.handlers.byClassName(nodes, root, className);
  },
 
  byClassName: function(nodes, root, className) {
  if (!nodes) nodes = Selector.handlers.descendant([root]);
  var needle = ' ' + className + ' ';
  for (var i = 0, results = [], node, nodeClassName; node = nodes[i]; i++) {
  nodeClassName = node.className;
  if (nodeClassName.length == 0) continue;
  if (nodeClassName == className || (' ' + nodeClassName + ' ').include(needle))
  results.push(node);
  }
  return results;
  },
 
  attrPresence: function(nodes, root, attr, combinator) {
  if (!nodes) nodes = root.getElementsByTagName("*");
  if (nodes && combinator) nodes = this[combinator](nodes);
  var results = [];
  for (var i = 0, node; node = nodes[i]; i++)
  if (Element.hasAttribute(node, attr)) results.push(node);
  return results;
  },
 
  attr: function(nodes, root, attr, value, operator, combinator) {
  if (!nodes) nodes = root.getElementsByTagName("*");
  if (nodes && combinator) nodes = this[combinator](nodes);
  var handler = Selector.operators[operator], results = [];
  for (var i = 0, node; node = nodes[i]; i++) {
  var nodeValue = Element.readAttribute(node, attr);
  if (nodeValue === null) continue;
  if (handler(nodeValue, value)) results.push(node);
  }
  return results;
  },
 
  pseudo: function(nodes, name, value, root, combinator) {
  if (nodes && combinator) nodes = this[combinator](nodes);
  if (!nodes) nodes = root.getElementsByTagName("*");
  return Selector.pseudos[name](nodes, value, root);
  }
  },
 
  pseudos: {
  'first-child': function(nodes, value, root) {
  for (var i = 0, results = [], node; node = nodes[i]; i++) {
  if (Selector.handlers.previousElementSibling(node)) continue;
  results.push(node);
  }
  return results;
  },
  'last-child': function(nodes, value, root) {
  for (var i = 0, results = [], node; node = nodes[i]; i++) {
  if (Selector.handlers.nextElementSibling(node)) continue;
  results.push(node);
  }
  return results;
  },
  'only-child': function(nodes, value, root) {
  var h = Selector.handlers;
  for (var i = 0, results = [], node; node = nodes[i]; i++)
  if (!h.previousElementSibling(node) && !h.nextElementSibling(node))
  results.push(node);
  return results;
  },
  'nth-child': function(nodes, formula, root) {
  return Selector.pseudos.nth(nodes, formula, root);
  },
  'nth-last-child': function(nodes, formula, root) {
  return Selector.pseudos.nth(nodes, formula, root, true);
  },
  'nth-of-type': function(nodes, formula, root) {
  return Selector.pseudos.nth(nodes, formula, root, false, true);
  },
  'nth-last-of-type': function(nodes, formula, root) {
  return Selector.pseudos.nth(nodes, formula, root, true, true);
  },
  'first-of-type': function(nodes, formula, root) {
  return Selector.pseudos.nth(nodes, "1", root, false, true);
  },
  'last-of-type': function(nodes, formula, root) {
  return Selector.pseudos.nth(nodes, "1", root, true, true);
  },
  'only-of-type': function(nodes, formula, root) {
  var p = Selector.pseudos;
  return p['last-of-type'](p['first-of-type'](nodes, formula, root), formula, root);
  },
 
  // handles the an+b logic
  getIndices: function(a, b, total) {
  if (a == 0) return b > 0 ? [b] : [];
  return $R(1, total).inject([], function(memo, i) {
  if (0 == (i - b) % a && (i - b) / a >= 0) memo.push(i);
  return memo;
  });
  },
 
  // handles nth(-last)-child, nth(-last)-of-type, and (first|last)-of-type
  nth: function(nodes, formula, root, reverse, ofType) {
  if (nodes.length == 0) return [];
  if (formula == 'even') formula = '2n+0';
  if (formula == 'odd') formula = '2n+1';
  var h = Selector.handlers, results = [], indexed = [], m;
  h.mark(nodes);
  for (var i = 0, node; node = nodes[i]; i++) {
  if (!node.parentNode._countedByPrototype) {
  h.index(node.parentNode, reverse, ofType);
  indexed.push(node.parentNode);
  }
  }
  if (formula.match(/^\d+$/)) { // just a number
  formula = Number(formula);
  for (var i = 0, node; node = nodes[i]; i++)
  if (node.nodeIndex == formula) results.push(node);
  } else if (m = formula.match(/^(-?\d*)?n(([+-])(\d+))?/)) { // an+b
  if (m[1] == "-") m[1] = -1;
  var a = m[1] ? Number(m[1]) : 1;
  var b = m[2] ? Number(m[2]) : 0;
  var indices = Selector.pseudos.getIndices(a, b, nodes.length);
  for (var i = 0, node, l = indices.length; node = nodes[i]; i++) {
  for (var j = 0; j < l; j++)
  if (node.nodeIndex == indices[j]) results.push(node);
  }
  }
  h.unmark(nodes);
  h.unmark(indexed);
  return results;
  },
 
  'empty': function(nodes, value, root) {
  for (var i = 0, results = [], node; node = nodes[i]; i++) {
  // IE treats comments as element nodes
  if (node.tagName == '!' || node.firstChild) continue;
  results.push(node);
  }
  return results;
  },
 
  'not': function(nodes, selector, root) {
  var h = Selector.handlers, selectorType, m;
  var exclusions = new Selector(selector).findElements(root);
  h.mark(exclusions);
  for (var i = 0, results = [], node; node = nodes[i]; i++)
  if (!node._countedByPrototype) results.push(node);
  h.unmark(exclusions);
  return results;
  },
 
  'enabled': function(nodes, value, root) {
  for (var i = 0, results = [], node; node = nodes[i]; i++)
  if (!node.disabled && (!node.type || node.type !== 'hidden'))
  results.push(node);
  return results;
  },
 
  'disabled': function(nodes, value, root) {
  for (var i = 0, results = [], node; node = nodes[i]; i++)
  if (node.disabled) results.push(node);
  return results;
  },
 
  'checked': function(nodes, value, root) {
  for (var i = 0, results = [], node; node = nodes[i]; i++)
  if (node.checked) results.push(node);
  return results;
  }
  },
 
  operators: {
  '=': function(nv, v) { return nv == v; },
  '!=': function(nv, v) { return nv != v; },
  '^=': function(nv, v) { return nv == v || nv && nv.startsWith(v); },
  '$=': function(nv, v) { return nv == v || nv && nv.endsWith(v); },
  '*=': function(nv, v) { return nv == v || nv && nv.include(v); },
  '$=': function(nv, v) { return nv.endsWith(v); },
  '*=': function(nv, v) { return nv.include(v); },
  '~=': function(nv, v) { return (' ' + nv + ' ').include(' ' + v + ' '); },
  '|=': function(nv, v) { return ('-' + (nv || "").toUpperCase() +
  '-').include('-' + (v || "").toUpperCase() + '-'); }
  },
 
  split: function(expression) {
  var expressions = [];
  expression.scan(/(([\w#:.~>+()\s-]+|\*|\[.*?\])+)\s*(,|$)/, function(m) {
  expressions.push(m[1].strip());
  });
  return expressions;
  },
 
  matchElements: function(elements, expression) {
  var matches = $$(expression), h = Selector.handlers;
  h.mark(matches);
  for (var i = 0, results = [], element; element = elements[i]; i++)
  if (element._countedByPrototype) results.push(element);
  h.unmark(matches);
  return results;
  },
 
  findElement: function(elements, expression, index) {
  if (Object.isNumber(expression)) {
  index = expression; expression = false;
  }
  return Selector.matchElements(elements, expression || '*')[index || 0];
  },
 
  findChildElements: function(element, expressions) {
  expressions = Selector.split(expressions.join(','));
  var results = [], h = Selector.handlers;
  for (var i = 0, l = expressions.length, selector; i < l; i++) {
  selector = new Selector(expressions[i].strip());
  h.concat(results, selector.findElements(element));
  }
  return (l > 1) ? h.unique(results) : results;
  }
  });
 
  if (Prototype.Browser.IE) {
  Object.extend(Selector.handlers, {
  // IE returns comment nodes on getElementsByTagName("*").
  // Filter them out.
  concat: function(a, b) {
  for (var i = 0, node; node = b[i]; i++)
  if (node.tagName !== "!") a.push(node);
  return a;
  },
 
  // IE improperly serializes _countedByPrototype in (inner|outer)HTML.
  unmark: function(nodes) {
  for (var i = 0, node; node = nodes[i]; i++)
  node.removeAttribute('_countedByPrototype');
  return nodes;
  }
  });
  }
 
  function $$() {
  return Selector.findChildElements(document, $A(arguments));
  }
  var Form = {
  reset: function(form) {
  $(form).reset();
  return form;
  },
 
  serializeElements: function(elements, options) {
  if (typeof options != 'object') options = { hash: !!options };
  else if (Object.isUndefined(options.hash)) options.hash = true;
  var key, value, submitted = false, submit = options.submit;
 
  var data = elements.inject({ }, function(result, element) {
  if (!element.disabled && element.name) {
  key = element.name; value = $(element).getValue();
  if (value != null && element.type != 'file' && (element.type != 'submit' || (!submitted &&
  submit !== false && (!submit || key == submit) && (submitted = true)))) {
  if (key in result) {
  // a key is already present; construct an array of values
  if (!Object.isArray(result[key])) result[key] = [result[key]];
  result[key].push(value);
  }
  else result[key] = value;
  }
  }
  return result;
  });
 
  return options.hash ? data : Object.toQueryString(data);
  }
  };
 
  Form.Methods = {
  serialize: function(form, options) {
  return Form.serializeElements(Form.getElements(form), options);
  },
 
  getElements: function(form) {
  return $A($(form).getElementsByTagName('*')).inject([],
  function(elements, child) {
  if (Form.Element.Serializers[child.tagName.toLowerCase()])
  elements.push(Element.extend(child));
  return elements;
  }
  );
  },
 
  getInputs: function(form, typeName, name) {
  form = $(form);
  var inputs = form.getElementsByTagName('input');
 
  if (!typeName && !name) return $A(inputs).map(Element.extend);
 
  for (var i = 0, matchingInputs = [], length = inputs.length; i < length; i++) {
  var input = inputs[i];
  if ((typeName && input.type != typeName) || (name && input.name != name))
  continue;
  matchingInputs.push(Element.extend(input));
  }
 
  return matchingInputs;
  },
 
  disable: function(form) {
  form = $(form);
  Form.getElements(form).invoke('disable');
  return form;
  },
 
  enable: function(form) {
  form = $(form);
  Form.getElements(form).invoke('enable');
  return form;
  },
 
  findFirstElement: function(form) {
  var elements = $(form).getElements().findAll(function(element) {
  return 'hidden' != element.type && !element.disabled;
  });
  var firstByIndex = elements.findAll(function(element) {
  return element.hasAttribute('tabIndex') && element.tabIndex >= 0;
  }).sortBy(function(element) { return element.tabIndex }).first();
 
  return firstByIndex ? firstByIndex : elements.find(function(element) {
  return ['input', 'select', 'textarea'].include(element.tagName.toLowerCase());
  });
  },
 
  focusFirstElement: function(form) {
  form = $(form);
  form.findFirstElement().activate();
  return form;
  },
 
  request: function(form, options) {
  form = $(form), options = Object.clone(options || { });
 
  var params = options.parameters, action = form.readAttribute('action') || '';
  if (action.blank()) action = window.location.href;
  options.parameters = form.serialize(true);
 
  if (params) {
  if (Object.isString(params)) params = params.toQueryParams();
  Object.extend(options.parameters, params);
  }
 
  if (form.hasAttribute('method') && !options.method)
  options.method = form.method;
 
  return new Ajax.Request(action, options);
  }
  };
 
  /*--------------------------------------------------------------------------*/
 
  Form.Element = {
  focus: function(element) {
  $(element).focus();
  return element;
  },
 
  select: function(element) {
  $(element).select();
  return element;
  }
  };
 
  Form.Element.Methods = {
  serialize: function(element) {
  element = $(element);
  if (!element.disabled && element.name) {
  var value = element.getValue();
  if (value != undefined) {
  var pair = { };
  pair[element.name] = value;
  return Object.toQueryString(pair);
  }
  }
  return '';
  },
 
  getValue: function(element) {
  element = $(element);
  var method = element.tagName.toLowerCase();
  return Form.Element.Serializers[method](element);
  },
 
  setValue: function(element, value) {
  element = $(element);
  var method = element.tagName.toLowerCase();
  Form.Element.Serializers[method](element, value);
  return element;
  },
 
  clear: function(element) {
  $(element).value = '';
  return element;
  },
 
  present: function(element) {
  return $(element).value != '';
  },
 
  activate: function(element) {
  element = $(element);
  try {
  element.focus();
  if (element.select && (element.tagName.toLowerCase() != 'input' ||
  !['button', 'reset', 'submit'].include(element.type)))
  element.select();
  } catch (e) { }
  return element;
  },
 
  disable: function(element) {
  element = $(element);
  element.disabled = true;
  return element;
  },
 
  enable: function(element) {
  element = $(element);
  element.disabled = false;
  return element;
  }
  };
 
  /*--------------------------------------------------------------------------*/
 
  var Field = Form.Element;
  var $F = Form.Element.Methods.getValue;
 
  /*--------------------------------------------------------------------------*/
 
  Form.Element.Serializers = {
  input: function(element, value) {
  switch (element.type.toLowerCase()) {
  case 'checkbox':
  case 'radio':
  return Form.Element.Serializers.inputSelector(element, value);
  default:
  return Form.Element.Serializers.textarea(element, value);
  }
  },
 
  inputSelector: function(element, value) {
  if (Object.isUndefined(value)) return element.checked ? element.value : null;
  else element.checked = !!value;
  },
 
  textarea: function(element, value) {
  if (Object.isUndefined(value)) return element.value;
  else element.value = value;
  },
 
  select: function(element, value) {
  if (Object.isUndefined(value))
  return this[element.type == 'select-one' ?
  'selectOne' : 'selectMany'](element);
  else {
  var opt, currentValue, single = !Object.isArray(value);
  for (var i = 0, length = element.length; i < length; i++) {
  opt = element.options[i];
  currentValue = this.optionValue(opt);
  if (single) {
  if (currentValue == value) {
  opt.selected = true;
  return;
  }
  }
  else opt.selected = value.include(currentValue);
  }
  }
  },
 
  selectOne: function(element) {
  var index = element.selectedIndex;
  return index >= 0 ? this.optionValue(element.options[index]) : null;
  },
 
  selectMany: function(element) {
  var values, length = element.length;
  if (!length) return null;
 
  for (var i = 0, values = []; i < length; i++) {
  var opt = element.options[i];
  if (opt.selected) values.push(this.optionValue(opt));
  }
  return values;
  },
 
  optionValue: function(opt) {
  // extend element because hasAttribute may not be native
  return Element.extend(opt).hasAttribute('value') ? opt.value : opt.text;
  }
  };
 
  /*--------------------------------------------------------------------------*/
 
  Abstract.TimedObserver = Class.create(PeriodicalExecuter, {
  initialize: function($super, element, frequency, callback) {
  $super(callback, frequency);
  this.element = $(element);
  this.lastValue = this.getValue();
  },
 
  execute: function() {
  var value = this.getValue();
  if (Object.isString(this.lastValue) && Object.isString(value) ?
  this.lastValue != value : String(this.lastValue) != String(value)) {
  this.callback(this.element, value);
  this.lastValue = value;
  }
  }
  });
 
  Form.Element.Observer = Class.create(Abstract.TimedObserver, {
  getValue: function() {
  return Form.Element.getValue(this.element);
  }
  });
 
  Form.Observer = Class.create(Abstract.TimedObserver, {
  getValue: function() {
  return Form.serialize(this.element);
  }
  });
 
  /*--------------------------------------------------------------------------*/
 
  Abstract.EventObserver = Class.create({
  initialize: function(element, callback) {
  this.element = $(element);
  this.callback = callback;
 
  this.lastValue = this.getValue();
  if (this.element.tagName.toLowerCase() == 'form')
  this.registerFormCallbacks();
  else
  this.registerCallback(this.element);
  },
 
  onElementEvent: function() {
  var value = this.getValue();
  if (this.lastValue != value) {
  this.callback(this.element, value);
  this.lastValue = value;
  }
  },
 
  registerFormCallbacks: function() {
  Form.getElements(this.element).each(this.registerCallback, this);
  },
 
  registerCallback: function(element) {
  if (element.type) {
  switch (element.type.toLowerCase()) {
  case 'checkbox':
  case 'radio':
  Event.observe(element, 'click', this.onElementEvent.bind(this));
  break;
  default:
  Event.observe(element, 'change', this.onElementEvent.bind(this));
  break;
  }
  }
  }
  });
 
  Form.Element.EventObserver = Class.create(Abstract.EventObserver, {
  getValue: function() {
  return Form.Element.getValue(this.element);
  }
  });
 
  Form.EventObserver = Class.create(Abstract.EventObserver, {
  getValue: function() {
  return Form.serialize(this.element);
  }
  });
  if (!window.Event) var Event = { };
 
  Object.extend(Event, {
  KEY_BACKSPACE: 8,
  KEY_TAB: 9,
  KEY_RETURN: 13,
  KEY_ESC: 27,
  KEY_LEFT: 37,
  KEY_UP: 38,
  KEY_RIGHT: 39,
  KEY_DOWN: 40,
  KEY_DELETE: 46,
  KEY_HOME: 36,
  KEY_END: 35,
  KEY_PAGEUP: 33,
  KEY_PAGEDOWN: 34,
  KEY_INSERT: 45,
 
  cache: { },
 
  relatedTarget: function(event) {
  var element;
  switch(event.type) {
  case 'mouseover': element = event.fromElement; break;
  case 'mouseout': element = event.toElement; break;
  default: return null;
  }
  return Element.extend(element);
  }
  });
 
  Event.Methods = (function() {
  var isButton;
 
  if (Prototype.Browser.IE) {
  var buttonMap = { 0: 1, 1: 4, 2: 2 };
  isButton = function(event, code) {
  return event.button == buttonMap[code];
  };
 
  } else if (Prototype.Browser.WebKit) {
  isButton = function(event, code) {
  switch (code) {
  case 0: return event.which == 1 && !event.metaKey;
  case 1: return event.which == 1 && event.metaKey;
  default: return false;
  }
  };
 
  } else {
  isButton = function(event, code) {
  return event.which ? (event.which === code + 1) : (event.button === code);
  };
  }
 
  return {
  isLeftClick: function(event) { return isButton(event, 0) },
  isMiddleClick: function(event) { return isButton(event, 1) },
  isRightClick: function(event) { return isButton(event, 2) },
 
  element: function(event) {
  event = Event.extend(event);
 
  var node = event.target,
  type = event.type,
  currentTarget = event.currentTarget;
 
  if (currentTarget && currentTarget.tagName) {
  // Firefox screws up the "click" event when moving between radio buttons
  // via arrow keys. It also screws up the "load" and "error" events on images,
  // reporting the document as the target instead of the original image.
  if (type === 'load' || type === 'error' ||
  (type === 'click' && currentTarget.tagName.toLowerCase() === 'input'
  && currentTarget.type === 'radio'))
  node = currentTarget;
  }
  if (node.nodeType == Node.TEXT_NODE) node = node.parentNode;
  return Element.extend(node);
  },
 
  findElement: function(event, expression) {
  var element = Event.element(event);
  if (!expression) return element;
  var elements = [element].concat(element.ancestors());
  return Selector.findElement(elements, expression, 0);
  },
 
  pointer: function(event) {
  var docElement = document.documentElement,
  body = document.body || { scrollLeft: 0, scrollTop: 0 };
  return {
  x: event.pageX || (event.clientX +
  (docElement.scrollLeft || body.scrollLeft) -
  (docElement.clientLeft || 0)),
  y: event.pageY || (event.clientY +
  (docElement.scrollTop || body.scrollTop) -
  (docElement.clientTop || 0))
  };
  },
 
  pointerX: function(event) { return Event.pointer(event).x },
  pointerY: function(event) { return Event.pointer(event).y },
 
  stop: function(event) {
  Event.extend(event);
  event.preventDefault();
  event.stopPropagation();
  event.stopped = true;
  }
  };
  })();
 
  Event.extend = (function() {
  var methods = Object.keys(Event.Methods).inject({ }, function(m, name) {
  m[name] = Event.Methods[name].methodize();
  return m;
  });
 
  if (Prototype.Browser.IE) {
  Object.extend(methods, {
  stopPropagation: function() { this.cancelBubble = true },
  preventDefault: function() { this.returnValue = false },
  inspect: function() { return "[object Event]" }
  });
 
  return function(event) {
  if (!event) return false;
  if (event._extendedByPrototype) return event;
 
  event._extendedByPrototype = Prototype.emptyFunction;
  var pointer = Event.pointer(event);
  Object.extend(event, {
  target: event.srcElement,
  relatedTarget: Event.relatedTarget(event),
  pageX: pointer.x,
  pageY: pointer.y
  });
  return Object.extend(event, methods);
  };
 
  } else {
  Event.prototype = Event.prototype || document.createEvent("HTMLEvents")['__proto__'];
  Object.extend(Event.prototype, methods);
  return Prototype.K;
  }
  })();
 
  Object.extend(Event, (function() {
  var cache = Event.cache;
 
  function getEventID(element) {
  if (element._prototypeEventID) return element._prototypeEventID[0];
  arguments.callee.id = arguments.callee.id || 1;
  return element._prototypeEventID = [++arguments.callee.id];
  }
 
  function getDOMEventName(eventName) {
  if (eventName && eventName.include(':')) return "dataavailable";
  return eventName;
  }
 
  function getCacheForID(id) {
  return cache[id] = cache[id] || { };
  }
 
  function getWrappersForEventName(id, eventName) {
  var c = getCacheForID(id);
  return c[eventName] = c[eventName] || [];
  }
 
  function createWrapper(element, eventName, handler) {
  var id = getEventID(element);
  var c = getWrappersForEventName(id, eventName);
  if (c.pluck("handler").include(handler)) return false;
 
  var wrapper = function(event) {
  if (!Event || !Event.extend ||
  (event.eventName && event.eventName != eventName))
  return false;
 
  Event.extend(event);
  handler.call(element, event);
  };
 
  wrapper.handler = handler;
  c.push(wrapper);
  return wrapper;
  }
 
  function findWrapper(id, eventName, handler) {
  var c = getWrappersForEventName(id, eventName);
  return c.find(function(wrapper) { return wrapper.handler == handler });
  }
 
  function destroyWrapper(id, eventName, handler) {
  var c = getCacheForID(id);
  if (!c[eventName]) return false;
  c[eventName] = c[eventName].without(findWrapper(id, eventName, handler));
  }
 
  function destroyCache() {
  for (var id in cache)
  for (var eventName in cache[id])
  cache[id][eventName] = null;
  }
 
 
  // Internet Explorer needs to remove event handlers on page unload
  // in order to avoid memory leaks.
  if (window.attachEvent) {
  window.attachEvent("onunload", destroyCache);
  }
 
  // Safari has a dummy event handler on page unload so that it won't
  // use its bfcache. Safari <= 3.1 has an issue with restoring the "document"
  // object when page is returned to via the back button using its bfcache.
  if (Prototype.Browser.WebKit) {
  window.addEventListener('unload', Prototype.emptyFunction, false);
  }
 
  return {
  observe: function(element, eventName, handler) {
  element = $(element);
  var name = getDOMEventName(eventName);
 
  var wrapper = createWrapper(element, eventName, handler);
  if (!wrapper) return element;
 
  if (element.addEventListener) {
  element.addEventListener(name, wrapper, false);
  } else {
  element.attachEvent("on" + name, wrapper);
  }
 
  return element;
  },
 
  stopObserving: function(element, eventName, handler) {
  element = $(element);
  var id = getEventID(element), name = getDOMEventName(eventName);
 
  if (!handler && eventName) {
  getWrappersForEventName(id, eventName).each(function(wrapper) {
  element.stopObserving(eventName, wrapper.handler);
  });
  return element;
 
  } else if (!eventName) {
  Object.keys(getCacheForID(id)).each(function(eventName) {
  element.stopObserving(eventName);
  });
  return element;
  }
 
  var wrapper = findWrapper(id, eventName, handler);
  if (!wrapper) return element;
 
  if (element.removeEventListener) {
  element.removeEventListener(name, wrapper, false);
  } else {
  element.detachEvent("on" + name, wrapper);
  }
 
  destroyWrapper(id, eventName, handler);
 
  return element;
  },
 
  fire: function(element, eventName, memo) {
  element = $(element);
  if (element == document && document.createEvent && !element.dispatchEvent)
  element = document.documentElement;
 
  var event;
  if (document.createEvent) {
  event = document.createEvent("HTMLEvents");
  event.initEvent("dataavailable", true, true);
  } else {
  event = document.createEventObject();
  event.eventType = "ondataavailable";
  }
 
  event.eventName = eventName;
  event.memo = memo || { };
 
  if (document.createEvent) {
  element.dispatchEvent(event);
  } else {
  element.fireEvent(event.eventType, event);
  }
 
  return Event.extend(event);
  }
  };
  })());
 
  Object.extend(Event, Event.Methods);
 
  Element.addMethods({
  fire: Event.fire,
  observe: Event.observe,
  stopObserving: Event.stopObserving
  });
 
  Object.extend(document, {
  fire: Element.Methods.fire.methodize(),
  observe: Element.Methods.observe.methodize(),
  stopObserving: Element.Methods.stopObserving.methodize(),
  loaded: false
  });
 
  (function() {
  /* Support for the DOMContentLoaded event is based on work by Dan Webb,
  Matthias Miller, Dean Edwards and John Resig. */
 
  var timer;
 
  function fireContentLoadedEvent() {
  if (document.loaded) return;
  if (timer) window.clearInterval(timer);
  document.fire("dom:loaded");
  document.loaded = true;
  }
 
  if (document.addEventListener) {
  if (Prototype.Browser.WebKit) {
  timer = window.setInterval(function() {
  if (/loaded|complete/.test(document.readyState))
  fireContentLoadedEvent();
  }, 0);
 
  Event.observe(window, "load", fireContentLoadedEvent);
 
  } else {
  document.addEventListener("DOMContentLoaded",
  fireContentLoadedEvent, false);
  }
 
  } else {
  document.write("<script id=__onDOMContentLoaded defer src=//:><\/script>");
  $("__onDOMContentLoaded").onreadystatechange = function() {
  if (this.readyState == "complete") {
  this.onreadystatechange = null;
  fireContentLoadedEvent();
  }
  };
  }
  })();
  /*------------------------------- DEPRECATED -------------------------------*/
 
  Hash.toQueryString = Object.toQueryString;
 
  var Toggle = { display: Element.toggle };
 
  Element.Methods.childOf = Element.Methods.descendantOf;
 
  var Insertion = {
  Before: function(element, content) {
  return Element.insert(element, {before:content});
  },
 
  Top: function(element, content) {
  return Element.insert(element, {top:content});
  },
 
  Bottom: function(element, content) {
  return Element.insert(element, {bottom:content});
  },
 
  After: function(element, content) {
  return Element.insert(element, {after:content});
  }
  };
 
  var $continue = new Error('"throw $continue" is deprecated, use "return" instead');
 
  // This should be moved to script.aculo.us; notice the deprecated methods
  // further below, that map to the newer Element methods.
  var Position = {
  // set to true if needed, warning: firefox performance problems
  // NOT neeeded for page scrolling, only if draggable contained in
  // scrollable elements
  includeScrollOffsets: false,
 
  // must be called before calling withinIncludingScrolloffset, every time the
  // page is scrolled
  prepare: function() {
  this.deltaX = window.pageXOffset
  || document.documentElement.scrollLeft
  || document.body.scrollLeft
  || 0;
  this.deltaY = window.pageYOffset
  || document.documentElement.scrollTop
  || document.body.scrollTop
  || 0;
  },
 
  // caches x/y coordinate pair to use with overlap
  within: function(element, x, y) {
  if (this.includeScrollOffsets)
  return this.withinIncludingScrolloffsets(element, x, y);
  this.xcomp = x;
  this.ycomp = y;
  this.offset = Element.cumulativeOffset(element);
 
  return (y >= this.offset[1] &&
  y < this.offset[1] + element.offsetHeight &&
  x >= this.offset[0] &&
  x < this.offset[0] + element.offsetWidth);
  },
 
  withinIncludingScrolloffsets: function(element, x, y) {
  var offsetcache = Element.cumulativeScrollOffset(element);
 
  this.xcomp = x + offsetcache[0] - this.deltaX;
  this.ycomp = y + offsetcache[1] - this.deltaY;
  this.offset = Element.cumulativeOffset(element);
 
  return (this.ycomp >= this.offset[1] &&
  this.ycomp < this.offset[1] + element.offsetHeight &&
  this.xcomp >= this.offset[0] &&
  this.xcomp < this.offset[0] + element.offsetWidth);
  },
 
  // within must be called directly before
  overlap: function(mode, element) {
  if (!mode) return 0;
  if (mode == 'vertical')
  return ((this.offset[1] + element.offsetHeight) - this.ycomp) /
  element.offsetHeight;
  if (mode == 'horizontal')
  return ((this.offset[0] + element.offsetWidth) - this.xcomp) /
  element.offsetWidth;
  },
 
  // Deprecation layer -- use newer Element methods now (1.5.2).
 
  cumulativeOffset: Element.Methods.cumulativeOffset,
 
  positionedOffset: Element.Methods.positionedOffset,
 
  absolutize: function(element) {
  Position.prepare();
  return Element.absolutize(element);
  },
 
  relativize: function(element) {
  Position.prepare();
  return Element.relativize(element);
  },
 
  realOffset: Element.Methods.cumulativeScrollOffset,
 
  offsetParent: Element.Methods.getOffsetParent,
 
  page: Element.Methods.viewportOffset,
 
  clone: function(source, target, options) {
  options = options || { };
  return Element.clonePosition(target, source, options);
  }
  };
 
  /*--------------------------------------------------------------------------*/
 
  if (!document.getElementsByClassName) document.getElementsByClassName = function(instanceMethods){
  function iter(name) {
  return name.blank() ? null : "[contains(concat(' ', @class, ' '), ' " + name + " ')]";
  }
 
  instanceMethods.getElementsByClassName = Prototype.BrowserFeatures.XPath ?
  function(element, className) {
  className = className.toString().strip();
  var cond = /\s/.test(className) ? $w(className).map(iter).join('') : iter(className);
  return cond ? document._getElementsByXPath('.//*' + cond, element) : [];
  } : function(element, className) {
  className = className.toString().strip();
  var elements = [], classNames = (/\s/.test(className) ? $w(className) : null);
  if (!classNames && !className) return elements;
 
  var nodes = $(element).getElementsByTagName('*');
  className = ' ' + className + ' ';
 
  for (var i = 0, child, cn; child = nodes[i]; i++) {
  if (child.className && (cn = ' ' + child.className + ' ') && (cn.include(className) ||
  (classNames && classNames.all(function(name) {
  return !name.toString().blank() && cn.include(' ' + name + ' ');
  }))))
  elements.push(Element.extend(child));
  }
  return elements;
  };
 
  return function(className, parentElement) {
  return $(parentElement || document.body).getElementsByClassName(className);
  };
  }(Element.Methods);
 
  /*--------------------------------------------------------------------------*/
 
  Element.ClassNames = Class.create();
  Element.ClassNames.prototype = {
  initialize: function(element) {
  this.element = $(element);
  },
 
  _each: function(iterator) {
  this.element.className.split(/\s+/).select(function(name) {
  return name.length > 0;
  })._each(iterator);
  },
 
  set: function(className) {
  this.element.className = className;
  },
 
  add: function(classNameToAdd) {
  if (this.include(classNameToAdd)) return;
  this.set($A(this).concat(classNameToAdd).join(' '));
  },
 
  remove: function(classNameToRemove) {
  if (!this.include(classNameToRemove)) return;
  this.set($A(this).without(classNameToRemove).join(' '));
  },
 
  toString: function() {
  return $A(this).join(' ');
  }
  };
 
  Object.extend(Element.ClassNames.prototype, Enumerable);
 
  /*--------------------------------------------------------------------------*/
 
  Element.addMethods();
  // Underscore.js 1.1.7
  // (c) 2011 Jeremy Ashkenas, DocumentCloud Inc.
  // Underscore is freely distributable under the MIT license.
  // Portions of Underscore are inspired or borrowed from Prototype,
  // Oliver Steele's Functional, and John Resig's Micro-Templating.
  // For all details and documentation:
  // http://documentcloud.github.com/underscore
  (function(){var p=this,C=p._,m={},i=Array.prototype,n=Object.prototype,f=i.slice,D=i.unshift,E=n.toString,l=n.hasOwnProperty,s=i.forEach,t=i.map,u=i.reduce,v=i.reduceRight,w=i.filter,x=i.every,y=i.some,o=i.indexOf,z=i.lastIndexOf;n=Array.isArray;var F=Object.keys,q=Function.prototype.bind,b=function(a){return new j(a)};typeof module!=="undefined"&&module.exports?(module.exports=b,b._=b):p._=b;b.VERSION="1.1.7";var h=b.each=b.forEach=function(a,c,b){if(a!=null)if(s&&a.forEach===s)a.forEach(c,b);else if(a.length===
  +a.length)for(var e=0,k=a.length;e<k;e++){if(e in a&&c.call(b,a[e],e,a)===m)break}else for(e in a)if(l.call(a,e)&&c.call(b,a[e],e,a)===m)break};b.map=function(a,c,b){var e=[];if(a==null)return e;if(t&&a.map===t)return a.map(c,b);h(a,function(a,g,G){e[e.length]=c.call(b,a,g,G)});return e};b.reduce=b.foldl=b.inject=function(a,c,d,e){var k=d!==void 0;a==null&&(a=[]);if(u&&a.reduce===u)return e&&(c=b.bind(c,e)),k?a.reduce(c,d):a.reduce(c);h(a,function(a,b,f){k?d=c.call(e,d,a,b,f):(d=a,k=!0)});if(!k)throw new TypeError("Reduce of empty array with no initial value");
  return d};b.reduceRight=b.foldr=function(a,c,d,e){a==null&&(a=[]);if(v&&a.reduceRight===v)return e&&(c=b.bind(c,e)),d!==void 0?a.reduceRight(c,d):a.reduceRight(c);a=(b.isArray(a)?a.slice():b.toArray(a)).reverse();return b.reduce(a,c,d,e)};b.find=b.detect=function(a,c,b){var e;A(a,function(a,g,f){if(c.call(b,a,g,f))return e=a,!0});return e};b.filter=b.select=function(a,c,b){var e=[];if(a==null)return e;if(w&&a.filter===w)return a.filter(c,b);h(a,function(a,g,f){c.call(b,a,g,f)&&(e[e.length]=a)});return e};
  b.reject=function(a,c,b){var e=[];if(a==null)return e;h(a,function(a,g,f){c.call(b,a,g,f)||(e[e.length]=a)});return e};b.every=b.all=function(a,c,b){var e=!0;if(a==null)return e;if(x&&a.every===x)return a.every(c,b);h(a,function(a,g,f){if(!(e=e&&c.call(b,a,g,f)))return m});return e};var A=b.some=b.any=function(a,c,d){c=c||b.identity;var e=!1;if(a==null)return e;if(y&&a.some===y)return a.some(c,d);h(a,function(a,b,f){if(e|=c.call(d,a,b,f))return m});return!!e};b.include=b.contains=function(a,c){var b=
  !1;if(a==null)return b;if(o&&a.indexOf===o)return a.indexOf(c)!=-1;A(a,function(a){if(b=a===c)return!0});return b};b.invoke=function(a,c){var d=f.call(arguments,2);return b.map(a,function(a){return(c.call?c||a:a[c]).apply(a,d)})};b.pluck=function(a,c){return b.map(a,function(a){return a[c]})};b.max=function(a,c,d){if(!c&&b.isArray(a))return Math.max.apply(Math,a);var e={computed:-Infinity};h(a,function(a,b,f){b=c?c.call(d,a,b,f):a;b>=e.computed&&(e={value:a,computed:b})});return e.value};b.min=function(a,
  c,d){if(!c&&b.isArray(a))return Math.min.apply(Math,a);var e={computed:Infinity};h(a,function(a,b,f){b=c?c.call(d,a,b,f):a;b<e.computed&&(e={value:a,computed:b})});return e.value};b.sortBy=function(a,c,d){return b.pluck(b.map(a,function(a,b,f){return{value:a,criteria:c.call(d,a,b,f)}}).sort(function(a,b){var c=a.criteria,d=b.criteria;return c<d?-1:c>d?1:0}),"value")};b.groupBy=function(a,b){var d={};h(a,function(a,f){var g=b(a,f);(d[g]||(d[g]=[])).push(a)});return d};b.sortedIndex=function(a,c,d){d||
  (d=b.identity);for(var e=0,f=a.length;e<f;){var g=e+f>>1;d(a[g])<d(c)?e=g+1:f=g}return e};b.toArray=function(a){if(!a)return[];if(a.toArray)return a.toArray();if(b.isArray(a))return f.call(a);if(b.isArguments(a))return f.call(a);return b.values(a)};b.size=function(a){return b.toArray(a).length};b.first=b.head=function(a,b,d){return b!=null&&!d?f.call(a,0,b):a[0]};b.rest=b.tail=function(a,b,d){return f.call(a,b==null||d?1:b)};b.last=function(a){return a[a.length-1]};b.compact=function(a){return b.filter(a,
  function(a){return!!a})};b.flatten=function(a){return b.reduce(a,function(a,d){if(b.isArray(d))return a.concat(b.flatten(d));a[a.length]=d;return a},[])};b.without=function(a){return b.difference(a,f.call(arguments,1))};b.uniq=b.unique=function(a,c){return b.reduce(a,function(a,e,f){if(0==f||(c===!0?b.last(a)!=e:!b.include(a,e)))a[a.length]=e;return a},[])};b.union=function(){return b.uniq(b.flatten(arguments))};b.intersection=b.intersect=function(a){var c=f.call(arguments,1);return b.filter(b.uniq(a),
  function(a){return b.every(c,function(c){return b.indexOf(c,a)>=0})})};b.difference=function(a,c){return b.filter(a,function(a){return!b.include(c,a)})};b.zip=function(){for(var a=f.call(arguments),c=b.max(b.pluck(a,"length")),d=Array(c),e=0;e<c;e++)d[e]=b.pluck(a,""+e);return d};b.indexOf=function(a,c,d){if(a==null)return-1;var e;if(d)return d=b.sortedIndex(a,c),a[d]===c?d:-1;if(o&&a.indexOf===o)return a.indexOf(c);d=0;for(e=a.length;d<e;d++)if(a[d]===c)return d;return-1};b.lastIndexOf=function(a,
  b){if(a==null)return-1;if(z&&a.lastIndexOf===z)return a.lastIndexOf(b);for(var d=a.length;d--;)if(a[d]===b)return d;return-1};b.range=function(a,b,d){arguments.length<=1&&(b=a||0,a=0);d=arguments[2]||1;for(var e=Math.max(Math.ceil((b-a)/d),0),f=0,g=Array(e);f<e;)g[f++]=a,a+=d;return g};b.bind=function(a,b){if(a.bind===q&&q)return q.apply(a,f.call(arguments,1));var d=f.call(arguments,2);return function(){return a.apply(b,d.concat(f.call(arguments)))}};b.bindAll=function(a){var c=f.call(arguments,1);
  c.length==0&&(c=b.functions(a));h(c,function(c){a[c]=b.bind(a[c],a)});return a};b.memoize=function(a,c){var d={};c||(c=b.identity);return function(){var b=c.apply(this,arguments);return l.call(d,b)?d[b]:d[b]=a.apply(this,arguments)}};b.delay=function(a,b){var d=f.call(arguments,2);return setTimeout(function(){return a.apply(a,d)},b)};b.defer=function(a){return b.delay.apply(b,[a,1].concat(f.call(arguments,1)))};var B=function(a,b,d){var e;return function(){var f=this,g=arguments,h=function(){e=null;
  a.apply(f,g)};d&&clearTimeout(e);if(d||!e)e=setTimeout(h,b)}};b.throttle=function(a,b){return B(a,b,!1)};b.debounce=function(a,b){return B(a,b,!0)};b.once=function(a){var b=!1,d;return function(){if(b)return d;b=!0;return d=a.apply(this,arguments)}};b.wrap=function(a,b){return function(){var d=[a].concat(f.call(arguments));return b.apply(this,d)}};b.compose=function(){var a=f.call(arguments);return function(){for(var b=f.call(arguments),d=a.length-1;d>=0;d--)b=[a[d].apply(this,b)];return b[0]}};b.after=
  function(a,b){return function(){if(--a<1)return b.apply(this,arguments)}};b.keys=F||function(a){if(a!==Object(a))throw new TypeError("Invalid object");var b=[],d;for(d in a)l.call(a,d)&&(b[b.length]=d);return b};b.values=function(a){return b.map(a,b.identity)};b.functions=b.methods=function(a){var c=[],d;for(d in a)b.isFunction(a[d])&&c.push(d);return c.sort()};b.extend=function(a){h(f.call(arguments,1),function(b){for(var d in b)b[d]!==void 0&&(a[d]=b[d])});return a};b.defaults=function(a){h(f.call(arguments,
  1),function(b){for(var d in b)a[d]==null&&(a[d]=b[d])});return a};b.clone=function(a){return b.isArray(a)?a.slice():b.extend({},a)};b.tap=function(a,b){b(a);return a};b.isEqual=function(a,c){if(a===c)return!0;var d=typeof a;if(d!=typeof c)return!1;if(a==c)return!0;if(!a&&c||a&&!c)return!1;if(a._chain)a=a._wrapped;if(c._chain)c=c._wrapped;if(a.isEqual)return a.isEqual(c);if(c.isEqual)return c.isEqual(a);if(b.isDate(a)&&b.isDate(c))return a.getTime()===c.getTime();if(b.isNaN(a)&&b.isNaN(c))return!1;
  if(b.isRegExp(a)&&b.isRegExp(c))return a.source===c.source&&a.global===c.global&&a.ignoreCase===c.ignoreCase&&a.multiline===c.multiline;if(d!=="object")return!1;if(a.length&&a.length!==c.length)return!1;d=b.keys(a);var e=b.keys(c);if(d.length!=e.length)return!1;for(var f in a)if(!(f in c)||!b.isEqual(a[f],c[f]))return!1;return!0};b.isEmpty=function(a){if(b.isArray(a)||b.isString(a))return a.length===0;for(var c in a)if(l.call(a,c))return!1;return!0};b.isElement=function(a){return!!(a&&a.nodeType==
  1)};b.isArray=n||function(a){return E.call(a)==="[object Array]"};b.isObject=function(a){return a===Object(a)};b.isArguments=function(a){return!(!a||!l.call(a,"callee"))};b.isFunction=function(a){return!(!a||!a.constructor||!a.call||!a.apply)};b.isString=function(a){return!!(a===""||a&&a.charCodeAt&&a.substr)};b.isNumber=function(a){return!!(a===0||a&&a.toExponential&&a.toFixed)};b.isNaN=function(a){return a!==a};b.isBoolean=function(a){return a===!0||a===!1};b.isDate=function(a){return!(!a||!a.getTimezoneOffset||
  !a.setUTCFullYear)};b.isRegExp=function(a){return!(!a||!a.test||!a.exec||!(a.ignoreCase||a.ignoreCase===!1))};b.isNull=function(a){return a===null};b.isUndefined=function(a){return a===void 0};b.noConflict=function(){p._=C;return this};b.identity=function(a){return a};b.times=function(a,b,d){for(var e=0;e<a;e++)b.call(d,e)};b.mixin=function(a){h(b.functions(a),function(c){H(c,b[c]=a[c])})};var I=0;b.uniqueId=function(a){var b=I++;return a?a+b:b};b.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g};
  b.template=function(a,c){var d=b.templateSettings;d="var __p=[],print=function(){__p.push.apply(__p,arguments);};with(obj||{}){__p.push('"+a.replace(/\\/g,"\\\\").replace(/'/g,"\\'").replace(d.interpolate,function(a,b){return"',"+b.replace(/\\'/g,"'")+",'"}).replace(d.evaluate||null,function(a,b){return"');"+b.replace(/\\'/g,"'").replace(/[\r\n\t]/g," ")+"__p.push('"}).replace(/\r/g,"\\r").replace(/\n/g,"\\n").replace(/\t/g,"\\t")+"');}return __p.join('');";d=new Function("obj",d);return c?d(c):d};
  var j=function(a){this._wrapped=a};b.prototype=j.prototype;var r=function(a,c){return c?b(a).chain():a},H=function(a,c){j.prototype[a]=function(){var a=f.call(arguments);D.call(a,this._wrapped);return r(c.apply(b,a),this._chain)}};b.mixin(b);h(["pop","push","reverse","shift","sort","splice","unshift"],function(a){var b=i[a];j.prototype[a]=function(){b.apply(this._wrapped,arguments);return r(this._wrapped,this._chain)}});h(["concat","join","slice"],function(a){var b=i[a];j.prototype[a]=function(){return r(b.apply(this._wrapped,
  arguments),this._chain)}});j.prototype.chain=function(){this._chain=!0;return this};j.prototype.value=function(){return this._wrapped}})();
 
  // Underscore.js 1.1.7
  // (c) 2011 Jeremy Ashkenas, DocumentCloud Inc.
  // Underscore is freely distributable under the MIT license.
  // Portions of Underscore are inspired or borrowed from Prototype,
  // Oliver Steele's Functional, and John Resig's Micro-Templating.
  // For all details and documentation:
  // http://documentcloud.github.com/underscore
 
  (function() {
 
  // Baseline setup
  // --------------
 
  // Establish the root object, `window` in the browser, or `global` on the server.
  var root = this;
 
  // Save the previous value of the `_` variable.
  var previousUnderscore = root._;
 
  // Establish the object that gets returned to break out of a loop iteration.
  var breaker = {};
 
  // Save bytes in the minified (but not gzipped) version:
  var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype;
 
  // Create quick reference variables for speed access to core prototypes.
  var slice = ArrayProto.slice,
  unshift = ArrayProto.unshift,
  toString = ObjProto.toString,
  hasOwnProperty = ObjProto.hasOwnProperty;
 
  // All **ECMAScript 5** native function implementations that we hope to use
  // are declared here.
  var
  nativeForEach = ArrayProto.forEach,
  nativeMap = ArrayProto.map,
  nativeReduce = ArrayProto.reduce,
  nativeReduceRight = ArrayProto.reduceRight,
  nativeFilter = ArrayProto.filter,
  nativeEvery = ArrayProto.every,
  nativeSome = ArrayProto.some,
  nativeIndexOf = ArrayProto.indexOf,
  nativeLastIndexOf = ArrayProto.lastIndexOf,
  nativeIsArray = Array.isArray,
  nativeKeys = Object.keys,
  nativeBind = FuncProto.bind;
 
  // Create a safe reference to the Underscore object for use below.
  var _ = function(obj) { return new wrapper(obj); };
 
  // Export the Underscore object for **CommonJS**, with backwards-compatibility
  // for the old `require()` API. If we're not in CommonJS, add `_` to the
  // global object.
  if (typeof module !== 'undefined' && module.exports) {
  module.exports = _;
  _._ = _;
  } else {
  // Exported as a string, for Closure Compiler "advanced" mode.
  root['_'] = _;
  }
 
  // Current version.
  _.VERSION = '1.1.7';
 
  // Collection Functions
  // --------------------
 
  // The cornerstone, an `each` implementation, aka `forEach`.
  // Handles objects with the built-in `forEach`, arrays, and raw objects.
  // Delegates to **ECMAScript 5**'s native `forEach` if available.
  var each = _.each = _.forEach = function(obj, iterator, context) {
  if (obj == null) return;
  if (nativeForEach && obj.forEach === nativeForEach) {
  obj.forEach(iterator, context);
  } else if (obj.length === +obj.length) {
  for (var i = 0, l = obj.length; i < l; i++) {
  if (i in obj && iterator.call(context, obj[i], i, obj) === breaker) return;
  }
  } else {
  for (var key in obj) {
  if (hasOwnProperty.call(obj, key)) {
  if (iterator.call(context, obj[key], key, obj) === breaker) return;
  }
  }
  }
  };
 
  // Return the results of applying the iterator to each element.
  // Delegates to **ECMAScript 5**'s native `map` if available.
  _.map = function(obj, iterator, context) {
  var results = [];
  if (obj == null) return results;
  if (nativeMap && obj.map === nativeMap) return obj.map(iterator, context);
  each(obj, function(value, index, list) {
  results[results.length] = iterator.call(context, value, index, list);
  });
  return results;
  };
 
  // **Reduce** builds up a single result from a list of values, aka `inject`,
  // or `foldl`. Delegates to **ECMAScript 5**'s native `reduce` if available.
  _.reduce = _.foldl = _.inject = function(obj, iterator, memo, context) {
  var initial = memo !== void 0;
  if (obj == null) obj = [];
  if (nativeReduce && obj.reduce === nativeReduce) {
  if (context) iterator = _.bind(iterator, context);
  return initial ? obj.reduce(iterator, memo) : obj.reduce(iterator);
  }
  each(obj, function(value, index, list) {
  if (!initial) {
  memo = value;
  initial = true;
  } else {
  memo = iterator.call(context, memo, value, index, list);
  }
  });
  if (!initial) throw new TypeError("Reduce of empty array with no initial value");
  return memo;
  };
 
  // The right-associative version of reduce, also known as `foldr`.
  // Delegates to **ECMAScript 5**'s native `reduceRight` if available.
  _.reduceRight = _.foldr = function(obj, iterator, memo, context) {
  if (obj == null) obj = [];
  if (nativeReduceRight && obj.reduceRight === nativeReduceRight) {
  if (context) iterator = _.bind(iterator, context);
  return memo !== void 0 ? obj.reduceRight(iterator, memo) : obj.reduceRight(iterator);
  }
  var reversed = (_.isArray(obj) ? obj.slice() : _.toArray(obj)).reverse();
  return _.reduce(reversed, iterator, memo, context);
  };
 
  // Return the first value which passes a truth test. Aliased as `detect`.
  _.find = _.detect = function(obj, iterator, context) {
  var result;
  any(obj, function(value, index, list) {
  if (iterator.call(context, value, index, list)) {
  result = value;
  return true;
  }
  });
  return result;
  };
 
  // Return all the elements that pass a truth test.
  // Delegates to **ECMAScript 5**'s native `filter` if available.
  // Aliased as `select`.
  _.filter = _.select = function(obj, iterator, context) {
  var results = [];
  if (obj == null) return results;
  if (nativeFilter && obj.filter === nativeFilter) return obj.filter(iterator, context);
  each(obj, function(value, index, list) {
  if (iterator.call(context, value, index, list)) results[results.length] = value;
  });
  return results;
  };
 
  // Return all the elements for which a truth test fails.
  _.reject = function(obj, iterator, context) {
  var results = [];
  if (obj == null) return results;
  each(obj, function(value, index, list) {
  if (!iterator.call(context, value, index, list)) results[results.length] = value;
  });
  return results;
  };
 
  // Determine whether all of the elements match a truth test.
  // Delegates to **ECMAScript 5**'s native `every` if available.
  // Aliased as `all`.
  _.every = _.all = function(obj, iterator, context) {
  var result = true;
  if (obj == null) return result;
  if (nativeEvery && obj.every === nativeEvery) return obj.every(iterator, context);
  each(obj, function(value, index, list) {
  if (!(result = result && iterator.call(context, value, index, list))) return breaker;
  });
  return result;
  };
 
  // Determine if at least one element in the object matches a truth test.
  // Delegates to **ECMAScript 5**'s native `some` if available.
  // Aliased as `any`.
  var any = _.some = _.any = function(obj, iterator, context) {
  iterator = iterator || _.identity;
  var result = false;
  if (obj == null) return result;
  if (nativeSome && obj.some === nativeSome) return obj.some(iterator, context);
  each(obj, function(value, index, list) {
  if (result |= iterator.call(context, value, index, list)) return breaker;
  });
  return !!result;
  };
 
  // Determine if a given value is included in the array or object using `===`.
  // Aliased as `contains`.
  _.include = _.contains = function(obj, target) {
  var found = false;
  if (obj == null) return found;
  if (nativeIndexOf && obj.indexOf === nativeIndexOf) return obj.indexOf(target) != -1;
  any(obj, function(value) {
  if (found = value === target) return true;
  });
  return found;
  };
 
  // Invoke a method (with arguments) on every item in a collection.
  _.invoke = function(obj, method) {
  var args = slice.call(arguments, 2);
  return _.map(obj, function(value) {
  return (method.call ? method || value : value[method]).apply(value, args);
  });
  };
 
  // Convenience version of a common use case of `map`: fetching a property.
  _.pluck = function(obj, key) {
  return _.map(obj, function(value){ return value[key]; });
  };
 
  // Return the maximum element or (element-based computation).
  _.max = function(obj, iterator, context) {
  if (!iterator && _.isArray(obj)) return Math.max.apply(Math, obj);
  var result = {computed : -Infinity};
  each(obj, function(value, index, list) {
  var computed = iterator ? iterator.call(context, value, index, list) : value;
  computed >= result.computed && (result = {value : value, computed : computed});
  });
  return result.value;
  };
 
  // Return the minimum element (or element-based computation).
  _.min = function(obj, iterator, context) {
  if (!iterator && _.isArray(obj)) return Math.min.apply(Math, obj);
  var result = {computed : Infinity};
  each(obj, function(value, index, list) {
  var computed = iterator ? iterator.call(context, value, index, list) : value;
  computed < result.computed && (result = {value : value, computed : computed});
  });
  return result.value;
  };
 
  // Sort the object's values by a criterion produced by an iterator.
  _.sortBy = function(obj, iterator, context) {
  return _.pluck(_.map(obj, function(value, index, list) {
  return {
  value : value,
  criteria : iterator.call(context, value, index, list)
  };
  }).sort(function(left, right) {
  var a = left.criteria, b = right.criteria;
  return a < b ? -1 : a > b ? 1 : 0;
  }), 'value');
  };
 
  // Groups the object's values by a criterion produced by an iterator
  _.groupBy = function(obj, iterator) {
  var result = {};
  each(obj, function(value, index) {
  var key = iterator(value, index);
  (result[key] || (result[key] = [])).push(value);
  });
  return result;
  };
 
  // Use a comparator function to figure out at what index an object should
  // be inserted so as to maintain order. Uses binary search.
  _.sortedIndex = function(array, obj, iterator) {
  iterator || (iterator = _.identity);
  var low = 0, high = array.length;
  while (low < high) {
  var mid = (low + high) >> 1;
  iterator(array[mid]) < iterator(obj) ? low = mid + 1 : high = mid;
  }
  return low;
  };
 
  // Safely convert anything iterable into a real, live array.
  _.toArray = function(iterable) {
  if (!iterable) return [];
  if (iterable.toArray) return iterable.toArray();
  if (_.isArray(iterable)) return slice.call(iterable);
  if (_.isArguments(iterable)) return slice.call(iterable);
  return _.values(iterable);
  };
 
  // Return the number of elements in an object.
  _.size = function(obj) {
  return _.toArray(obj).length;
  };
 
  // Array Functions
  // ---------------
 
  // Get the first element of an array. Passing **n** will return the first N
  // values in the array. Aliased as `head`. The **guard** check allows it to work
  // with `_.map`.
  _.first = _.head = function(array, n, guard) {
  return (n != null) && !guard ? slice.call(array, 0, n) : array[0];
  };
 
  // Returns everything but the first entry of the array. Aliased as `tail`.
  // Especially useful on the arguments object. Passing an **index** will return
  // the rest of the values in the array from that index onward. The **guard**
  // check allows it to work with `_.map`.
  _.rest = _.tail = function(array, index, guard) {
  return slice.call(array, (index == null) || guard ? 1 : index);
  };
 
  // Get the last element of an array.
  _.last = function(array) {
  return array[array.length - 1];
  };
 
  // Trim out all falsy values from an array.
  _.compact = function(array) {
  return _.filter(array, function(value){ return !!value; });
  };
 
  // Return a completely flattened version of an array.
  _.flatten = function(array) {
  return _.reduce(array, function(memo, value) {
  if (_.isArray(value)) return memo.concat(_.flatten(value));
  memo[memo.length] = value;
  return memo;
  }, []);
  };
 
  // Return a version of the array that does not contain the specified value(s).
  _.without = function(array) {
  return _.difference(array, slice.call(arguments, 1));
  };
 
  // Produce a duplicate-free version of the array. If the array has already
  // been sorted, you have the option of using a faster algorithm.
  // Aliased as `unique`.
  _.uniq = _.unique = function(array, isSorted) {
  return _.reduce(array, function(memo, el, i) {
  if (0 == i || (isSorted === true ? _.last(memo) != el : !_.include(memo, el))) memo[memo.length] = el;
  return memo;
  }, []);
  };
 
  // Produce an array that contains the union: each distinct element from all of
  // the passed-in arrays.
  _.union = function() {
  return _.uniq(_.flatten(arguments));
  };
 
  // Produce an array that contains every item shared between all the
  // passed-in arrays. (Aliased as "intersect" for back-compat.)
  _.intersection = _.intersect = function(array) {
  var rest = slice.call(arguments, 1);
  return _.filter(_.uniq(array), function(item) {
  return _.every(rest, function(other) {
  return _.indexOf(other, item) >= 0;
  });
  });
  };
 
  // Take the difference between one array and another.
  // Only the elements present in just the first array will remain.
  _.difference = function(array, other) {
  return _.filter(array, function(value){ return !_.include(other, value); });
  };
 
  // Zip together multiple lists into a single array -- elements that share
  // an index go together.
  _.zip = function() {
  var args = slice.call(arguments);
  var length = _.max(_.pluck(args, 'length'));
  var results = new Array(length);
  for (var i = 0; i < length; i++) results[i] = _.pluck(args, "" + i);
  return results;
  };
 
  // If the browser doesn't supply us with indexOf (I'm looking at you, **MSIE**),
  // we need this function. Return the position of the first occurrence of an
  // item in an array, or -1 if the item is not included in the array.
  // Delegates to **ECMAScript 5**'s native `indexOf` if available.
  // If the array is large and already in sort order, pass `true`
  // for **isSorted** to use binary search.
  _.indexOf = function(array, item, isSorted) {
  if (array == null) return -1;
  var i, l;
  if (isSorted) {
  i = _.sortedIndex(array, item);
  return array[i] === item ? i : -1;
  }
  if (nativeIndexOf && array.indexOf === nativeIndexOf) return array.indexOf(item);
  for (i = 0, l = array.length; i < l; i++) if (array[i] === item) return i;
  return -1;
  };
 
 
  // Delegates to **ECMAScript 5**'s native `lastIndexOf` if available.
  _.lastIndexOf = function(array, item) {
  if (array == null) return -1;
  if (nativeLastIndexOf && array.lastIndexOf === nativeLastIndexOf) return array.lastIndexOf(item);
  var i = array.length;
  while (i--) if (array[i] === item) return i;
  return -1;
  };
 
  // Generate an integer Array containing an arithmetic progression. A port of
  // the native Python `range()` function. See
  // [the Python documentation](http://docs.python.org/library/functions.html#range).
  _.range = function(start, stop, step) {
  if (arguments.length <= 1) {
  stop = start || 0;
  start = 0;
  }
  step = arguments[2] || 1;
 
  var len = Math.max(Math.ceil((stop - start) / step), 0);
  var idx = 0;
  var range = new Array(len);
 
  while(idx < len) {
  range[idx++] = start;
  start += step;
  }
 
  return range;
  };
 
  // Function (ahem) Functions
  // ------------------
 
  // Create a function bound to a given object (assigning `this`, and arguments,
  // optionally). Binding with arguments is also known as `curry`.
  // Delegates to **ECMAScript 5**'s native `Function.bind` if available.
  // We check for `func.bind` first, to fail fast when `func` is undefined.
  _.bind = function(func, obj) {
  if (func.bind === nativeBind && nativeBind) return nativeBind.apply(func, slice.call(arguments, 1));
  var args = slice.call(arguments, 2);
  return function() {
  return func.apply(obj, args.concat(slice.call(arguments)));
  };
  };
 
  // Bind all of an object's methods to that object. Useful for ensuring that
  // all callbacks defined on an object belong to it.
  _.bindAll = function(obj) {
  var funcs = slice.call(arguments, 1);
  if (funcs.length == 0) funcs = _.functions(obj);
  each(funcs, function(f) { obj[f] = _.bind(obj[f], obj); });
  return obj;
  };
 
  // Memoize an expensive function by storing its results.
  _.memoize = function(func, hasher) {
  var memo = {};
  hasher || (hasher = _.identity);
  return function() {
  var key = hasher.apply(this, arguments);
  return hasOwnProperty.call(memo, key) ? memo[key] : (memo[key] = func.apply(this, arguments));
  };
  };
 
  // Delays a function for the given number of milliseconds, and then calls
  // it with the arguments supplied.
  _.delay = function(func, wait) {
  var args = slice.call(arguments, 2);
  return setTimeout(function(){ return func.apply(func, args); }, wait);
  };
 
  // Defers a function, scheduling it to run after the current call stack has
  // cleared.
  _.defer = function(func) {
  return _.delay.apply(_, [func, 1].concat(slice.call(arguments, 1)));
  };
 
  // Internal function used to implement `_.throttle` and `_.debounce`.
  var limit = function(func, wait, debounce) {
  var timeout;
  return function() {
  var context = this, args = arguments;
  var throttler = function() {
  timeout = null;
  func.apply(context, args);
  };
  if (debounce) clearTimeout(timeout);
  if (debounce || !timeout) timeout = setTimeout(throttler, wait);
  };
  };
 
  // Returns a function, that, when invoked, will only be triggered at most once
  // during a given window of time.
  _.throttle = function(func, wait) {
  return limit(func, wait, false);
  };
 
  // Returns a function, that, as long as it continues to be invoked, will not
  // be triggered. The function will be called after it stops being called for
  // N milliseconds.
  _.debounce = function(func, wait) {
  return limit(func, wait, true);
  };
 
  // Returns a function that will be executed at most one time, no matter how
  // often you call it. Useful for lazy initialization.
  _.once = function(func) {
  var ran = false, memo;
  return function() {
  if (ran) return memo;
  ran = true;
  return memo = func.apply(this, arguments);
  };
  };
 
  // Returns the first function passed as an argument to the second,
  // allowing you to adjust arguments, run code before and after, and
  // conditionally execute the original function.
  _.wrap = function(func, wrapper) {
  return function() {
  var args = [func].concat(slice.call(arguments));
  return wrapper.apply(this, args);
  };
  };
 
  // Returns a function that is the composition of a list of functions, each
  // consuming the return value of the function that follows.
  _.compose = function() {
  var funcs = slice.call(arguments);
  return function() {
  var args = slice.call(arguments);
  for (var i = funcs.length - 1; i >= 0; i--) {
  args = [funcs[i].apply(this, args)];
  }
  return args[0];
  };
  };
 
  // Returns a function that will only be executed after being called N times.
  _.after = function(times, func) {
  return function() {
  if (--times < 1) { return func.apply(this, arguments); }
  };
  };
 
 
  // Object Functions
  // ----------------
 
  // Retrieve the names of an object's properties.
  // Delegates to **ECMAScript 5**'s native `Object.keys`
  _.keys = nativeKeys || function(obj) {
  if (obj !== Object(obj)) throw new TypeError('Invalid object');
  var keys = [];
  for (var key in obj) if (hasOwnProperty.call(obj, key)) keys[keys.length] = key;
  return keys;
  };
 
  // Retrieve the values of an object's properties.
  _.values = function(obj) {
  return _.map(obj, _.identity);
  };
 
  // Return a sorted list of the function names available on the object.
  // Aliased as `methods`
  _.functions = _.methods = function(obj) {
  var names = [];
  for (var key in obj) {
  if (_.isFunction(obj[key])) names.push(key);
  }
  return names.sort();
  };
 
  // Extend a given object with all the properties in passed-in object(s).
  _.extend = function(obj) {
  each(slice.call(arguments, 1), function(source) {
  for (var prop in source) {
  if (source[prop] !== void 0) obj[prop] = source[prop];
  }
  });
  return obj;
  };
 
  // Fill in a given object with default properties.
  _.defaults = function(obj) {
  each(slice.call(arguments, 1), function(source) {
  for (var prop in source) {
  if (obj[prop] == null) obj[prop] = source[prop];
  }
  });
  return obj;
  };
 
  // Create a (shallow-cloned) duplicate of an object.
  _.clone = function(obj) {
  return _.isArray(obj) ? obj.slice() : _.extend({}, obj);
  };
 
  // Invokes interceptor with the obj, and then returns obj.
  // The primary purpose of this method is to "tap into" a method chain, in
  // order to perform operations on intermediate results within the chain.
  _.tap = function(obj, interceptor) {
  interceptor(obj);
  return obj;
  };
 
  // Perform a deep comparison to check if two objects are equal.
  _.isEqual = function(a, b) {
  // Check object identity.
  if (a === b) return true;
  // Different types?
  var atype = typeof(a), btype = typeof(b);
  if (atype != btype) return false;
  // Basic equality test (watch out for coercions).
  if (a == b) return true;
  // One is falsy and the other truthy.
  if ((!a && b) || (a && !b)) return false;
  // Unwrap any wrapped objects.
  if (a._chain) a = a._wrapped;
  if (b._chain) b = b._wrapped;
  // One of them implements an isEqual()?
  if (a.isEqual) return a.isEqual(b);
  if (b.isEqual) return b.isEqual(a);
  // Check dates' integer values.
  if (_.isDate(a) && _.isDate(b)) return a.getTime() === b.getTime();
  // Both are NaN?
  if (_.isNaN(a) && _.isNaN(b)) return false;
  // Compare regular expressions.
  if (_.isRegExp(a) && _.isRegExp(b))
  return a.source === b.source &&
  a.global === b.global &&
  a.ignoreCase === b.ignoreCase &&
  a.multiline === b.multiline;
  // If a is not an object by this point, we can't handle it.
  if (atype !== 'object') return false;
  // Check for different array lengths before comparing contents.
  if (a.length && (a.length !== b.length)) return false;
  // Nothing else worked, deep compare the contents.
  var aKeys = _.keys(a), bKeys = _.keys(b);
  // Different object sizes?
  if (aKeys.length != bKeys.length) return false;
  // Recursive comparison of contents.
  for (var key in a) if (!(key in b) || !_.isEqual(a[key], b[key])) return false;
  return true;
  };
 
  // Is a given array or object empty?
  _.isEmpty = function(obj) {
  if (_.isArray(obj) || _.isString(obj)) return obj.length === 0;
  for (var key in obj) if (hasOwnProperty.call(obj, key)) return false;
  return true;
  };
 
  // Is a given value a DOM element?
  _.isElement = function(obj) {
  return !!(obj && obj.nodeType == 1);
  };
 
  // Is a given value an array?
  // Delegates to ECMA5's native Array.isArray
  _.isArray = nativeIsArray || function(obj) {
  return toString.call(obj) === '[object Array]';
  };
 
  // Is a given variable an object?
  _.isObject = function(obj) {
  return obj === Object(obj);
  };
 
  // Is a given variable an arguments object?
  _.isArguments = function(obj) {
  return !!(obj && hasOwnProperty.call(obj, 'callee'));
  };
 
  // Is a given value a function?
  _.isFunction = function(obj) {
  return !!(obj && obj.constructor && obj.call && obj.apply);
  };
 
  // Is a given value a string?
  _.isString = function(obj) {
  return !!(obj === '' || (obj && obj.charCodeAt && obj.substr));
  };
 
  // Is a given value a number?
  _.isNumber = function(obj) {
  return !!(obj === 0 || (obj && obj.toExponential && obj.toFixed));
  };
 
  // Is the given value `NaN`? `NaN` happens to be the only value in JavaScript
  // that does not equal itself.
  _.isNaN = function(obj) {
  return obj !== obj;
  };
 
  // Is a given value a boolean?
  _.isBoolean = function(obj) {
  return obj === true || obj === false;
  };
 
  // Is a given value a date?
  _.isDate = function(obj) {
  return !!(obj && obj.getTimezoneOffset && obj.setUTCFullYear);
  };
 
  // Is the given value a regular expression?
  _.isRegExp = function(obj) {
  return !!(obj && obj.test && obj.exec && (obj.ignoreCase || obj.ignoreCase === false));
  };
 
  // Is a given value equal to null?
  _.isNull = function(obj) {
  return obj === null;
  };
 
  // Is a given variable undefined?
  _.isUndefined = function(obj) {
  return obj === void 0;
  };
 
  // Utility Functions
  // -----------------
 
  // Run Underscore.js in *noConflict* mode, returning the `_` variable to its
  // previous owner. Returns a reference to the Underscore object.
  _.noConflict = function() {
  root._ = previousUnderscore;
  return this;
  };
 
  // Keep the identity function around for default iterators.
  _.identity = function(value) {
  return value;
  };
 
  // Run a function **n** times.
  _.times = function (n, iterator, context) {
  for (var i = 0; i < n; i++) iterator.call(context, i);
  };
 
  // Add your own custom functions to the Underscore object, ensuring that
  // they're correctly added to the OOP wrapper as well.
  _.mixin = function(obj) {
  each(_.functions(obj), function(name){
  addToWrapper(name, _[name] = obj[name]);
  });
  };
 
  // Generate a unique integer id (unique within the entire client session).
  // Useful for temporary DOM ids.
  var idCounter = 0;
  _.uniqueId = function(prefix) {
  var id = idCounter++;
  return prefix ? prefix + id : id;
  };
 
  // By default, Underscore uses ERB-style template delimiters, change the
  // following template settings to use alternative delimiters.
  _.templateSettings = {
  evaluate : /<%([\s\S]+?)%>/g,
  interpolate : /<%=([\s\S]+?)%>/g
  };
 
  // JavaScript micro-templating, similar to John Resig's implementation.
  // Underscore templating handles arbitrary delimiters, preserves whitespace,
  // and correctly escapes quotes within interpolated code.
  _.template = function(str, data) {
  var c = _.templateSettings;
  var tmpl = 'var __p=[],print=function(){__p.push.apply(__p,arguments);};' +
  'with(obj||{}){__p.push(\'' +
  str.replace(/\\/g, '\\\\')
  .replace(/'/g, "\\'")
  .replace(c.interpolate, function(match, code) {
  return "'," + code.replace(/\\'/g, "'") + ",'";
  })
  .replace(c.evaluate || null, function(match, code) {
  return "');" + code.replace(/\\'/g, "'")
  .replace(/[\r\n\t]/g, ' ') + "__p.push('";
  })
  .replace(/\r/g, '\\r')
  .replace(/\n/g, '\\n')
  .replace(/\t/g, '\\t')
  + "');}return __p.join('');";
  var func = new Function('obj', tmpl);
  return data ? func(data) : func;
  };
 
  // The OOP Wrapper
  // ---------------
 
  // If Underscore is called as a function, it returns a wrapped object that
  // can be used OO-style. This wrapper holds altered versions of all the
  // underscore functions. Wrapped objects may be chained.
  var wrapper = function(obj) { this._wrapped = obj; };
 
  // Expose `wrapper.prototype` as `_.prototype`
  _.prototype = wrapper.prototype;
 
  // Helper function to continue chaining intermediate results.
  var result = function(obj, chain) {
  return chain ? _(obj).chain() : obj;
  };
 
  // A method to easily add functions to the OOP wrapper.
  var addToWrapper = function(name, func) {
  wrapper.prototype[name] = function() {
  var args = slice.call(arguments);
  unshift.call(args, this._wrapped);
  return result(func.apply(_, args), this._chain);
  };
  };
 
  // Add all of the Underscore functions to the wrapper object.
  _.mixin(_);
 
  // Add all mutator Array functions to the wrapper.
  each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {
  var method = ArrayProto[name];
  wrapper.prototype[name] = function() {
  method.apply(this._wrapped, arguments);
  return result(this._wrapped, this._chain);
  };
  });
 
  // Add all accessor Array functions to the wrapper.
  each(['concat', 'join', 'slice'], function(name) {
  var method = ArrayProto[name];
  wrapper.prototype[name] = function() {
  return result(method.apply(this._wrapped, arguments), this._chain);
  };
  });
 
  // Start chaining a wrapped Underscore object.
  wrapper.prototype.chain = function() {
  this._chain = true;
  return this;
  };
 
  // Extracts the result from a wrapped and chained object.
  wrapper.prototype.value = function() {
  return this._wrapped;
  };
 
  })();
 
  /*yepnope1.0.2|WTFPL*/(function(a,b,c){function H(){var a=z;a.loader={load:G,i:0};return a}function G(a,b,c){var e=b=="c"?r:q;i=0,b=b||"j",u(a)?F(e,a,b,this.i++,d,c):(h.splice(this.i++,0,a),h.length==1&&E());return this}function F(a,c,d,g,j,l){function q(){!o&&A(n.readyState)&&(p.r=o=1,!i&&B(),n.onload=n.onreadystatechange=null,e(function(){m.removeChild(n)},0))}var n=b.createElement(a),o=0,p={t:d,s:c,e:l};n.src=n.data=c,!k&&(n.style.display="none"),n.width=n.height="0",a!="object"&&(n.type=d),n.onload=n.onreadystatechange=q,a=="img"?n.onerror=q:a=="script"&&(n.onerror=function(){p.e=p.r=1,E()}),h.splice(g,0,p),m.insertBefore(n,k?null:f),e(function(){o||(m.removeChild(n),p.r=p.e=o=1,B())},z.errorTimeout)}function E(){var a=h.shift();i=1,a?a.t?e(function(){a.t=="c"?D(a):C(a)},0):(a(),B()):i=0}function D(a){var c=b.createElement("link"),d;c.href=a.s,c.rel="stylesheet",c.type="text/css";if(!a.e&&(o||j)){var g=function(a){e(function(){if(!d)try{a.sheet.cssRules.length?(d=1,B()):g(a)}catch(b){b.code==1e3||b.message=="security"||b.message=="denied"?(d=1,e(function(){B()},0)):g(a)}},0)};g(c)}else c.onload=function(){d||(d=1,e(function(){B()},0))},a.e&&c.onload();e(function(){d||(d=1,B())},z.errorTimeout),!a.e&&f.parentNode.insertBefore(c,f)}function C(a){var c=b.createElement("script"),d;c.src=a.s,c.onreadystatechange=c.onload=function(){!d&&A(c.readyState)&&(d=1,B(),c.onload=c.onreadystatechange=null)},e(function(){d||(d=1,B())},z.errorTimeout),a.e?c.onload():f.parentNode.insertBefore(c,f)}function B(){var a=1,b=-1;while(h.length- ++b)if(h[b].s&&!(a=h[b].r))break;a&&E()}function A(a){return!a||a=="loaded"||a=="complete"}var d=b.documentElement,e=a.setTimeout,f=b.getElementsByTagName("script")[0],g={}.toString,h=[],i=0,j="MozAppearance"in d.style,k=j&&!!b.createRange().compareNode,l=j&&!k,m=k?d:f.parentNode,n=a.opera&&g.call(a.opera)=="[object Opera]",o="webkitAppearance"in d.style,p=o&&"async"in b.createElement("script"),q=j?"object":n||p?"img":"script",r=o?"img":q,s=Array.isArray||function(a){return g.call(a)=="[object Array]"},t=function(a){return Object(a)===a},u=function(a){return typeof a=="string"},v=function(a){return g.call(a)=="[object Function]"},w=[],x={},y,z;z=function(a){function h(a,b){function i(a){if(u(a))g(a,f,b,0,c);else if(t(a))for(h in a)a.hasOwnProperty(h)&&g(a[h],f,b,h,c)}var c=!!a.test,d=c?a.yep:a.nope,e=a.load||a.both,f=a.callback,h;i(d),i(e),a.complete&&b.load(a.complete)}function g(a,b,d,e,g){var h=f(a),i=h.autoCallback;if(!h.bypass){b&&(b=v(b)?b:b[a]||b[e]||b[a.split("/").pop().split("?")[0]]);if(h.instead)return h.instead(a,b,d,e,g);d.load(h.url,h.forceCSS||!h.forceJS&&/css$/.test(h.url)?"c":c,h.noexec),(v(b)||v(i))&&d.load(function(){H(),b&&b(h.origUrl,g,e),i&&i(h.origUrl,g,e)})}}function f(a){var b=a.split("!"),c=w.length,d=b.pop(),e=b.length,f={url:d,origUrl:d,prefixes:b},g,h;for(h=0;h<e;h++)g=x[b[h]],g&&(f=g(f));for(h=0;h<c;h++)f=w[h](f);return f}var b,d,e=this.yepnope.loader;if(u(a))g(a,0,e,0);else if(s(a))for(b=0;b<a.length;b++)d=a[b],u(d)?g(d,0,e,0):s(d)?z(d):t(d)&&h(d,e);else t(a)&&h(a,e)},z.addPrefix=function(a,b){x[a]=b},z.addFilter=function(a){w.push(a)},z.errorTimeout=1e4,b.readyState==null&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",y=function(){b.removeEventListener("DOMContentLoaded",y,0),b.readyState="complete"},0)),a.yepnope=H()})(this,this.document)
 
  {
  "JAVASCRIPT": {
  "DIST_DIR": "./build",
  "flotr2-basic": [
  "./js/Flotr.js",
  "./js/DefaultOptions.js",
  "./js/DOM.js",
  "./js/EventAdapter.js",
  "./js/Color.js",
  "./js/Date.js",
  "./js/Text.js",
  "./js/Graph.js",
  "./js/Axis.js",
  "./js/Series.js",
  "./js/types/lines.js",
  "./js/types/bars.js",
  "./js/types/markers.js",
  "./js/types/points.js",
  "./js/plugins/grid.js",
  "./js/plugins/labels.js",
  "./js/plugins/legend.js",
  "./js/plugins/titles.js"
  ]
  }
  }
 
  {
  "JAVASCRIPT": {
  "DIST_DIR": "./build",
  "ie": [
  { "src": "./lib/excanvas.js", "jshint": false },
  { "src": "./lib/base64.js", "jshint": false },
  { "src": "./lib/canvastext.js", "jshint": false }
  ],
  "lib": [
  { "src": "./lib/bean.js", "jshint": false },
  { "src": "./lib/underscore.js", "jshint": false }
  ],
  "flotr2": [
  "./js/Flotr.js",
  "./js/DefaultOptions.js",
  "./js/Color.js",
  "./js/Date.js",
  "./js/DOM.js",
  "./js/EventAdapter.js",
  "./js/Text.js",
  "./js/Graph.js",
  "./js/Axis.js",
  "./js/Series.js",
  "./js/types/lines.js",
  "./js/types/bars.js",
  "./js/types/bubbles.js",
  "./js/types/candles.js",
  "./js/types/gantt.js",
  "./js/types/markers.js",
  "./js/types/pie.js",
  "./js/types/points.js",
  "./js/types/radar.js",
  "./js/types/timeline.js",
  "./js/plugins/crosshair.js",
  "./js/plugins/download.js",
  "./js/plugins/grid.js",
  "./js/plugins/hit.js",
  "./js/plugins/selection.js",
  "./js/plugins/labels.js",
  "./js/plugins/legend.js",
  "./js/plugins/spreadsheet.js",
  "./js/plugins/titles.js"
  ],
  "flotr2-basic": [
  "./js/Flotr.js",
  "./js/DefaultOptions.js",
  "./js/DOM.js",
  "./js/EventAdapter.js",
  "./js/Color.js",
  "./js/Date.js",
  "./js/Text.js",
  "./js/Graph.js",
  "./js/Axis.js",
  "./js/Series.js",
  "./js/types/lines.js",
  "./js/types/bars.js",
  "./js/types/markers.js",
  "./js/types/points.js",
  "./js/plugins/grid.js",
  "./js/plugins/labels.js",
  "./js/plugins/legend.js",
  "./js/plugins/titles.js"
  ],
  "examples": [
  "./examples/js/Examples.js",
  "./examples/js/Example.js",
  "./examples/js/Editor.js",
  "./examples/js/Profile.js"
  ],
  "examples-types": [
  "./examples/js/ExampleList.js",
  "./examples/js/examples/basic.js",
  "./examples/js/examples/basic-stacked.js",
  "./examples/js/examples/basic-axis.js",
  "./examples/js/examples/basic-bars.js",
  "./examples/js/examples/basic-bars-stacked.js",
  "./examples/js/examples/basic-pie.js",
  "./examples/js/examples/basic-radar.js",
  "./examples/js/examples/basic-bubble.js",
  "./examples/js/examples/basic-candle.js",
  "./examples/js/examples/basic-legend.js",
  "./examples/js/examples/mouse-tracking.js",
  "./examples/js/examples/mouse-zoom.js",
  "./examples/js/examples/mouse-drag.js",
  "./examples/js/examples/basic-time.js",
  "./examples/js/examples/negative-values.js",
  "./examples/js/examples/click-example.js",
  "./examples/js/examples/download-image.js",
  "./examples/js/examples/download-data.js",
  "./examples/js/examples/advanced-titles.js",
  "./examples/js/examples/color-gradients.js",
  "./examples/js/examples/profile-bars.js",
  "./examples/js/examples/basic-timeline.js",
  "./examples/js/examples/advanced-markers.js"
  ]
  }
  }
 
  {
  "JAVASCRIPT": {
  "DIST_DIR": "./build",
  "examples": [
  "./examples/js/Examples.js",
  "./examples/js/Example.js",
  "./examples/js/Editor.js",
  "./examples/js/Profile.js"
  ],
  "examples-types": [
  "./examples/js/ExampleList.js",
  "./examples/js/examples/basic.js",
  "./examples/js/examples/basic-stacked.js",
  "./examples/js/examples/basic-stepped.js",
  "./examples/js/examples/basic-axis.js",
  "./examples/js/examples/basic-bars.js",
  "./examples/js/examples/basic-bars-stacked.js",
  "./examples/js/examples/basic-pie.js",
  "./examples/js/examples/basic-radar.js",
  "./examples/js/examples/basic-bubble.js",
  "./examples/js/examples/basic-candle.js",
  "./examples/js/examples/basic-legend.js",
  "./examples/js/examples/mouse-tracking.js",
  "./examples/js/examples/mouse-zoom.js",
  "./examples/js/examples/mouse-drag.js",
  "./examples/js/examples/basic-time.js",
  "./examples/js/examples/negative-values.js",
  "./examples/js/examples/click-example.js",
  "./examples/js/examples/download-image.js",
  "./examples/js/examples/download-data.js",
  "./examples/js/examples/advanced-titles.js",
  "./examples/js/examples/color-gradients.js",
  "./examples/js/examples/profile-bars.js",
  "./examples/js/examples/basic-timeline.js",
  "./examples/js/examples/advanced-markers.js"
  ]
  }
  }
 
  {
  "JAVASCRIPT": {
  "DIST_DIR": "./build",
  "flotr2": [
  "./js/Flotr.js",
  "./js/DefaultOptions.js",
  "./js/Color.js",
  "./js/Date.js",
  "./js/DOM.js",
  "./js/EventAdapter.js",
  "./js/Text.js",
  "./js/Graph.js",
  "./js/Axis.js",
  "./js/Series.js",
  "./js/types/lines.js",
  "./js/types/bars.js",
  "./js/types/bubbles.js",
  "./js/types/candles.js",
  "./js/types/gantt.js",
  "./js/types/markers.js",
  "./js/types/pie.js",
  "./js/types/points.js",
  "./js/types/radar.js",
  "./js/types/timeline.js",
  "./js/plugins/crosshair.js",
  "./js/plugins/download.js",
  "./js/plugins/grid.js",
  "./js/plugins/hit.js",
  "./js/plugins/selection.js",
  "./js/plugins/labels.js",
  "./js/plugins/legend.js",
  "./js/plugins/spreadsheet.js",
  "./js/plugins/titles.js"
  ]
  }
  }
 
  {
  "JAVASCRIPT": {
  "DIST_DIR": "./build",
  "ie": [
  { "src": "./lib/excanvas.js", "jshint": false },
  { "src": "./lib/base64.js", "jshint": false },
  { "src": "./lib/canvastext.js", "jshint": false }
  ]
  }
  }
 
  {
  "JAVASCRIPT": {
  "DIST_DIR": "./build",
  "bean": [
  { "src": "./lib/bean.js", "jshint": false }
  ],
  "underscore": [
  { "src": "./lib/underscore.js", "jshint": false }
  ]
  }
  }
 
  describe('Charts', function () {
 
  var
  width = 480,
  height = 320,
  a, b, options, defaults;
 
  defaults = {
  width : 480,
  height : 320,
  color : "rgb(192,216,0)",
  context : null,
  data : null,
  fill : false,
  fillColor : null,
  fillOpacity : 0.4,
  fillStyle : "rgba(192,216,0,0.4)",
  fontColor : "#545454",
  fontSize : 7.5,
  htmlText : true,
  lineWidth : 2,
  shadowSize : 4,
  show : false,
  stacked : false,
  textEnabled : true,
  xScale : function (x) { return x; },
  yScale : function (y) { return height - y; }
  };
 
  /**
  * @param skip bool Skip test against development version (use this when developing test)
  */
  function drawTest (data, o, skip) {
  options.data = data;
  if (o) _.extend(options, o);
 
  if (!skip) TestFlotr.graphTypes.lines.draw(options);
  options.context = b.getContext('2d');
  StableFlotr.graphTypes.lines.draw(options);
 
  expect(b).toImageDiffEqual(a);
  }
 
  describe('Lines', function () {
 
  beforeEach(function () {
  options = _.clone(defaults);
  });
 
  /*
  describe('Data', function () {
  it('gets a range', function () {
  options.stacked = true;
  options.data = [[0, 0], [240, 160], [480, 320]];
  range = TestFlotr.graphTypes.lines.range(options);
  expect(range.min).toEqual(0);
  expect(range.max).toEqual(320);
  });
  });
  */
 
  describe('Draw', function () {
 
  beforeEach(function () {
  this.addMatchers(imagediff.jasmine);
  a = imagediff.createCanvas(width, height);
  b = imagediff.createCanvas(width, height);
  options.context = a.getContext('2d');
  });
 
  it('draws a line chart', function () {
  drawTest([
  [0, 0],
  [240, 300],
  [480, 0]
  ]);
  });
 
  it('skips null values', function () {
  drawTest([
  [0, 0],
  [100, 50],
  [200, null],
  [300, 150],
  [400, 200],
  [480, 240]
  ]);
  });
 
  it('draws two lines', function () {
  // First line
  drawTest([[0, 0], [240, 160], [480, 320]]);
 
  // Second Line
  options.context = a.getContext('2d');
  drawTest([[0, 320], [240, 160], [480, 0]]);
  });
 
  it('fills a line', function () {
  drawTest([
  [0, 0],
  [240, 300],
  [480, 0]
  ], {
  fill : true
  });
  });
 
  it('draws no shadow', function () {
  drawTest([
  [0, 0],
  [240, 300],
  [480, 0]
  ], {
  shadowSize : 0
  });
  });
  });
  });
  });
 
  describe('Colors', function () {
 
  describe('Color Construction', function () {
  it('should have a color class', function () {
  expect(TestFlotr.Color).not.toBeUndefined();
  });
 
  it('should create a color', function () {
  var color = new TestFlotr.Color(0, 0, 0, 0);
  expect(color).toBeTruthy();
  });
 
  it('should have rgba attributes', function () {
  var color = new TestFlotr.Color(0, 0, 0, 0);
  expect(color.r).toEqual(0);
  expect(color.g).toEqual(0);
  expect(color.b).toEqual(0);
  expect(color.a).toEqual(1.0);
  });
  });
 
  describe('Color Manipulation', function () {
 
  var
  color;
 
  afterEach(function () {
  color = null;
  });
 
  it('normalizes colors to upper bound', function () {
  color = new TestFlotr.Color(1000, 1000, 1000, 10);
  expect(color.r).toEqual(255);
  expect(color.g).toEqual(255);
  expect(color.b).toEqual(255);
  expect(color.a).toEqual(1.0);
  });
 
  it('normalizes colors to lower bound', function () {
  color = new TestFlotr.Color(-1000, -1000, -1000, -10);
  expect(color.r).toEqual(0);
  expect(color.g).toEqual(0);
  expect(color.b).toEqual(0);
  expect(color.a).toEqual(0.0);
  });
 
  it('scales colors', function () {
  color = new TestFlotr.Color(200, 200, 200, 1.0);
  color.scale(.5, .5, .5, .5);
  expect(color.r).toEqual(100);
  expect(color.g).toEqual(100);
  expect(color.b).toEqual(100);
  expect(color.a).toEqual(0.5);
  });
  });
 
  describe('Color Conversion', function () {
 
  var
  color;
 
  beforeEach(function () {
  color = new TestFlotr.Color(200, 200, 200, 1.0);
  });
  afterEach(function () {
  color = null;
  });
 
  it('should convert colors to strings, rgb', function () {
  expect(color.toString()).toEqual('rgb(200,200,200)');
  });
 
  it('should convert colors to strings, rgba', function () {
  color.a = 0.5;
  color.normalize();
  expect(color.toString()).toEqual('rgba(200,200,200,0.5)');
  });
 
  it('should clone colors', function () {
 
  var
  color2 = color.clone();
 
  expect(color.toString()).toEqual(color2.toString());
 
  color.a = 0.5;
  color.normalize();
  color2 = color.clone();
  expect(color.toString()).toEqual(color2.toString());
  });
  });
  });
 
  describe('Flotr', function () {
 
  describe('Plots', function () {
 
  var
  nodeA, nodeB,
  a, b;
 
  beforeEach(function () {
 
  // Add imagediff matchers
  this.addMatchers(imagediff.jasmine);
 
  nodeA = buildNode();
  nodeB = buildNode();
  });
 
  afterEach(function () {
  destroyNode(nodeA);
  destroyNode(nodeB);
  a = null;
  b = null;
  Flotr = null;
  });
 
  _.each(TestFlotr.ExampleList.examples, function (example, key) {
 
  it('should draw a `' + example.name + '`line graph', function () {
 
  executeExampleTest(example, StableFlotr, nodeA);
  executeExampleTest(example, TestFlotr, nodeB);
 
  if (example.timeout) {
  waits(example.timeout);
  runs (function () {
  expect(nodeB.graph.ctx).toImageDiffEqual(nodeA.graph.ctx, example.tolerance || 0);
  });
  } else {
  expect(nodeB.graph.ctx).toImageDiffEqual(nodeA.graph.ctx, example.tolerance || 0);
  }
  });
  });
 
  // Helpers
 
  function executeExampleTest (example, flotr, node) {
  Math.seedrandom(example.key);
  Flotr = flotr;
  example.callback.apply(this, [node].concat(example.args || []));
  }
 
  function buildNode () {
  var node = document.createElement('div');
  document.body.appendChild(node);
  node.style.width = '320px';
  node.style.height = '240px';
  return node;
  }
 
  function destroyNode (node) {
  document.body.removeChild(node);
  }
  });
 
  describe('Main', function () {
 
  it('gets a tick size', function () {
  expect(TestFlotr.getTickSize).not.toBeUndefined();
  expect(TestFlotr.getTickSize(10, 0, 100, 1)).toEqual(10);
  expect(TestFlotr.getTickSize(20, 0, 100, 1)).toEqual(5);
  expect(TestFlotr.getTickSize(5, 10, 110, 1)).toEqual(20);
  expect(TestFlotr.getTickSize(0, 0, 10, 1)).toEqual(Number.POSITIVE_INFINITY);
  expect(isNaN(TestFlotr.getTickSize(0, 0, -10, 1))).toBeTruthy();
  });
  });
  });
 
  describe('Graph', function () {
 
  describe('Options', function () {
  var
  nodeA, nodeB,
  a, b, x, i,
  d1 = [],
  options = {};
 
  for (i = 0; i < 100; i++) {
  x = (i*1000*3600*24*36.5);
  d1.push([x, i+Math.random()*30+Math.sin(i/20+Math.random()*2)*20+Math.sin(i/10+Math.random())*10]);
  }
 
  options = {
  xaxis : {
  mode : 'time',
  labelsAngle : 45
  },
  selection : {
  mode : 'x'
  },
  HtmlText : false,
  };
 
  beforeEach(function () {
  nodeA = buildNode();
  Flotr = TestFlotr;
  });
 
  afterEach(function () {
  destroyNode(nodeA);
  a = b = null;
  Flotr = null;
  });
 
  it('should override nested default options with user options', function() {
  a = new TestFlotr.Graph(nodeA, d1, options);
  expect(a.options.xaxis.mode).toEqual(options.xaxis.mode);
  });
 
  it('should retain default options if user option\'s nested object does not define property', function() {
  a = new TestFlotr.Graph(nodeA, d1, options);
  expect(a.options.xaxis.tickFormatter).toBeTruthy();
  });
 
  it('should not affect default options when modifying graph options (objects)', function() {
  a = new TestFlotr.Graph(nodeA, d1, options);
  a.options.x2axis = {
  titleAlign : 'left'
  };
  a.options.xaxis.scaling = 'logarithmic';
  expect(TestFlotr.defaultOptions.xaxis.scaling).toEqual('linear');
  expect(TestFlotr.defaultOptions.x2axis.titleAlign).toBeFalsy();
  });
 
  /*
  it('should not affect default options when modifying graph options (arrays)', function() {
  a = new TestFlotr.Graph(nodeA, d1, options);
  a.options.colors[1] = '#bada55';
  expect(TestFlotr.defaultOptions.colors[1]).toNotBe('#bada55');
  });
  */
 
  });
 
  function buildNode () {
  var node = document.createElement('div');
  document.body.appendChild(node);
  node.style.width = '320px';
  node.style.height = '240px';
  return node;
  }
 
  function destroyNode (node) {
  document.body.removeChild(node);
  }
 
  });
 
  var StableFlotr = Flotr.noConflict();
 
  var TestFlotr = Flotr.noConflict();
 
 Binary files /dev/null and b/js/flotr2/spec/images/butterfly.jpg differ
 Binary files /dev/null and b/js/flotr2/spec/images/checkmark.png differ
 Binary files /dev/null and b/js/flotr2/spec/images/xmark.png differ
 Binary files /dev/null and b/js/flotr2/spec/img/test-background.png differ
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  "http://www.w3.org/TR/html4/loose.dtd">
  <html>
  <head>
  <title>Jasmine Spec Runner</title>
 
  <link rel="shortcut icon" type="image/png" href="../lib/jasmine/jasmine_favicon.png">
 
  <link rel="stylesheet" type="text/css" href="../lib/jasmine/jasmine.css">
  <script type="text/javascript" src="../lib/jasmine/jasmine.js"></script>
  <script type="text/javascript" src="../lib/jasmine/jasmine-html.js"></script>
  <script type="text/javascript" src="../lib/imagediff.js"></script>
  <script type="text/javascript" src="../examples/lib/randomseed.js"></script>
 
  <!-- include source files here... -->
  <script type="text/javascript" src="js/flotr2.stable.js"></script>
  <script type="text/javascript">
  var StableFlotr = Flotr.noConflict();
  </script>
 
  <script src="../lib/bean.js"></script>
  <script src="../lib/underscore.js"></script>
  <script src="../js/Flotr.js"></script>
  <script src="../js/DefaultOptions.js"></script>
  <script src="../js/Color.js"></script>
  <script src="../js/Date.js"></script>
  <script src="../js/DOM.js"></script>
  <script src="../js/EventAdapter.js"></script>
  <script src="../js/Text.js"></script>
  <script src="../js/Graph.js"></script>
  <script src="../js/Axis.js"></script>
  <script src="../js/Series.js"></script>
  <script src="../js/types/lines.js"></script>
  <script src="../js/types/bars.js"></script>
  <script src="../js/types/bubbles.js"></script>
  <script src="../js/types/candles.js"></script>
  <script src="../js/types/gantt.js"></script>
  <script src="../js/types/markers.js"></script>
  <script src="../js/types/pie.js"></script>
  <script src="../js/types/points.js"></script>
  <script src="../js/types/radar.js"></script>
  <script src="../js/types/timeline.js"></script>
  <script src="../js/plugins/crosshair.js"></script>
  <script src="../js/plugins/download.js"></script>
  <script src="../js/plugins/grid.js"></script>
  <script src="../js/plugins/hit.js"></script>
  <script src="../js/plugins/selection.js"></script>
  <script src="../js/plugins/labels.js"></script>
  <script src="../js/plugins/legend.js"></script>
  <script src="../js/plugins/spreadsheet.js"></script>
  <script src="../js/plugins/titles.js"></script>
  <script src="../js/charts/lines.js"></script>
 
  <!-- Test Examples -->
  <script type="text/javascript" src="../flotr2.examples.types.js"></script>
  <script type="text/javascript" src="js/test-background.js"></script>
  <script type="text/javascript" src="js/test-boundaries.js"></script>
  <script type="text/javascript" src="js/test-mountain-nulls.js"></script>
 
  <script type="text/javascript">
  var TestFlotr = Flotr.noConflict();
  </script>
 
  <!-- include spec files here... -->
  <script type="text/javascript" src="Flotr.js"></script>
  <script type="text/javascript" src="Color.js"></script>
  <script type="text/javascript" src="Graph.js"></script>
  <script type="text/javascript" src="Chart.js"></script>
 
  </head>
 
  <body>
  </body>
  <script type="text/javascript">
  (function() {
  var jasmineEnv = jasmine.getEnv();
  jasmineEnv.updateInterval = 1000;
 
  var reporter = new jasmine.HtmlReporter();
 
  jasmineEnv.addReporter(reporter);
 
  jasmineEnv.specFilter = function(spec) {
  return reporter.specFilter(spec);
  };
 
  var currentWindowOnload = window.onload;
 
  window.onload = function() {
  if (currentWindowOnload) {
  currentWindowOnload();
  }
  execJasmine();
  };
 
  function execJasmine() {
  jasmineEnv.execute();
  }
 
  })();
  </script>
  </html>
 
  src_files:
  - "lib/imagediff.js"
  - "examples/lib/randomseed.js"
  - "spec/js/flotr2.stable.js"
  - "spec/helpers/stableFlotr.js"
  - "lib/bean.js"
  - "lib/underscore.js"
  - "js/Flotr.js"
  - "js/DefaultOptions.js"
  - "js/Color.js"
  - "js/Date.js"
  - "js/DOM.js"
  - "js/EventAdapter.js"
  - "js/Text.js"
  - "js/Graph.js"
  - "js/Axis.js"
  - "js/Series.js"
  - "js/types/lines.js"
  - "js/types/bars.js"
  - "js/types/bubbles.js"
  - "js/types/candles.js"
  - "js/types/gantt.js"
  - "js/types/markers.js"
  - "js/types/pie.js"
  - "js/types/points.js"
  - "js/types/radar.js"
  - "js/types/timeline.js"
  - "js/plugins/crosshair.js"
  - "js/plugins/download.js"
  - "js/plugins/grid.js"
  - "js/plugins/hit.js"
  - "js/plugins/selection.js"
  - "js/plugins/labels.js"
  - "js/plugins/legend.js"
  - "js/plugins/spreadsheet.js"
  - "js/plugins/titles.js"
  - "flotr2.examples.types.js"
  - "spec/js/test-background.js"
  - "spec/js/test-boundaries.js"
  - "spec/js/test-mountain-nulls.js"
  - "spec/helpers/testFlotr.js"
  helpers:
  spec_files:
  - "Flotr.js"
  - "Color.js"
  - "Graph.js"
  - "Chart.js"
  src_dir: ".."
  spec_dir: "../spec/"
 
  /*!
  * bean.js - copyright Jacob Thornton 2011
  * https://github.com/fat/bean
  * MIT License
  * special thanks to:
  * dean edwards: http://dean.edwards.name/
  * dperini: https://github.com/dperini/nwevents
  * the entire mootools team: github.com/mootools/mootools-core
  */
  /*global module:true, define:true*/
  !function (name, context, definition) {
  if (typeof module !== 'undefined') module.exports = definition(name, context);
  else if (typeof define === 'function' && typeof define.amd === 'object') define(definition);
  else context[name] = definition(name, context);
  }('bean', this, function (name, context) {
  var win = window
  , old = context[name]
  , overOut = /over|out/
  , namespaceRegex = /[^\.]*(?=\..*)\.|.*/
  , nameRegex = /\..*/
  , addEvent = 'addEventListener'
  , attachEvent = 'attachEvent'
  , removeEvent = 'removeEventListener'
  , detachEvent = 'detachEvent'
  , doc = document || {}
  , root = doc.documentElement || {}
  , W3C_MODEL = root[addEvent]
  , eventSupport = W3C_MODEL ? addEvent : attachEvent
  , slice = Array.prototype.slice
  , mouseTypeRegex = /click|mouse|menu|drag|drop/i
  , touchTypeRegex = /^touch|^gesture/i
  , ONE = { one: 1 } // singleton for quick matching making add() do one()
 
  , nativeEvents = (function (hash, events, i) {
  for (i = 0; i < events.length; i++)
  hash[events[i]] = 1
  return hash
  })({}, (
  'click dblclick mouseup mousedown contextmenu ' + // mouse buttons
  'mousewheel DOMMouseScroll ' + // mouse wheel
  'mouseover mouseout mousemove selectstart selectend ' + // mouse movement
  'keydown keypress keyup ' + // keyboard
  'orientationchange ' + // mobile
  'focus blur change reset select submit ' + // form elements
  'load unload beforeunload resize move DOMContentLoaded readystatechange ' + // window
  'error abort scroll ' + // misc
  (W3C_MODEL ? // element.fireEvent('onXYZ'... is not forgiving if we try to fire an event
  // that doesn't actually exist, so make sure we only do these on newer browsers
  'show ' + // mouse buttons
  'input invalid ' + // form elements
  'touchstart touchmove touchend touchcancel ' + // touch
  'gesturestart gesturechange gestureend ' + // gesture
  'message readystatechange pageshow pagehide popstate ' + // window
  'hashchange offline online ' + // window
  'afterprint beforeprint ' + // printing
  'dragstart dragenter dragover dragleave drag drop dragend ' + // dnd
  'loadstart progress suspend emptied stalled loadmetadata ' + // media
  'loadeddata canplay canplaythrough playing waiting seeking ' + // media
  'seeked ended durationchange timeupdate play pause ratechange ' + // media
  'volumechange cuechange ' + // media
  'checking noupdate downloading cached updateready obsolete ' + // appcache
  '' : '')
  ).split(' ')
  )
 
  , customEvents = (function () {
  function isDescendant(parent, node) {
  while ((node = node.parentNode) !== null) {
  if (node === parent) return true
  }
  return false
  }
 
  function check(event) {
  var related = event.relatedTarget
  if (!related) return related === null
  return (related !== this && related.prefix !== 'xul' && !/document/.test(this.toString()) && !isDescendant(this, related))
  }
 
  return {
  mouseenter: { base: 'mouseover', condition: check }
  , mouseleave: { base: 'mouseout', condition: check }
  , mousewheel: { base: /Firefox/.test(navigator.userAgent) ? 'DOMMouseScroll' : 'mousewheel' }
  }
  })()
 
  , fixEvent = (function () {
  var commonProps = 'altKey attrChange attrName bubbles cancelable ctrlKey currentTarget detail eventPhase getModifierState isTrusted metaKey relatedNode relatedTarget shiftKey srcElement target timeStamp type view which'.split(' ')
  , mouseProps = commonProps.concat('button buttons clientX clientY dataTransfer fromElement offsetX offsetY pageX pageY screenX screenY toElement'.split(' '))
  , keyProps = commonProps.concat('char charCode key keyCode'.split(' '))
  , touchProps = commonProps.concat('touches targetTouches changedTouches scale rotation'.split(' '))
  , preventDefault = 'preventDefault'
  , createPreventDefault = function (event) {
  return function () {
  if (event[preventDefault])
  event[preventDefault]()
  else
  event.returnValue = false
  }
  }
  , stopPropagation = 'stopPropagation'
  , createStopPropagation = function (event) {
  return function () {
  if (event[stopPropagation])
  event[stopPropagation]()
  else
  event.cancelBubble = true
  }
  }
  , createStop = function (synEvent) {
  return function () {
  synEvent[preventDefault]()
  synEvent[stopPropagation]()
  synEvent.stopped = true
  }
  }
  , copyProps = function (event, result, props) {
  var i, p
  for (i = props.length; i--;) {
  p = props[i]
  if (!(p in result) && p in event) result[p] = event[p]
  }
  }
 
  return function (event, isNative) {
  var result = { originalEvent: event, isNative: isNative }
  if (!event)
  return result
 
  var props
  , type = event.type
  , target = event.target || event.srcElement
 
  result[preventDefault] = createPreventDefault(event)
  result[stopPropagation] = createStopPropagation(event)
  result.stop = createStop(result)
  result.target = target && target.nodeType === 3 ? target.parentNode : target
 
  if (isNative) { // we only need basic augmentation on custom events, the rest is too expensive
  if (type.indexOf('key') !== -1) {
  props = keyProps
  result.keyCode = event.which || event.keyCode
  } else if (mouseTypeRegex.test(type)) {
  props = mouseProps
  result.rightClick = event.which === 3 || event.button === 2
  result.pos = { x: 0, y: 0 }
  if (event.pageX || event.pageY) {
  result.clientX = event.pageX
  result.clientY = event.pageY
  } else if (event.clientX || event.clientY) {
  result.clientX = event.clientX + doc.body.scrollLeft + root.scrollLeft
  result.clientY = event.clientY + doc.body.scrollTop + root.scrollTop
  }
  if (overOut.test(type))
  result.relatedTarget = event.relatedTarget || event[(type === 'mouseover' ? 'from' : 'to') + 'Element']
  } else if (touchTypeRegex.test(type)) {
  props = touchProps
  }
  copyProps(event, result, props || commonProps)
  }
  return result
  }
  })()
 
  // if we're in old IE we can't do onpropertychange on doc or win so we use doc.documentElement for both
  , targetElement = function (element, isNative) {
  return !W3C_MODEL && !isNative && (element === doc || element === win) ? root : element
  }
 
  // we use one of these per listener, of any type
  , RegEntry = (function () {
  function entry(element, type, handler, original, namespaces) {
  this.element = element
  this.type = type
  this.handler = handler
  this.original = original
  this.namespaces = namespaces
  this.custom = customEvents[type]
  this.isNative = nativeEvents[type] && element[eventSupport]
  this.eventType = W3C_MODEL || this.isNative ? type : 'propertychange'
  this.customType = !W3C_MODEL && !this.isNative && type
  this.target = targetElement(element, this.isNative)
  this.eventSupport = this.target[eventSupport]
  }
 
  entry.prototype = {
  // given a list of namespaces, is our entry in any of them?
  inNamespaces: function (checkNamespaces) {
  var i, j
  if (!checkNamespaces)
  return true
  if (!this.namespaces)
  return false
  for (i = checkNamespaces.length; i--;) {
  for (j = this.namespaces.length; j--;) {
  if (checkNamespaces[i] === this.namespaces[j])
  return true
  }
  }
  return false
  }
 
  // match by element, original fn (opt), handler fn (opt)
  , matches: function (checkElement, checkOriginal, checkHandler) {
  return this.element === checkElement &&
  (!checkOriginal || this.original === checkOriginal) &&
  (!checkHandler || this.handler === checkHandler)
  }
  }
 
  return entry
  })()
 
  , registry = (function () {
  // our map stores arrays by event type, just because it's better than storing
  // everything in a single array. uses '$' as a prefix for the keys for safety
  var map = {}
 
  // generic functional search of our registry for matching listeners,
  // `fn` returns false to break out of the loop
  , forAll = function (element, type, original, handler, fn) {
  if (!type || type === '*') {
  // search the whole registry
  for (var t in map) {
  if (t.charAt(0) === '$')
  forAll(element, t.substr(1), original, handler, fn)
  }
  } else {
  var i = 0, l, list = map['$' + type], all = element === '*'
  if (!list)
  return
  for (l = list.length; i < l; i++) {
  if (all || list[i].matches(element, original, handler))
  if (!fn(list[i], list, i, type))
  return
  }
  }
  }
 
  , has = function (element, type, original) {
  // we're not using forAll here simply because it's a bit slower and this
  // needs to be fast
  var i, list = map['$' + type]
  if (list) {
  for (i = list.length; i--;) {
  if (list[i].matches(element, original, null))
  return true
  }
  }
  return false
  }
 
  , get = function (element, type, original) {
  var entries = []
  forAll(element, type, original, null, function (entry) { return entries.push(entry) })
  return entries
  }
 
  , put = function (entry) {
  (map['$' + entry.type] || (map['$' + entry.type] = [])).push(entry)
  return entry
  }
 
  , del = function (entry) {
  forAll(entry.element, entry.type, null, entry.handler, function (entry, list, i) {
  list.splice(i, 1)
  if (list.length === 0)
  delete map['$' + entry.type]
  return false
  })
  }
 
  // dump all entries, used for onunload
  , entries = function () {
  var t, entries = []
  for (t in map) {
  if (t.charAt(0) === '$')
  entries = entries.concat(map[t])
  }
  return entries
  }
 
  return { has: has, get: get, put: put, del: del, entries: entries }
  })()
 
  // add and remove listeners to DOM elements
  , listener = W3C_MODEL ? function (element, type, fn, add) {
  element[add ? addEvent : removeEvent](type, fn, false)
  } : function (element, type, fn, add, custom) {
  if (custom && add && element['_on' + custom] === null)
  element['_on' + custom] = 0
  element[add ? attachEvent : detachEvent]('on' + type, fn)
  }
 
  , nativeHandler = function (element, fn, args) {
  return function (event) {
  event = fixEvent(event || ((this.ownerDocument || this.document || this).parentWindow || win).event, true)
  return fn.apply(element, [event].concat(args))
  }
  }
 
  , customHandler = function (element, fn, type, condition, args, isNative) {
  return function (event) {
  if (condition ? condition.apply(this, arguments) : W3C_MODEL ? true : event && event.propertyName === '_on' + type || !event) {
  if (event)
  event = fixEvent(event || ((this.ownerDocument || this.document || this).parentWindow || win).event, isNative)
  fn.apply(element, event && (!args || args.length === 0) ? arguments : slice.call(arguments, event ? 0 : 1).concat(args))
  }
  }
  }
 
  , once = function (rm, element, type, fn, originalFn) {
  // wrap the handler in a handler that does a remove as well
  return function () {
  rm(element, type, originalFn)
  fn.apply(this, arguments)
  }
  }
 
  , removeListener = function (element, orgType, handler, namespaces) {
  var i, l, entry
  , type = (orgType && orgType.replace(nameRegex, ''))
  , handlers = registry.get(element, type, handler)
 
  for (i = 0, l = handlers.length; i < l; i++) {
  if (handlers[i].inNamespaces(namespaces)) {
  if ((entry = handlers[i]).eventSupport)
  listener(entry.target, entry.eventType, entry.handler, false, entry.type)
  // TODO: this is problematic, we have a registry.get() and registry.del() that
  // both do registry searches so we waste cycles doing this. Needs to be rolled into
  // a single registry.forAll(fn) that removes while finding, but the catch is that
  // we'll be splicing the arrays that we're iterating over. Needs extra tests to
  // make sure we don't screw it up. @rvagg
  registry.del(entry)
  }
  }
  }
 
  , addListener = function (element, orgType, fn, originalFn, args) {
  var entry
  , type = orgType.replace(nameRegex, '')
  , namespaces = orgType.replace(namespaceRegex, '').split('.')
 
  if (registry.has(element, type, fn))
  return element // no dupe
  if (type === 'unload')
  fn = once(removeListener, element, type, fn, originalFn) // self clean-up
  if (customEvents[type]) {
  if (customEvents[type].condition)
  fn = customHandler(element, fn, type, customEvents[type].condition, true)
  type = customEvents[type].base || type
  }
  entry = registry.put(new RegEntry(element, type, fn, originalFn, namespaces[0] && namespaces))
  entry.handler = entry.isNative ?
  nativeHandler(element, entry.handler, args) :
  customHandler(element, entry.handler, type, false, args, false)
  if (entry.eventSupport)
  listener(entry.target, entry.eventType, entry.handler, true, entry.customType)
  }
 
  , del = function (selector, fn, $) {
  return function (e) {
  var target, i, array = typeof selector === 'string' ? $(selector, this) : selector
  for (target = e.target; target && target !== this; target = target.parentNode) {
  for (i = array.length; i--;) {
  if (array[i] === target) {
  return fn.apply(target, arguments)
  }
  }
  }
  }
  }
 
  , remove = function (element, typeSpec, fn) {
  var k, m, type, namespaces, i
  , rm = removeListener
  , isString = typeSpec && typeof typeSpec === 'string'
 
  if (isString && typeSpec.indexOf(' ') > 0) {
  // remove(el, 't1 t2 t3', fn) or remove(el, 't1 t2 t3')
  typeSpec = typeSpec.split(' ')
  for (i = typeSpec.length; i--;)
  remove(element, typeSpec[i], fn)
  return element
  }
  type = isString && typeSpec.replace(nameRegex, '')
  if (type && customEvents[type])
  type = customEvents[type].type
  if (!typeSpec || isString) {
  // remove(el) or remove(el, t1.ns) or remove(el, .ns) or remove(el, .ns1.ns2.ns3)
  if (namespaces = isString && typeSpec.replace(namespaceRegex, ''))
  namespaces = namespaces.split('.')
  rm(element, type, fn, namespaces)
  } else if (typeof typeSpec === 'function') {
  // remove(el, fn)
  rm(element, null, typeSpec)
  } else {
  // remove(el, { t1: fn1, t2, fn2 })
  for (k in typeSpec) {
  if (typeSpec.hasOwnProperty(k))
  remove(element, k, typeSpec[k])
  }
  }
  return element
  }
 
  , add = function (element, events, fn, delfn, $) {
  var type, types, i, args
  , originalFn = fn
  , isDel = fn && typeof fn === 'string'
 
  if (events && !fn && typeof events === 'object') {
  for (type in events) {
  if (events.hasOwnProperty(type))
  add.apply(this, [ element, type, events[type] ])
  }
  } else {
  args = arguments.length > 3 ? slice.call(arguments, 3) : []
  types = (isDel ? fn : events).split(' ')
  isDel && (fn = del(events, (originalFn = delfn), $)) && (args = slice.call(args, 1))
  // special case for one()
  this === ONE && (fn = once(remove, element, events, fn, originalFn))
  for (i = types.length; i--;) addListener(element, types[i], fn, originalFn, args)
  }
  return element
  }
 
  , one = function () {
  return add.apply(ONE, arguments)
  }
 
  , fireListener = W3C_MODEL ? function (isNative, type, element) {
  var evt = doc.createEvent(isNative ? 'HTMLEvents' : 'UIEvents')
  evt[isNative ? 'initEvent' : 'initUIEvent'](type, true, true, win, 1)
  element.dispatchEvent(evt)
  } : function (isNative, type, element) {
  element = targetElement(element, isNative)
  // if not-native then we're using onpropertychange so we just increment a custom property
  isNative ? element.fireEvent('on' + type, doc.createEventObject()) : element['_on' + type]++
  }
 
  , fire = function (element, type, args) {
  var i, j, l, names, handlers
  , types = type.split(' ')
 
  for (i = types.length; i--;) {
  type = types[i].replace(nameRegex, '')
  if (names = types[i].replace(namespaceRegex, ''))
  names = names.split('.')
  if (!names && !args && element[eventSupport]) {
  fireListener(nativeEvents[type], type, element)
  } else {
  // non-native event, either because of a namespace, arguments or a non DOM element
  // iterate over all listeners and manually 'fire'
  handlers = registry.get(element, type)
  args = [false].concat(args)
  for (j = 0, l = handlers.length; j < l; j++) {
  if (handlers[j].inNamespaces(names))
  handlers[j].handler.apply(element, args)
  }
  }
  }
  return element
  }
 
  , clone = function (element, from, type) {
  var i = 0
  , handlers = registry.get(from, type)
  , l = handlers.length
 
  for (;i < l; i++)
  handlers[i].original && add(element, handlers[i].type, handlers[i].original)
  return element
  }
 
  , bean = {
  add: add
  , one: one
  , remove: remove
  , clone: clone
  , fire: fire
  , noConflict: function () {
  context[name] = old
  return this
  }
  }
 
  if (win[attachEvent]) {
  // for IE, clean up on unload to avoid leaks
  var cleanup = function () {
  var i, entries = registry.entries()
  for (i in entries) {
  if (entries[i].type && entries[i].type !== 'unload')
  remove(entries[i].element, entries[i].type)
  }
  win[detachEvent]('onunload', cleanup)
  win.CollectGarbage && win.CollectGarbage()
  }
  win[attachEvent]('onunload', cleanup)
  }
 
  return bean
  });
  // Underscore.js 1.1.7
  // (c) 2011 Jeremy Ashkenas, DocumentCloud Inc.
  // Underscore is freely distributable under the MIT license.
  // Portions of Underscore are inspired or borrowed from Prototype,
  // Oliver Steele's Functional, and John Resig's Micro-Templating.
  // For all details and documentation:
  // http://documentcloud.github.com/underscore
 
  (function() {
 
  // Baseline setup
  // --------------
 
  // Establish the root object, `window` in the browser, or `global` on the server.
  var root = this;
 
  // Save the previous value of the `_` variable.
  var previousUnderscore = root._;
 
  // Establish the object that gets returned to break out of a loop iteration.
  var breaker = {};
 
  // Save bytes in the minified (but not gzipped) version:
  var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype;
 
  // Create quick reference variables for speed access to core prototypes.
  var slice = ArrayProto.slice,
  unshift = ArrayProto.unshift,
  toString = ObjProto.toString,
  hasOwnProperty = ObjProto.hasOwnProperty;
 
  // All **ECMAScript 5** native function implementations that we hope to use
  // are declared here.
  var
  nativeForEach = ArrayProto.forEach,
  nativeMap = ArrayProto.map,
  nativeReduce = ArrayProto.reduce,
  nativeReduceRight = ArrayProto.reduceRight,
  nativeFilter = ArrayProto.filter,
  nativeEvery = ArrayProto.every,
  nativeSome = ArrayProto.some,
  nativeIndexOf = ArrayProto.indexOf,
  nativeLastIndexOf = ArrayProto.lastIndexOf,
  nativeIsArray = Array.isArray,
  nativeKeys = Object.keys,
  nativeBind = FuncProto.bind;
 
  // Create a safe reference to the Underscore object for use below.
  var _ = function(obj) { return new wrapper(obj); };
 
  // Export the Underscore object for **CommonJS**, with backwards-compatibility
  // for the old `require()` API. If we're not in CommonJS, add `_` to the
  // global object.
  if (typeof module !== 'undefined' && module.exports) {
  module.exports = _;
  _._ = _;
  } else {
  // Exported as a string, for Closure Compiler "advanced" mode.
  root['_'] = _;
  }
 
  // Current version.
  _.VERSION = '1.1.7';
 
  // Collection Functions
  // --------------------
 
  // The cornerstone, an `each` implementation, aka `forEach`.
  // Handles objects with the built-in `forEach`, arrays, and raw objects.
  // Delegates to **ECMAScript 5**'s native `forEach` if available.
  var each = _.each = _.forEach = function(obj, iterator, context) {
  if (obj == null) return;
  if (nativeForEach && obj.forEach === nativeForEach) {
  obj.forEach(iterator, context);
  } else if (obj.length === +obj.length) {
  for (var i = 0, l = obj.length; i < l; i++) {
  if (i in obj && iterator.call(context, obj[i], i, obj) === breaker) return;
  }
  } else {
  for (var key in obj) {
  if (hasOwnProperty.call(obj, key)) {
  if (iterator.call(context, obj[key], key, obj) === breaker) return;
  }
  }
  }
  };
 
  // Return the results of applying the iterator to each element.
  // Delegates to **ECMAScript 5**'s native `map` if available.
  _.map = function(obj, iterator, context) {
  var results = [];
  if (obj == null) return results;
  if (nativeMap && obj.map === nativeMap) return obj.map(iterator, context);
  each(obj, function(value, index, list) {
  results[results.length] = iterator.call(context, value, index, list);
  });
  return results;
  };
 
  // **Reduce** builds up a single result from a list of values, aka `inject`,
  // or `foldl`. Delegates to **ECMAScript 5**'s native `reduce` if available.
  _.reduce = _.foldl = _.inject = function(obj, iterator, memo, context) {
  var initial = memo !== void 0;
  if (obj == null) obj = [];
  if (nativeReduce && obj.reduce === nativeReduce) {
  if (context) iterator = _.bind(iterator, context);
  return initial ? obj.reduce(iterator, memo) : obj.reduce(iterator);
  }
  each(obj, function(value, index, list) {
  if (!initial) {
  memo = value;
  initial = true;
  } else {
  memo = iterator.call(context, memo, value, index, list);
  }
  });
  if (!initial) throw new TypeError("Reduce of empty array with no initial value");
  return memo;
  };
 
  // The right-associative version of reduce, also known as `foldr`.
  // Delegates to **ECMAScript 5**'s native `reduceRight` if available.
  _.reduceRight = _.foldr = function(obj, iterator, memo, context) {
  if (obj == null) obj = [];
  if (nativeReduceRight && obj.reduceRight === nativeReduceRight) {
  if (context) iterator = _.bind(iterator, context);
  return memo !== void 0 ? obj.reduceRight(iterator, memo) : obj.reduceRight(iterator);
  }
  var reversed = (_.isArray(obj) ? obj.slice() : _.toArray(obj)).reverse();
  return _.reduce(reversed, iterator, memo, context);
  };
 
  // Return the first value which passes a truth test. Aliased as `detect`.
  _.find = _.detect = function(obj, iterator, context) {
  var result;
  any(obj, function(value, index, list) {
  if (iterator.call(context, value, index, list)) {
  result = value;
  return true;
  }
  });
  return result;
  };
 
  // Return all the elements that pass a truth test.
  // Delegates to **ECMAScript 5**'s native `filter` if available.
  // Aliased as `select`.
  _.filter = _.select = function(obj, iterator, context) {
  var results = [];
  if (obj == null) return results;
  if (nativeFilter && obj.filter === nativeFilter) return obj.filter(iterator, context);
  each(obj, function(value, index, list) {
  if (iterator.call(context, value, index, list)) results[results.length] = value;
  });
  return results;
  };
 
  // Return all the elements for which a truth test fails.
  _.reject = function(obj, iterator, context) {
  var results = [];
  if (obj == null) return results;
  each(obj, function(value, index, list) {
  if (!iterator.call(context, value, index, list)) results[results.length] = value;
  });
  return results;
  };
 
  // Determine whether all of the elements match a truth test.
  // Delegates to **ECMAScript 5**'s native `every` if available.
  // Aliased as `all`.
  _.every = _.all = function(obj, iterator, context) {
  var result = true;
  if (obj == null) return result;
  if (nativeEvery && obj.every === nativeEvery) return obj.every(iterator, context);
  each(obj, function(value, index, list) {
  if (!(result = result && iterator.call(context, value, index, list))) return breaker;
  });
  return result;
  };
 
  // Determine if at least one element in the object matches a truth test.
  // Delegates to **ECMAScript 5**'s native `some` if available.
  // Aliased as `any`.
  var any = _.some = _.any = function(obj, iterator, context) {
  iterator = iterator || _.identity;
  var result = false;
  if (obj == null) return result;
  if (nativeSome && obj.some === nativeSome) return obj.some(iterator, context);
  each(obj, function(value, index, list) {
  if (result |= iterator.call(context, value, index, list)) return breaker;
  });
  return !!result;
  };
 
  // Determine if a given value is included in the array or object using `===`.
  // Aliased as `contains`.
  _.include = _.contains = function(obj, target) {
  var found = false;
  if (obj == null) return found;
  if (nativeIndexOf && obj.indexOf === nativeIndexOf) return obj.indexOf(target) != -1;
  any(obj, function(value) {
  if (found = value === target) return true;
  });
  return found;
  };
 
  // Invoke a method (with arguments) on every item in a collection.
  _.invoke = function(obj, method) {
  var args = slice.call(arguments, 2);
  return _.map(obj, function(value) {
  return (method.call ? method || value : value[method]).apply(value, args);
  });
  };
 
  // Convenience version of a common use case of `map`: fetching a property.
  _.pluck = function(obj, key) {
  return _.map(obj, function(value){ return value[key]; });
  };
 
  // Return the maximum element or (element-based computation).
  _.max = function(obj, iterator, context) {
  if (!iterator && _.isArray(obj)) return Math.max.apply(Math, obj);
  var result = {computed : -Infinity};
  each(obj, function(value, index, list) {
  var computed = iterator ? iterator.call(context, value, index, list) : value;
  computed >= result.computed && (result = {value : value, computed : computed});
  });
  return result.value;
  };
 
  // Return the minimum element (or element-based computation).
  _.min = function(obj, iterator, context) {
  if (!iterator && _.isArray(obj)) return Math.min.apply(Math, obj);
  var result = {computed : Infinity};
  each(obj, function(value, index, list) {
  var computed = iterator ? iterator.call(context, value, index, list) : value;
  computed < result.computed && (result = {value : value, computed : computed});
  });
  return result.value;
  };
 
  // Sort the object's values by a criterion produced by an iterator.
  _.sortBy = function(obj, iterator, context) {
  return _.pluck(_.map(obj, function(value, index, list) {
  return {
  value : value,
  criteria : iterator.call(context, value, index, list)
  };
  }).sort(function(left, right) {
  var a = left.criteria, b = right.criteria;
  return a < b ? -1 : a > b ? 1 : 0;
  }), 'value');
  };
 
  // Groups the object's values by a criterion produced by an iterator
  _.groupBy = function(obj, iterator) {
  var result = {};
  each(obj, function(value, index) {
  var key = iterator(value, index);
  (result[key] || (result[key] = [])).push(value);
  });
  return result;
  };
 
  // Use a comparator function to figure out at what index an object should
  // be inserted so as to maintain order. Uses binary search.
  _.sortedIndex = function(array, obj, iterator) {
  iterator || (iterator = _.identity);
  var low = 0, high = array.length;
  while (low < high) {
  var mid = (low + high) >> 1;
  iterator(array[mid]) < iterator(obj) ? low = mid + 1 : high = mid;
  }
  return low;
  };
 
  // Safely convert anything iterable into a real, live array.
  _.toArray = function(iterable) {
  if (!iterable) return [];
  if (iterable.toArray) return iterable.toArray();
  if (_.isArray(iterable)) return slice.call(iterable);
  if (_.isArguments(iterable)) return slice.call(iterable);
  return _.values(iterable);
  };
 
  // Return the number of elements in an object.
  _.size = function(obj) {
  return _.toArray(obj).length;
  };
 
  // Array Functions
  // ---------------
 
  // Get the first element of an array. Passing **n** will return the first N
  // values in the array. Aliased as `head`. The **guard** check allows it to work
  // with `_.map`.
  _.first = _.head = function(array, n, guard) {
  return (n != null) && !guard ? slice.call(array, 0, n) : array[0];
  };
 
  // Returns everything but the first entry of the array. Aliased as `tail`.
  // Especially useful on the arguments object. Passing an **index** will return
  // the rest of the values in the array from that index onward. The **guard**
  // check allows it to work with `_.map`.
  _.rest = _.tail = function(array, index, guard) {
  return slice.call(array, (index == null) || guard ? 1 : index);
  };
 
  // Get the last element of an array.
  _.last = function(array) {
  return array[array.length - 1];
  };
 
  // Trim out all falsy values from an array.
  _.compact = function(array) {
  return _.filter(array, function(value){ return !!value; });
  };
 
  // Return a completely flattened version of an array.
  _.flatten = function(array) {
  return _.reduce(array, function(memo, value) {
  if (_.isArray(value)) return memo.concat(_.flatten(value));
  memo[memo.length] = value;
  return memo;
  }, []);
  };
 
  // Return a version of the array that does not contain the specified value(s).
  _.without = function(array) {
  return _.difference(array, slice.call(arguments, 1));
  };
 
  // Produce a duplicate-free version of the array. If the array has already
  // been sorted, you have the option of using a faster algorithm.
  // Aliased as `unique`.
  _.uniq = _.unique = function(array, isSorted) {
  return _.reduce(array, function(memo, el, i) {
  if (0 == i || (isSorted === true ? _.last(memo) != el : !_.include(memo, el))) memo[memo.length] = el;
  return memo;
  }, []);
  };
 
  // Produce an array that contains the union: each distinct element from all of
  // the passed-in arrays.
  _.union = function() {
  return _.uniq(_.flatten(arguments));
  };
 
  // Produce an array that contains every item shared between all the
  // passed-in arrays. (Aliased as "intersect" for back-compat.)
  _.intersection = _.intersect = function(array) {
  var rest = slice.call(arguments, 1);
  return _.filter(_.uniq(array), function(item) {
  return _.every(rest, function(other) {
  return _.indexOf(other, item) >= 0;
  });
  });
  };
 
  // Take the difference between one array and another.
  // Only the elements present in just the first array will remain.
  _.difference = function(array, other) {
  return _.filter(array, function(value){ return !_.include(other, value); });
  };
 
  // Zip together multiple lists into a single array -- elements that share
  // an index go together.
  _.zip = function() {
  var args = slice.call(arguments);
  var length = _.max(_.pluck(args, 'length'));
  var results = new Array(length);
  for (var i = 0; i < length; i++) results[i] = _.pluck(args, "" + i);
  return results;
  };
 
  // If the browser doesn't supply us with indexOf (I'm looking at you, **MSIE**),
  // we need this function. Return the position of the first occurrence of an
  // item in an array, or -1 if the item is not included in the array.
  // Delegates to **ECMAScript 5**'s native `indexOf` if available.
  // If the array is large and already in sort order, pass `true`
  // for **isSorted** to use binary search.
  _.indexOf = function(array, item, isSorted) {
  if (array == null) return -1;
  var i, l;
  if (isSorted) {
  i = _.sortedIndex(array, item);
  return array[i] === item ? i : -1;
  }
  if (nativeIndexOf && array.indexOf === nativeIndexOf) return array.indexOf(item);
  for (i = 0, l = array.length; i < l; i++) if (array[i] === item) return i;
  return -1;
  };
 
 
  // Delegates to **ECMAScript 5**'s native `lastIndexOf` if available.
  _.lastIndexOf = function(array, item) {
  if (array == null) return -1;
  if (nativeLastIndexOf && array.lastIndexOf === nativeLastIndexOf) return array.lastIndexOf(item);
  var i = array.length;
  while (i--) if (array[i] === item) return i;
  return -1;
  };
 
  // Generate an integer Array containing an arithmetic progression. A port of
  // the native Python `range()` function. See
  // [the Python documentation](http://docs.python.org/library/functions.html#range).
  _.range = function(start, stop, step) {
  if (arguments.length <= 1) {
  stop = start || 0;
  start = 0;
  }
  step = arguments[2] || 1;
 
  var len = Math.max(Math.ceil((stop - start) / step), 0);
  var idx = 0;
  var range = new Array(len);
 
  while(idx < len) {
  range[idx++] = start;
  start += step;
  }
 
  return range;
  };
 
  // Function (ahem) Functions
  // ------------------
 
  // Create a function bound to a given object (assigning `this`, and arguments,
  // optionally). Binding with arguments is also known as `curry`.
  // Delegates to **ECMAScript 5**'s native `Function.bind` if available.
  // We check for `func.bind` first, to fail fast when `func` is undefined.
  _.bind = function(func, obj) {
  if (func.bind === nativeBind && nativeBind) return nativeBind.apply(func, slice.call(arguments, 1));
  var args = slice.call(arguments, 2);
  return function() {
  return func.apply(obj, args.concat(slice.call(arguments)));
  };
  };
 
  // Bind all of an object's methods to that object. Useful for ensuring that
  // all callbacks defined on an object belong to it.
  _.bindAll = function(obj) {
  var funcs = slice.call(arguments, 1);
  if (funcs.length == 0) funcs = _.functions(obj);
  each(funcs, function(f) { obj[f] = _.bind(obj[f], obj); });
  return obj;
  };
 
  // Memoize an expensive function by storing its results.
  _.memoize = function(func, hasher) {
  var memo = {};
  hasher || (hasher = _.identity);
  return function() {
  var key = hasher.apply(this, arguments);
  return hasOwnProperty.call(memo, key) ? memo[key] : (memo[key] = func.apply(this, arguments));
  };
  };
 
  // Delays a function for the given number of milliseconds, and then calls
  // it with the arguments supplied.
  _.delay = function(func, wait) {
  var args = slice.call(arguments, 2);
  return setTimeout(function(){ return func.apply(func, args); }, wait);
  };
 
  // Defers a function, scheduling it to run after the current call stack has
  // cleared.
  _.defer = function(func) {
  return _.delay.apply(_, [func, 1].concat(slice.call(arguments, 1)));
  };
 
  // Internal function used to implement `_.throttle` and `_.debounce`.
  var limit = function(func, wait, debounce) {
  var timeout;
  return function() {
  var context = this, args = arguments;
  var throttler = function() {
  timeout = null;
  func.apply(context, args);
  };
  if (debounce) clearTimeout(timeout);
  if (debounce || !timeout) timeout = setTimeout(throttler, wait);
  };
  };
 
  // Returns a function, that, when invoked, will only be triggered at most once
  // during a given window of time.
  _.throttle = function(func, wait) {
  return limit(func, wait, false);
  };
 
  // Returns a function, that, as long as it continues to be invoked, will not
  // be triggered. The function will be called after it stops being called for
  // N milliseconds.
  _.debounce = function(func, wait) {
  return limit(func, wait, true);
  };
 
  // Returns a function that will be executed at most one time, no matter how
  // often you call it. Useful for lazy initialization.
  _.once = function(func) {
  var ran = false, memo;
  return function() {
  if (ran) return memo;
  ran = true;
  return memo = func.apply(this, arguments);
  };
  };
 
  // Returns the first function passed as an argument to the second,
  // allowing you to adjust arguments, run code before and after, and
  // conditionally execute the original function.
  _.wrap = function(func, wrapper) {
  return function() {
  var args = [func].concat(slice.call(arguments));
  return wrapper.apply(this, args);
  };
  };
 
  // Returns a function that is the composition of a list of functions, each
  // consuming the return value of the function that follows.
  _.compose = function() {
  var funcs = slice.call(arguments);
  return function() {
  var args = slice.call(arguments);
  for (var i = funcs.length - 1; i >= 0; i--) {
  args = [funcs[i].apply(this, args)];
  }
  return args[0];
  };
  };
 
  // Returns a function that will only be executed after being called N times.
  _.after = function(times, func) {
  return function() {
  if (--times < 1) { return func.apply(this, arguments); }
  };
  };
 
 
  // Object Functions
  // ----------------
 
  // Retrieve the names of an object's properties.
  // Delegates to **ECMAScript 5**'s native `Object.keys`
  _.keys = nativeKeys || function(obj) {
  if (obj !== Object(obj)) throw new TypeError('Invalid object');
  var keys = [];
  for (var key in obj) if (hasOwnProperty.call(obj, key)) keys[keys.length] = key;
  return keys;
  };
 
  // Retrieve the values of an object's properties.
  _.values = function(obj) {
  return _.map(obj, _.identity);
  };
 
  // Return a sorted list of the function names available on the object.
  // Aliased as `methods`
  _.functions = _.methods = function(obj) {
  var names = [];
  for (var key in obj) {
  if (_.isFunction(obj[key])) names.push(key);
  }
  return names.sort();
  };
 
  // Extend a given object with all the properties in passed-in object(s).
  _.extend = function(obj) {
  each(slice.call(arguments, 1), function(source) {
  for (var prop in source) {
  if (source[prop] !== void 0) obj[prop] = source[prop];
  }
  });
  return obj;
  };
 
  // Fill in a given object with default properties.
  _.defaults = function(obj) {
  each(slice.call(arguments, 1), function(source) {
  for (var prop in source) {
  if (obj[prop] == null) obj[prop] = source[prop];
  }
  });
  return obj;
  };
 
  // Create a (shallow-cloned) duplicate of an object.
  _.clone = function(obj) {
  return _.isArray(obj) ? obj.slice() : _.extend({}, obj);
  };
 
  // Invokes interceptor with the obj, and then returns obj.
  // The primary purpose of this method is to "tap into" a method chain, in
  // order to perform operations on intermediate results within the chain.
  _.tap = function(obj, interceptor) {
  interceptor(obj);
  return obj;
  };
 
  // Perform a deep comparison to check if two objects are equal.
  _.isEqual = function(a, b) {
  // Check object identity.
  if (a === b) return true;
  // Different types?
  var atype = typeof(a), btype = typeof(b);
  if (atype != btype) return false;
  // Basic equality test (watch out for coercions).
  if (a == b) return true;
  // One is falsy and the other truthy.
  if ((!a && b) || (a && !b)) return false;
  // Unwrap any wrapped objects.
  if (a._chain) a = a._wrapped;
  if (b._chain) b = b._wrapped;
  // One of them implements an isEqual()?
  if (a.isEqual) return a.isEqual(b);
  if (b.isEqual) return b.isEqual(a);
  // Check dates' integer values.
  if (_.isDate(a) && _.isDate(b)) return a.getTime() === b.getTime();
  // Both are NaN?
  if (_.isNaN(a) && _.isNaN(b)) return false;
  // Compare regular expressions.
  if (_.isRegExp(a) && _.isRegExp(b))
  return a.source === b.source &&
  a.global === b.global &&
  a.ignoreCase === b.ignoreCase &&
  a.multiline === b.multiline;
  // If a is not an object by this point, we can't handle it.
  if (atype !== 'object') return false;
  // Check for different array lengths before comparing contents.
  if (a.length && (a.length !== b.length)) return false;
  // Nothing else worked, deep compare the contents.
  var aKeys = _.keys(a), bKeys = _.keys(b);
  // Different object sizes?
  if (aKeys.length != bKeys.length) return false;
  // Recursive comparison of contents.
  for (var key in a) if (!(key in b) || !_.isEqual(a[key], b[key])) return false;
  return true;
  };
 
  // Is a given array or object empty?
  _.isEmpty = function(obj) {
  if (_.isArray(obj) || _.isString(obj)) return obj.length === 0;
  for (var key in obj) if (hasOwnProperty.call(obj, key)) return false;
  return true;
  };
 
  // Is a given value a DOM element?
  _.isElement = function(obj) {
  return !!(obj && obj.nodeType == 1);
  };
 
  // Is a given value an array?
  // Delegates to ECMA5's native Array.isArray
  _.isArray = nativeIsArray || function(obj) {
  return toString.call(obj) === '[object Array]';
  };
 
  // Is a given variable an object?
  _.isObject = function(obj) {
  return obj === Object(obj);
  };
 
  // Is a given variable an arguments object?
  _.isArguments = function(obj) {
  return !!(obj && hasOwnProperty.call(obj, 'callee'));
  };
 
  // Is a given value a function?
  _.isFunction = function(obj) {
  return !!(obj && obj.constructor && obj.call && obj.apply);
  };
 
  // Is a given value a string?
  _.isString = function(obj) {
  return !!(obj === '' || (obj && obj.charCodeAt && obj.substr));
  };
 
  // Is a given value a number?
  _.isNumber = function(obj) {
  return !!(obj === 0 || (obj && obj.toExponential && obj.toFixed));
  };
 
  // Is the given value `NaN`? `NaN` happens to be the only value in JavaScript
  // that does not equal itself.
  _.isNaN = function(obj) {
  return obj !== obj;
  };
 
  // Is a given value a boolean?
  _.isBoolean = function(obj) {
  return obj === true || obj === false;
  };
 
  // Is a given value a date?
  _.isDate = function(obj) {
  return !!(obj && obj.getTimezoneOffset && obj.setUTCFullYear);
  };
 
  // Is the given value a regular expression?
  _.isRegExp = function(obj) {
  return !!(obj && obj.test && obj.exec && (obj.ignoreCase || obj.ignoreCase === false));
  };
 
  // Is a given value equal to null?
  _.isNull = function(obj) {
  return obj === null;
  };
 
  // Is a given variable undefined?
  _.isUndefined = function(obj) {
  return obj === void 0;
  };
 
  // Utility Functions
  // -----------------
 
  // Run Underscore.js in *noConflict* mode, returning the `_` variable to its
  // previous owner. Returns a reference to the Underscore object.
  _.noConflict = function() {
  root._ = previousUnderscore;
  return this;
  };
 
  // Keep the identity function around for default iterators.
  _.identity = function(value) {
  return value;
  };
 
  // Run a function **n** times.
  _.times = function (n, iterator, context) {
  for (var i = 0; i < n; i++) iterator.call(context, i);
  };
 
  // Add your own custom functions to the Underscore object, ensuring that
  // they're correctly added to the OOP wrapper as well.
  _.mixin = function(obj) {
  each(_.functions(obj), function(name){
  addToWrapper(name, _[name] = obj[name]);
  });
  };
 
  // Generate a unique integer id (unique within the entire client session).
  // Useful for temporary DOM ids.
  var idCounter = 0;
  _.uniqueId = function(prefix) {
  var id = idCounter++;
  return prefix ? prefix + id : id;
  };
 
  // By default, Underscore uses ERB-style template delimiters, change the
  // following template settings to use alternative delimiters.
  _.templateSettings = {
  evaluate : /<%([\s\S]+?)%>/g,
  interpolate : /<%=([\s\S]+?)%>/g
  };
 
  // JavaScript micro-templating, similar to John Resig's implementation.
  // Underscore templating handles arbitrary delimiters, preserves whitespace,
  // and correctly escapes quotes within interpolated code.
  _.template = function(str, data) {
  var c = _.templateSettings;
  var tmpl = 'var __p=[],print=function(){__p.push.apply(__p,arguments);};' +
  'with(obj||{}){__p.push(\'' +
  str.replace(/\\/g, '\\\\')
  .replace(/'/g, "\\'")
  .replace(c.interpolate, function(match, code) {
  return "'," + code.replace(/\\'/g, "'") + ",'";
  })
  .replace(c.evaluate || null, function(match, code) {
  return "');" + code.replace(/\\'/g, "'")
  .replace(/[\r\n\t]/g, ' ') + "__p.push('";
  })
  .replace(/\r/g, '\\r')
  .replace(/\n/g, '\\n')
  .replace(/\t/g, '\\t')
  + "');}return __p.join('');";
  var func = new Function('obj', tmpl);
  return data ? func(data) : func;
  };
 
  // The OOP Wrapper
  // ---------------
 
  // If Underscore is called as a function, it returns a wrapped object that
  // can be used OO-style. This wrapper holds altered versions of all the
  // underscore functions. Wrapped objects may be chained.
  var wrapper = function(obj) { this._wrapped = obj; };
 
  // Expose `wrapper.prototype` as `_.prototype`
  _.prototype = wrapper.prototype;
 
  // Helper function to continue chaining intermediate results.
  var result = function(obj, chain) {
  return chain ? _(obj).chain() : obj;
  };
 
  // A method to easily add functions to the OOP wrapper.
  var addToWrapper = function(name, func) {
  wrapper.prototype[name] = function() {
  var args = slice.call(arguments);
  unshift.call(args, this._wrapped);
  return result(func.apply(_, args), this._chain);
  };
  };
 
  // Add all of the Underscore functions to the wrapper object.
  _.mixin(_);
 
  // Add all mutator Array functions to the wrapper.
  each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {
  var method = ArrayProto[name];
  wrapper.prototype[name] = function() {
  method.apply(this._wrapped, arguments);
  return result(this._wrapped, this._chain);
  };
  });
 
  // Add all accessor Array functions to the wrapper.
  each(['concat', 'join', 'slice'], function(name) {
  var method = ArrayProto[name];
  wrapper.prototype[name] = function() {
  return result(method.apply(this._wrapped, arguments), this._chain);
  };
  });
 
  // Start chaining a wrapped Underscore object.
  wrapper.prototype.chain = function() {
  this._chain = true;
  return this;
  };
 
  // Extracts the result from a wrapped and chained object.
  wrapper.prototype.value = function() {
  return this._wrapped;
  };
 
  })();
  /**
  * Flotr2 (c) 2012 Carl Sutherland
  * MIT License
  * Special thanks to:
  * Flotr: http://code.google.com/p/flotr/ (fork)
  * Flot: https://github.com/flot/flot (original fork)
  */
  (function () {
 
  var
  global = this,
  previousFlotr = this.Flotr,
  Flotr;
 
  Flotr = {
  _: _,
  bean: bean,
  isIphone: /iphone/i.test(navigator.userAgent),
  isIE: (navigator.appVersion.indexOf("MSIE") != -1 ? parseFloat(navigator.appVersion.split("MSIE")[1]) : false),
 
  /**
  * An object of the registered graph types. Use Flotr.addType(type, object)
  * to add your own type.
  */
  graphTypes: {},
 
  /**
  * The list of the registered plugins
  */
  plugins: {},
 
  /**
  * Can be used to add your own chart type.
  * @param {String} name - Type of chart, like 'pies', 'bars' etc.
  * @param {String} graphType - The object containing the basic drawing functions (draw, etc)
  */
  addType: function(name, graphType){
  Flotr.graphTypes[name] = graphType;
  Flotr.defaultOptions[name] = graphType.options || {};
  Flotr.defaultOptions.defaultType = Flotr.defaultOptions.defaultType || name;
  },
 
  /**
  * Can be used to add a plugin
  * @param {String} name - The name of the plugin
  * @param {String} plugin - The object containing the plugin's data (callbacks, options, function1, function2, ...)
  */
  addPlugin: function(name, plugin){
  Flotr.plugins[name] = plugin;
  Flotr.defaultOptions[name] = plugin.options || {};
  },
 
  /**
  * Draws the graph. This function is here for backwards compatibility with Flotr version 0.1.0alpha.
  * You could also draw graphs by directly calling Flotr.Graph(element, data, options).
  * @param {Element} el - element to insert the graph into
  * @param {Object} data - an array or object of dataseries
  * @param {Object} options - an object containing options
  * @param {Class} _GraphKlass_ - (optional) Class to pass the arguments to, defaults to Flotr.Graph
  * @return {Object} returns a new graph object and of course draws the graph.
  */
  draw: function(el, data, options, GraphKlass){
  GraphKlass = GraphKlass || Flotr.Graph;
  return new GraphKlass(el, data, options);
  },
 
  /**
  * Recursively merges two objects.
  * @param {Object} src - source object (likely the object with the least properties)
  * @param {Object} dest - destination object (optional, object with the most properties)
  * @return {Object} recursively merged Object
  * @TODO See if we can't remove this.
  */
  merge: function(src, dest){
  var i, v, result = dest || {};
 
  for (i in src) {
  v = src[i];
  if (v && typeof(v) === 'object') {
  if (v.constructor === Array) {
  result[i] = this._.clone(v);
  } else if (v.constructor !== RegExp && !this._.isElement(v)) {
  result[i] = Flotr.merge(v, (dest ? dest[i] : undefined));
  } else {
  result[i] = v;
  }
  } else {
  result[i] = v;
  }
  }
 
  return result;
  },
 
  /**
  * Recursively clones an object.
  * @param {Object} object - The object to clone
  * @return {Object} the clone
  * @TODO See if we can't remove this.
  */
  clone: function(object){
  return Flotr.merge(object, {});
  },
 
  /**
  * Function calculates the ticksize and returns it.
  * @param {Integer} noTicks - number of ticks
  * @param {Integer} min - lower bound integer value for the current axis
  * @param {Integer} max - upper bound integer value for the current axis
  * @param {Integer} decimals - number of decimals for the ticks
  * @return {Integer} returns the ticksize in pixels
  */
  getTickSize: function(noTicks, min, max, decimals){
  var delta = (max - min) / noTicks,
  magn = Flotr.getMagnitude(delta),
  tickSize = 10,
  norm = delta / magn; // Norm is between 1.0 and 10.0.
 
  if(norm < 1.5) tickSize = 1;
  else if(norm < 2.25) tickSize = 2;
  else if(norm < 3) tickSize = ((decimals === 0) ? 2 : 2.5);
  else if(norm < 7.5) tickSize = 5;
 
  return tickSize * magn;
  },
 
  /**
  * Default tick formatter.
  * @param {String, Integer} val - tick value integer
  * @param {Object} axisOpts - the axis' options
  * @return {String} formatted tick string
  */
  defaultTickFormatter: function(val, axisOpts){
  return val+'';
  },
 
  /**
  * Formats the mouse tracker values.
  * @param {Object} obj - Track value Object {x:..,y:..}
  * @return {String} Formatted track string
  */
  defaultTrackFormatter: function(obj){
  return '('+obj.x+', '+obj.y+')';
  },
 
  /**
  * Utility function to convert file size values in bytes to kB, MB, ...
  * @param value {Number} - The value to convert
  * @param precision {Number} - The number of digits after the comma (default: 2)
  * @param base {Number} - The base (default: 1000)
  */
  engineeringNotation: function(value, precision, base){
  var sizes = ['Y','Z','E','P','T','G','M','k',''],
  fractionSizes = ['y','z','a','f','p','n','µ','m',''],
  total = sizes.length;
 
  base = base || 1000;
  precision = Math.pow(10, precision || 2);
 
  if (value === 0) return 0;
 
  if (value > 1) {
  while (total-- && (value >= base)) value /= base;
  }
  else {
  sizes = fractionSizes;
  total = sizes.length;
  while (total-- && (value < 1)) value *= base;
  }
 
  return (Math.round(value * precision) / precision) + sizes[total];
  },
 
  /**
  * Returns the magnitude of the input value.
  * @param {Integer, Float} x - integer or float value
  * @return {Integer, Float} returns the magnitude of the input value
  */
  getMagnitude: function(x){
  return Math.pow(10, Math.floor(Math.log(x) / Math.LN10));
  },
  toPixel: function(val){
  return Math.floor(val)+0.5;//((val-Math.round(val) < 0.4) ? (Math.floor(val)-0.5) : val);
  },
  toRad: function(angle){
  return -angle * (Math.PI/180);
  },
  floorInBase: function(n, base) {
  return base * Math.floor(n / base);
  },
  drawText: function(ctx, text, x, y, style) {
  if (!ctx.fillText) {
  ctx.drawText(text, x, y, style);
  return;
  }
 
  style = this._.extend({
  size: Flotr.defaultOptions.fontSize,
  color: '#000000',
  textAlign: 'left',
  textBaseline: 'bottom',
  weight: 1,
  angle: 0
  }, style);
 
  ctx.save();
  ctx.translate(x, y);
  ctx.rotate(style.angle);
  ctx.fillStyle = style.color;
  ctx.font = (style.weight > 1 ? "bold " : "") + (style.size*1.3) + "px sans-serif";
  ctx.textAlign = style.textAlign;
  ctx.textBaseline = style.textBaseline;
  ctx.fillText(text, 0, 0);
  ctx.restore();
  },
  getBestTextAlign: function(angle, style) {
  style = style || {textAlign: 'center', textBaseline: 'middle'};
  angle += Flotr.getTextAngleFromAlign(style);
 
  if (Math.abs(Math.cos(angle)) > 10e-3)
  style.textAlign = (Math.cos(angle) > 0 ? 'right' : 'left');
 
  if (Math.abs(Math.sin(angle)) > 10e-3)
  style.textBaseline = (Math.sin(angle) > 0 ? 'top' : 'bottom');
 
  return style;
  },
  alignTable: {
  'right middle' : 0,
  'right top' : Math.PI/4,
  'center top' : Math.PI/2,
  'left top' : 3*(Math.PI/4),
  'left middle' : Math.PI,
  'left bottom' : -3*(Math.PI/4),
  'center bottom': -Math.PI/2,
  'right bottom' : -Math.PI/4,
  'center middle': 0
  },
  getTextAngleFromAlign: function(style) {
  return Flotr.alignTable[style.textAlign+' '+style.textBaseline] || 0;
  },
  noConflict : function () {
  global.Flotr = previousFlotr;
  return this;
  }
  };
 
  global.Flotr = Flotr;
 
  })();
 
  /**
  * Flotr Defaults
  */
  Flotr.defaultOptions = {
  colors: ['#00A8F0', '#C0D800', '#CB4B4B', '#4DA74D', '#9440ED'], //=> The default colorscheme. When there are > 5 series, additional colors are generated.
  ieBackgroundColor: '#FFFFFF', // Background color for excanvas clipping
  title: null, // => The graph's title
  subtitle: null, // => The graph's subtitle
  shadowSize: 4, // => size of the 'fake' shadow
  defaultType: null, // => default series type
  HtmlText: true, // => wether to draw the text using HTML or on the canvas
  fontColor: '#545454', // => default font color
  fontSize: 7.5, // => canvas' text font size
  resolution: 1, // => resolution of the graph, to have printer-friendly graphs !
  parseFloat: true, // => whether to preprocess data for floats (ie. if input is string)
  xaxis: {
  ticks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  minorTicks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  showLabels: true, // => setting to true will show the axis ticks labels, hide otherwise
  showMinorLabels: false,// => true to show the axis minor ticks labels, false to hide
  labelsAngle: 0, // => labels' angle, in degrees
  title: null, // => axis title
  titleAngle: 0, // => axis title's angle, in degrees
  noTicks: 5, // => number of ticks for automagically generated ticks
  minorTickFreq: null, // => number of minor ticks between major ticks for autogenerated ticks
  tickFormatter: Flotr.defaultTickFormatter, // => fn: number, Object -> string
  tickDecimals: null, // => no. of decimals, null means auto
  min: null, // => min. value to show, null means set automatically
  max: null, // => max. value to show, null means set automatically
  autoscale: false, // => Turns autoscaling on with true
  autoscaleMargin: 0, // => margin in % to add if auto-setting min/max
  color: null, // => color of the ticks
  mode: 'normal', // => can be 'time' or 'normal'
  timeFormat: null,
  timeMode:'UTC', // => For UTC time ('local' for local time).
  timeUnit:'millisecond',// => Unit for time (millisecond, second, minute, hour, day, month, year)
  scaling: 'linear', // => Scaling, can be 'linear' or 'logarithmic'
  base: Math.E,
  titleAlign: 'center',
  margin: true // => Turn off margins with false
  },
  x2axis: {},
  yaxis: {
  ticks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  minorTicks: null, // => format: either [1, 3] or [[1, 'a'], 3]
  showLabels: true, // => setting to true will show the axis ticks labels, hide otherwise
  showMinorLabels: false,// => true to show the axis minor ticks labels, false to hide
  labelsAngle: 0, // => labels' angle, in degrees
  title: null, // => axis title
  titleAngle: 90, // => axis title's angle, in degrees
  noTicks: 5, // => number of ticks for automagically generated ticks
  minorTickFreq: null, // => number of minor ticks between major ticks for autogenerated ticks
  tickFormatter: Flotr.defaultTickFormatter, // => fn: number, Object -> string
  tickDecimals: null, // => no. of decimals, null means auto
  min: null, // => min. value to show, null means set automatically
  max: null, // => max. value to show, null means set automatically
  autoscale: false, // => Turns autoscaling on with true
  autoscaleMargin: 0, // => margin in % to add if auto-setting min/max
  color: null, // => The color of the ticks
  scaling: 'linear', // => Scaling, can be 'linear' or 'logarithmic'
  base: Math.E,
  titleAlign: 'center',
  margin: true // => Turn off margins with false
  },
  y2axis: {
  titleAngle: 270
  },
  grid: {
  color: '#545454', // => primary color used for outline and labels
  backgroundColor: null, // => null for transparent, else color
  backgroundImage: null, // => background image. String or object with src, left and top
  watermarkAlpha: 0.4, // =>
  tickColor: '#DDDDDD', // => color used for the ticks
  labelMargin: 3, // => margin in pixels
  verticalLines: true, // => whether to show gridlines in vertical direction
  minorVerticalLines: null, // => whether to show gridlines for minor ticks in vertical dir.
  horizontalLines: true, // => whether to show gridlines in horizontal direction
  minorHorizontalLines: null, // => whether to show gridlines for minor ticks in horizontal dir.
  outlineWidth: 1, // => width of the grid outline/border in pixels
  outline : 'nsew', // => walls of the outline to display
  circular: false // => if set to true, the grid will be circular, must be used when radars are drawn
  },
  mouse: {
  track: false, // => true to track the mouse, no tracking otherwise
  trackAll: false,
  position: 'se', // => position of the value box (default south-east)
  relative: false, // => next to the mouse cursor
  trackFormatter: Flotr.defaultTrackFormatter, // => formats the values in the value box
  margin: 5, // => margin in pixels of the valuebox
  lineColor: '#FF3F19', // => line color of points that are drawn when mouse comes near a value of a series
  trackDecimals: 1, // => decimals for the track values
  sensibility: 2, // => the lower this number, the more precise you have to aim to show a value
  trackY: true, // => whether or not to track the mouse in the y axis
  radius: 3, // => radius of the track point
  fillColor: null, // => color to fill our select bar with only applies to bar and similar graphs (only bars for now)
  fillOpacity: 0.4 // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  }
  };
 
  /**
  * Flotr Color
  */
 
  (function () {
 
  var
  _ = Flotr._;
 
  // Constructor
  function Color (r, g, b, a) {
  this.rgba = ['r','g','b','a'];
  var x = 4;
  while(-1<--x){
  this[this.rgba[x]] = arguments[x] || ((x==3) ? 1.0 : 0);
  }
  this.normalize();
  }
 
  // Constants
  var COLOR_NAMES = {
  aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],
  brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],
  darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],
  darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],
  darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],
  khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],
  lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],
  maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],
  violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]
  };
 
  Color.prototype = {
  scale: function(rf, gf, bf, af){
  var x = 4;
  while (-1 < --x) {
  if (!_.isUndefined(arguments[x])) this[this.rgba[x]] *= arguments[x];
  }
  return this.normalize();
  },
  alpha: function(alpha) {
  if (!_.isUndefined(alpha) && !_.isNull(alpha)) {
  this.a = alpha;
  }
  return this.normalize();
  },
  clone: function(){
  return new Color(this.r, this.b, this.g, this.a);
  },
  limit: function(val,minVal,maxVal){
  return Math.max(Math.min(val, maxVal), minVal);
  },
  normalize: function(){
  var limit = this.limit;
  this.r = limit(parseInt(this.r, 10), 0, 255);
  this.g = limit(parseInt(this.g, 10), 0, 255);
  this.b = limit(parseInt(this.b, 10), 0, 255);
  this.a = limit(this.a, 0, 1);
  return this;
  },
  distance: function(color){
  if (!color) return;
  color = new Color.parse(color);
  var dist = 0, x = 3;
  while(-1<--x){
  dist += Math.abs(this[this.rgba[x]] - color[this.rgba[x]]);
  }
  return dist;
  },
  toString: function(){
  return (this.a >= 1.0) ? 'rgb('+[this.r,this.g,this.b].join(',')+')' : 'rgba('+[this.r,this.g,this.b,this.a].join(',')+')';
  },
  contrast: function () {
  var
  test = 1 - ( 0.299 * this.r + 0.587 * this.g + 0.114 * this.b) / 255;
  return (test < 0.5 ? '#000000' : '#ffffff');
  }
  };
 
  _.extend(Color, {
  /**
  * Parses a color string and returns a corresponding Color.
  * The different tests are in order of probability to improve speed.
  * @param {String, Color} str - string thats representing a color
  * @return {Color} returns a Color object or false
  */
  parse: function(color){
  if (color instanceof Color) return color;
 
  var result;
 
  // #a0b1c2
  if((result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color)))
  return new Color(parseInt(result[1], 16), parseInt(result[2], 16), parseInt(result[3], 16));
 
  // rgb(num,num,num)
  if((result = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color)))
  return new Color(parseInt(result[1], 10), parseInt(result[2], 10), parseInt(result[3], 10));
 
  // #fff
  if((result = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color)))
  return new Color(parseInt(result[1]+result[1],16), parseInt(result[2]+result[2],16), parseInt(result[3]+result[3],16));
 
  // rgba(num,num,num,num)
  if((result = /rgba\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(color)))
  return new Color(parseInt(result[1], 10), parseInt(result[2], 10), parseInt(result[3], 10), parseFloat(result[4]));
 
  // rgb(num%,num%,num%)
  if((result = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color)))
  return new Color(parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55);
 
  // rgba(num%,num%,num%,num)
  if((result = /rgba\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\s*\)/.exec(color)))
  return new Color(parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55, parseFloat(result[4]));
 
  // Otherwise, we're most likely dealing with a named color.
  var name = (color+'').replace(/^\s*([\S\s]*?)\s*$/, '$1').toLowerCase();
  if(name == 'transparent'){
  return new Color(255, 255, 255, 0);
  }
  return (result = COLOR_NAMES[name]) ? new Color(result[0], result[1], result[2]) : new Color(0, 0, 0, 0);
  },
 
  /**
  * Process color and options into color style.
  */
  processColor: function(color, options) {
 
  var opacity = options.opacity;
  if (!color) return 'rgba(0, 0, 0, 0)';
  if (color instanceof Color) return color.alpha(opacity).toString();
  if (_.isString(color)) return Color.parse(color).alpha(opacity).toString();
 
  var grad = color.colors ? color : {colors: color};
 
  if (!options.ctx) {
  if (!_.isArray(grad.colors)) return 'rgba(0, 0, 0, 0)';
  return Color.parse(_.isArray(grad.colors[0]) ? grad.colors[0][1] : grad.colors[0]).alpha(opacity).toString();
  }
  grad = _.extend({start: 'top', end: 'bottom'}, grad);
 
  if (/top/i.test(grad.start)) options.x1 = 0;
  if (/left/i.test(grad.start)) options.y1 = 0;
  if (/bottom/i.test(grad.end)) options.x2 = 0;
  if (/right/i.test(grad.end)) options.y2 = 0;
 
  var i, c, stop, gradient = options.ctx.createLinearGradient(options.x1, options.y1, options.x2, options.y2);
  for (i = 0; i < grad.colors.length; i++) {
  c = grad.colors[i];
  if (_.isArray(c)) {
  stop = c[0];
  c = c[1];
  }
  else stop = i / (grad.colors.length-1);
  gradient.addColorStop(stop, Color.parse(c).alpha(opacity));
  }
  return gradient;
  }
  });
 
  Flotr.Color = Color;
 
  })();
 
  /**
  * Flotr Date
  */
  Flotr.Date = {
 
  set : function (date, name, mode, value) {
  mode = mode || 'UTC';
  name = 'set' + (mode === 'UTC' ? 'UTC' : '') + name;
  date[name](value);
  },
 
  get : function (date, name, mode) {
  mode = mode || 'UTC';
  name = 'get' + (mode === 'UTC' ? 'UTC' : '') + name;
  return date[name]();
  },
 
  format: function(d, format, mode) {
  if (!d) return;
 
  // We should maybe use an "official" date format spec, like PHP date() or ColdFusion
  // http://fr.php.net/manual/en/function.date.php
  // http://livedocs.adobe.com/coldfusion/8/htmldocs/help.html?content=functions_c-d_29.html
  var
  get = this.get,
  tokens = {
  h: get(d, 'Hours', mode).toString(),
  H: leftPad(get(d, 'Hours', mode)),
  M: leftPad(get(d, 'Minutes', mode)),
  S: leftPad(get(d, 'Seconds', mode)),
  s: get(d, 'Milliseconds', mode),
  d: get(d, 'Date', mode).toString(),
  m: (get(d, 'Month') + 1).toString(),
  y: get(d, 'FullYear').toString(),
  b: Flotr.Date.monthNames[get(d, 'Month', mode)]
  };
 
  function leftPad(n){
  n += '';
  return n.length == 1 ? "0" + n : n;
  }
 
  var r = [], c,
  escape = false;
 
  for (var i = 0; i < format.length; ++i) {
  c = format.charAt(i);
 
  if (escape) {
  r.push(tokens[c] || c);
  escape = false;
  }
  else if (c == "%")
  escape = true;
  else
  r.push(c);
  }
  return r.join('');
  },
  getFormat: function(time, span) {
  var tu = Flotr.Date.timeUnits;
  if (time < tu.second) return "%h:%M:%S.%s";
  else if (time < tu.minute) return "%h:%M:%S";
  else if (time < tu.day) return (span < 2 * tu.day) ? "%h:%M" : "%b %d %h:%M";
  else if (time < tu.month) return "%b %d";
  else if (time < tu.year) return (span < tu.year) ? "%b" : "%b %y";
  else return "%y";
  },
  formatter: function (v, axis) {
  var
  options = axis.options,
  scale = Flotr.Date.timeUnits[options.timeUnit],
  d = new Date(v * scale);
 
  // first check global format
  if (axis.options.timeFormat)
  return Flotr.Date.format(d, options.timeFormat, options.timeMode);
 
  var span = (axis.max - axis.min) * scale,
  t = axis.tickSize * Flotr.Date.timeUnits[axis.tickUnit];
 
  return Flotr.Date.format(d, Flotr.Date.getFormat(t, span), options.timeMode);
  },
  generator: function(axis) {
 
  var
  set = this.set,
  get = this.get,
  timeUnits = this.timeUnits,
  spec = this.spec,
  options = axis.options,
  mode = options.timeMode,
  scale = timeUnits[options.timeUnit],
  min = axis.min * scale,
  max = axis.max * scale,
  delta = (max - min) / options.noTicks,
  ticks = [],
  tickSize = axis.tickSize,
  tickUnit,
  formatter, i;
 
  // Use custom formatter or time tick formatter
  formatter = (options.tickFormatter === Flotr.defaultTickFormatter ?
  this.formatter : options.tickFormatter
  );
 
  for (i = 0; i < spec.length - 1; ++i) {
  var d = spec[i][0] * timeUnits[spec[i][1]];
  if (delta < (d + spec[i+1][0] * timeUnits[spec[i+1][1]]) / 2 && d >= tickSize)
  break;
  }
  tickSize = spec[i][0];
  tickUnit = spec[i][1];
 
  // special-case the possibility of several years
  if (tickUnit == "year") {
  tickSize = Flotr.getTickSize(options.noTicks*timeUnits.year, min, max, 0);
 
  // Fix for 0.5 year case
  if (tickSize == 0.5) {
  tickUnit = "month";
  tickSize = 6;
  }
  }
 
  axis.tickUnit = tickUnit;
  axis.tickSize = tickSize;
 
  var
  d = new Date(min);
 
  var step = tickSize * timeUnits[tickUnit];
 
  function setTick (name) {
  set(d, name, mode, Flotr.floorInBase(
  get(d, name, mode), tickSize
  ));
  }
 
  switch (tickUnit) {
  case "millisecond": setTick('Milliseconds'); break;
  case "second": setTick('Seconds'); break;
  case "minute": setTick('Minutes'); break;
  case "hour": setTick('Hours'); break;
  case "month": setTick('Month'); break;
  case "year": setTick('FullYear'); break;
  }
 
  // reset smaller components
  if (step >= timeUnits.second) set(d, 'Milliseconds', mode, 0);
  if (step >= timeUnits.minute) set(d, 'Seconds', mode, 0);
  if (step >= timeUnits.hour) set(d, 'Minutes', mode, 0);
  if (step >= timeUnits.day) set(d, 'Hours', mode, 0);
  if (step >= timeUnits.day * 4) set(d, 'Date', mode, 1);
  if (step >= timeUnits.year) set(d, 'Month', mode, 0);
 
  var carry = 0, v = NaN, prev;
  do {
  prev = v;
  v = d.getTime();
  ticks.push({ v: v / scale, label: formatter(v / scale, axis) });
  if (tickUnit == "month") {
  if (tickSize < 1) {
  /* a bit complicated - we'll divide the month up but we need to take care of fractions
  so we don't end up in the middle of a day */
  set(d, 'Date', mode, 1);
  var start = d.getTime();
  set(d, 'Month', mode, get(d, 'Month', mode) + 1)
  var end = d.getTime();
  d.setTime(v + carry * timeUnits.hour + (end - start) * tickSize);
  carry = get(d, 'Hours', mode)
  set(d, 'Hours', mode, 0);
  }
  else
  set(d, 'Month', mode, get(d, 'Month', mode) + tickSize);
  }
  else if (tickUnit == "year") {
  set(d, 'FullYear', mode, get(d, 'FullYear', mode) + tickSize);
  }
  else
  d.setTime(v + step);
 
  } while (v < max && v != prev);
 
  return ticks;
  },
  timeUnits: {
  millisecond: 1,
  second: 1000,
  minute: 1000 * 60,
  hour: 1000 * 60 * 60,
  day: 1000 * 60 * 60 * 24,
  month: 1000 * 60 * 60 * 24 * 30,
  year: 1000 * 60 * 60 * 24 * 365.2425
  },
  // the allowed tick sizes, after 1 year we use an integer algorithm
  spec: [
  [1, "millisecond"], [20, "millisecond"], [50, "millisecond"], [100, "millisecond"], [200, "millisecond"], [500, "millisecond"],
  [1, "second"], [2, "second"], [5, "second"], [10, "second"], [30, "second"],
  [1, "minute"], [2, "minute"], [5, "minute"], [10, "minute"], [30, "minute"],
  [1, "hour"], [2, "hour"], [4, "hour"], [8, "hour"], [12, "hour"],
  [1, "day"], [2, "day"], [3, "day"],
  [0.25, "month"], [0.5, "month"], [1, "month"], [2, "month"], [3, "month"], [6, "month"],
  [1, "year"]
  ],
  monthNames: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
  };
 
  (function () {
 
  var _ = Flotr._;
 
  Flotr.DOM = {
  addClass: function(element, name){
  var classList = (element.className ? element.className : '');
  if (_.include(classList.split(/\s+/g), name)) return;
  element.className = (classList ? classList + ' ' : '') + name;
  },
  /**
  * Create an element.
  */
  create: function(tag){
  return document.createElement(tag);
  },
  node: function(html) {
  var div = Flotr.DOM.create('div'), n;
  div.innerHTML = html;
  n = div.children[0];
  div.innerHTML = '';
  return n;
  },
  /**
  * Remove all children.
  */
  empty: function(element){
  element.innerHTML = '';
  /*
  if (!element) return;
  _.each(element.childNodes, function (e) {
  Flotr.DOM.empty(e);
  element.removeChild(e);
  });
  */
  },
  hide: function(element){
  Flotr.DOM.setStyles(element, {display:'none'});
  },
  /**
  * Insert a child.
  * @param {Element} element
  * @param {Element|String} Element or string to be appended.
  */
  insert: function(element, child){
  if(_.isString(child))
  element.innerHTML += child;
  else if (_.isElement(child))
  element.appendChild(child);
  },
  // @TODO find xbrowser implementation
  opacity: function(element, opacity) {
  element.style.opacity = opacity;
  },
  position: function(element, p){
  if (!element.offsetParent)
  return {left: (element.offsetLeft || 0), top: (element.offsetTop || 0)};
 
  p = this.position(element.offsetParent);
  p.left += element.offsetLeft;
  p.top += element.offsetTop;
  return p;
  },
  removeClass: function(element, name) {
  var classList = (element.className ? element.className : '');
  element.className = _.filter(classList.split(/\s+/g), function (c) {
  if (c != name) return true; }
  ).join(' ');
  },
  setStyles: function(element, o) {
  _.each(o, function (value, key) {
  element.style[key] = value;
  });
  },
  show: function(element){
  Flotr.DOM.setStyles(element, {display:''});
  },
  /**
  * Return element size.
  */
  size: function(element){
  return {
  height : element.offsetHeight,
  width : element.offsetWidth };
  }
  };
 
  })();
 
  /**
  * Flotr Event Adapter
  */
  (function () {
  var
  F = Flotr,
  bean = F.bean;
  F.EventAdapter = {
  observe: function(object, name, callback) {
  bean.add(object, name, callback);
  return this;
  },
  fire: function(object, name, args) {
  bean.fire(object, name, args);
  if (typeof(Prototype) != 'undefined')
  Event.fire(object, name, args);
  // @TODO Someone who uses mootools, add mootools adapter for existing applciations.
  return this;
  },
  stopObserving: function(object, name, callback) {
  bean.remove(object, name, callback);
  return this;
  },
  eventPointer: function(e) {
  if (!F._.isUndefined(e.touches) && e.touches.length > 0) {
  return {
  x : e.touches[0].pageX,
  y : e.touches[0].pageY
  };
  } else if (!F._.isUndefined(e.changedTouches) && e.changedTouches.length > 0) {
  return {
  x : e.changedTouches[0].pageX,
  y : e.changedTouches[0].pageY
  };
  } else if (e.pageX || e.pageY) {
  return {
  x : e.pageX,
  y : e.pageY
  };
  } else if (e.clientX || e.clientY) {
  var
  d = document,
  b = d.body,
  de = d.documentElement;
  return {
  x: e.clientX + b.scrollLeft + de.scrollLeft,
  y: e.clientY + b.scrollTop + de.scrollTop
  };
  }
  }
  };
  })();
 
  /**
  * Text Utilities
  */
  (function () {
 
  var
  F = Flotr,
  D = F.DOM,
  _ = F._,
 
  Text = function (o) {
  this.o = o;
  };
 
  Text.prototype = {
 
  dimensions : function (text, canvasStyle, htmlStyle, className) {
 
  if (!text) return { width : 0, height : 0 };
 
  return (this.o.html) ?
  this.html(text, this.o.element, htmlStyle, className) :
  this.canvas(text, canvasStyle);
  },
 
  canvas : function (text, style) {
 
  if (!this.o.textEnabled) return;
  style = style || {};
 
  var
  metrics = this.measureText(text, style),
  width = metrics.width,
  height = style.size || F.defaultOptions.fontSize,
  angle = style.angle || 0,
  cosAngle = Math.cos(angle),
  sinAngle = Math.sin(angle),
  widthPadding = 2,
  heightPadding = 6,
  bounds;
 
  bounds = {
  width: Math.abs(cosAngle * width) + Math.abs(sinAngle * height) + widthPadding,
  height: Math.abs(sinAngle * width) + Math.abs(cosAngle * height) + heightPadding
  };
 
  return bounds;
  },
 
  html : function (text, element, style, className) {
 
  var div = D.create('div');
 
  D.setStyles(div, { 'position' : 'absolute', 'top' : '-10000px' });
  D.insert(div, '<div style="'+style+'" class="'+className+' flotr-dummy-div">' + text + '</div>');
  D.insert(this.o.element, div);
 
  return D.size(div);
  },
 
  measureText : function (text, style) {
 
  var
  context = this.o.ctx,
  metrics;
 
  if (!context.fillText || (F.isIphone && context.measure)) {
  return { width : context.measure(text, style)};
  }
 
  style = _.extend({
  size: F.defaultOptions.fontSize,
  weight: 1,
  angle: 0
  }, style);
 
  context.save();
  context.font = (style.weight > 1 ? "bold " : "") + (style.size*1.3) + "px sans-serif";
  metrics = context.measureText(text);
  context.restore();
 
  return metrics;
  }
  };
 
  Flotr.Text = Text;
 
  })();
 
  /**
  * Flotr Graph class that plots a graph on creation.
  */
  (function () {
 
  var
  D = Flotr.DOM,
  E = Flotr.EventAdapter,
  _ = Flotr._,
  flotr = Flotr;
  /**
  * Flotr Graph constructor.
  * @param {Element} el - element to insert the graph into
  * @param {Object} data - an array or object of dataseries
  * @param {Object} options - an object containing options
  */
  Graph = function(el, data, options){
  // Let's see if we can get away with out this [JS]
  // try {
  this._setEl(el);
  this._initMembers();
  this._initPlugins();
 
  E.fire(this.el, 'flotr:beforeinit', [this]);
 
  this.data = data;
  this.series = flotr.Series.getSeries(data);
  this._initOptions(options);
  this._initGraphTypes();
  this._initCanvas();
  this._text = new flotr.Text({
  element : this.el,
  ctx : this.ctx,
  html : this.options.HtmlText,
  textEnabled : this.textEnabled
  });
  E.fire(this.el, 'flotr:afterconstruct', [this]);
  this._initEvents();
 
  this.findDataRanges();
  this.calculateSpacing();
 
  this.draw(_.bind(function() {
  E.fire(this.el, 'flotr:afterinit', [this]);
  }, this));
  /*
  try {
  } catch (e) {
  try {
  console.error(e);
  } catch (e2) {}
  }*/
  };
 
  function observe (object, name, callback) {
  E.observe.apply(this, arguments);
  this._handles.push(arguments);
  return this;
  }
 
  Graph.prototype = {
 
  destroy: function () {
  E.fire(this.el, 'flotr:destroy');
  _.each(this._handles, function (handle) {
  E.stopObserving.apply(this, handle);
  });
  this._handles = [];
  this.el.graph = null;
  },
 
  observe : observe,
 
  /**
  * @deprecated
  */
  _observe : observe,
 
  processColor: function(color, options){
  var o = { x1: 0, y1: 0, x2: this.plotWidth, y2: this.plotHeight, opacity: 1, ctx: this.ctx };
  _.extend(o, options);
  return flotr.Color.processColor(color, o);
  },
  /**
  * Function determines the min and max values for the xaxis and yaxis.
  *
  * TODO logarithmic range validation (consideration of 0)
  */
  findDataRanges: function(){
  var a = this.axes,
  xaxis, yaxis, range;
 
  _.each(this.series, function (series) {
  range = series.getRange();
  if (range) {
  xaxis = series.xaxis;
  yaxis = series.yaxis;
  xaxis.datamin = Math.min(range.xmin, xaxis.datamin);
  xaxis.datamax = Math.max(range.xmax, xaxis.datamax);
  yaxis.datamin = Math.min(range.ymin, yaxis.datamin);
  yaxis.datamax = Math.max(range.ymax, yaxis.datamax);
  xaxis.used = (xaxis.used || range.xused);
  yaxis.used = (yaxis.used || range.yused);
  }
  }, this);
 
  // Check for empty data, no data case (none used)
  if (!a.x.used && !a.x2.used) a.x.used = true;
  if (!a.y.used && !a.y2.used) a.y.used = true;
 
  _.each(a, function (axis) {
  axis.calculateRange();
  });
 
  var
  types = _.keys(flotr.graphTypes),
  drawn = false;
 
  _.each(this.series, function (series) {
  if (series.hide) return;
  _.each(types, function (type) {
  if (series[type] && series[type].show) {
  this.extendRange(type, series);
  drawn = true;
  }
  }, this);
  if (!drawn) {
  this.extendRange(this.options.defaultType, series);
  }
  }, this);
  },
 
  extendRange : function (type, series) {
  if (this[type].extendRange) this[type].extendRange(series, series.data, series[type], this[type]);
  if (this[type].extendYRange) this[type].extendYRange(series.yaxis, series.data, series[type], this[type]);
  if (this[type].extendXRange) this[type].extendXRange(series.xaxis, series.data, series[type], this[type]);
  },
 
  /**
  * Calculates axis label sizes.
  */
  calculateSpacing: function(){
 
  var a = this.axes,
  options = this.options,
  series = this.series,
  margin = options.grid.labelMargin,
  T = this._text,
  x = a.x,
  x2 = a.x2,
  y = a.y,
  y2 = a.y2,
  maxOutset = options.grid.outlineWidth,
  i, j, l, dim;
 
  // TODO post refactor, fix this
  _.each(a, function (axis) {
  axis.calculateTicks();
  axis.calculateTextDimensions(T, options);
  });
 
  // Title height
  dim = T.dimensions(
  options.title,
  {size: options.fontSize*1.5},
  'font-size:1em;font-weight:bold;',
  'flotr-title'
  );
  this.titleHeight = dim.height;
 
  // Subtitle height
  dim = T.dimensions(
  options.subtitle,
  {size: options.fontSize},
  'font-size:smaller;',
  'flotr-subtitle'
  );
  this.subtitleHeight = dim.height;
 
  for(j = 0; j < options.length; ++j){
  if (series[j].points.show){
  maxOutset = Math.max(maxOutset, series[j].points.radius + series[j].points.lineWidth/2);
  }
  }
 
  var p = this.plotOffset;
  if (x.options.margin === false) {
  p.bottom = 0;
  p.top = 0;
  } else {
  p.bottom += (options.grid.circular ? 0 : (x.used && x.options.showLabels ? (x.maxLabel.height + margin) : 0)) +
  (x.used && x.options.title ? (x.titleSize.height + margin) : 0) + maxOutset;
 
  p.top += (options.grid.circular ? 0 : (x2.used && x2.options.showLabels ? (x2.maxLabel.height + margin) : 0)) +
  (x2.used && x2.options.title ? (x2.titleSize.height + margin) : 0) + this.subtitleHeight + this.titleHeight + maxOutset;
  }
  if (y.options.margin === false) {
  p.left = 0;
  p.right = 0;
  } else {
  p.left += (options.grid.circular ? 0 : (y.used && y.options.showLabels ? (y.maxLabel.width + margin) : 0)) +
  (y.used && y.options.title ? (y.titleSize.width + margin) : 0) + maxOutset;
 
  p.right += (options.grid.circular ? 0 : (y2.used && y2.options.showLabels ? (y2.maxLabel.width + margin) : 0)) +
  (y2.used && y2.options.title ? (y2.titleSize.width + margin) : 0) + maxOutset;
  }
 
  p.top = Math.floor(p.top); // In order the outline not to be blured
 
  this.plotWidth = this.canvasWidth - p.left - p.right;
  this.plotHeight = this.canvasHeight - p.bottom - p.top;
 
  // TODO post refactor, fix this
  x.length = x2.length = this.plotWidth;
  y.length = y2.length = this.plotHeight;
  y.offset = y2.offset = this.plotHeight;
  x.setScale();
  x2.setScale();
  y.setScale();
  y2.setScale();
  },
  /**
  * Draws grid, labels, series and outline.
  */
  draw: function(after) {
 
  var
  context = this.ctx,
  i;
 
  E.fire(this.el, 'flotr:beforedraw', [this.series, this]);
 
  if (this.series.length) {
 
  context.save();
  context.translate(this.plotOffset.left, this.plotOffset.top);
 
  for (i = 0; i < this.series.length; i++) {
  if (!this.series[i].hide) this.drawSeries(this.series[i]);
  }
 
  context.restore();
  this.clip();
  }
 
  E.fire(this.el, 'flotr:afterdraw', [this.series, this]);
  if (after) after();
  },
  /**
  * Actually draws the graph.
  * @param {Object} series - series to draw
  */
  drawSeries: function(series){
 
  function drawChart (series, typeKey) {
  var options = this.getOptions(series, typeKey);
  this[typeKey].draw(options);
  }
 
  var drawn = false;
  series = series || this.series;
 
  _.each(flotr.graphTypes, function (type, typeKey) {
  if (series[typeKey] && series[typeKey].show && this[typeKey]) {
  drawn = true;
  drawChart.call(this, series, typeKey);
  }
  }, this);
 
  if (!drawn) drawChart.call(this, series, this.options.defaultType);
  },
 
  getOptions : function (series, typeKey) {
  var
  type = series[typeKey],
  graphType = this[typeKey],
  options = {
  context : this.ctx,
  width : this.plotWidth,
  height : this.plotHeight,
  fontSize : this.options.fontSize,
  fontColor : this.options.fontColor,
  textEnabled : this.textEnabled,
  htmlText : this.options.HtmlText,
  text : this._text, // TODO Is this necessary?
  element : this.el,
  data : series.data,
  color : series.color,
  shadowSize : series.shadowSize,
  xScale : _.bind(series.xaxis.d2p, series.xaxis),
  yScale : _.bind(series.yaxis.d2p, series.yaxis)
  };
 
  options = flotr.merge(type, options);
 
  // Fill
  options.fillStyle = this.processColor(
  type.fillColor || series.color,
  {opacity: type.fillOpacity}
  );
 
  return options;
  },
  /**
  * Calculates the coordinates from a mouse event object.
  * @param {Event} event - Mouse Event object.
  * @return {Object} Object with coordinates of the mouse.
  */
  getEventPosition: function (e){
 
  var
  d = document,
  b = d.body,
  de = d.documentElement,
  axes = this.axes,
  plotOffset = this.plotOffset,
  lastMousePos = this.lastMousePos,
  pointer = E.eventPointer(e),
  dx = pointer.x - lastMousePos.pageX,
  dy = pointer.y - lastMousePos.pageY,
  r, rx, ry;
 
  if ('ontouchstart' in this.el) {
  r = D.position(this.overlay);
  rx = pointer.x - r.left - plotOffset.left;
  ry = pointer.y - r.top - plotOffset.top;
  } else {
  r = this.overlay.getBoundingClientRect();
  rx = e.clientX - r.left - plotOffset.left - b.scrollLeft - de.scrollLeft;
  ry = e.clientY - r.top - plotOffset.top - b.scrollTop - de.scrollTop;
  }
 
  return {
  x: axes.x.p2d(rx),
  x2: axes.x2.p2d(rx),
  y: axes.y.p2d(ry),
  y2: axes.y2.p2d(ry),
  relX: rx,
  relY: ry,
  dX: dx,
  dY: dy,
  absX: pointer.x,
  absY: pointer.y,
  pageX: pointer.x,
  pageY: pointer.y
  };
  },
  /**
  * Observes the 'click' event and fires the 'flotr:click' event.
  * @param {Event} event - 'click' Event object.
  */
  clickHandler: function(event){
  if(this.ignoreClick){
  this.ignoreClick = false;
  return this.ignoreClick;
  }
  E.fire(this.el, 'flotr:click', [this.getEventPosition(event), this]);
  },
  /**
  * Observes mouse movement over the graph area. Fires the 'flotr:mousemove' event.
  * @param {Event} event - 'mousemove' Event object.
  */
  mouseMoveHandler: function(event){
  if (this.mouseDownMoveHandler) return;
  var pos = this.getEventPosition(event);
  E.fire(this.el, 'flotr:mousemove', [event, pos, this]);
  this.lastMousePos = pos;
  },
  /**
  * Observes the 'mousedown' event.
  * @param {Event} event - 'mousedown' Event object.
  */
  mouseDownHandler: function (event){
 
  /*
  // @TODO Context menu?
  if(event.isRightClick()) {
  event.stop();
 
  var overlay = this.overlay;
  overlay.hide();
 
  function cancelContextMenu () {
  overlay.show();
  E.stopObserving(document, 'mousemove', cancelContextMenu);
  }
  E.observe(document, 'mousemove', cancelContextMenu);
  return;
  }
  */
 
  if (this.mouseUpHandler) return;
  this.mouseUpHandler = _.bind(function (e) {
  E.stopObserving(document, 'mouseup', this.mouseUpHandler);
  E.stopObserving(document, 'mousemove', this.mouseDownMoveHandler);
  this.mouseDownMoveHandler = null;
  this.mouseUpHandler = null;
  // @TODO why?
  //e.stop();
  E.fire(this.el, 'flotr:mouseup', [e, this]);
  }, this);
  this.mouseDownMoveHandler = _.bind(function (e) {
  var pos = this.getEventPosition(e);
  E.fire(this.el, 'flotr:mousemove', [event, pos, this]);
  this.lastMousePos = pos;
  }, this);
  E.observe(document, 'mouseup', this.mouseUpHandler);
  E.observe(document, 'mousemove', this.mouseDownMoveHandler);
  E.fire(this.el, 'flotr:mousedown', [event, this]);
  this.ignoreClick = false;
  },
  drawTooltip: function(content, x, y, options) {
  var mt = this.getMouseTrack(),
  style = 'opacity:0.7;background-color:#000;color:#fff;display:none;position:absolute;padding:2px 8px;-moz-border-radius:4px;border-radius:4px;white-space:nowrap;',
  p = options.position,
  m = options.margin,
  plotOffset = this.plotOffset;
 
  if(x !== null && y !== null){
  if (!options.relative) { // absolute to the canvas
  if(p.charAt(0) == 'n') style += 'top:' + (m + plotOffset.top) + 'px;bottom:auto;';
  else if(p.charAt(0) == 's') style += 'bottom:' + (m + plotOffset.bottom) + 'px;top:auto;';
  if(p.charAt(1) == 'e') style += 'right:' + (m + plotOffset.right) + 'px;left:auto;';
  else if(p.charAt(1) == 'w') style += 'left:' + (m + plotOffset.left) + 'px;right:auto;';
  }
  else { // relative to the mouse
  if(p.charAt(0) == 'n') style += 'bottom:' + (m - plotOffset.top - y + this.canvasHeight) + 'px;top:auto;';
  else if(p.charAt(0) == 's') style += 'top:' + (m + plotOffset.top + y) + 'px;bottom:auto;';
  if(p.charAt(1) == 'e') style += 'left:' + (m + plotOffset.left + x) + 'px;right:auto;';
  else if(p.charAt(1) == 'w') style += 'right:' + (m - plotOffset.left - x + this.canvasWidth) + 'px;left:auto;';
  }
 
  mt.style.cssText = style;
  D.empty(mt);
  D.insert(mt, content);
  D.show(mt);
  }
  else {
  D.hide(mt);
  }
  },
 
  clip: function (ctx) {
 
  var
  o = this.plotOffset,
  w = this.canvasWidth,
  h = this.canvasHeight;
 
  ctx = ctx || this.ctx;
 
  if (flotr.isIE && flotr.isIE < 9) {
  // Clipping for excanvas :-(
  ctx.save();
  ctx.fillStyle = this.processColor(this.options.ieBackgroundColor);
  ctx.fillRect(0, 0, w, o.top);
  ctx.fillRect(0, 0, o.left, h);
  ctx.fillRect(0, h - o.bottom, w, o.bottom);
  ctx.fillRect(w - o.right, 0, o.right,h);
  ctx.restore();
  } else {
  ctx.clearRect(0, 0, w, o.top);
  ctx.clearRect(0, 0, o.left, h);
  ctx.clearRect(0, h - o.bottom, w, o.bottom);
  ctx.clearRect(w - o.right, 0, o.right,h);
  }
  },
 
  _initMembers: function() {
  this._handles = [];
  this.lastMousePos = {pageX: null, pageY: null };
  this.plotOffset = {left: 0, right: 0, top: 0, bottom: 0};
  this.ignoreClick = true;
  this.prevHit = null;
  },
 
  _initGraphTypes: function() {
  _.each(flotr.graphTypes, function(handler, graphType){
  this[graphType] = flotr.clone(handler);
  }, this);
  },
 
  _initEvents: function () {
 
  var
  el = this.el,
  touchendHandler, movement, touchend;
 
  if ('ontouchstart' in el) {
 
  touchendHandler = _.bind(function (e) {
  touchend = true;
  E.stopObserving(document, 'touchend', touchendHandler);
  E.fire(el, 'flotr:mouseup', [event, this]);
  this.multitouches = null;
 
  if (!movement) {
  this.clickHandler(e);
  }
  }, this);
 
  this.observe(this.overlay, 'touchstart', _.bind(function (e) {
  movement = false;
  touchend = false;
  this.ignoreClick = false;
 
  if (e.touches && e.touches.length > 1) {
  this.multitouches = e.touches;
  }
 
  E.fire(el, 'flotr:mousedown', [event, this]);
  this.observe(document, 'touchend', touchendHandler);
  }, this));
 
  this.observe(this.overlay, 'touchmove', _.bind(function (e) {
 
  var pos = this.getEventPosition(e);
 
  e.preventDefault();
 
  movement = true;
 
  if (this.multitouches || (e.touches && e.touches.length > 1)) {
  this.multitouches = e.touches;
  } else {
  if (!touchend) {
  E.fire(el, 'flotr:mousemove', [event, pos, this]);
  }
  }
  this.lastMousePos = pos;
  }, this));
 
  } else {
  this.
  observe(this.overlay, 'mousedown', _.bind(this.mouseDownHandler, this)).
  observe(el, 'mousemove', _.bind(this.mouseMoveHandler, this)).
  observe(this.overlay, 'click', _.bind(this.clickHandler, this)).
  observe(el, 'mouseout', function () {
  E.fire(el, 'flotr:mouseout');
  });
  }
  },
 
  /**
  * Initializes the canvas and it's overlay canvas element. When the browser is IE, this makes use
  * of excanvas. The overlay canvas is inserted for displaying interactions. After the canvas elements
  * are created, the elements are inserted into the container element.
  */
  _initCanvas: function(){
  var el = this.el,
  o = this.options,
  children = el.children,
  removedChildren = [],
  child, i,
  size, style;
 
  // Empty the el
  for (i = children.length; i--;) {
  child = children[i];
  if (!this.canvas && child.className === 'flotr-canvas') {
  this.canvas = child;
  } else if (!this.overlay && child.className === 'flotr-overlay') {
  this.overlay = child;
  } else {
  removedChildren.push(child);
  }
  }
  for (i = removedChildren.length; i--;) {
  el.removeChild(removedChildren[i]);
  }
 
  D.setStyles(el, {position: 'relative'}); // For positioning labels and overlay.
  size = {};
  size.width = el.clientWidth;
  size.height = el.clientHeight;
 
  if(size.width <= 0 || size.height <= 0 || o.resolution <= 0){
  throw 'Invalid dimensions for plot, width = ' + size.width + ', height = ' + size.height + ', resolution = ' + o.resolution;
  }
 
  // Main canvas for drawing graph types
  this.canvas = getCanvas(this.canvas, 'canvas');
  // Overlay canvas for interactive features
  this.overlay = getCanvas(this.overlay, 'overlay');
  this.ctx = getContext(this.canvas);
  this.ctx.clearRect(0, 0, this.canvas.width, this.canvas.height);
  this.octx = getContext(this.overlay);
  this.octx.clearRect(0, 0, this.overlay.width, this.overlay.height);
  this.canvasHeight = size.height;
  this.canvasWidth = size.width;
  this.textEnabled = !!this.ctx.drawText || !!this.ctx.fillText; // Enable text functions
 
  function getCanvas(canvas, name){
  if(!canvas){
  canvas = D.create('canvas');
  if (typeof FlashCanvas != "undefined" && typeof canvas.getContext === 'function') {
  FlashCanvas.initElement(canvas);
  }
  canvas.className = 'flotr-'+name;
  canvas.style.cssText = 'position:absolute;left:0px;top:0px;';
  D.insert(el, canvas);
  }
  _.each(size, function(size, attribute){
  D.show(canvas);
  if (name == 'canvas' && canvas.getAttribute(attribute) === size) {
  return;
  }
  canvas.setAttribute(attribute, size * o.resolution);
  canvas.style[attribute] = size + 'px';
  });
  canvas.context_ = null; // Reset the ExCanvas context
  return canvas;
  }
 
  function getContext(canvas){
  if(window.G_vmlCanvasManager) window.G_vmlCanvasManager.initElement(canvas); // For ExCanvas
  var context = canvas.getContext('2d');
  if(!window.G_vmlCanvasManager) context.scale(o.resolution, o.resolution);
  return context;
  }
  },
 
  _initPlugins: function(){
  // TODO Should be moved to flotr and mixed in.
  _.each(flotr.plugins, function(plugin, name){
  _.each(plugin.callbacks, function(fn, c){
  this.observe(this.el, c, _.bind(fn, this));
  }, this);
  this[name] = flotr.clone(plugin);
  _.each(this[name], function(fn, p){
  if (_.isFunction(fn))
  this[name][p] = _.bind(fn, this);
  }, this);
  }, this);
  },
 
  /**
  * Sets options and initializes some variables and color specific values, used by the constructor.
  * @param {Object} opts - options object
  */
  _initOptions: function(opts){
  var options = flotr.clone(flotr.defaultOptions);
  options.x2axis = _.extend(_.clone(options.xaxis), options.x2axis);
  options.y2axis = _.extend(_.clone(options.yaxis), options.y2axis);
  this.options = flotr.merge(opts || {}, options);
 
  if (this.options.grid.minorVerticalLines === null &&
  this.options.xaxis.scaling === 'logarithmic') {
  this.options.grid.minorVerticalLines = true;
  }
  if (this.options.grid.minorHorizontalLines === null &&
  this.options.yaxis.scaling === 'logarithmic') {
  this.options.grid.minorHorizontalLines = true;
  }
 
  E.fire(this.el, 'flotr:afterinitoptions', [this]);
 
  this.axes = flotr.Axis.getAxes(this.options);
 
  // Initialize some variables used throughout this function.
  var assignedColors = [],
  colors = [],
  ln = this.series.length,
  neededColors = this.series.length,
  oc = this.options.colors,
  usedColors = [],
  variation = 0,
  c, i, j, s;
 
  // Collect user-defined colors from series.
  for(i = neededColors - 1; i > -1; --i){
  c = this.series[i].color;
  if(c){
  --neededColors;
  if(_.isNumber(c)) assignedColors.push(c);
  else usedColors.push(flotr.Color.parse(c));
  }
  }
 
  // Calculate the number of colors that need to be generated.
  for(i = assignedColors.length - 1; i > -1; --i)
  neededColors = Math.max(neededColors, assignedColors[i] + 1);
 
  // Generate needed number of colors.
  for(i = 0; colors.length < neededColors;){
  c = (oc.length == i) ? new flotr.Color(100, 100, 100) : flotr.Color.parse(oc[i]);
 
  // Make sure each serie gets a different color.
  var sign = variation % 2 == 1 ? -1 : 1,
  factor = 1 + sign * Math.ceil(variation / 2) * 0.2;
  c.scale(factor, factor, factor);
 
  /**
  * @todo if we're getting too close to something else, we should probably skip this one
  */
  colors.push(c);
 
  if(++i >= oc.length){
  i = 0;
  ++variation;
  }
  }
 
  // Fill the options with the generated colors.
  for(i = 0, j = 0; i < ln; ++i){
  s = this.series[i];
 
  // Assign the color.
  if (!s.color){
  s.color = colors[j++].toString();
  }else if(_.isNumber(s.color)){
  s.color = colors[s.color].toString();
  }
 
  // Every series needs an axis
  if (!s.xaxis) s.xaxis = this.axes.x;
  if (s.xaxis == 1) s.xaxis = this.axes.x;
  else if (s.xaxis == 2) s.xaxis = this.axes.x2;
 
  if (!s.yaxis) s.yaxis = this.axes.y;
  if (s.yaxis == 1) s.yaxis = this.axes.y;
  else if (s.yaxis == 2) s.yaxis = this.axes.y2;
 
  // Apply missing options to the series.
  for (var t in flotr.graphTypes){
  s[t] = _.extend(_.clone(this.options[t]), s[t]);
  }
  s.mouse = _.extend(_.clone(this.options.mouse), s.mouse);
 
  if (_.isUndefined(s.shadowSize)) s.shadowSize = this.options.shadowSize;
  }
  },
 
  _setEl: function(el) {
  if (!el) throw 'The target container doesn\'t exist';
  else if (el.graph instanceof Graph) el.graph.destroy();
  else if (!el.clientWidth) throw 'The target container must be visible';
 
  el.graph = this;
  this.el = el;
  }
  };
 
  Flotr.Graph = Graph;
 
  })();
 
  /**
  * Flotr Axis Library
  */
 
  (function () {
 
  var
  _ = Flotr._,
  LOGARITHMIC = 'logarithmic';
 
  function Axis (o) {
 
  this.orientation = 1;
  this.offset = 0;
  this.datamin = Number.MAX_VALUE;
  this.datamax = -Number.MAX_VALUE;
 
  _.extend(this, o);
 
  this._setTranslations();
  }
 
 
  // Prototype
  Axis.prototype = {
 
  setScale : function () {
  var length = this.length;
  if (this.options.scaling == LOGARITHMIC) {
  this.scale = length / (log(this.max, this.options.base) - log(this.min, this.options.base));
  } else {
  this.scale = length / (this.max - this.min);
  }
  },
 
  calculateTicks : function () {
  var options = this.options;
 
  this.ticks = [];
  this.minorTicks = [];
 
  // User Ticks
  if(options.ticks){
  this._cleanUserTicks(options.ticks, this.ticks);
  this._cleanUserTicks(options.minorTicks || [], this.minorTicks);
  }
  else {
  if (options.mode == 'time') {
  this._calculateTimeTicks();
  } else if (options.scaling === 'logarithmic') {
  this._calculateLogTicks();
  } else {
  this._calculateTicks();
  }
  }
 
  // Ticks to strings
  _.each(this.ticks, function (tick) { tick.label += ''; });
  _.each(this.minorTicks, function (tick) { tick.label += ''; });
  },
 
  /**
  * Calculates the range of an axis to apply autoscaling.
  */
  calculateRange: function () {
 
  if (!this.used) return;
 
  var axis = this,
  o = axis.options,
  min = o.min !== null ? o.min : axis.datamin,
  max = o.max !== null ? o.max : axis.datamax,
  margin = o.autoscaleMargin;
 
  if (o.scaling == 'logarithmic') {
  if (min <= 0) min = axis.datamin;
 
  // Let it widen later on
  if (max <= 0) max = min;
  }
 
  if (max == min) {
  var widen = max ? 0.01 : 1.00;
  if (o.min === null) min -= widen;
  if (o.max === null) max += widen;
  }
 
  if (o.scaling === 'logarithmic') {
  if (min < 0) min = max / o.base; // Could be the result of widening
 
  var maxexp = Math.log(max);
  if (o.base != Math.E) maxexp /= Math.log(o.base);
  maxexp = Math.ceil(maxexp);
 
  var minexp = Math.log(min);
  if (o.base != Math.E) minexp /= Math.log(o.base);
  minexp = Math.ceil(minexp);
 
  axis.tickSize = Flotr.getTickSize(o.noTicks, minexp, maxexp, o.tickDecimals === null ? 0 : o.tickDecimals);
 
  // Try to determine a suitable amount of miniticks based on the length of a decade
  if (o.minorTickFreq === null) {
  if (maxexp - minexp > 10)
  o.minorTickFreq = 0;
  else if (maxexp - minexp > 5)
  o.minorTickFreq = 2;
  else
  o.minorTickFreq = 5;
  }
  } else {
  axis.tickSize = Flotr.getTickSize(o.noTicks, min, max, o.tickDecimals);
  }
 
  axis.min = min;
  axis.max = max; //extendRange may use axis.min or axis.max, so it should be set before it is caled
 
  // Autoscaling. @todo This probably fails with log scale. Find a testcase and fix it
  if(o.min === null && o.autoscale){
  axis.min -= axis.tickSize * margin;
  // Make sure we don't go below zero if all values are positive.
  if(axis.min < 0 && axis.datamin >= 0) axis.min = 0;
  axis.min = axis.tickSize * Math.floor(axis.min / axis.tickSize);
  }
 
  if(o.max === null && o.autoscale){
  axis.max += axis.tickSize * margin;
  if(axis.max > 0 && axis.datamax <= 0 && axis.datamax != axis.datamin) axis.max = 0;
  axis.max = axis.tickSize * Math.ceil(axis.max / axis.tickSize);
  }
 
  if (axis.min == axis.max) axis.max = axis.min + 1;
  },
 
  calculateTextDimensions : function (T, options) {
 
  var maxLabel = '',
  length,
  i;
 
  if (this.options.showLabels) {
  for (i = 0; i < this.ticks.length; ++i) {
  length = this.ticks[i].label.length;
  if (length > maxLabel.length){
  maxLabel = this.ticks[i].label;
  }
  }
  }
 
  this.maxLabel = T.dimensions(
  maxLabel,
  {size:options.fontSize, angle: Flotr.toRad(this.options.labelsAngle)},
  'font-size:smaller;',
  'flotr-grid-label'
  );
 
  this.titleSize = T.dimensions(
  this.options.title,
  {size:options.fontSize*1.2, angle: Flotr.toRad(this.options.titleAngle)},
  'font-weight:bold;',
  'flotr-axis-title'
  );
  },
 
  _cleanUserTicks : function (ticks, axisTicks) {
 
  var axis = this, options = this.options,
  v, i, label, tick;
 
  if(_.isFunction(ticks)) ticks = ticks({min : axis.min, max : axis.max});
 
  for(i = 0; i < ticks.length; ++i){
  tick = ticks[i];
  if(typeof(tick) === 'object'){
  v = tick[0];
  label = (tick.length > 1) ? tick[1] : options.tickFormatter(v, {min : axis.min, max : axis.max});
  } else {
  v = tick;
  label = options.tickFormatter(v, {min : this.min, max : this.max});
  }
  axisTicks[i] = { v: v, label: label };
  }
  },
 
  _calculateTimeTicks : function () {
  this.ticks = Flotr.Date.generator(this);
  },
 
  _calculateLogTicks : function () {
 
  var axis = this,
  o = axis.options,
  v,
  decadeStart;
 
  var max = Math.log(axis.max);
  if (o.base != Math.E) max /= Math.log(o.base);
  max = Math.ceil(max);
 
  var min = Math.log(axis.min);
  if (o.base != Math.E) min /= Math.log(o.base);
  min = Math.ceil(min);
 
  for (i = min; i < max; i += axis.tickSize) {
  decadeStart = (o.base == Math.E) ? Math.exp(i) : Math.pow(o.base, i);
  // Next decade begins here:
  var decadeEnd = decadeStart * ((o.base == Math.E) ? Math.exp(axis.tickSize) : Math.pow(o.base, axis.tickSize));
  var stepSize = (decadeEnd - decadeStart) / o.minorTickFreq;
 
  axis.ticks.push({v: decadeStart, label: o.tickFormatter(decadeStart, {min : axis.min, max : axis.max})});
  for (v = decadeStart + stepSize; v < decadeEnd; v += stepSize)
  axis.minorTicks.push({v: v, label: o.tickFormatter(v, {min : axis.min, max : axis.max})});
  }
 
  // Always show the value at the would-be start of next decade (end of this decade)
  decadeStart = (o.base == Math.E) ? Math.exp(i) : Math.pow(o.base, i);
  axis.ticks.push({v: decadeStart, label: o.tickFormatter(decadeStart, {min : axis.min, max : axis.max})});
  },
 
  _calculateTicks : function () {
 
  var axis = this,
  o = axis.options,
  tickSize = axis.tickSize,
  min = axis.min,
  max = axis.max,
  start = tickSize * Math.ceil(min / tickSize), // Round to nearest multiple of tick size.
  decimals,
  minorTickSize,
  v, v2,
  i, j;
 
  if (o.minorTickFreq)
  minorTickSize = tickSize / o.minorTickFreq;
 
  // Then store all possible ticks.
  for (i = 0; (v = v2 = start + i * tickSize) <= max; ++i){
 
  // Round (this is always needed to fix numerical instability).
  decimals = o.tickDecimals;
  if (decimals === null) decimals = 1 - Math.floor(Math.log(tickSize) / Math.LN10);
  if (decimals < 0) decimals = 0;
 
  v = v.toFixed(decimals);
  axis.ticks.push({ v: v, label: o.tickFormatter(v, {min : axis.min, max : axis.max}) });
 
  if (o.minorTickFreq) {
  for (j = 0; j < o.minorTickFreq && (i * tickSize + j * minorTickSize) < max; ++j) {
  v = v2 + j * minorTickSize;
  axis.minorTicks.push({ v: v, label: o.tickFormatter(v, {min : axis.min, max : axis.max}) });
  }
  }
  }
 
  },
 
  _setTranslations : function (logarithmic) {
  this.d2p = (logarithmic ? d2pLog : d2p);
  this.p2d = (logarithmic ? p2dLog : p2d);
  }
  };
 
 
  // Static Methods
  _.extend(Axis, {
  getAxes : function (options) {
  return {
  x: new Axis({options: options.xaxis, n: 1, length: this.plotWidth}),
  x2: new Axis({options: options.x2axis, n: 2, length: this.plotWidth}),
  y: new Axis({options: options.yaxis, n: 1, length: this.plotHeight, offset: this.plotHeight, orientation: -1}),
  y2: new Axis({options: options.y2axis, n: 2, length: this.plotHeight, offset: this.plotHeight, orientation: -1})
  };
  }
  });
 
 
  // Helper Methods
 
  function d2p (dataValue) {
  return this.offset + this.orientation * (dataValue - this.min) * this.scale;
  }
 
  function p2d (pointValue) {
  return (this.offset + this.orientation * pointValue) / this.scale + this.min;
  }
 
  function d2pLog (dataValue) {
  return this.offset + this.orientation * (log(dataValue, this.options.base) - log(this.min, this.options.base)) * this.scale;
  }
 
  function p2dLog (pointValue) {
  return exp((this.offset + this.orientation * pointValue) / this.scale + log(this.min, this.options.base), this.options.base);
  }
 
  function log (value, base) {
  value = Math.log(Math.max(value, Number.MIN_VALUE));
  if (base !== Math.E)
  value /= Math.log(base);
  return value;
  }
 
  function exp (value, base) {
  return (base === Math.E) ? Math.exp(value) : Math.pow(base, value);
  }
 
  Flotr.Axis = Axis;
 
  })();
 
  /**
  * Flotr Series Library
  */
 
  (function () {
 
  var
  _ = Flotr._;
 
  function Series (o) {
  _.extend(this, o);
  }
 
  Series.prototype = {
 
  getRange: function () {
 
  var
  data = this.data,
  length = data.length,
  xmin = Number.MAX_VALUE,
  ymin = Number.MAX_VALUE,
  xmax = -Number.MAX_VALUE,
  ymax = -Number.MAX_VALUE,
  xused = false,
  yused = false,
  x, y, i;
 
  if (length < 0 || this.hide) return false;
 
  for (i = 0; i < length; i++) {
  x = data[i][0];
  y = data[i][1];
  if (x < xmin) { xmin = x; xused = true; }
  if (x > xmax) { xmax = x; xused = true; }
  if (y < ymin) { ymin = y; yused = true; }
  if (y > ymax) { ymax = y; yused = true; }
  }
 
  return {
  xmin : xmin,
  xmax : xmax,
  ymin : ymin,
  ymax : ymax,
  xused : xused,
  yused : yused
  };
  }
  };
 
  _.extend(Series, {
  /**
  * Collects dataseries from input and parses the series into the right format. It returns an Array
  * of Objects each having at least the 'data' key set.
  * @param {Array, Object} data - Object or array of dataseries
  * @return {Array} Array of Objects parsed into the right format ({(...,) data: [[x1,y1], [x2,y2], ...] (, ...)})
  */
  getSeries: function(data){
  return _.map(data, function(s){
  var series;
  if (s.data) {
  series = new Series();
  _.extend(series, s);
  } else {
  series = new Series({data:s});
  }
  return series;
  });
  }
  });
 
  Flotr.Series = Series;
 
  })();
 
  /** Lines **/
  Flotr.addType('lines', {
  options: {
  show: false, // => setting to true will show lines, false will hide
  lineWidth: 2, // => line width in pixels
  fill: false, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillBorder: false, // => draw a border around the fill
  fillColor: null, // => fill color
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  steps: false, // => draw steps
  stacked: false // => setting to true will show stacked lines, false will show normal lines
  },
 
  stack : {
  values : []
  },
 
  /**
  * Draws lines series in the canvas element.
  * @param {Object} options
  */
  draw : function (options) {
 
  var
  context = options.context,
  lineWidth = options.lineWidth,
  shadowSize = options.shadowSize,
  offset;
 
  context.save();
  context.lineJoin = 'round';
 
  if (shadowSize) {
 
  context.lineWidth = shadowSize / 2;
  offset = lineWidth / 2 + context.lineWidth / 2;
 
  // @TODO do this instead with a linear gradient
  context.strokeStyle = "rgba(0,0,0,0.1)";
  this.plot(options, offset + shadowSize / 2, false);
 
  context.strokeStyle = "rgba(0,0,0,0.2)";
  this.plot(options, offset, false);
  }
 
  context.lineWidth = lineWidth;
  context.strokeStyle = options.color;
 
  this.plot(options, 0, true);
 
  context.restore();
  },
 
  plot : function (options, shadowOffset, incStack) {
 
  var
  context = options.context,
  width = options.width,
  height = options.height,
  xScale = options.xScale,
  yScale = options.yScale,
  data = options.data,
  stack = options.stacked ? this.stack : false,
  length = data.length - 1,
  prevx = null,
  prevy = null,
  zero = yScale(0),
  start = null,
  x1, x2, y1, y2, stack1, stack2, i;
 
  if (length < 1) return;
 
  context.beginPath();
 
  for (i = 0; i < length; ++i) {
 
  // To allow empty values
  if (data[i][1] === null || data[i+1][1] === null) {
  if (options.fill) {
  if (i > 0 && data[i][1]) {
  context.stroke();
  fill();
  start = null;
  context.closePath();
  context.beginPath();
  }
  }
  continue;
  }
 
  // Zero is infinity for log scales
  // TODO handle zero for logarithmic
  // if (xa.options.scaling === 'logarithmic' && (data[i][0] <= 0 || data[i+1][0] <= 0)) continue;
  // if (ya.options.scaling === 'logarithmic' && (data[i][1] <= 0 || data[i+1][1] <= 0)) continue;
 
  x1 = xScale(data[i][0]);
  x2 = xScale(data[i+1][0]);
 
  if (start === null) start = data[i];
 
  if (stack) {
 
  stack1 = stack.values[data[i][0]] || 0;
  stack2 = stack.values[data[i+1][0]] || stack.values[data[i][0]] || 0;
 
  y1 = yScale(data[i][1] + stack1);
  y2 = yScale(data[i+1][1] + stack2);
 
  if(incStack){
  stack.values[data[i][0]] = data[i][1]+stack1;
 
  if(i == length-1)
  stack.values[data[i+1][0]] = data[i+1][1]+stack2;
  }
  }
  else{
  y1 = yScale(data[i][1]);
  y2 = yScale(data[i+1][1]);
  }
 
  if (
  (y1 > height && y2 > height) ||
  (y1 < 0 && y2 < 0) ||
  (x1 < 0 && x2 < 0) ||
  (x1 > width && x2 > width)
  ) continue;
 
  if((prevx != x1) || (prevy != y1 + shadowOffset))
  context.moveTo(x1, y1 + shadowOffset);
 
  prevx = x2;
  prevy = y2 + shadowOffset;
  if (options.steps) {
  context.lineTo(prevx + shadowOffset / 2, y1 + shadowOffset);
  context.lineTo(prevx + shadowOffset / 2, prevy);
  } else {
  context.lineTo(prevx, prevy);
  }
  }
 
  if (!options.fill || options.fill && !options.fillBorder) context.stroke();
 
  fill();
 
  function fill () {
  // TODO stacked lines
  if(!shadowOffset && options.fill && start){
  x1 = xScale(start[0]);
  context.fillStyle = options.fillStyle;
  context.lineTo(x2, zero);
  context.lineTo(x1, zero);
  context.lineTo(x1, yScale(start[1]));
  context.fill();
  if (options.fillBorder) {
  context.stroke();
  }
  }
  }
 
  context.closePath();
  },
 
  // Perform any pre-render precalculations (this should be run on data first)
  // - Pie chart total for calculating measures
  // - Stacks for lines and bars
  // precalculate : function () {
  // }
  //
  //
  // Get any bounds after pre calculation (axis can fetch this if does not have explicit min/max)
  // getBounds : function () {
  // }
  // getMin : function () {
  // }
  // getMax : function () {
  // }
  //
  //
  // Padding around rendered elements
  // getPadding : function () {
  // }
 
  extendYRange : function (axis, data, options, lines) {
 
  var o = axis.options;
 
  // If stacked and auto-min
  if (options.stacked && ((!o.max && o.max !== 0) || (!o.min && o.min !== 0))) {
 
  var
  newmax = axis.max,
  newmin = axis.min,
  positiveSums = lines.positiveSums || {},
  negativeSums = lines.negativeSums || {},
  x, j;
 
  for (j = 0; j < data.length; j++) {
 
  x = data[j][0] + '';
 
  // Positive
  if (data[j][1] > 0) {
  positiveSums[x] = (positiveSums[x] || 0) + data[j][1];
  newmax = Math.max(newmax, positiveSums[x]);
  }
 
  // Negative
  else {
  negativeSums[x] = (negativeSums[x] || 0) + data[j][1];
  newmin = Math.min(newmin, negativeSums[x]);
  }
  }
 
  lines.negativeSums = negativeSums;
  lines.positiveSums = positiveSums;
 
  axis.max = newmax;
  axis.min = newmin;
  }
 
  if (options.steps) {
 
  this.hit = function (options) {
  var
  data = options.data,
  args = options.args,
  yScale = options.yScale,
  mouse = args[0],
  length = data.length,
  n = args[1],
  x = mouse.x,
  relY = mouse.relY,
  i;
 
  for (i = 0; i < length - 1; i++) {
  if (x >= data[i][0] && x <= data[i+1][0]) {
  if (Math.abs(yScale(data[i][1]) - relY) < 8) {
  n.x = data[i][0];
  n.y = data[i][1];
  n.index = i;
  n.seriesIndex = options.index;
  }
  break;
  }
  }
  };
 
  this.drawHit = function (options) {
  var
  context = options.context,
  args = options.args,
  data = options.data,
  xScale = options.xScale,
  index = args.index,
  x = xScale(args.x),
  y = options.yScale(args.y),
  x2;
 
  if (data.length - 1 > index) {
  x2 = options.xScale(data[index + 1][0]);
  context.save();
  context.strokeStyle = options.color;
  context.lineWidth = options.lineWidth;
  context.beginPath();
  context.moveTo(x, y);
  context.lineTo(x2, y);
  context.stroke();
  context.closePath();
  context.restore();
  }
  };
 
  this.clearHit = function (options) {
  var
  context = options.context,
  args = options.args,
  data = options.data,
  xScale = options.xScale,
  width = options.lineWidth,
  index = args.index,
  x = xScale(args.x),
  y = options.yScale(args.y),
  x2;
 
  if (data.length - 1 > index) {
  x2 = options.xScale(data[index + 1][0]);
  context.clearRect(x - width, y - width, x2 - x + 2 * width, 2 * width);
  }
  };
  }
  }
 
  });
 
  /** Bars **/
  Flotr.addType('bars', {
 
  options: {
  show: false, // => setting to true will show bars, false will hide
  lineWidth: 2, // => in pixels
  barWidth: 1, // => in units of the x axis
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillColor: null, // => fill color
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  horizontal: false, // => horizontal bars (x and y inverted)
  stacked: false, // => stacked bar charts
  centered: true, // => center the bars to their x axis value
  topPadding: 0.1, // => top padding in percent
  grouped: false // => groups bars together which share x value, hit not supported.
  },
 
  stack : {
  positive : [],
  negative : [],
  _positive : [], // Shadow
  _negative : [] // Shadow
  },
 
  draw : function (options) {
  var
  context = options.context;
 
  this.current += 1;
 
  context.save();
  context.lineJoin = 'miter';
  // @TODO linewidth not interpreted the right way.
  context.lineWidth = options.lineWidth;
  context.strokeStyle = options.color;
  if (options.fill) context.fillStyle = options.fillStyle;
 
  this.plot(options);
 
  context.restore();
  },
 
  plot : function (options) {
 
  var
  data = options.data,
  context = options.context,
  shadowSize = options.shadowSize,
  i, geometry, left, top, width, height;
 
  if (data.length < 1) return;
 
  this.translate(context, options.horizontal);
 
  for (i = 0; i < data.length; i++) {
 
  geometry = this.getBarGeometry(data[i][0], data[i][1], options);
  if (geometry === null) continue;
 
  left = geometry.left;
  top = geometry.top;
  width = geometry.width;
  height = geometry.height;
 
  if (options.fill) context.fillRect(left, top, width, height);
  if (shadowSize) {
  context.save();
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.fillRect(left + shadowSize, top + shadowSize, width, height);
  context.restore();
  }
  if (options.lineWidth) {
  context.strokeRect(left, top, width, height);
  }
  }
  },
 
  translate : function (context, horizontal) {
  if (horizontal) {
  context.rotate(-Math.PI / 2);
  context.scale(-1, 1);
  }
  },
 
  getBarGeometry : function (x, y, options) {
 
  var
  horizontal = options.horizontal,
  barWidth = options.barWidth,
  centered = options.centered,
  stack = options.stacked ? this.stack : false,
  lineWidth = options.lineWidth,
  bisection = centered ? barWidth / 2 : 0,
  xScale = horizontal ? options.yScale : options.xScale,
  yScale = horizontal ? options.xScale : options.yScale,
  xValue = horizontal ? y : x,
  yValue = horizontal ? x : y,
  stackOffset = 0,
  stackValue, left, right, top, bottom;
 
  if (options.grouped) {
  this.current / this.groups
  xValue = xValue - bisection;
  barWidth = barWidth / this.groups;
  bisection = barWidth / 2;
  xValue = xValue + barWidth * this.current - bisection;
  }
 
  // Stacked bars
  if (stack) {
  stackValue = yValue > 0 ? stack.positive : stack.negative;
  stackOffset = stackValue[xValue] || stackOffset;
  stackValue[xValue] = stackOffset + yValue;
  }
 
  left = xScale(xValue - bisection);
  right = xScale(xValue + barWidth - bisection);
  top = yScale(yValue + stackOffset);
  bottom = yScale(stackOffset);
 
  // TODO for test passing... probably looks better without this
  if (bottom < 0) bottom = 0;
 
  // TODO Skipping...
  // if (right < xa.min || left > xa.max || top < ya.min || bottom > ya.max) continue;
 
  return (x === null || y === null) ? null : {
  x : xValue,
  y : yValue,
  xScale : xScale,
  yScale : yScale,
  top : top,
  left : Math.min(left, right) - lineWidth / 2,
  width : Math.abs(right - left) - lineWidth,
  height : bottom - top
  };
  },
 
  hit : function (options) {
  var
  data = options.data,
  args = options.args,
  mouse = args[0],
  n = args[1],
  x = mouse.x,
  y = mouse.y,
  hitGeometry = this.getBarGeometry(x, y, options),
  width = hitGeometry.width / 2,
  left = hitGeometry.left,
  geometry, i;
 
  for (i = data.length; i--;) {
  geometry = this.getBarGeometry(data[i][0], data[i][1], options);
  if (geometry.y > hitGeometry.y && Math.abs(left - geometry.left) < width) {
  n.x = data[i][0];
  n.y = data[i][1];
  n.index = i;
  n.seriesIndex = options.index;
  }
  }
  },
 
  drawHit : function (options) {
  // TODO hits for stacked bars; implement using calculateStack option?
  var
  context = options.context,
  args = options.args,
  geometry = this.getBarGeometry(args.x, args.y, options),
  left = geometry.left,
  top = geometry.top,
  width = geometry.width,
  height = geometry.height;
 
  context.save();
  context.strokeStyle = options.color;
  context.lineWidth = options.lineWidth;
  this.translate(context, options.horizontal);
 
  // Draw highlight
  context.beginPath();
  context.moveTo(left, top + height);
  context.lineTo(left, top);
  context.lineTo(left + width, top);
  context.lineTo(left + width, top + height);
  if (options.fill) {
  context.fillStyle = options.fillStyle;
  context.fill();
  }
  context.stroke();
  context.closePath();
 
  context.restore();
  },
 
  clearHit: function (options) {
  var
  context = options.context,
  args = options.args,
  geometry = this.getBarGeometry(args.x, args.y, options),
  left = geometry.left,
  width = geometry.width,
  top = geometry.top,
  height = geometry.height,
  lineWidth = 2 * options.lineWidth;
 
  context.save();
  this.translate(context, options.horizontal);
  context.clearRect(
  left - lineWidth,
  Math.min(top, top + height) - lineWidth,
  width + 2 * lineWidth,
  Math.abs(height) + 2 * lineWidth
  );
  context.restore();
  },
 
  extendXRange : function (axis, data, options, bars) {
  this._extendRange(axis, data, options, bars);
  this.groups = (this.groups + 1) || 1;
  this.current = 0;
  },
 
  extendYRange : function (axis, data, options, bars) {
  this._extendRange(axis, data, options, bars);
  },
  _extendRange: function (axis, data, options, bars) {
 
  var
  max = axis.options.max;
 
  if (_.isNumber(max) || _.isString(max)) return;
 
  var
  newmin = axis.min,
  newmax = axis.max,
  horizontal = options.horizontal,
  orientation = axis.orientation,
  positiveSums = this.positiveSums || {},
  negativeSums = this.negativeSums || {},
  value, datum, index, j;
 
  // Sides of bars
  if ((orientation == 1 && !horizontal) || (orientation == -1 && horizontal)) {
  if (options.centered) {
  newmax = Math.max(axis.datamax + options.barWidth, newmax);
  newmin = Math.min(axis.datamin - options.barWidth, newmin);
  }
  }
 
  if (options.stacked &&
  ((orientation == 1 && horizontal) || (orientation == -1 && !horizontal))){
 
  for (j = data.length; j--;) {
  value = data[j][(orientation == 1 ? 1 : 0)]+'';
  datum = data[j][(orientation == 1 ? 0 : 1)];
 
  // Positive
  if (datum > 0) {
  positiveSums[value] = (positiveSums[value] || 0) + datum;
  newmax = Math.max(newmax, positiveSums[value]);
  }
 
  // Negative
  else {
  negativeSums[value] = (negativeSums[value] || 0) + datum;
  newmin = Math.min(newmin, negativeSums[value]);
  }
  }
  }
 
  // End of bars
  if ((orientation == 1 && horizontal) || (orientation == -1 && !horizontal)) {
  if (options.topPadding && (axis.max === axis.datamax || (options.stacked && this.stackMax !== newmax))) {
  newmax += options.topPadding * (newmax - newmin);
  }
  }
 
  this.stackMin = newmin;
  this.stackMax = newmax;
  this.negativeSums = negativeSums;
  this.positiveSums = positiveSums;
 
  axis.max = newmax;
  axis.min = newmin;
  }
 
  });
 
  /** Bubbles **/
  Flotr.addType('bubbles', {
  options: {
  show: false, // => setting to true will show radar chart, false will hide
  lineWidth: 2, // => line width in pixels
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  baseRadius: 2 // => ratio of the radar, against the plot size
  },
  draw : function (options) {
  var
  context = options.context,
  shadowSize = options.shadowSize;
 
  context.save();
  context.lineWidth = options.lineWidth;
 
  // Shadows
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.strokeStyle = 'rgba(0,0,0,0.05)';
  this.plot(options, shadowSize / 2);
  context.strokeStyle = 'rgba(0,0,0,0.1)';
  this.plot(options, shadowSize / 4);
 
  // Chart
  context.strokeStyle = options.color;
  context.fillStyle = options.fillStyle;
  this.plot(options);
 
  context.restore();
  },
  plot : function (options, offset) {
 
  var
  data = options.data,
  context = options.context,
  geometry,
  i, x, y, z;
 
  offset = offset || 0;
 
  for (i = 0; i < data.length; ++i){
 
  geometry = this.getGeometry(data[i], options);
 
  context.beginPath();
  context.arc(geometry.x + offset, geometry.y + offset, geometry.z, 0, 2 * Math.PI, true);
  context.stroke();
  if (options.fill) context.fill();
  context.closePath();
  }
  },
  getGeometry : function (point, options) {
  return {
  x : options.xScale(point[0]),
  y : options.yScale(point[1]),
  z : point[2] * options.baseRadius
  };
  },
  hit : function (options) {
  var
  data = options.data,
  args = options.args,
  mouse = args[0],
  n = args[1],
  x = mouse.x,
  y = mouse.y,
  distance,
  geometry,
  dx, dy;
 
  n.best = n.best || Number.MAX_VALUE;
 
  for (i = data.length; i--;) {
  geometry = this.getGeometry(data[i], options);
 
  dx = geometry.x - options.xScale(x);
  dy = geometry.y - options.yScale(y);
  distance = Math.sqrt(dx * dx + dy * dy);
 
  if (distance < geometry.z && geometry.z < n.best) {
  n.x = data[i][0];
  n.y = data[i][1];
  n.index = i;
  n.seriesIndex = options.index;
  n.best = geometry.z;
  }
  }
  },
  drawHit : function (options) {
 
  var
  context = options.context,
  geometry = this.getGeometry(options.data[options.args.index], options);
 
  context.save();
  context.lineWidth = options.lineWidth;
  context.fillStyle = options.fillStyle;
  context.strokeStyle = options.color;
  context.beginPath();
  context.arc(geometry.x, geometry.y, geometry.z, 0, 2 * Math.PI, true);
  context.fill();
  context.stroke();
  context.closePath();
  context.restore();
  },
  clearHit : function (options) {
 
  var
  context = options.context,
  geometry = this.getGeometry(options.data[options.args.index], options),
  offset = geometry.z + options.lineWidth;
 
  context.save();
  context.clearRect(
  geometry.x - offset,
  geometry.y - offset,
  2 * offset,
  2 * offset
  );
  context.restore();
  }
  // TODO Add a hit calculation method (like pie)
  });
 
  /** Candles **/
  Flotr.addType('candles', {
  options: {
  show: false, // => setting to true will show candle sticks, false will hide
  lineWidth: 1, // => in pixels
  wickLineWidth: 1, // => in pixels
  candleWidth: 0.6, // => in units of the x axis
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  upFillColor: '#00A8F0',// => up sticks fill color
  downFillColor: '#CB4B4B',// => down sticks fill color
  fillOpacity: 0.5, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  // TODO Test this barcharts option.
  barcharts: false // => draw as barcharts (not standard bars but financial barcharts)
  },
 
  draw : function (options) {
 
  var
  context = options.context;
 
  context.save();
  context.lineJoin = 'miter';
  context.lineCap = 'butt';
  // @TODO linewidth not interpreted the right way.
  context.lineWidth = options.wickLineWidth || options.lineWidth;
 
  this.plot(options);
 
  context.restore();
  },
 
  plot : function (options) {
 
  var
  data = options.data,
  context = options.context,
  xScale = options.xScale,
  yScale = options.yScale,
  width = options.candleWidth / 2,
  shadowSize = options.shadowSize,
  lineWidth = options.lineWidth,
  wickLineWidth = options.wickLineWidth,
  pixelOffset = (wickLineWidth % 2) / 2,
  color,
  datum, x, y,
  open, high, low, close,
  left, right, bottom, top, bottom2, top2,
  i;
 
  if (data.length < 1) return;
 
  for (i = 0; i < data.length; i++) {
  datum = data[i];
  x = datum[0];
  open = datum[1];
  high = datum[2];
  low = datum[3];
  close = datum[4];
  left = xScale(x - width);
  right = xScale(x + width);
  bottom = yScale(low);
  top = yScale(high);
  bottom2 = yScale(Math.min(open, close));
  top2 = yScale(Math.max(open, close));
 
  /*
  // TODO skipping
  if(right < xa.min || left > xa.max || top < ya.min || bottom > ya.max)
  continue;
  */
 
  color = options[open > close ? 'downFillColor' : 'upFillColor'];
 
  // Fill the candle.
  // TODO Test the barcharts option
  if (options.fill && !options.barcharts) {
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.fillRect(left + shadowSize, top2 + shadowSize, right - left, bottom2 - top2);
  context.save();
  context.globalAlpha = options.fillOpacity;
  context.fillStyle = color;
  context.fillRect(left, top2 + lineWidth, right - left, bottom2 - top2);
  context.restore();
  }
 
  // Draw candle outline/border, high, low.
  if (lineWidth || wickLineWidth) {
 
  x = Math.floor((left + right) / 2) + pixelOffset;
 
  context.strokeStyle = color;
  context.beginPath();
 
  // TODO Again with the bartcharts
  if (options.barcharts) {
 
  context.moveTo(x, Math.floor(top + width));
  context.lineTo(x, Math.floor(bottom + width));
 
  y = Math.floor(open + width) + 0.5;
  context.moveTo(Math.floor(left) + pixelOffset, y);
  context.lineTo(x, y);
 
  y = Math.floor(close + width) + 0.5;
  context.moveTo(Math.floor(right) + pixelOffset, y);
  context.lineTo(x, y);
  } else {
  context.strokeRect(left, top2 + lineWidth, right - left, bottom2 - top2);
 
  context.moveTo(x, Math.floor(top2 + lineWidth));
  context.lineTo(x, Math.floor(top + lineWidth));
  context.moveTo(x, Math.floor(bottom2 + lineWidth));
  context.lineTo(x, Math.floor(bottom + lineWidth));
  }
 
  context.closePath();
  context.stroke();
  }
  }
  },
  extendXRange: function (axis, data, options) {
  if (axis.options.max === null) {
  axis.max = Math.max(axis.datamax + 0.5, axis.max);
  axis.min = Math.min(axis.datamin - 0.5, axis.min);
  }
  }
  });
 
  /** Gantt
  * Base on data in form [s,y,d] where:
  * y - executor or simply y value
  * s - task start value
  * d - task duration
  * **/
  Flotr.addType('gantt', {
  options: {
  show: false, // => setting to true will show gantt, false will hide
  lineWidth: 2, // => in pixels
  barWidth: 1, // => in units of the x axis
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillColor: null, // => fill color
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  centered: true // => center the bars to their x axis value
  },
  /**
  * Draws gantt series in the canvas element.
  * @param {Object} series - Series with options.gantt.show = true.
  */
  draw: function(series) {
  var ctx = this.ctx,
  bw = series.gantt.barWidth,
  lw = Math.min(series.gantt.lineWidth, bw);
 
  ctx.save();
  ctx.translate(this.plotOffset.left, this.plotOffset.top);
  ctx.lineJoin = 'miter';
 
  /**
  * @todo linewidth not interpreted the right way.
  */
  ctx.lineWidth = lw;
  ctx.strokeStyle = series.color;
 
  ctx.save();
  this.gantt.plotShadows(series, bw, 0, series.gantt.fill);
  ctx.restore();
 
  if(series.gantt.fill){
  var color = series.gantt.fillColor || series.color;
  ctx.fillStyle = this.processColor(color, {opacity: series.gantt.fillOpacity});
  }
 
  this.gantt.plot(series, bw, 0, series.gantt.fill);
  ctx.restore();
  },
  plot: function(series, barWidth, offset, fill){
  var data = series.data;
  if(data.length < 1) return;
 
  var xa = series.xaxis,
  ya = series.yaxis,
  ctx = this.ctx, i;
 
  for(i = 0; i < data.length; i++){
  var y = data[i][0],
  s = data[i][1],
  d = data[i][2],
  drawLeft = true, drawTop = true, drawRight = true;
 
  if (s === null || d === null) continue;
 
  var left = s,
  right = s + d,
  bottom = y - (series.gantt.centered ? barWidth/2 : 0),
  top = y + barWidth - (series.gantt.centered ? barWidth/2 : 0);
 
  if(right < xa.min || left > xa.max || top < ya.min || bottom > ya.max)
  continue;
 
  if(left < xa.min){
  left = xa.min;
  drawLeft = false;
  }
 
  if(right > xa.max){
  right = xa.max;
  if (xa.lastSerie != series)
  drawTop = false;
  }
 
  if(bottom < ya.min)
  bottom = ya.min;
 
  if(top > ya.max){
  top = ya.max;
  if (ya.lastSerie != series)
  drawTop = false;
  }
 
  /**
  * Fill the bar.
  */
  if(fill){
  ctx.beginPath();
  ctx.moveTo(xa.d2p(left), ya.d2p(bottom) + offset);
  ctx.lineTo(xa.d2p(left), ya.d2p(top) + offset);
  ctx.lineTo(xa.d2p(right), ya.d2p(top) + offset);
  ctx.lineTo(xa.d2p(right), ya.d2p(bottom) + offset);
  ctx.fill();
  ctx.closePath();
  }
 
  /**
  * Draw bar outline/border.
  */
  if(series.gantt.lineWidth && (drawLeft || drawRight || drawTop)){
  ctx.beginPath();
  ctx.moveTo(xa.d2p(left), ya.d2p(bottom) + offset);
 
  ctx[drawLeft ?'lineTo':'moveTo'](xa.d2p(left), ya.d2p(top) + offset);
  ctx[drawTop ?'lineTo':'moveTo'](xa.d2p(right), ya.d2p(top) + offset);
  ctx[drawRight?'lineTo':'moveTo'](xa.d2p(right), ya.d2p(bottom) + offset);
 
  ctx.stroke();
  ctx.closePath();
  }
  }
  },
  plotShadows: function(series, barWidth, offset){
  var data = series.data;
  if(data.length < 1) return;
 
  var i, y, s, d,
  xa = series.xaxis,
  ya = series.yaxis,
  ctx = this.ctx,
  sw = this.options.shadowSize;
 
  for(i = 0; i < data.length; i++){
  y = data[i][0];
  s = data[i][1];
  d = data[i][2];
 
  if (s === null || d === null) continue;
 
  var left = s,
  right = s + d,
  bottom = y - (series.gantt.centered ? barWidth/2 : 0),
  top = y + barWidth - (series.gantt.centered ? barWidth/2 : 0);
 
  if(right < xa.min || left > xa.max || top < ya.min || bottom > ya.max)
  continue;
 
  if(left < xa.min) left = xa.min;
  if(right > xa.max) right = xa.max;
  if(bottom < ya.min) bottom = ya.min;
  if(top > ya.max) top = ya.max;
 
  var width = xa.d2p(right)-xa.d2p(left)-((xa.d2p(right)+sw <= this.plotWidth) ? 0 : sw);
  var height = ya.d2p(bottom)-ya.d2p(top)-((ya.d2p(bottom)+sw <= this.plotHeight) ? 0 : sw );
 
  ctx.fillStyle = 'rgba(0,0,0,0.05)';
  ctx.fillRect(Math.min(xa.d2p(left)+sw, this.plotWidth), Math.min(ya.d2p(top)+sw, this.plotHeight), width, height);
  }
  },
  extendXRange: function(axis) {
  if(axis.options.max === null){
  var newmin = axis.min,
  newmax = axis.max,
  i, j, x, s, g,
  stackedSumsPos = {},
  stackedSumsNeg = {},
  lastSerie = null;
 
  for(i = 0; i < this.series.length; ++i){
  s = this.series[i];
  g = s.gantt;
 
  if(g.show && s.xaxis == axis) {
  for (j = 0; j < s.data.length; j++) {
  if (g.show) {
  y = s.data[j][0]+'';
  stackedSumsPos[y] = Math.max((stackedSumsPos[y] || 0), s.data[j][1]+s.data[j][2]);
  lastSerie = s;
  }
  }
  for (j in stackedSumsPos) {
  newmax = Math.max(stackedSumsPos[j], newmax);
  }
  }
  }
  axis.lastSerie = lastSerie;
  axis.max = newmax;
  axis.min = newmin;
  }
  },
  extendYRange: function(axis){
  if(axis.options.max === null){
  var newmax = Number.MIN_VALUE,
  newmin = Number.MAX_VALUE,
  i, j, s, g,
  stackedSumsPos = {},
  stackedSumsNeg = {},
  lastSerie = null;
 
  for(i = 0; i < this.series.length; ++i){
  s = this.series[i];
  g = s.gantt;
 
  if (g.show && !s.hide && s.yaxis == axis) {
  var datamax = Number.MIN_VALUE, datamin = Number.MAX_VALUE;
  for(j=0; j < s.data.length; j++){
  datamax = Math.max(datamax,s.data[j][0]);
  datamin = Math.min(datamin,s.data[j][0]);
  }
 
  if (g.centered) {
  newmax = Math.max(datamax + 0.5, newmax);
  newmin = Math.min(datamin - 0.5, newmin);
  }
  else {
  newmax = Math.max(datamax + 1, newmax);
  newmin = Math.min(datamin, newmin);
  }
  // For normal horizontal bars
  if (g.barWidth + datamax > newmax){
  newmax = axis.max + g.barWidth;
  }
  }
  }
  axis.lastSerie = lastSerie;
  axis.max = newmax;
  axis.min = newmin;
  axis.tickSize = Flotr.getTickSize(axis.options.noTicks, newmin, newmax, axis.options.tickDecimals);
  }
  }
  });
 
  /** Markers **/
  /**
  * Formats the marker labels.
  * @param {Object} obj - Marker value Object {x:..,y:..}
  * @return {String} Formatted marker string
  */
  (function () {
 
  Flotr.defaultMarkerFormatter = function(obj){
  return (Math.round(obj.y*100)/100)+'';
  };
 
  Flotr.addType('markers', {
  options: {
  show: false, // => setting to true will show markers, false will hide
  lineWidth: 1, // => line width of the rectangle around the marker
  color: '#000000', // => text color
  fill: false, // => fill or not the marekers' rectangles
  fillColor: "#FFFFFF", // => fill color
  fillOpacity: 0.4, // => fill opacity
  stroke: false, // => draw the rectangle around the markers
  position: 'ct', // => the markers position (vertical align: b, m, t, horizontal align: l, c, r)
  verticalMargin: 0, // => the margin between the point and the text.
  labelFormatter: Flotr.defaultMarkerFormatter,
  fontSize: Flotr.defaultOptions.fontSize,
  stacked: false, // => true if markers should be stacked
  stackingType: 'b', // => define staching behavior, (b- bars like, a - area like) (see Issue 125 for details)
  horizontal: false // => true if markers should be horizontal (For now only in a case on horizontal stacked bars, stacks should be calculated horizontaly)
  },
 
  // TODO test stacked markers.
  stack : {
  positive : [],
  negative : [],
  values : []
  },
 
  draw : function (options) {
 
  var
  data = options.data,
  context = options.context,
  stack = options.stacked ? options.stack : false,
  stackType = options.stackingType,
  stackOffsetNeg,
  stackOffsetPos,
  stackOffset,
  i, x, y, label;
 
  context.save();
  context.lineJoin = 'round';
  context.lineWidth = options.lineWidth;
  context.strokeStyle = 'rgba(0,0,0,0.5)';
  context.fillStyle = options.fillStyle;
 
  function stackPos (a, b) {
  stackOffsetPos = stack.negative[a] || 0;
  stackOffsetNeg = stack.positive[a] || 0;
  if (b > 0) {
  stack.positive[a] = stackOffsetPos + b;
  return stackOffsetPos + b;
  } else {
  stack.negative[a] = stackOffsetNeg + b;
  return stackOffsetNeg + b;
  }
  }
 
  for (i = 0; i < data.length; ++i) {
 
  x = data[i][0];
  y = data[i][1];
 
  if (stack) {
  if (stackType == 'b') {
  if (options.horizontal) y = stackPos(y, x);
  else x = stackPos(x, y);
  } else if (stackType == 'a') {
  stackOffset = stack.values[x] || 0;
  stack.values[x] = stackOffset + y;
  y = stackOffset + y;
  }
  }
 
  label = options.labelFormatter({x: x, y: y, index: i, data : data});
  this.plot(options.xScale(x), options.yScale(y), label, options);
  }
  context.restore();
  },
  plot: function(x, y, label, options) {
  var context = options.context;
  if (isImage(label) && !label.complete) {
  throw 'Marker image not loaded.';
  } else {
  this._plot(x, y, label, options);
  }
  },
 
  _plot: function(x, y, label, options) {
  var context = options.context,
  margin = 2,
  left = x,
  top = y,
  dim;
 
  if (isImage(label))
  dim = {height : label.height, width: label.width};
  else
  dim = options.text.canvas(label);
 
  dim.width = Math.floor(dim.width+margin*2);
  dim.height = Math.floor(dim.height+margin*2);
 
  if (options.position.indexOf('c') != -1) left -= dim.width/2 + margin;
  else if (options.position.indexOf('l') != -1) left -= dim.width;
 
  if (options.position.indexOf('m') != -1) top -= dim.height/2 + margin;
  else if (options.position.indexOf('t') != -1) top -= dim.height + options.verticalMargin;
  else top += options.verticalMargin;
 
  left = Math.floor(left)+0.5;
  top = Math.floor(top)+0.5;
 
  if(options.fill)
  context.fillRect(left, top, dim.width, dim.height);
 
  if(options.stroke)
  context.strokeRect(left, top, dim.width, dim.height);
 
  if (isImage(label))
  context.drawImage(label, left+margin, top+margin);
  else
  Flotr.drawText(context, label, left+margin, top+margin, {textBaseline: 'top', textAlign: 'left', size: options.fontSize, color: options.color});
  }
  });
 
  function isImage (i) {
  return typeof i === 'object' && i.constructor && (Image ? true : i.constructor === Image);
  }
 
  })();
 
  /** Pie **/
  /**
  * Formats the pies labels.
  * @param {Object} slice - Slice object
  * @return {String} Formatted pie label string
  */
  (function () {
 
  var
  _ = Flotr._;
 
  Flotr.defaultPieLabelFormatter = function (total, value) {
  return (100 * value / total).toFixed(2)+'%';
  };
 
  Flotr.addType('pie', {
  options: {
  show: false, // => setting to true will show bars, false will hide
  lineWidth: 1, // => in pixels
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillColor: null, // => fill color
  fillOpacity: 0.6, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  explode: 6, // => the number of pixels the splices will be far from the center
  sizeRatio: 0.6, // => the size ratio of the pie relative to the plot
  startAngle: Math.PI/4, // => the first slice start angle
  labelFormatter: Flotr.defaultPieLabelFormatter,
  pie3D: false, // => whether to draw the pie in 3 dimenstions or not (ineffective)
  pie3DviewAngle: (Math.PI/2 * 0.8),
  pie3DspliceThickness: 20
  },
 
  draw : function (options) {
 
  // TODO 3D charts what?
 
  var
  data = options.data,
  context = options.context,
  canvas = context.canvas,
  lineWidth = options.lineWidth,
  shadowSize = options.shadowSize,
  sizeRatio = options.sizeRatio,
  height = options.height,
  width = options.width,
  explode = options.explode,
  color = options.color,
  fill = options.fill,
  fillStyle = options.fillStyle,
  radius = Math.min(canvas.width, canvas.height) * sizeRatio / 2,
  value = data[0][1],
  html = [],
  vScale = 1,//Math.cos(series.pie.viewAngle);
  measure = Math.PI * 2 * value / this.total,
  startAngle = this.startAngle || (2 * Math.PI * options.startAngle), // TODO: this initial startAngle is already in radians (fixing will be test-unstable)
  endAngle = startAngle + measure,
  bisection = startAngle + measure / 2,
  label = options.labelFormatter(this.total, value),
  //plotTickness = Math.sin(series.pie.viewAngle)*series.pie.spliceThickness / vScale;
  explodeCoeff = explode + radius + 4,
  distX = Math.cos(bisection) * explodeCoeff,
  distY = Math.sin(bisection) * explodeCoeff,
  textAlign = distX < 0 ? 'right' : 'left',
  textBaseline = distY > 0 ? 'top' : 'bottom',
  style,
  x, y,
  distX, distY;
 
  context.save();
  context.translate(width / 2, height / 2);
  context.scale(1, vScale);
 
  x = Math.cos(bisection) * explode;
  y = Math.sin(bisection) * explode;
 
  // Shadows
  if (shadowSize > 0) {
  this.plotSlice(x + shadowSize, y + shadowSize, radius, startAngle, endAngle, context);
  if (fill) {
  context.fillStyle = 'rgba(0,0,0,0.1)';
  context.fill();
  }
  }
 
  this.plotSlice(x, y, radius, startAngle, endAngle, context);
  if (fill) {
  context.fillStyle = fillStyle;
  context.fill();
  }
  context.lineWidth = lineWidth;
  context.strokeStyle = color;
  context.stroke();
 
  style = {
  size : options.fontSize * 1.2,
  color : options.fontColor,
  weight : 1.5
  };
 
  if (label) {
  if (options.htmlText || !options.textEnabled) {
  divStyle = 'position:absolute;' + textBaseline + ':' + (height / 2 + (textBaseline === 'top' ? distY : -distY)) + 'px;';
  divStyle += textAlign + ':' + (width / 2 + (textAlign === 'right' ? -distX : distX)) + 'px;';
  html.push('<div style="', divStyle, '" class="flotr-grid-label">', label, '</div>');
  }
  else {
  style.textAlign = textAlign;
  style.textBaseline = textBaseline;
  Flotr.drawText(context, label, distX, distY, style);
  }
  }
 
  if (options.htmlText || !options.textEnabled) {
  var div = Flotr.DOM.node('<div style="color:' + options.fontColor + '" class="flotr-labels"></div>');
  Flotr.DOM.insert(div, html.join(''));
  Flotr.DOM.insert(options.element, div);
  }
 
  context.restore();
 
  // New start angle
  this.startAngle = endAngle;
  this.slices = this.slices || [];
  this.slices.push({
  radius : Math.min(canvas.width, canvas.height) * sizeRatio / 2,
  x : x,
  y : y,
  explode : explode,
  start : startAngle,
  end : endAngle
  });
  },
  plotSlice : function (x, y, radius, startAngle, endAngle, context) {
  context.beginPath();
  context.moveTo(x, y);
  context.arc(x, y, radius, startAngle, endAngle, false);
  context.lineTo(x, y);
  context.closePath();
  },
  hit : function (options) {
 
  var
  data = options.data[0],
  args = options.args,
  index = options.index,
  mouse = args[0],
  n = args[1],
  slice = this.slices[index],
  x = mouse.relX - options.width / 2,
  y = mouse.relY - options.height / 2,
  r = Math.sqrt(x * x + y * y),
  theta = Math.atan(y / x),
  circle = Math.PI * 2,
  explode = slice.explode || options.explode,
  start = slice.start % circle,
  end = slice.end % circle;
 
  if (x < 0) {
  theta += Math.PI;
  } else if (x > 0 && y < 0) {
  theta += circle;
  }
 
  if (r < slice.radius + explode && r > explode) {
  if ((start >= end && (theta < end || theta > start)) ||
  (theta > start && theta < end)) {
 
  // TODO Decouple this from hit plugin (chart shouldn't know what n means)
  n.x = data[0];
  n.y = data[1];
  n.sAngle = start;
  n.eAngle = end;
  n.index = 0;
  n.seriesIndex = index;
  n.fraction = data[1] / this.total;
  }
  }
  },
  drawHit: function (options) {
  var
  context = options.context,
  slice = this.slices[options.args.seriesIndex];
 
  context.save();
  context.translate(options.width / 2, options.height / 2);
  this.plotSlice(slice.x, slice.y, slice.radius, slice.start, slice.end, context);
  context.stroke();
  context.restore();
  },
  clearHit : function (options) {
  var
  context = options.context,
  slice = this.slices[options.args.seriesIndex],
  padding = 2 * options.lineWidth,
  radius = slice.radius + padding;
 
  context.save();
  context.translate(options.width / 2, options.height / 2);
  context.clearRect(
  slice.x - radius,
  slice.y - radius,
  2 * radius + padding,
  2 * radius + padding
  );
  context.restore();
  },
  extendYRange : function (axis, data) {
  this.total = (this.total || 0) + data[0][1];
  }
  });
  })();
 
  /** Points **/
  Flotr.addType('points', {
  options: {
  show: false, // => setting to true will show points, false will hide
  radius: 3, // => point radius (pixels)
  lineWidth: 2, // => line width in pixels
  fill: true, // => true to fill the points with a color, false for (transparent) no fill
  fillColor: '#FFFFFF', // => fill color
  fillOpacity: 0.4 // => opacity of color inside the points
  },
 
  draw : function (options) {
  var
  context = options.context,
  lineWidth = options.lineWidth,
  shadowSize = options.shadowSize;
 
  context.save();
 
  if (shadowSize > 0) {
  context.lineWidth = shadowSize / 2;
 
  context.strokeStyle = 'rgba(0,0,0,0.1)';
  this.plot(options, shadowSize / 2 + context.lineWidth / 2);
 
  context.strokeStyle = 'rgba(0,0,0,0.2)';
  this.plot(options, context.lineWidth / 2);
  }
 
  context.lineWidth = options.lineWidth;
  context.strokeStyle = options.color;
  context.fillStyle = options.fillColor || options.color;
 
  this.plot(options);
  context.restore();
  },
 
  plot : function (options, offset) {
  var
  data = options.data,
  context = options.context,
  xScale = options.xScale,
  yScale = options.yScale,
  i, x, y;
 
  for (i = data.length - 1; i > -1; --i) {
  y = data[i][1];
  if (y === null) continue;
 
  x = xScale(data[i][0]);
  y = yScale(y);
 
  if (x < 0 || x > options.width || y < 0 || y > options.height) continue;
 
  context.beginPath();
  if (offset) {
  context.arc(x, y + offset, options.radius, 0, Math.PI, false);
  } else {
  context.arc(x, y, options.radius, 0, 2 * Math.PI, true);
  if (options.fill) context.fill();
  }
  context.stroke();
  context.closePath();
  }
  }
  });
 
  /** Radar **/
  Flotr.addType('radar', {
  options: {
  show: false, // => setting to true will show radar chart, false will hide
  lineWidth: 2, // => line width in pixels
  fill: true, // => true to fill the area from the line to the x axis, false for (transparent) no fill
  fillOpacity: 0.4, // => opacity of the fill color, set to 1 for a solid fill, 0 hides the fill
  radiusRatio: 0.90 // => ratio of the radar, against the plot size
  },
  draw : function (options) {
  var
  context = options.context,
  shadowSize = options.shadowSize;
 
  context.save();
  context.translate(options.width / 2, options.height / 2);
  context.lineWidth = options.lineWidth;
 
  // Shadow
  context.fillStyle = 'rgba(0,0,0,0.05)';
  context.strokeStyle = 'rgba(0,0,0,0.05)';
  this.plot(options, shadowSize / 2);
  context.strokeStyle = 'rgba(0,0,0,0.1)';
  this.plot(options, shadowSize / 4);
 
  // Chart
  context.strokeStyle = options.color;
  context.fillStyle = options.fillStyle;
  this.plot(options);
 
  context.restore();
  },
  plot : function (options, offset) {
  var
  data = options.data,
  context = options.context,
  radius = Math.min(options.height, options.width) * options.radiusRatio / 2,
  step = 2 * Math.PI / data.length,
  angle = -Math.PI / 2,
  i, ratio;
 
  offset = offset || 0;
 
  context.beginPath();
  for (i = 0; i < data.length; ++i) {
  ratio = data[i][1] / this.max;
 
  context[i === 0 ? 'moveTo' : 'lineTo'](
  Math.cos(i * step + angle) * radius * ratio + offset,
  Math.sin(i * step + angle) * radius * ratio + offset
  );
  }
  context.closePath();
  if (options.fill) context.fill();
  context.stroke();
  },
  extendYRange : function (axis, data) {
  this.max = Math.max(axis.max, this.max || -Number.MAX_VALUE);
  }
  });
 
  Flotr.addType('timeline', {
  options: {
  show: false,
  lineWidth: 1,
  barWidth: 0.2,
  fill: true,
  fillColor: null,
  fillOpacity: 0.4,
  centered: true
  },
 
  draw : function (options) {
 
  var
  context = options.context;
 
  context.save();
  context.lineJoin = 'miter';
  context.lineWidth = options.lineWidth;
  context.strokeStyle = options.color;
  context.fillStyle = options.fillStyle;
 
  this.plot(options);
 
  context.restore();
  },
 
  plot : function (options) {
 
  var
  data = options.data,
  context = options.context,
  xScale = options.xScale,
  yScale = options.yScale,
  barWidth = options.barWidth,
  lineWidth = options.lineWidth,
  i;
 
  Flotr._.each(data, function (timeline) {
 
  var
  x = timeline[0],
  y = timeline[1],
  w = timeline[2],
  h = barWidth,
 
  xt = Math.ceil(xScale(x)),
  wt = Math.ceil(xScale(x + w)) - xt,
  yt = Math.round(yScale(y)),
  ht = Math.round(yScale(y - h)) - yt,
 
  x0 = xt - lineWidth / 2,
  y0 = Math.round(yt - ht / 2) - lineWidth / 2;
 
  context.strokeRect(x0, y0, wt, ht);
  context.fillRect(x0, y0, wt, ht);
 
  });
  },
 
  extendRange : function (series) {
 
  var
  data = series.data,
  xa = series.xaxis,
  ya = series.yaxis,
  w = series.timeline.barWidth;
 
  if (xa.options.min === null)
  xa.min = xa.datamin - w / 2;
 
  if (xa.options.max === null) {
 
  var
  max = xa.max;
 
  Flotr._.each(data, function (timeline) {
  max = Math.max(max, timeline[0] + timeline[2]);
  }, this);
 
  xa.max = max + w / 2;
  }
 
  if (ya.options.min === null)
  ya.min = ya.datamin - w;
  if (ya.options.min === null)
  ya.max = ya.datamax + w;
  }
 
  });
 
  (function () {
 
  var D = Flotr.DOM;
 
  Flotr.addPlugin('crosshair', {
  options: {
  mode: null, // => one of null, 'x', 'y' or 'xy'
  color: '#FF0000', // => crosshair color
  hideCursor: true // => hide the cursor when the crosshair is shown
  },
  callbacks: {
  'flotr:mousemove': function(e, pos) {
  if (this.options.crosshair.mode) {
  this.crosshair.clearCrosshair();
  this.crosshair.drawCrosshair(pos);
  }
  }
  },
  /**
  * Draws the selection box.
  */
  drawCrosshair: function(pos) {
  var octx = this.octx,
  options = this.options.crosshair,
  plotOffset = this.plotOffset,
  x = plotOffset.left + pos.relX + 0.5,
  y = plotOffset.top + pos.relY + 0.5;
 
  if (pos.relX < 0 || pos.relY < 0 || pos.relX > this.plotWidth || pos.relY > this.plotHeight) {
  this.el.style.cursor = null;
  D.removeClass(this.el, 'flotr-crosshair');
  return;
  }
 
  if (options.hideCursor) {
  this.el.style.cursor = 'none';
  D.addClass(this.el, 'flotr-crosshair');
  }
 
  octx.save();
  octx.strokeStyle = options.color;
  octx.lineWidth = 1;
  octx.beginPath();
 
  if (options.mode.indexOf('x') != -1) {
  octx.moveTo(x, plotOffset.top);
  octx.lineTo(x, plotOffset.top + this.plotHeight);
  }
 
  if (options.mode.indexOf('y') != -1) {
  octx.moveTo(plotOffset.left, y);
  octx.lineTo(plotOffset.left + this.plotWidth, y);
  }
 
  octx.stroke();
  octx.restore();
  },
  /**
  * Removes the selection box from the overlay canvas.
  */
  clearCrosshair: function() {
 
  var
  plotOffset = this.plotOffset,
  position = this.lastMousePos,
  context = this.octx;
 
  if (position) {
  context.clearRect(
  position.relX + plotOffset.left,
  plotOffset.top,
  1,
  this.plotHeight + 1
  );
  context.clearRect(
  plotOffset.left,
  position.relY + plotOffset.top,
  this.plotWidth + 1,
  1
  );
  }
  }
  });
  })();
 
  (function() {
 
  var
  D = Flotr.DOM,
  _ = Flotr._;
 
  function getImage (type, canvas, width, height) {
 
  // TODO add scaling for w / h
  var
  mime = 'image/'+type,
  data = canvas.toDataURL(mime),
  image = new Image();
  image.src = data;
  return image;
  }
 
  Flotr.addPlugin('download', {
 
  saveImage: function (type, width, height, replaceCanvas) {
  var image = null;
  if (Flotr.isIE && Flotr.isIE < 9) {
  image = '<html><body>'+this.canvas.firstChild.innerHTML+'</body></html>';
  return window.open().document.write(image);
  }
 
  if (type !== 'jpeg' && type !== 'png') return;
 
  image = getImage(type, this.canvas, width, height);
 
  if (_.isElement(image) && replaceCanvas) {
  this.download.restoreCanvas();
  D.hide(this.canvas);
  D.hide(this.overlay);
  D.setStyles({position: 'absolute'});
  D.insert(this.el, image);
  this.saveImageElement = image;
  } else {
  return window.open(image.src);
  }
  },
 
  restoreCanvas: function() {
  D.show(this.canvas);
  D.show(this.overlay);
  if (this.saveImageElement) this.el.removeChild(this.saveImageElement);
  this.saveImageElement = null;
  }
  });
 
  })();
 
  (function () {
 
  var E = Flotr.EventAdapter,
  _ = Flotr._;
 
  Flotr.addPlugin('graphGrid', {
 
  callbacks: {
  'flotr:beforedraw' : function () {
  this.graphGrid.drawGrid();
  },
  'flotr:afterdraw' : function () {
  this.graphGrid.drawOutline();
  }
  },
 
  drawGrid: function(){
 
  var
  ctx = this.ctx,
  options = this.options,
  grid = options.grid,
  verticalLines = grid.verticalLines,
  horizontalLines = grid.horizontalLines,
  minorVerticalLines = grid.minorVerticalLines,
  minorHorizontalLines = grid.minorHorizontalLines,
  plotHeight = this.plotHeight,
  plotWidth = this.plotWidth,
  a, v, i, j;
 
  if(verticalLines || minorVerticalLines ||
  horizontalLines || minorHorizontalLines){
  E.fire(this.el, 'flotr:beforegrid', [this.axes.x, this.axes.y, options, this]);
  }
  ctx.save();
  ctx.lineWidth = 1;
  ctx.strokeStyle = grid.tickColor;
 
  function circularHorizontalTicks (ticks) {
  for(i = 0; i < ticks.length; ++i){
  var ratio = ticks[i].v / a.max;
  for(j = 0; j <= sides; ++j){
  ctx[j === 0 ? 'moveTo' : 'lineTo'](
  Math.cos(j*coeff+angle)*radius*ratio,
  Math.sin(j*coeff+angle)*radius*ratio
  );
  }
  }
  }
  function drawGridLines (ticks, callback) {
  _.each(_.pluck(ticks, 'v'), function(v){
  // Don't show lines on upper and lower bounds.
  if ((v <= a.min || v >= a.max) ||
  (v == a.min || v == a.max) && grid.outlineWidth)
  return;
  callback(Math.floor(a.d2p(v)) + ctx.lineWidth/2);
  });
  }
  function drawVerticalLines (x) {
  ctx.moveTo(x, 0);
  ctx.lineTo(x, plotHeight);
  }
  function drawHorizontalLines (y) {
  ctx.moveTo(0, y);
  ctx.lineTo(plotWidth, y);
  }
 
  if (grid.circular) {
  ctx.translate(this.plotOffset.left+plotWidth/2, this.plotOffset.top+plotHeight/2);
  var radius = Math.min(plotHeight, plotWidth)*options.radar.radiusRatio/2,
  sides = this.axes.x.ticks.length,
  coeff = 2*(Math.PI/sides),
  angle = -Math.PI/2;
 
  // Draw grid lines in vertical direction.
  ctx.beginPath();
 
  a = this.axes.y;
 
  if(horizontalLines){
  circularHorizontalTicks(a.ticks);
  }
  if(minorHorizontalLines){
  circularHorizontalTicks(a.minorTicks);
  }
 
  if(verticalLines){
  _.times(sides, function(i){
  ctx.moveTo(0, 0);
  ctx.lineTo(Math.cos(i*coeff+angle)*radius, Math.sin(i*coeff+angle)*radius);
  });
  }
  ctx.stroke();
  }
  else {
  ctx.translate(this.plotOffset.left, this.plotOffset.top);
 
  // Draw grid background, if present in options.
  if(grid.backgroundColor){
  ctx.fillStyle = this.processColor(grid.backgroundColor, {x1: 0, y1: 0, x2: plotWidth, y2: plotHeight});
  ctx.fillRect(0, 0, plotWidth, plotHeight);
  }
 
  ctx.beginPath();
 
  a = this.axes.x;
  if (verticalLines) drawGridLines(a.ticks, drawVerticalLines);
  if (minorVerticalLines) drawGridLines(a.minorTicks, drawVerticalLines);
 
  a = this.axes.y;
  if (horizontalLines) drawGridLines(a.ticks, drawHorizontalLines);
  if (minorHorizontalLines) drawGridLines(a.minorTicks, drawHorizontalLines);
 
  ctx.stroke();
  }
 
  ctx.restore();
  if(verticalLines || minorVerticalLines ||
  horizontalLines || minorHorizontalLines){
  E.fire(this.el, 'flotr:aftergrid', [this.axes.x, this.axes.y, options, this]);
  }
  },
 
  drawOutline: function(){
  var
  that = this,
  options = that.options,
  grid = options.grid,
  outline = grid.outline,
  ctx = that.ctx,
  backgroundImage = grid.backgroundImage,
  plotOffset = that.plotOffset,
  leftOffset = plotOffset.left,
  topOffset = plotOffset.top,
  plotWidth = that.plotWidth,
  plotHeight = that.plotHeight,
  v, img, src, left, top, globalAlpha;
 
  if (!grid.outlineWidth) return;
 
  ctx.save();
 
  if (grid.circular) {
  ctx.translate(leftOffset + plotWidth / 2, topOffset + plotHeight / 2);
  var radius = Math.min(plotHeight, plotWidth) * options.radar.radiusRatio / 2,
  sides = this.axes.x.ticks.length,
  coeff = 2*(Math.PI/sides),
  angle = -Math.PI/2;
 
  // Draw axis/grid border.
  ctx.beginPath();
  ctx.lineWidth = grid.outlineWidth;
  ctx.strokeStyle = grid.color;
  ctx.lineJoin = 'round';
 
  for(i = 0; i <= sides; ++i){
  ctx[i === 0 ? 'moveTo' : 'lineTo'](Math.cos(i*coeff+angle)*radius, Math.sin(i*coeff+angle)*radius);
  }
  //ctx.arc(0, 0, radius, 0, Math.PI*2, true);
 
  ctx.stroke();
  }
  else {
  ctx.translate(leftOffset, topOffset);
 
  // Draw axis/grid border.
  var lw = grid.outlineWidth,
  orig = 0.5-lw+((lw+1)%2/2),
  lineTo = 'lineTo',
  moveTo = 'moveTo';
  ctx.lineWidth = lw;
  ctx.strokeStyle = grid.color;
  ctx.lineJoin = 'miter';
  ctx.beginPath();
  ctx.moveTo(orig, orig);
  plotWidth = plotWidth - (lw / 2) % 1;
  plotHeight = plotHeight + lw / 2;
  ctx[outline.indexOf('n') !== -1 ? lineTo : moveTo](plotWidth, orig);
  ctx[outline.indexOf('e') !== -1 ? lineTo : moveTo](plotWidth, plotHeight);
  ctx[outline.indexOf('s') !== -1 ? lineTo : moveTo](orig, plotHeight);
  ctx[outline.indexOf('w') !== -1 ? lineTo : moveTo](orig, orig);
  ctx.stroke();
  ctx.closePath();
  }
 
  ctx.restore();
 
  if (backgroundImage) {
 
  src = backgroundImage.src || backgroundImage;
  left = (parseInt(backgroundImage.left, 10) || 0) + plotOffset.left;
  top = (parseInt(backgroundImage.top, 10) || 0) + plotOffset.top;
  img = new Image();
 
  img.onload = function() {
  ctx.save();
  if (backgroundImage.alpha) ctx.globalAlpha = backgroundImage.alpha;
  ctx.globalCompositeOperation = 'destination-over';
  ctx.drawImage(img, 0, 0, img.width, img.height, left, top, plotWidth, plotHeight);
  ctx.restore();
  };
 
  img.src = src;
  }
  }
  });
 
  })();
 
  (function () {
 
  var
  D = Flotr.DOM,
  _ = Flotr._,
  flotr = Flotr,
  S_MOUSETRACK = 'opacity:0.7;background-color:#000;color:#fff;display:none;position:absolute;padding:2px 8px;-moz-border-radius:4px;border-radius:4px;white-space:nowrap;';
 
  Flotr.addPlugin('hit', {
  callbacks: {
  'flotr:mousemove': function(e, pos) {
  this.hit.track(pos);
  },
  'flotr:click': function(pos) {
  this.hit.track(pos);
  },
  'flotr:mouseout': function() {
  this.hit.clearHit();
  }
  },
  track : function (pos) {
  if (this.options.mouse.track || _.any(this.series, function(s){return s.mouse && s.mouse.track;})) {
  this.hit.hit(pos);
  }
  },
  /**
  * Try a method on a graph type. If the method exists, execute it.
  * @param {Object} series
  * @param {String} method Method name.
  * @param {Array} args Arguments applied to method.
  * @return executed successfully or failed.
  */
  executeOnType: function(s, method, args){
  var
  success = false,
  options;
 
  if (!_.isArray(s)) s = [s];
 
  function e(s, index) {
  _.each(_.keys(flotr.graphTypes), function (type) {
  if (s[type] && s[type].show && this[type][method]) {
  options = this.getOptions(s, type);
 
  options.fill = !!s.mouse.fillColor;
  options.fillStyle = this.processColor(s.mouse.fillColor || '#ffffff', {opacity: s.mouse.fillOpacity});
  options.color = s.mouse.lineColor;
  options.context = this.octx;
  options.index = index;
 
  if (args) options.args = args;
  this[type][method].call(this[type], options);
  success = true;
  }
  }, this);
  }
  _.each(s, e, this);
 
  return success;
  },
  /**
  * Updates the mouse tracking point on the overlay.
  */
  drawHit: function(n){
  var octx = this.octx,
  s = n.series;
 
  if (s.mouse.lineColor) {
  octx.save();
  octx.lineWidth = (s.points ? s.points.lineWidth : 1);
  octx.strokeStyle = s.mouse.lineColor;
  octx.fillStyle = this.processColor(s.mouse.fillColor || '#ffffff', {opacity: s.mouse.fillOpacity});
  octx.translate(this.plotOffset.left, this.plotOffset.top);
 
  if (!this.hit.executeOnType(s, 'drawHit', n)) {
  var xa = n.xaxis,
  ya = n.yaxis;
 
  octx.beginPath();
  // TODO fix this (points) should move to general testable graph mixin
  octx.arc(xa.d2p(n.x), ya.d2p(n.y), s.points.radius || s.mouse.radius, 0, 2 * Math.PI, true);
  octx.fill();
  octx.stroke();
  octx.closePath();
  }
  octx.restore();
  this.clip(octx);
  }
  this.prevHit = n;
  },
  /**
  * Removes the mouse tracking point from the overlay.
  */
  clearHit: function(){
  var prev = this.prevHit,
  octx = this.octx,
  plotOffset = this.plotOffset;
  octx.save();
  octx.translate(plotOffset.left, plotOffset.top);
  if (prev) {
  if (!this.hit.executeOnType(prev.series, 'clearHit', this.prevHit)) {
  // TODO fix this (points) should move to general testable graph mixin
  var
  s = prev.series,
  lw = (s.points ? s.points.lineWidth : 1);
  offset = (s.points.radius || s.mouse.radius) + lw;
  octx.clearRect(
  prev.xaxis.d2p(prev.x) - offset,
  prev.yaxis.d2p(prev.y) - offset,
  offset*2,
  offset*2
  );
  }
  D.hide(this.mouseTrack);
  this.prevHit = null;
  }
  octx.restore();
  },
  /**
  * Retrieves the nearest data point from the mouse cursor. If it's within
  * a certain range, draw a point on the overlay canvas and display the x and y
  * value of the data.
  * @param {Object} mouse - Object that holds the relative x and y coordinates of the cursor.
  */
  hit: function(mouse){
 
  var
  options = this.options,
  prevHit = this.prevHit,
  closest, sensibility, dataIndex, seriesIndex, series, value, xaxis, yaxis;
 
  if (this.series.length === 0) return;
 
  // Nearest data element.
  // dist, x, y, relX, relY, absX, absY, sAngle, eAngle, fraction, mouse,
  // xaxis, yaxis, series, index, seriesIndex
  n = {
  relX : mouse.relX,
  relY : mouse.relY,
  absX : mouse.absX,
  absY : mouse.absY
  };
 
  if (options.mouse.trackY &&
  !options.mouse.trackAll &&
  this.hit.executeOnType(this.series, 'hit', [mouse, n]))
  {
 
  if (!_.isUndefined(n.seriesIndex)) {
  series = this.series[n.seriesIndex];
  n.series = series;
  n.mouse = series.mouse;
  n.xaxis = series.xaxis;
  n.yaxis = series.yaxis;
  }
  } else {
 
  closest = this.hit.closest(mouse);
 
  if (closest) {
 
  closest = options.mouse.trackY ? closest.point : closest.x;
  seriesIndex = closest.seriesIndex;
  series = this.series[seriesIndex];
  xaxis = series.xaxis;
  yaxis = series.yaxis;
  sensibility = 2 * series.mouse.sensibility;
 
  if
  (options.mouse.trackAll ||
  (closest.distanceX < sensibility / xaxis.scale &&
  (!options.mouse.trackY || closest.distanceY < sensibility / yaxis.scale)))
  {
  n.series = series;
  n.xaxis = series.xaxis;
  n.yaxis = series.yaxis;
  n.mouse = series.mouse;
  n.x = closest.x;
  n.y = closest.y;
  n.dist = closest.distance;
  n.index = closest.dataIndex;
  n.seriesIndex = seriesIndex;
  }
  }
  }
 
  if (!prevHit || (prevHit.index !== n.index || prevHit.seriesIndex !== n.seriesIndex)) {
  this.hit.clearHit();
  if (n.series && n.mouse && n.mouse.track) {
  this.hit.drawMouseTrack(n);
  this.hit.drawHit(n);
  Flotr.EventAdapter.fire(this.el, 'flotr:hit', [n, this]);
  }
  }
  },
 
  closest : function (mouse) {
 
  var
  series = this.series,
  options = this.options,
  relX = mouse.relX,
  relY = mouse.relY,
  compare = Number.MAX_VALUE,
  compareX = Number.MAX_VALUE,
  closest = {},
  closestX = {},
  check = false,
  serie, data,
  distance, distanceX, distanceY,
  mouseX, mouseY,
  x, y, i, j;
 
  function setClosest (o) {
  o.distance = distance;
  o.distanceX = distanceX;
  o.distanceY = distanceY;
  o.seriesIndex = i;
  o.dataIndex = j;
  o.x = x;
  o.y = y;
  }
 
  for (i = 0; i < series.length; i++) {
 
  serie = series[i];
  data = serie.data;
  mouseX = serie.xaxis.p2d(relX);
  mouseY = serie.yaxis.p2d(relY);
 
  if (data.length) check = true;
 
  for (j = data.length; j--;) {
 
  x = data[j][0];
  y = data[j][1];
 
  if (x === null || y === null) continue;
 
  // don't check if the point isn't visible in the current range
  if (x < serie.xaxis.min || x > serie.xaxis.max) continue;
 
  distanceX = Math.abs(x - mouseX);
  distanceY = Math.abs(y - mouseY);
 
  // Skip square root for speed
  distance = distanceX * distanceX + distanceY * distanceY;
 
  if (distance < compare) {
  compare = distance;
  setClosest(closest);
  }
 
  if (distanceX < compareX) {
  compareX = distanceX;
  setClosest(closestX);
  }
  }
  }
 
  return check ? {
  point : closest,
  x : closestX
  } : false;
  },
 
  drawMouseTrack : function (n) {
 
  var
  pos = '',
  s = n.series,
  p = n.mouse.position,
  m = n.mouse.margin,
  elStyle = S_MOUSETRACK,
  mouseTrack = this.mouseTrack,
  plotOffset = this.plotOffset,
  left = plotOffset.left,
  right = plotOffset.right,
  bottom = plotOffset.bottom,
  top = plotOffset.top,
  decimals = n.mouse.trackDecimals,
  options = this.options;
 
  // Create
  if (!mouseTrack) {
  mouseTrack = D.node('<div class="flotr-mouse-value"></div>');
  this.mouseTrack = mouseTrack;
  D.insert(this.el, mouseTrack);
  }
 
  if (!n.mouse.relative) { // absolute to the canvas
 
  if (p.charAt(0) == 'n') pos += 'top:' + (m + top) + 'px;bottom:auto;';
  else if (p.charAt(0) == 's') pos += 'bottom:' + (m + bottom) + 'px;top:auto;';
  if (p.charAt(1) == 'e') pos += 'right:' + (m + right) + 'px;left:auto;';
  else if (p.charAt(1) == 'w') pos += 'left:' + (m + left) + 'px;right:auto;';
 
  // Bars
  } else if (s.bars.show) {
  pos += 'bottom:' + (m - top - n.yaxis.d2p(n.y/2) + this.canvasHeight) + 'px;top:auto;';
  pos += 'left:' + (m + left + n.xaxis.d2p(n.x - options.bars.barWidth/2)) + 'px;right:auto;';
 
  // Pie
  } else if (s.pie.show) {
  var center = {
  x: (this.plotWidth)/2,
  y: (this.plotHeight)/2
  },
  radius = (Math.min(this.canvasWidth, this.canvasHeight) * s.pie.sizeRatio) / 2,
  bisection = n.sAngle<n.eAngle ? (n.sAngle + n.eAngle) / 2: (n.sAngle + n.eAngle + 2* Math.PI) / 2;
 
  pos += 'bottom:' + (m - top - center.y - Math.sin(bisection) * radius/2 + this.canvasHeight) + 'px;top:auto;';
  pos += 'left:' + (m + left + center.x + Math.cos(bisection) * radius/2) + 'px;right:auto;';
 
  // Default
  } else {
  if (p.charAt(0) == 'n') pos += 'bottom:' + (m - top - n.yaxis.d2p(n.y) + this.canvasHeight) + 'px;top:auto;';
  else if (p.charAt(0) == 's') pos += 'top:' + (m + top + n.yaxis.d2p(n.y)) + 'px;bottom:auto;';
  if (p.charAt(1) == 'e') pos += 'left:' + (m + left + n.xaxis.d2p(n.x)) + 'px;right:auto;';
  else if (p.charAt(1) == 'w') pos += 'right:' + (m - left - n.xaxis.d2p(n.x) + this.canvasWidth) + 'px;left:auto;';
  }
 
  elStyle += pos;
  mouseTrack.style.cssText = elStyle;
 
  if (!decimals || decimals < 0) decimals = 0;
 
  mouseTrack.innerHTML = n.mouse.trackFormatter({
  x: n.x.toFixed(decimals),
  y: n.y.toFixed(decimals),
  series: n.series,
  index: n.index,
  nearest: n,
  fraction: n.fraction
  });
 
  D.show(mouseTrack);
  }
 
  });
  })();
 
  /**
  * Selection Handles Plugin
  *
  *
  * Options
  * show - True enables the handles plugin.
  * drag - Left and Right drag handles
  * scroll - Scrolling handle
  */
  (function () {
 
  function isLeftClick (e, type) {
  return (e.which ? (e.which === 1) : (e.button === 0 || e.button === 1));
  }
 
  function boundX(x, graph) {
  return Math.min(Math.max(0, x), graph.plotWidth - 1);
  }
 
  function boundY(y, graph) {
  return Math.min(Math.max(0, y), graph.plotHeight);
  }
 
  var
  D = Flotr.DOM,
  E = Flotr.EventAdapter,
  _ = Flotr._;
 
 
  Flotr.addPlugin('selection', {
 
  options: {
  pinchOnly: null, // Only select on pinch
  mode: null, // => one of null, 'x', 'y' or 'xy'
  color: '#B6D9FF', // => selection box color
  fps: 20 // => frames-per-second
  },
 
  callbacks: {
  'flotr:mouseup' : function (event) {
 
  var
  options = this.options.selection,
  selection = this.selection,
  pointer = this.getEventPosition(event);
 
  if (!options || !options.mode) return;
  if (selection.interval) clearInterval(selection.interval);
 
  if (this.multitouches) {
  selection.updateSelection();
  } else
  if (!options.pinchOnly) {
  selection.setSelectionPos(selection.selection.second, pointer);
  }
  selection.clearSelection();
 
  if(selection.selecting && selection.selectionIsSane()){
  selection.drawSelection();
  selection.fireSelectEvent();
  this.ignoreClick = true;
  }
  },
  'flotr:mousedown' : function (event) {
 
  var
  options = this.options.selection,
  selection = this.selection,
  pointer = this.getEventPosition(event);
 
  if (!options || !options.mode) return;
  if (!options.mode || (!isLeftClick(event) && _.isUndefined(event.touches))) return;
  if (!options.pinchOnly) selection.setSelectionPos(selection.selection.first, pointer);
  if (selection.interval) clearInterval(selection.interval);
 
  this.lastMousePos.pageX = null;
  selection.selecting = false;
  selection.interval = setInterval(
  _.bind(selection.updateSelection, this),
  1000 / options.fps
  );
  },
  'flotr:destroy' : function (event) {
  clearInterval(this.selection.interval);
  }
  },
 
  // TODO This isn't used. Maybe it belongs in the draw area and fire select event methods?
  getArea: function() {
 
  var s = this.selection.selection,
  first = s.first,
  second = s.second;
 
  return {
  x1: Math.min(first.x, second.x),
  x2: Math.max(first.x, second.x),
  y1: Math.min(first.y, second.y),
  y2: Math.max(first.y, second.y)
  };
  },
 
  selection: {first: {x: -1, y: -1}, second: {x: -1, y: -1}},
  prevSelection: null,
  interval: null,
 
  /**
  * Fires the 'flotr:select' event when the user made a selection.
  */
  fireSelectEvent: function(name){
  var a = this.axes,
  s = this.selection.selection,
  x1, x2, y1, y2;
 
  name = name || 'select';
 
  x1 = a.x.p2d(s.first.x);
  x2 = a.x.p2d(s.second.x);
  y1 = a.y.p2d(s.first.y);
  y2 = a.y.p2d(s.second.y);
 
  E.fire(this.el, 'flotr:'+name, [{
  x1:Math.min(x1, x2),
  y1:Math.min(y1, y2),
  x2:Math.max(x1, x2),
  y2:Math.max(y1, y2),
  xfirst:x1, xsecond:x2, yfirst:y1, ysecond:y2
  }, this]);
  },
 
  /**
  * Allows the user the manually select an area.
  * @param {Object} area - Object with coordinates to select.
  */
  setSelection: function(area, preventEvent){
  var options = this.options,
  xa = this.axes.x,
  ya = this.axes.y,
  vertScale = ya.scale,
  hozScale = xa.scale,
  selX = options.selection.mode.indexOf('x') != -1,
  selY = options.selection.mode.indexOf('y') != -1,
  s = this.selection.selection;
 
  this.selection.clearSelection();
 
  s.first.y = boundY((selX && !selY) ? 0 : (ya.max - area.y1) * vertScale, this);
  s.second.y = boundY((selX && !selY) ? this.plotHeight - 1: (ya.max - area.y2) * vertScale, this);
  s.first.x = boundX((selY && !selX) ? 0 : area.x1, this);
  s.second.x = boundX((selY && !selX) ? this.plotWidth : area.x2, this);
 
  this.selection.drawSelection();
  if (!preventEvent)
  this.selection.fireSelectEvent();
  },
 
  /**
  * Calculates the position of the selection.
  * @param {Object} pos - Position object.
  * @param {Event} event - Event object.
  */
  setSelectionPos: function(pos, pointer) {
  var mode = this.options.selection.mode,
  selection = this.selection.selection;
 
  if(mode.indexOf('x') == -1) {
  pos.x = (pos == selection.first) ? 0 : this.plotWidth;
  }else{
  pos.x = boundX(pointer.relX, this);
  }
 
  if (mode.indexOf('y') == -1) {
  pos.y = (pos == selection.first) ? 0 : this.plotHeight - 1;
  }else{
  pos.y = boundY(pointer.relY, this);
  }
  },
  /**
  * Draws the selection box.
  */
  drawSelection: function() {
 
  this.selection.fireSelectEvent('selecting');
 
  var s = this.selection.selection,
  octx = this.octx,
  options = this.options,
  plotOffset = this.plotOffset,
  prevSelection = this.selection.prevSelection;
 
  if (prevSelection &&
  s.first.x == prevSelection.first.x &&
  s.first.y == prevSelection.first.y &&
  s.second.x == prevSelection.second.x &&
  s.second.y == prevSelection.second.y) {
  return;
  }
 
  octx.save();
  octx.strokeStyle = this.processColor(options.selection.color, {opacity: 0.8});
  octx.lineWidth = 1;
  octx.lineJoin = 'miter';
  octx.fillStyle = this.processColor(options.selection.color, {opacity: 0.4});
 
  this.selection.prevSelection = {
  first: { x: s.first.x, y: s.first.y },
  second: { x: s.second.x, y: s.second.y }
  };
 
  var x = Math.min(s.first.x, s.second.x),
  y = Math.min(s.first.y, s.second.y),
  w = Math.abs(s.second.x - s.first.x),
  h = Math.abs(s.second.y - s.first.y);
 
  octx.fillRect(x + plotOffset.left+0.5, y + plotOffset.top+0.5, w, h);
  octx.strokeRect(x + plotOffset.left+0.5, y + plotOffset.top+0.5, w, h);
  octx.restore();
  },
 
  /**
  * Updates (draws) the selection box.
  */
  updateSelection: function(){
  if (!this.lastMousePos.pageX) return;
 
  this.selection.selecting = true;
 
  if (this.multitouches) {
  this.selection.setSelectionPos(this.selection.selection.first, this.getEventPosition(this.multitouches[0]));
  this.selection.setSelectionPos(this.selection.selection.second, this.getEventPosition(this.multitouches[1]));
  } else
  if (this.options.selection.pinchOnly) {
  return;
  } else {
  this.selection.setSelectionPos(this.selection.selection.second, this.lastMousePos);
  }
 
  this.selection.clearSelection();
 
  if(this.selection.selectionIsSane()) {
  this.selection.drawSelection();
  }
  },
 
  /**
  * Removes the selection box from the overlay canvas.
  */
  clearSelection: function() {
  if (!this.selection.prevSelection) return;
 
  var prevSelection = this.selection.prevSelection,
  lw = 1,
  plotOffset = this.plotOffset,
  x = Math.min(prevSelection.first.x, prevSelection.second.x),
  y = Math.min(prevSelection.first.y, prevSelection.second.y),
  w = Math.abs(prevSelection.second.x - prevSelection.first.x),
  h = Math.abs(prevSelection.second.y - prevSelection.first.y);
 
  this.octx.clearRect(x + plotOffset.left - lw + 0.5,
  y + plotOffset.top - lw,
  w + 2 * lw + 0.5,
  h + 2 * lw + 0.5);
 
  this.selection.prevSelection = null;
  },
  /**
  * Determines whether or not the selection is sane and should be drawn.
  * @return {Boolean} - True when sane, false otherwise.
  */
  selectionIsSane: function(){
  var s = this.selection.selection;
  return Math.abs(s.second.x - s.first.x) >= 5 ||
  Math.abs(s.second.y - s.first.y) >= 5;
  }
 
  });
 
  })();
 
  (function () {
 
  var D = Flotr.DOM;
 
  Flotr.addPlugin('labels', {
 
  callbacks : {
  'flotr:afterdraw' : function () {
  this.labels.draw();
  }
  },
 
  draw: function(){
  // Construct fixed width label boxes, which can be styled easily.
  var
  axis, tick, left, top, xBoxWidth,
  radius, sides, coeff, angle,
  div, i, html = '',
  noLabels = 0,
  options = this.options,
  ctx = this.ctx,
  a = this.axes,
  style = { size: options.fontSize };
 
  for (i = 0; i < a.x.ticks.length; ++i){
  if (a.x.ticks[i].label) { ++noLabels; }
  }
  xBoxWidth = this.plotWidth / noLabels;
 
  if (options.grid.circular) {
  ctx.save();
  ctx.translate(this.plotOffset.left + this.plotWidth / 2,
  this.plotOffset.top + this.plotHeight / 2);
 
  radius = this.plotHeight * options.radar.radiusRatio / 2 + options.fontSize;
  sides = this.axes.x.ticks.length;
  coeff = 2 * (Math.PI / sides);
  angle = -Math.PI / 2;
 
  drawLabelCircular(this, a.x, false);
  drawLabelCircular(this, a.x, true);
  drawLabelCircular(this, a.y, false);
  drawLabelCircular(this, a.y, true);
  ctx.restore();
  }
 
  if (!options.HtmlText && this.textEnabled) {
  drawLabelNoHtmlText(this, a.x, 'center', 'top');
  drawLabelNoHtmlText(this, a.x2, 'center', 'bottom');
  drawLabelNoHtmlText(this, a.y, 'right', 'middle');
  drawLabelNoHtmlText(this, a.y2, 'left', 'middle');
 
  } else if ((
  a.x.options.showLabels ||
  a.x2.options.showLabels ||
  a.y.options.showLabels ||
  a.y2.options.showLabels) &&
  !options.grid.circular
  ) {
 
  html = '';
 
  drawLabelHtml(this, a.x);
  drawLabelHtml(this, a.x2);
  drawLabelHtml(this, a.y);
  drawLabelHtml(this, a.y2);
 
  ctx.stroke();
  ctx.restore();
  div = D.create('div');
  D.setStyles(div, {
  fontSize: 'smaller',
  color: options.grid.color
  });
  div.className = 'flotr-labels';
  D.insert(this.el, div);
  D.insert(div, html);
  }
 
  function drawLabelCircular (graph, axis, minorTicks) {
  var
  ticks = minorTicks ? axis.minorTicks : axis.ticks,
  isX = axis.orientation === 1,
  isFirst = axis.n === 1,
  style, offset;
 
  style = {
  color : axis.options.color || options.grid.color,
  angle : Flotr.toRad(axis.options.labelsAngle),
  textBaseline : 'middle'
  };
 
  for (i = 0; i < ticks.length &&
  (minorTicks ? axis.options.showMinorLabels : axis.options.showLabels); ++i){
  tick = ticks[i];
  tick.label += '';
  if (!tick.label || !tick.label.length) { continue; }
 
  x = Math.cos(i * coeff + angle) * radius;
  y = Math.sin(i * coeff + angle) * radius;
 
  style.textAlign = isX ? (Math.abs(x) < 0.1 ? 'center' : (x < 0 ? 'right' : 'left')) : 'left';
 
  Flotr.drawText(
  ctx, tick.label,
  isX ? x : 3,
  isX ? y : -(axis.ticks[i].v / axis.max) * (radius - options.fontSize),
  style
  );
  }
  }
 
  function drawLabelNoHtmlText (graph, axis, textAlign, textBaseline) {
  var
  isX = axis.orientation === 1,
  isFirst = axis.n === 1,
  style, offset;
 
  style = {
  color : axis.options.color || options.grid.color,
  textAlign : textAlign,
  textBaseline : textBaseline,
  angle : Flotr.toRad(axis.options.labelsAngle)
  };
  style = Flotr.getBestTextAlign(style.angle, style);
 
  for (i = 0; i < axis.ticks.length && continueShowingLabels(axis); ++i) {
 
  tick = axis.ticks[i];
  if (!tick.label || !tick.label.length) { continue; }
 
  offset = axis.d2p(tick.v);
  if (offset < 0 ||
  offset > (isX ? graph.plotWidth : graph.plotHeight)) { continue; }
 
  Flotr.drawText(
  ctx, tick.label,
  leftOffset(graph, isX, isFirst, offset),
  topOffset(graph, isX, isFirst, offset),
  style
  );
 
  // Only draw on axis y2
  if (!isX && !isFirst) {
  ctx.save();
  ctx.strokeStyle = style.color;
  ctx.beginPath();
  ctx.moveTo(graph.plotOffset.left + graph.plotWidth - 8, graph.plotOffset.top + axis.d2p(tick.v));
  ctx.lineTo(graph.plotOffset.left + graph.plotWidth, graph.plotOffset.top + axis.d2p(tick.v));
  ctx.stroke();
  ctx.restore();
  }
  }
 
  function continueShowingLabels (axis) {
  return axis.options.showLabels && axis.used;
  }
  function leftOffset (graph, isX, isFirst, offset) {
  return graph.plotOffset.left +
  (isX ? offset :
  (isFirst ?
  -options.grid.labelMargin :
  options.grid.labelMargin + graph.plotWidth));
  }
  function topOffset (graph, isX, isFirst, offset) {
  return graph.plotOffset.top +
  (isX ? options.grid.labelMargin : offset) +
  ((isX && isFirst) ? graph.plotHeight : 0);
  }
  }
 
  function drawLabelHtml (graph, axis) {
  var
  isX = axis.orientation === 1,
  isFirst = axis.n === 1,
  name = '',
  left, style, top,
  offset = graph.plotOffset;
 
  if (!isX && !isFirst) {
  ctx.save();
  ctx.strokeStyle = axis.options.color || options.grid.color;
  ctx.beginPath();
  }
 
  if (axis.options.showLabels && (isFirst ? true : axis.used)) {
  for (i = 0; i < axis.ticks.length; ++i) {
  tick = axis.ticks[i];
  if (!tick.label || !tick.label.length ||
  ((isX ? offset.left : offset.top) + axis.d2p(tick.v) < 0) ||
  ((isX ? offset.left : offset.top) + axis.d2p(tick.v) > (isX ? graph.canvasWidth : graph.canvasHeight))) {
  continue;
  }
  top = offset.top +
  (isX ?
  ((isFirst ? 1 : -1 ) * (graph.plotHeight + options.grid.labelMargin)) :
  axis.d2p(tick.v) - axis.maxLabel.height / 2);
  left = isX ? (offset.left + axis.d2p(tick.v) - xBoxWidth / 2) : 0;
 
  name = '';
  if (i === 0) {
  name = ' first';
  } else if (i === axis.ticks.length - 1) {
  name = ' last';
  }
  name += isX ? ' flotr-grid-label-x' : ' flotr-grid-label-y';
 
  html += [
  '<div style="position:absolute; text-align:' + (isX ? 'center' : 'right') + '; ',
  'top:' + top + 'px; ',
  ((!isX && !isFirst) ? 'right:' : 'left:') + left + 'px; ',
  'width:' + (isX ? xBoxWidth : ((isFirst ? offset.left : offset.right) - options.grid.labelMargin)) + 'px; ',
  axis.options.color ? ('color:' + axis.options.color + '; ') : ' ',
  '" class="flotr-grid-label' + name + '">' + tick.label + '</div>'
  ].join(' ');
 
  if (!isX && !isFirst) {
  ctx.moveTo(offset.left + graph.plotWidth - 8, offset.top + axis.d2p(tick.v));
  ctx.lineTo(offset.left + graph.plotWidth, offset.top + axis.d2p(tick.v));
  }
  }
  }
  }
  }
 
  });
  })();
 
  (function () {
 
  var
  D = Flotr.DOM,
  _ = Flotr._;
 
  Flotr.addPlugin('legend', {
  options: {
  show: true, // => setting to true will show the legend, hide otherwise
  noColumns: 1, // => number of colums in legend table // @todo: doesn't work for HtmlText = false
  labelFormatter: function(v){return v;}, // => fn: string -> string
  labelBoxBorderColor: '#CCCCCC', // => border color for the little label boxes
  labelBoxWidth: 14,
  labelBoxHeight: 10,
  labelBoxMargin: 5,
  labelBoxOpacity: 0.4,
  container: null, // => container (as jQuery object) to put legend in, null means default on top of graph
  position: 'nw', // => position of default legend container within plot
  margin: 5, // => distance from grid edge to default legend container within plot
  backgroundColor: null, // => null means auto-detect
  backgroundOpacity: 0.85// => set to 0 to avoid background, set to 1 for a solid background
  },
  callbacks: {
  'flotr:afterinit': function() {
  this.legend.insertLegend();
  }
  },
  /**
  * Adds a legend div to the canvas container or draws it on the canvas.
  */
  insertLegend: function(){
 
  if(!this.options.legend.show)
  return;
 
  var series = this.series,
  plotOffset = this.plotOffset,
  options = this.options,
  legend = options.legend,
  fragments = [],
  rowStarted = false,
  ctx = this.ctx,
  itemCount = _.filter(series, function(s) {return (s.label && !s.hide);}).length,
  p = legend.position,
  m = legend.margin,
  i, label, color;
 
  if (itemCount) {
  if (!options.HtmlText && this.textEnabled && !legend.container) {
  var style = {
  size: options.fontSize*1.1,
  color: options.grid.color
  };
 
  var lbw = legend.labelBoxWidth,
  lbh = legend.labelBoxHeight,
  lbm = legend.labelBoxMargin,
  offsetX = plotOffset.left + m,
  offsetY = plotOffset.top + m;
 
  // We calculate the labels' max width
  var labelMaxWidth = 0;
  for(i = series.length - 1; i > -1; --i){
  if(!series[i].label || series[i].hide) continue;
  label = legend.labelFormatter(series[i].label);
  labelMaxWidth = Math.max(labelMaxWidth, this._text.measureText(label, style).width);
  }
 
  var legendWidth = Math.round(lbw + lbm*3 + labelMaxWidth),
  legendHeight = Math.round(itemCount*(lbm+lbh) + lbm);
 
  if(p.charAt(0) == 's') offsetY = plotOffset.top + this.plotHeight - (m + legendHeight);
  if(p.charAt(1) == 'e') offsetX = plotOffset.left + this.plotWidth - (m + legendWidth);
 
  // Legend box
  color = this.processColor(legend.backgroundColor || 'rgb(240,240,240)', {opacity: legend.backgroundOpacity || 0.1});
 
  ctx.fillStyle = color;
  ctx.fillRect(offsetX, offsetY, legendWidth, legendHeight);
  ctx.strokeStyle = legend.labelBoxBorderColor;
  ctx.strokeRect(Flotr.toPixel(offsetX), Flotr.toPixel(offsetY), legendWidth, legendHeight);
 
  // Legend labels
  var x = offsetX + lbm;
  var y = offsetY + lbm;
  for(i = 0; i < series.length; i++){
  if(!series[i].label || series[i].hide) continue;
  label = legend.labelFormatter(series[i].label);
 
  ctx.fillStyle = series[i].color;
  ctx.fillRect(x, y, lbw-1, lbh-1);
 
  ctx.strokeStyle = legend.labelBoxBorderColor;
  ctx.lineWidth = 1;
  ctx.strokeRect(Math.ceil(x)-1.5, Math.ceil(y)-1.5, lbw+2, lbh+2);
 
  // Legend text
  Flotr.drawText(ctx, label, x + lbw + lbm, y + lbh, style);
 
  y += lbh + lbm;
  }
  }
  else {
  for(i = 0; i < series.length; ++i){
  if(!series[i].label || series[i].hide) continue;
 
  if(i % legend.noColumns === 0){
  fragments.push(rowStarted ? '</tr><tr>' : '<tr>');
  rowStarted = true;
  }
 
  // @TODO remove requirement on bars
  var s = series[i],
  boxWidth = legend.labelBoxWidth,
  boxHeight = legend.labelBoxHeight,
  opacityValue = (s.bars ? s.bars.fillOpacity : legend.labelBoxOpacity),
  opacity = 'opacity:' + opacityValue + ';filter:alpha(opacity=' + opacityValue*100 + ');';
 
  label = legend.labelFormatter(s.label);
  color = 'background-color:' + ((s.bars && s.bars.show && s.bars.fillColor && s.bars.fill) ? s.bars.fillColor : s.color) + ';';
 
  fragments.push(
  '<td class="flotr-legend-color-box">',
  '<div style="border:1px solid ', legend.labelBoxBorderColor, ';padding:1px">',
  '<div style="width:', (boxWidth-1), 'px;height:', (boxHeight-1), 'px;border:1px solid ', series[i].color, '">', // Border
  '<div style="width:', boxWidth, 'px;height:', boxHeight, 'px;', 'opacity:.4;', color, '"></div>', // Background
  '</div>',
  '</div>',
  '</td>',
  '<td class="flotr-legend-label">', label, '</td>'
  );
  }
  if(rowStarted) fragments.push('</tr>');
 
  if(fragments.length > 0){
  var table = '<table style="font-size:smaller;color:' + options.grid.color + '">' + fragments.join('') + '</table>';
  if(legend.container){
  D.insert(legend.container, table);
  }
  else {
  var styles = {position: 'absolute', 'z-index': 2};
 
  if(p.charAt(0) == 'n') { styles.top = (m + plotOffset.top) + 'px'; styles.bottom = 'auto'; }
  else if(p.charAt(0) == 's') { styles.bottom = (m + plotOffset.bottom) + 'px'; styles.top = 'auto'; }
  if(p.charAt(1) == 'e') { styles.right = (m + plotOffset.right) + 'px'; styles.left = 'auto'; }
  else if(p.charAt(1) == 'w') { styles.left = (m + plotOffset.left) + 'px'; styles.right = 'auto'; }
 
  var div = D.create('div'), size;
  div.className = 'flotr-legend';
  D.setStyles(div, styles);
  D.insert(div, table);
  D.insert(this.el, div);
 
  if(!legend.backgroundOpacity)
  return;
 
  var c = legend.backgroundColor || options.grid.backgroundColor || '#ffffff';
 
  _.extend(styles, D.size(div), {
  'backgroundColor': c,
  'z-index': 1
  });
  styles.width += 'px';
  styles.height += 'px';
 
  // Put in the transparent background separately to avoid blended labels and
  div = D.create('div');
  div.className = 'flotr-legend-bg';
  D.setStyles(div, styles);
  D.opacity(div, legend.backgroundOpacity);
  D.insert(div, ' ');
  D.insert(this.el, div);
  }
  }
  }
  }
  }
  });
  })();
 
  /** Spreadsheet **/
  (function() {
 
  function getRowLabel(value){
  if (this.options.spreadsheet.tickFormatter){
  //TODO maybe pass the xaxis formatter to the custom tick formatter as an opt-out?
  return this.options.spreadsheet.tickFormatter(value);
  }
  else {
  var t = _.find(this.axes.x.ticks, function(t){return t.v == value;});
  if (t) {
  return t.label;
  }
  return value;
  }
  }
 
  var
  D = Flotr.DOM,
  _ = Flotr._;
 
  Flotr.addPlugin('spreadsheet', {
  options: {
  show: false, // => show the data grid using two tabs
  tabGraphLabel: 'Graph',
  tabDataLabel: 'Data',
  toolbarDownload: 'Download CSV', // @todo: add better language support
  toolbarSelectAll: 'Select all',
  csvFileSeparator: ',',
  decimalSeparator: '.',
  tickFormatter: null,
  initialTab: 'graph'
  },
  /**
  * Builds the tabs in the DOM
  */
  callbacks: {
  'flotr:afterconstruct': function(){
  // @TODO necessary?
  //this.el.select('.flotr-tabs-group,.flotr-datagrid-container').invoke('remove');
 
  if (!this.options.spreadsheet.show) return;
 
  var ss = this.spreadsheet,
  container = D.node('<div class="flotr-tabs-group" style="position:absolute;left:0px;width:'+this.canvasWidth+'px"></div>'),
  graph = D.node('<div style="float:left" class="flotr-tab selected">'+this.options.spreadsheet.tabGraphLabel+'</div>'),
  data = D.node('<div style="float:left" class="flotr-tab">'+this.options.spreadsheet.tabDataLabel+'</div>'),
  offset;
 
  ss.tabsContainer = container;
  ss.tabs = { graph : graph, data : data };
 
  D.insert(container, graph);
  D.insert(container, data);
  D.insert(this.el, container);
 
  offset = D.size(data).height + 2;
  this.plotOffset.bottom += offset;
 
  D.setStyles(container, {top: this.canvasHeight-offset+'px'});
 
  this.
  observe(graph, 'click', function(){ss.showTab('graph');}).
  observe(data, 'click', function(){ss.showTab('data');});
  if (this.options.spreadsheet.initialTab !== 'graph'){
  ss.showTab(this.options.spreadsheet.initialTab);
  }
  }
  },
  /**
  * Builds a matrix of the data to make the correspondance between the x values and the y values :
  * X value => Y values from the axes
  * @return {Array} The data grid
  */
  loadDataGrid: function(){
  if (this.seriesData) return this.seriesData;
 
  var s = this.series,
  rows = {};
 
  /* The data grid is a 2 dimensions array. There is a row for each X value.
  * Each row contains the x value and the corresponding y value for each serie ('undefined' if there isn't one)
  **/
  _.each(s, function(serie, i){
  _.each(serie.data, function (v) {
  var x = v[0],
  y = v[1],
  r = rows[x];
  if (r) {
  r[i+1] = y;
  } else {
  var newRow = [];
  newRow[0] = x;
  newRow[i+1] = y;
  rows[x] = newRow;
  }
  });
  });
 
  // The data grid is sorted by x value
  this.seriesData = _.sortBy(rows, function(row, x){
  return parseInt(x, 10);
  });
  return this.seriesData;
  },
  /**
  * Constructs the data table for the spreadsheet
  * @todo make a spreadsheet manager (Flotr.Spreadsheet)
  * @return {Element} The resulting table element
  */
  constructDataGrid: function(){
  // If the data grid has already been built, nothing to do here
  if (this.spreadsheet.datagrid) return this.spreadsheet.datagrid;
 
  var s = this.series,
  datagrid = this.spreadsheet.loadDataGrid(),
  colgroup = ['<colgroup><col />'],
  buttonDownload, buttonSelect, t;
 
  // First row : series' labels
  var html = ['<table class="flotr-datagrid"><tr class="first-row">'];
  html.push('<th>&nbsp;</th>');
  _.each(s, function(serie,i){
  html.push('<th scope="col">'+(serie.label || String.fromCharCode(65+i))+'</th>');
  colgroup.push('<col />');
  });
  html.push('</tr>');
  // Data rows
  _.each(datagrid, function(row){
  html.push('<tr>');
  _.times(s.length+1, function(i){
  var tag = 'td',
  value = row[i],
  // TODO: do we really want to handle problems with floating point
  // precision here?
  content = (!_.isUndefined(value) ? Math.round(value*100000)/100000 : '');
  if (i === 0) {
  tag = 'th';
  var label = getRowLabel.call(this, content);
  if (label) content = label;
  }
 
  html.push('<'+tag+(tag=='th'?' scope="row"':'')+'>'+content+'</'+tag+'>');
  }, this);
  html.push('</tr>');
  }, this);
  colgroup.push('</colgroup>');
  t = D.node(html.join(''));
 
  /**
  * @TODO disabled this
  if (!Flotr.isIE || Flotr.isIE == 9) {
  function handleMouseout(){
  t.select('colgroup col.hover, th.hover').invoke('removeClassName', 'hover');
  }
  function handleMouseover(e){
  var td = e.element(),
  siblings = td.previousSiblings();
  t.select('th[scope=col]')[siblings.length-1].addClassName('hover');
  t.select('colgroup col')[siblings.length].addClassName('hover');
  }
  _.each(t.select('td'), function(td) {
  Flotr.EventAdapter.
  observe(td, 'mouseover', handleMouseover).
  observe(td, 'mouseout', handleMouseout);
  });
  }
  */
 
  buttonDownload = D.node(
  '<button type="button" class="flotr-datagrid-toolbar-button">' +
  this.options.spreadsheet.toolbarDownload +
  '</button>');
 
  buttonSelect = D.node(
  '<button type="button" class="flotr-datagrid-toolbar-button">' +
  this.options.spreadsheet.toolbarSelectAll+
  '</button>');
 
  this.
  observe(buttonDownload, 'click', _.bind(this.spreadsheet.downloadCSV, this)).
  observe(buttonSelect, 'click', _.bind(this.spreadsheet.selectAllData, this));
 
  var toolbar = D.node('<div class="flotr-datagrid-toolbar"></div>');
  D.insert(toolbar, buttonDownload);
  D.insert(toolbar, buttonSelect);
 
  var containerHeight =this.canvasHeight - D.size(this.spreadsheet.tabsContainer).height-2,
  container = D.node('<div class="flotr-datagrid-container" style="position:absolute;left:0px;top:0px;width:'+
  this.canvasWidth+'px;height:'+containerHeight+'px;overflow:auto;z-index:10"></div>');
 
  D.insert(container, toolbar);
  D.insert(container, t);
  D.insert(this.el, container);
  this.spreadsheet.datagrid = t;
  this.spreadsheet.container = container;
 
  return t;
  },
  /**
  * Shows the specified tab, by its name
  * @todo make a tab manager (Flotr.Tabs)
  * @param {String} tabName - The tab name
  */
  showTab: function(tabName){
  if (this.spreadsheet.activeTab === tabName){
  return;
  }
  switch(tabName) {
  case 'graph':
  D.hide(this.spreadsheet.container);
  D.removeClass(this.spreadsheet.tabs.data, 'selected');
  D.addClass(this.spreadsheet.tabs.graph, 'selected');
  break;
  case 'data':
  if (!this.spreadsheet.datagrid)
  this.spreadsheet.constructDataGrid();
  D.show(this.spreadsheet.container);
  D.addClass(this.spreadsheet.tabs.data, 'selected');
  D.removeClass(this.spreadsheet.tabs.graph, 'selected');
  break;
  default:
  throw 'Illegal tab name: ' + tabName;
  }
  this.spreadsheet.activeTab = tabName;
  },
  /**
  * Selects the data table in the DOM for copy/paste
  */
  selectAllData: function(){
  if (this.spreadsheet.tabs) {
  var selection, range, doc, win, node = this.spreadsheet.constructDataGrid();
 
  this.spreadsheet.showTab('data');
 
  // deferred to be able to select the table
  setTimeout(function () {
  if ((doc = node.ownerDocument) && (win = doc.defaultView) &&
  win.getSelection && doc.createRange &&
  (selection = window.getSelection()) &&
  selection.removeAllRanges) {
  range = doc.createRange();
  range.selectNode(node);
  selection.removeAllRanges();
  selection.addRange(range);
  }
  else if (document.body && document.body.createTextRange &&
  (range = document.body.createTextRange())) {
  range.moveToElementText(node);
  range.select();
  }
  }, 0);
  return true;
  }
  else return false;
  },
  /**
  * Converts the data into CSV in order to download a file
  */
  downloadCSV: function(){
  var csv = '',
  series = this.series,
  options = this.options,
  dg = this.spreadsheet.loadDataGrid(),
  separator = encodeURIComponent(options.spreadsheet.csvFileSeparator);
 
  if (options.spreadsheet.decimalSeparator === options.spreadsheet.csvFileSeparator) {
  throw "The decimal separator is the same as the column separator ("+options.spreadsheet.decimalSeparator+")";
  }
 
  // The first row
  _.each(series, function(serie, i){
  csv += separator+'"'+(serie.label || String.fromCharCode(65+i)).replace(/\"/g, '\\"')+'"';
  });
 
  csv += "%0D%0A"; // \r\n
 
  // For each row
  csv += _.reduce(dg, function(memo, row){
  var rowLabel = getRowLabel.call(this, row[0]) || '';
  rowLabel = '"'+(rowLabel+'').replace(/\"/g, '\\"')+'"';
  var numbers = row.slice(1).join(separator);
  if (options.spreadsheet.decimalSeparator !== '.') {
  numbers = numbers.replace(/\./g, options.spreadsheet.decimalSeparator);
  }
  return memo + rowLabel+separator+numbers+"%0D%0A"; // \t and \r\n
  }, '', this);
 
  if (Flotr.isIE && Flotr.isIE < 9) {
  csv = csv.replace(new RegExp(separator, 'g'), decodeURIComponent(separator)).replace(/%0A/g, '\n').replace(/%0D/g, '\r');
  window.open().document.write(csv);
  }
  else window.open('data:text/csv,'+csv);
  }
  });
  })();
 
  (function () {
 
  var D = Flotr.DOM;
 
  Flotr.addPlugin('titles', {
  callbacks: {
  'flotr:afterdraw': function() {
  this.titles.drawTitles();
  }
  },
  /**
  * Draws the title and the subtitle
  */
  drawTitles : function () {
  var html,
  options = this.options,
  margin = options.grid.labelMargin,
  ctx = this.ctx,
  a = this.axes;
 
  if (!options.HtmlText && this.textEnabled) {
  var style = {
  size: options.fontSize,
  color: options.grid.color,
  textAlign: 'center'
  };
 
  // Add subtitle
  if (options.subtitle){
  Flotr.drawText(
  ctx, options.subtitle,
  this.plotOffset.left + this.plotWidth/2,
  this.titleHeight + this.subtitleHeight - 2,
  style
  );
  }
 
  style.weight = 1.5;
  style.size *= 1.5;
 
  // Add title
  if (options.title){
  Flotr.drawText(
  ctx, options.title,
  this.plotOffset.left + this.plotWidth/2,
  this.titleHeight - 2,
  style
  );
  }
 
  style.weight = 1.8;
  style.size *= 0.8;
 
  // Add x axis title
  if (a.x.options.title && a.x.used){
  style.textAlign = a.x.options.titleAlign || 'center';
  style.textBaseline = 'top';
  style.angle = Flotr.toRad(a.x.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.x.options.title,
  this.plotOffset.left + this.plotWidth/2,
  this.plotOffset.top + a.x.maxLabel.height + this.plotHeight + 2 * margin,
  style
  );
  }
 
  // Add x2 axis title
  if (a.x2.options.title && a.x2.used){
  style.textAlign = a.x2.options.titleAlign || 'center';
  style.textBaseline = 'bottom';
  style.angle = Flotr.toRad(a.x2.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.x2.options.title,
  this.plotOffset.left + this.plotWidth/2,
  this.plotOffset.top - a.x2.maxLabel.height - 2 * margin,
  style
  );
  }
 
  // Add y axis title
  if (a.y.options.title && a.y.used){
  style.textAlign = a.y.options.titleAlign || 'right';
  style.textBaseline = 'middle';
  style.angle = Flotr.toRad(a.y.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.y.options.title,
  this.plotOffset.left - a.y.maxLabel.width - 2 * margin,
  this.plotOffset.top + this.plotHeight / 2,
  style
  );
  }
 
  // Add y2 axis title
  if (a.y2.options.title && a.y2.used){
  style.textAlign = a.y2.options.titleAlign || 'left';
  style.textBaseline = 'middle';
  style.angle = Flotr.toRad(a.y2.options.titleAngle);
  style = Flotr.getBestTextAlign(style.angle, style);
  Flotr.drawText(
  ctx, a.y2.options.title,
  this.plotOffset.left + this.plotWidth + a.y2.maxLabel.width + 2 * margin,
  this.plotOffset.top + this.plotHeight / 2,
  style
  );
  }
  }
  else {
  html = [];
 
  // Add title
  if (options.title)
  html.push(
  '<div style="position:absolute;top:0;left:',
  this.plotOffset.left, 'px;font-size:1em;font-weight:bold;text-align:center;width:',
  this.plotWidth,'px;" class="flotr-title">', options.title, '</div>'
  );
 
  // Add subtitle
  if (options.subtitle)
  html.push(
  '<div style="position:absolute;top:', this.titleHeight, 'px;left:',
  this.plotOffset.left, 'px;font-size:smaller;text-align:center;width:',
  this.plotWidth, 'px;" class="flotr-subtitle">', options.subtitle, '</div>'
  );
 
  html.push('</div>');
 
  html.push('<div class="flotr-axis-title" style="font-weight:bold;">');
 
  // Add x axis title
  if (a.x.options.title && a.x.used)
  html.push(
  '<div style="position:absolute;top:',
  (this.plotOffset.top + this.plotHeight + options.grid.labelMargin + a.x.titleSize.height),
  'px;left:', this.plotOffset.left, 'px;width:', this.plotWidth,
  'px;text-align:', a.x.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-x1">', a.x.options.title, '</div>'
  );
 
  // Add x2 axis title
  if (a.x2.options.title && a.x2.used)
  html.push(
  '<div style="position:absolute;top:0;left:', this.plotOffset.left, 'px;width:',
  this.plotWidth, 'px;text-align:', a.x2.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-x2">', a.x2.options.title, '</div>'
  );
 
  // Add y axis title
  if (a.y.options.title && a.y.used)
  html.push(
  '<div style="position:absolute;top:',
  (this.plotOffset.top + this.plotHeight/2 - a.y.titleSize.height/2),
  'px;left:0;text-align:', a.y.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-y1">', a.y.options.title, '</div>'
  );
 
  // Add y2 axis title
  if (a.y2.options.title && a.y2.used)
  html.push(
  '<div style="position:absolute;top:',
  (this.plotOffset.top + this.plotHeight/2 - a.y.titleSize.height/2),
  'px;right:0;text-align:', a.y2.options.titleAlign, ';" class="flotr-axis-title flotr-axis-title-y2">', a.y2.options.title, '</div>'
  );
 
  html = html.join('');
 
  var div = D.create('div');
  D.setStyles({
  color: options.grid.color
  });
  div.className = 'flotr-titles';
  D.insert(this.el, div);
  D.insert(div, html);
  }
  }
  });
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'test-background',
  name : 'Test Background',
  callback : test_background,
  timeout : 100,
  tolerance : 10
  });
 
  function test_background (container) {
 
  var
  d1 = [],
  d2 = [],
  d3 = [],
  d4 = [],
  d5 = [], // Data
  ticks = [[ 0, "Lower"], 10, 20, 30, [40, "Upper"]], // Ticks for the Y-Axis
  graph;
 
  for(var i = 0; i <= 10; i += 0.1){
  d1.push([i, 4 + Math.pow(i,1.5)]);
  d2.push([i, Math.pow(i,3)]);
  d3.push([i, i*5+3*Math.sin(i*4)]);
  d4.push([i, i]);
  if( i.toFixed(1)%1 == 0 ){
  d5.push([i, 2*i]);
  }
  }
 
  d3[30][1] = null;
  d3[31][1] = null;
 
  function ticksFn (n) { return '('+n+')'; }
 
  graph = Flotr.draw(container, [
  { data : d1, label : 'y = 4 + x^(1.5)', lines : { fill : true } },
  { data : d2, label : 'y = x^3'},
  { data : d3, label : 'y = 5x + 3sin(4x)'},
  { data : d4, label : 'y = x'},
  { data : d5, label : 'y = 2x', lines : { show : true }, points : { show : true } }
  ], {
  xaxis : {
  noTicks : 7, // Display 7 ticks.
  tickFormatter : ticksFn, // Displays tick values between brackets.
  min : 1, // Part of the series is not displayed.
  max : 7.5 // Part of the series is not displayed.
  },
  yaxis : {
  ticks : ticks, // Set Y-Axis ticks
  max : 40 // Maximum value along Y-Axis
  },
  grid : {
  verticalLines : false,
  backgroundImage : {
  src : 'img/test-background.png?' + Math.random()
  }
  },
  legend : {
  position : 'nw'
  },
  title : 'Basic Axis example',
  subtitle : 'This is a subtitle'
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'test-boundaries',
  name : 'Test Boundaries',
  callback : test_boundaries
  });
 
  function test_boundaries (container) {
 
  var
  d1 = [[0, 0], [5, 0], [6, 10], [9, 10]], // First data series
  i, graph;
 
  // Draw Graph
  graph = Flotr.draw(container, [ d1 ], {
  title : 'test',
  xaxis: {
  minorTickFreq: 4
  },
  lines: {
  lineWidth : 2
  },
  grid: {
  outlineWidth : 2,
  minorVerticalLines: true
  }
  });
  }
 
  })();
 
  (function () {
 
  Flotr.ExampleList.add({
  key : 'test-mountain-nulls',
  name : 'Mountain Nulls',
  callback : function (container) {
  var
  d1 = [[0, 3], [4, 8], [5, 6], [6, null], [7, 7], [8, 5]], // First data series
  d2 = [], // Second data series
  i, graph;
 
  // Generate first data set
  for (i = 0; i < 14; i += 0.5) {
  d2.push([i, Math.sin(i)]);
  }
 
  // Multiple nulls
  d2[9][1] = null;
  d2[10][1] = null;
  d2[11][1] = null;
 
  // Single not null surrounded by null
  d2[13][1] = null;
 
  // < 0 null
  d2[23][1] = null;
 
  // Draw Graph
  graph = Flotr.draw(container, [ d1, d2 ], {
  xaxis: {
  minorTickFreq: 4
  },
  lines: {
  fill : true
  },
  grid: {
  minorVerticalLines: true
  }
  });
  },
  type : 'test'
  });
 
  })();
 
  /*! jQuery v1.8.2 jquery.com | jquery.org/license */
  (function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bY(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bW.length;while(e--){b=bW[e]+c;if(b in a)return b}return d}function bZ(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function b$(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bZ(c)&&(e[f]=p._data(c,"olddisplay",cc(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b_(a,b,c){var d=bP.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function ca(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bV[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bV[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bV[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bV[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bV[e]+"Width"))||0));return f}function cb(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0||d==null){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bQ.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+ca(a,b,c||(f?"border":"content"),e)+"px"}function cc(a){if(bS[a])return bS[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cA(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cv;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cA(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cA(a,c,d,e,"*",g)),h}function cB(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cC(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cD(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cL(){try{return new a.XMLHttpRequest}catch(b){}}function cM(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cU(){return setTimeout(function(){cN=b},0),cN=p.now()}function cV(a,b){p.each(b,function(b,c){var d=(cT[b]||[]).concat(cT["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cW(a,b,c){var d,e=0,f=0,g=cS.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cN||cU(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cN||cU(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cX(k,j.opts.specialEasing);for(;e<g;e++){d=cS[e].call(j,a,k,j.opts);if(d)return d}return cV(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cX(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cY(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bZ(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cc(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cP.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cZ(a,b,c,d,e){return new cZ.prototype.init(a,b,c,d,e)}function c$(a,b){var c,d={height:a},e=0;b=b?1:0;for(;e<4;e+=2-b)c=bV[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function da(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o&&!o.call(" ")?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":(a+"").replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete")setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){var e=p.type(c);e==="function"&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&e!=="string"&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")||(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)d=p._data(g[h],a+"queueHooks"),d&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)f.indexOf(" "+b[g]+" ")<0&&(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=b+""}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,needsContext:f&&p.expr.match.needsContext.test(f),namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=k.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click"))for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){h={},j=[];for(d=0;d<q;d++)l=o[d],m=l.selector,h[m]===b&&(h[m]=l.needsContext?p(m,this).index(f)>=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){i=u[d],c.currentTarget=i.elem;for(e=0;e<i.matches.length&&!c.isImmediatePropagationStopped();e++){l=i.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,g=((p.event.special[l.origType]||{}).handle||l.handler).apply(i.elem,r),g!==b&&(c.result=g,g===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),!V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length===1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h<i;h++)if(f=a[h])if(!c||c(f,d,e))g.push(f),j&&b.push(h);return g}function bl(a,b,c,d,e,f){return d&&!d[o]&&(d=bl(d)),e&&!e[o]&&(e=bl(e,f)),z(function(f,g,h,i){if(f&&e)return;var j,k,l,m=[],n=[],o=g.length,p=f||bo(b||"*",h.nodeType?[h]:h,[],f),q=a&&(f||!b)?bk(p,m,a,h,i):p,r=c?e||(f?a:o||d)?[]:g:q;c&&c(q,r,h,i);if(d){l=bk(r,n),d(l,[],h,i),j=l.length;while(j--)if(k=l[j])r[n[j]]=!(q[n[j]]=k)}if(f){j=a&&r.length;while(j--)if(k=r[j])f[m[j]]=!(g[m[j]]=k)}else r=bk(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):w.apply(g,r)})}function bm(a){var b,c,d,f=a.length,g=e.relative[a[0].type],h=g||e.relative[" "],i=g?1:0,j=bi(function(a){return a===b},h,!0),k=bi(function(a){return y.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i<f;i++)if(c=e.relative[a[i].type])m=[bi(bj(m),c)];else{c=e.filter[a[i].type].apply(null,a[i].matches);if(c[o]){d=++i;for(;d<f;d++)if(e.relative[a[d].type])break;return bl(i>1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i<d&&bm(a.slice(i,d)),d<f&&bm(a=a.slice(d)),d<f&&a.join(""))}m.push(c)}return bj(m)}function bn(a,b){var d=b.length>0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)bc(a,b[e],c,d);return c}function bp(a,b,c,d,f){var g,h,j,k,l,m=bh(a),n=m.length;if(!d&&m.length===1){h=m[0]=m[0].slice(0);if(h.length>2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;b<c;b++)if(this[b]===a)return b;return-1},z=function(a,b){return a[o]=b==null||b,a},A=function(){var a={},b=[];return z(function(c,d){return b.push(c)>e.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="<a name='"+o+"'></a><div name='"+o+"'></div>",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d<b;d+=2)a.push(d);return a}),odd:bf(function(a,b,c){for(var d=1;d<b;d+=2)a.push(d);return a}),lt:bf(function(a,b,c){for(var d=c<0?c+b:c;--d>=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d<b;)a.push(d);return a})}},j=s.compareDocumentPosition?function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],f=[],g=a.parentNode,h=b.parentNode,i=g;if(g===h)return bg(a,b);if(!g)return-1;if(!h)return 1;while(i)e.unshift(i),i=i.parentNode;i=h;while(i)f.unshift(i),i=i.parentNode;c=e.length,d=f.length;for(var j=0;j<c&&j<d;j++)if(e[j]!==f[j])return bg(e[j],f[j]);return j===c?bg(a,f[j],-1):bg(e[j],b,1)},[0,0].sort(j),m=!k,bc.uniqueSort=function(a){var b,c=1;k=m,a.sort(j);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1);return a},bc.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},i=bc.compile=function(a,b){var c,d=[],e=[],f=D[o][a];if(!f){b||(b=bh(a)),c=b.length;while(c--)f=bm(b[c]),f[o]?d.push(f):e.push(f);f=D(a,bn(e,d))}return f},r.querySelectorAll&&function(){var a,b=bp,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[":focus"],f=[":active",":focus"],h=s.matchesSelector||s.mozMatchesSelector||s.webkitMatchesSelector||s.oMatchesSelector||s.msMatchesSelector;X(function(a){a.innerHTML="<select><option selected=''></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'/>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=!c.nodeType&&c[0]||c,c=c.ownerDocument||c,a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cT[c]=cT[c]||[],cT[c].unshift(b)},prefilter:function(a,b){b?cS.unshift(a):cS.push(a)}}),p.Tween=cZ,cZ.prototype={constructor:cZ,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cZ.propHooks[this.prop];return a&&a.get?a.get(this):cZ.propHooks._default.get(this)},run:function(a){var b,c=cZ.propHooks[this.prop];return this.options.duration?this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration):this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cZ.propHooks._default.set(this),this}},cZ.prototype.init.prototype=cZ.prototype,cZ.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cZ.propHooks.scrollTop=cZ.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(c$(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bZ).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cW(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cR.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:c$("show"),slideUp:c$("hide"),slideToggle:c$("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cZ.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cO&&(cO=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cO),cO=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c_=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j={top:0,left:0},k=this[0],l=k&&k.ownerDocument;if(!l)return;return(d=l.body)===k?p.offset.bodyOffset(k):(c=l.documentElement,p.contains(c,k)?(typeof k.getBoundingClientRect!="undefined"&&(j=k.getBoundingClientRect()),e=da(l),f=c.clientTop||d.clientTop||0,g=c.clientLeft||d.clientLeft||0,h=e.pageYOffset||c.scrollTop,i=e.pageXOffset||c.scrollLeft,{top:j.top+h-f,left:j.left+i-g}):j)},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window);
file:b/js/main.js (new)
 
 
file:b/js/plugins.js (new)
  // Avoid `console` errors in browsers that lack a console.
  if (!(window.console && console.log)) {
  (function() {
  var noop = function() {};
  var methods = ['assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error', 'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log', 'markTimeline', 'profile', 'profileEnd', 'markTimeline', 'table', 'time', 'timeEnd', 'timeStamp', 'trace', 'warn'];
  var length = methods.length;
  var console = window.console = {};
  while (length--) {
  console[methods[length]] = noop;
  }
  }());
  }
 
  // Place any jQuery/helper plugins in here.
 
  /*! jQuery v@1.8.0 jquery.com | jquery.org/license */
  (function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d<e;d++)p.event.add(b,c,h[c][d])}g.data&&(g.data=p.extend({},g.data))}function bE(a,b){var c;if(b.nodeType!==1)return;b.clearAttributes&&b.clearAttributes(),b.mergeAttributes&&b.mergeAttributes(a),c=b.nodeName.toLowerCase(),c==="object"?(b.parentNode&&(b.outerHTML=a.outerHTML),p.support.html5Clone&&a.innerHTML&&!p.trim(b.innerHTML)&&(b.innerHTML=a.innerHTML)):c==="input"&&bv.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&&(b.value=a.value)):c==="option"?b.selected=a.defaultSelected:c==="input"||c==="textarea"?b.defaultValue=a.defaultValue:c==="script"&&b.text!==a.text&&(b.text=a.text),b.removeAttribute(p.expando)}function bF(a){return typeof a.getElementsByTagName!="undefined"?a.getElementsByTagName("*"):typeof a.querySelectorAll!="undefined"?a.querySelectorAll("*"):[]}function bG(a){bv.test(a.type)&&(a.defaultChecked=a.checked)}function bX(a,b){if(b in a)return b;var c=b.charAt(0).toUpperCase()+b.slice(1),d=b,e=bV.length;while(e--){b=bV[e]+c;if(b in a)return b}return d}function bY(a,b){return a=b||a,p.css(a,"display")==="none"||!p.contains(a.ownerDocument,a)}function bZ(a,b){var c,d,e=[],f=0,g=a.length;for(;f<g;f++){c=a[f];if(!c.style)continue;e[f]=p._data(c,"olddisplay"),b?(!e[f]&&c.style.display==="none"&&(c.style.display=""),c.style.display===""&&bY(c)&&(e[f]=p._data(c,"olddisplay",cb(c.nodeName)))):(d=bH(c,"display"),!e[f]&&d!=="none"&&p._data(c,"olddisplay",d))}for(f=0;f<g;f++){c=a[f];if(!c.style)continue;if(!b||c.style.display==="none"||c.style.display==="")c.style.display=b?e[f]||"":"none"}return a}function b$(a,b,c){var d=bO.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||"px"):b}function b_(a,b,c,d){var e=c===(d?"border":"content")?4:b==="width"?1:0,f=0;for(;e<4;e+=2)c==="margin"&&(f+=p.css(a,c+bU[e],!0)),d?(c==="content"&&(f-=parseFloat(bH(a,"padding"+bU[e]))||0),c!=="margin"&&(f-=parseFloat(bH(a,"border"+bU[e]+"Width"))||0)):(f+=parseFloat(bH(a,"padding"+bU[e]))||0,c!=="padding"&&(f+=parseFloat(bH(a,"border"+bU[e]+"Width"))||0));return f}function ca(a,b,c){var d=b==="width"?a.offsetWidth:a.offsetHeight,e=!0,f=p.support.boxSizing&&p.css(a,"boxSizing")==="border-box";if(d<=0){d=bH(a,b);if(d<0||d==null)d=a.style[b];if(bP.test(d))return d;e=f&&(p.support.boxSizingReliable||d===a.style[b]),d=parseFloat(d)||0}return d+b_(a,b,c||(f?"border":"content"),e)+"px"}function cb(a){if(bR[a])return bR[a];var b=p("<"+a+">").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write("<!doctype html><html><body>"),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bR[a]=c,c}function ch(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||cd.test(a)?d(a,e):ch(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ch(a+"["+e+"]",b[e],c,d);else d(a,b)}function cy(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h<i;h++)d=g[h],f=/^\+/.test(d),f&&(d=d.substr(1)||"*"),e=a[d]=a[d]||[],e[f?"unshift":"push"](c)}}function cz(a,c,d,e,f,g){f=f||c.dataTypes[0],g=g||{},g[f]=!0;var h,i=a[f],j=0,k=i?i.length:0,l=a===cu;for(;j<k&&(l||!h);j++)h=i[j](c,d,e),typeof h=="string"&&(!l||g[h]?h=b:(c.dataTypes.unshift(h),h=cz(a,c,d,e,h,g)));return(l||!h)&&!g["*"]&&(h=cz(a,c,d,e,"*",g)),h}function cA(a,c){var d,e,f=p.ajaxSettings.flatOptions||{};for(d in c)c[d]!==b&&((f[d]?a:e||(e={}))[d]=c[d]);e&&p.extend(!0,a,e)}function cB(a,c,d){var e,f,g,h,i=a.contents,j=a.dataTypes,k=a.responseFields;for(f in k)f in d&&(c[k[f]]=d[f]);while(j[0]==="*")j.shift(),e===b&&(e=a.mimeType||c.getResponseHeader("content-type"));if(e)for(f in i)if(i[f]&&i[f].test(e)){j.unshift(f);break}if(j[0]in d)g=j[0];else{for(f in d){if(!j[0]||a.converters[f+" "+j[0]]){g=f;break}h||(h=f)}g=g||h}if(g)return g!==j[0]&&j.unshift(g),d[g]}function cC(a,b){var c,d,e,f,g=a.dataTypes.slice(),h=g[0],i={},j=0;a.dataFilter&&(b=a.dataFilter(b,a.dataType));if(g[1])for(c in a.converters)i[c.toLowerCase()]=a.converters[c];for(;e=g[++j];)if(e!=="*"){if(h!=="*"&&h!==e){c=i[h+" "+e]||i["* "+e];if(!c)for(d in i){f=d.split(" ");if(f[1]===e){c=i[h+" "+f[0]]||i["* "+f[0]];if(c){c===!0?c=i[d]:i[d]!==!0&&(e=f[0],g.splice(j--,0,e));break}}}if(c!==!0)if(c&&a["throws"])b=c(b);else try{b=c(b)}catch(k){return{state:"parsererror",error:c?k:"No conversion from "+h+" to "+e}}}h=e}return{state:"success",data:b}}function cK(){try{return new a.XMLHttpRequest}catch(b){}}function cL(){try{return new a.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}}function cT(){return setTimeout(function(){cM=b},0),cM=p.now()}function cU(a,b){p.each(b,function(b,c){var d=(cS[b]||[]).concat(cS["*"]),e=0,f=d.length;for(;e<f;e++)if(d[e].call(a,b,c))return})}function cV(a,b,c){var d,e=0,f=0,g=cR.length,h=p.Deferred().always(function(){delete i.elem}),i=function(){var b=cM||cT(),c=Math.max(0,j.startTime+j.duration-b),d=1-(c/j.duration||0),e=0,f=j.tweens.length;for(;e<f;e++)j.tweens[e].run(d);return h.notifyWith(a,[j,d,c]),d<1&&f?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:p.extend({},b),opts:p.extend(!0,{specialEasing:{}},c),originalProperties:b,originalOptions:c,startTime:cM||cT(),duration:c.duration,tweens:[],createTween:function(b,c,d){var e=p.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(e),e},stop:function(b){var c=0,d=b?j.tweens.length:0;for(;c<d;c++)j.tweens[c].run(1);return b?h.resolveWith(a,[j,b]):h.rejectWith(a,[j,b]),this}}),k=j.props;cW(k,j.opts.specialEasing);for(;e<g;e++){d=cR[e].call(j,a,k,j.opts);if(d)return d}return cU(j,k),p.isFunction(j.opts.start)&&j.opts.start.call(a,j),p.fx.timer(p.extend(i,{anim:j,queue:j.opts.queue,elem:a})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}function cW(a,b){var c,d,e,f,g;for(c in a){d=p.camelCase(c),e=b[d],f=a[c],p.isArray(f)&&(e=f[1],f=a[c]=f[0]),c!==d&&(a[d]=f,delete a[c]),g=p.cssHooks[d];if(g&&"expand"in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}}function cX(a,b,c){var d,e,f,g,h,i,j,k,l=this,m=a.style,n={},o=[],q=a.nodeType&&bY(a);c.queue||(j=p._queueHooks(a,"fx"),j.unqueued==null&&(j.unqueued=0,k=j.empty.fire,j.empty.fire=function(){j.unqueued||k()}),j.unqueued++,l.always(function(){l.always(function(){j.unqueued--,p.queue(a,"fx").length||j.empty.fire()})})),a.nodeType===1&&("height"in b||"width"in b)&&(c.overflow=[m.overflow,m.overflowX,m.overflowY],p.css(a,"display")==="inline"&&p.css(a,"float")==="none"&&(!p.support.inlineBlockNeedsLayout||cb(a.nodeName)==="inline"?m.display="inline-block":m.zoom=1)),c.overflow&&(m.overflow="hidden",p.support.shrinkWrapBlocks||l.done(function(){m.overflow=c.overflow[0],m.overflowX=c.overflow[1],m.overflowY=c.overflow[2]}));for(d in b){f=b[d];if(cO.exec(f)){delete b[d];if(f===(q?"hide":"show"))continue;o.push(d)}}g=o.length;if(g){h=p._data(a,"fxshow")||p._data(a,"fxshow",{}),q?p(a).show():l.done(function(){p(a).hide()}),l.done(function(){var b;p.removeData(a,"fxshow",!0);for(b in n)p.style(a,b,n[b])});for(d=0;d<g;d++)e=o[d],i=l.createTween(e,q?h[e]:0),n[e]=h[e]||p.style(a,e),e in h||(h[e]=i.start,q&&(i.end=i.start,i.start=e==="width"||e==="height"?1:0))}}function cY(a,b,c,d,e){return new cY.prototype.init(a,b,c,d,e)}function cZ(a,b){var c,d={height:a},e=0;for(;e<4;e+=2-b)c=bU[e],d["margin"+c]=d["padding"+c]=a;return b&&(d.opacity=d.width=a),d}function c_(a){return p.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:!1}var c,d,e=a.document,f=a.location,g=a.navigator,h=a.jQuery,i=a.$,j=Array.prototype.push,k=Array.prototype.slice,l=Array.prototype.indexOf,m=Object.prototype.toString,n=Object.prototype.hasOwnProperty,o=String.prototype.trim,p=function(a,b){return new p.fn.init(a,b,c)},q=/[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source,r=/\S/,s=/\s+/,t=r.test(" ")?/^[\s\xA0]+|[\s\xA0]+$/g:/^\s+|\s+$/g,u=/^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.0",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i<j;i++)if((a=arguments[i])!=null)for(c in a){d=h[c],e=a[c];if(h===e)continue;k&&e&&(p.isPlainObject(e)||(f=p.isArray(e)))?(f?(f=!1,g=d&&p.isArray(d)?d:[]):g=d&&p.isPlainObject(d)?d:{},h[c]=p.extend(k,g,e)):e!==b&&(h[c]=e)}return h},p.extend({noConflict:function(b){return a.$===p&&(a.$=i),b&&a.jQuery===p&&(a.jQuery=h),p},isReady:!1,readyWait:1,holdReady:function(a){a?p.readyWait++:p.ready(!0)},ready:function(a){if(a===!0?--p.readyWait:p.isReady)return;if(!e.body)return setTimeout(p.ready,1);p.isReady=!0;if(a!==!0&&--p.readyWait>0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toUpperCase()===b.toUpperCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f<g;)if(c.apply(a[f++],d)===!1)break}else if(h){for(e in a)if(c.call(a[e],e,a[e])===!1)break}else for(;f<g;)if(c.call(a[f],f,a[f++])===!1)break;return a},trim:o?function(a){return a==null?"":o.call(a)}:function(a){return a==null?"":a.toString().replace(t,"")},makeArray:function(a,b){var c,d=b||[];return a!=null&&(c=p.type(a),a.length==null||c==="string"||c==="function"||c==="regexp"||p.isWindow(a)?j.call(d,a):p.merge(d,a)),d},inArray:function(a,b,c){var d;if(b){if(l)return l.call(b,a,c);d=b.length,c=c?c<0?Math.max(0,d+c):c:0;for(;c<d;c++)if(c in b&&b[c]===a)return c}return-1},merge:function(a,c){var d=c.length,e=a.length,f=0;if(typeof d=="number")for(;f<d;f++)a[e++]=c[f];else while(c[f]!==b)a[e++]=c[f++];return a.length=e,a},grep:function(a,b,c){var d,e=[],f=0,g=a.length;c=!!c;for(;f<g;f++)d=!!b(a[f],f),c!==d&&e.push(a[f]);return e},map:function(a,c,d){var e,f,g=[],h=0,i=a.length,j=a instanceof p||i!==b&&typeof i=="number"&&(i>0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h<i;h++)e=c(a[h],h,d),e!=null&&(g[g.length]=e);else for(f in a)e=c(a[f],f,d),e!=null&&(g[g.length]=e);return g.concat.apply([],g)},guid:1,proxy:function(a,c){var d,e,f;return typeof c=="string"&&(d=a[c],c=a,a=d),p.isFunction(a)?(e=k.call(arguments,2),f=function(){return a.apply(c,e.concat(k.call(arguments)))},f.guid=a.guid=a.guid||f.guid||p.guid++,f):b},access:function(a,c,d,e,f,g,h){var i,j=d==null,k=0,l=a.length;if(d&&typeof d=="object"){for(k in d)p.access(a,c,k,d[k],1,g,e);f=1}else if(e!==b){i=h===b&&p.isFunction(e),j&&(i?(i=c,c=function(a,b,c){return i.call(p(a),c)}):(c.call(a,e),c=null));if(c)for(;k<l;k++)c(a[k],d,i?e.call(a[k],k,c(a[k],d)):e,h);f=1}return f?a:j?c.call(a):l?c(a[0],d):g},now:function(){return(new Date).getTime()}}),p.ready.promise=function(b){if(!d){d=p.Deferred();if(e.readyState==="complete"||e.readyState!=="loading"&&e.addEventListener)setTimeout(p.ready,1);else if(e.addEventListener)e.addEventListener("DOMContentLoaded",D,!1),a.addEventListener("load",p.ready,!1);else{e.attachEvent("onreadystatechange",D),a.attachEvent("onload",p.ready);var c=!1;try{c=a.frameElement==null&&e.documentElement}catch(f){}c&&c.doScroll&&function g(){if(!p.isReady){try{c.doScroll("left")}catch(a){return setTimeout(g,50)}p.ready()}}()}}return d.promise(b)},p.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(a,b){E["[object "+b+"]"]=b.toLowerCase()}),c=p(e);var F={};p.Callbacks=function(a){a=typeof a=="string"?F[a]||G(a):p.extend({},a);var c,d,e,f,g,h,i=[],j=!a.once&&[],k=function(b){c=a.memory&&b,d=!0,h=f||0,f=0,g=i.length,e=!0;for(;i&&h<g;h++)if(i[h].apply(b[0],b[1])===!1&&a.stopOnFalse){c=!1;break}e=!1,i&&(j?j.length&&k(j.shift()):c?i=[]:l.disable())},l={add:function(){if(i){var b=i.length;(function d(b){p.each(b,function(b,c){p.isFunction(c)&&(!a.unique||!l.has(c))?i.push(c):c&&c.length&&d(c)})})(arguments),e?g=i.length:c&&(f=b,k(c))}return this},remove:function(){return i&&p.each(arguments,function(a,b){var c;while((c=p.inArray(b,i,c))>-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return typeof a=="object"?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b<d;b++)c[b]&&p.isFunction(c[b].promise)?c[b].promise().done(g(b,j,c)).fail(f.reject).progress(g(b,i,h)):--e}return e||f.resolveWith(j,c),f.promise()}}),p.support=function(){var b,c,d,f,g,h,i,j,k,l,m,n=e.createElement("div");n.setAttribute("className","t"),n.innerHTML=" <link/><table></table><a href='/a'>a</a><input type='checkbox'/>",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length||!d)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav></:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="<table><tr><td></td><td>t</td></tr></table>",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="<div></div>",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/^(?:\{.*\}|\[.*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||++p.uuid:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e<f;e++)delete d[b[e]];if(!(c?K:p.isEmptyObject)(d))return}}if(!c){delete h[i].data;if(!K(h[i]))return}g?p.cleanData([a],!0):p.support.deleteExpando||h!=h.window?delete h[i]:h[i]=null},_data:function(a,b,c){return p.data(a,b,c,!0)},acceptData:function(a){var b=a.nodeName&&p.noData[a.nodeName.toLowerCase()];return!b||b!==!0&&a.getAttribute("classid")===b}}),p.fn.extend({data:function(a,c){var d,e,f,g,h,i=this[0],j=0,k=null;if(a===b){if(this.length){k=p.data(i);if(i.nodeType===1&&!p._data(i,"parsedAttrs")){f=i.attributes;for(h=f.length;j<h;j++)g=f[j].name,g.indexOf("data-")===0&&(g=p.camelCase(g.substring(5)),J(i,g,k[g]));p._data(i,"parsedAttrs",!0)}}return k}return typeof a=="object"?this.each(function(){p.data(this,a)}):(d=a.split(".",2),d[1]=d[1]?"."+d[1]:"",e=d[1]+"!",p.access(this,function(c){if(c===b)return k=this.triggerHandler("getData"+e,[d[0]]),k===b&&i&&(k=p.data(i,a),k=J(i,a,k)),k===b&&d[1]?this.data(d[0]):k;d[1]=c,this.each(function(){var b=p(this);b.triggerHandler("setData"+e,d),p.data(this,a,c),b.triggerHandler("changeData"+e,d)})},null,c,arguments.length>1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.shift(),e=p._queueHooks(a,b),f=function(){p.dequeue(a,b)};d==="inprogress"&&(d=c.shift()),d&&(b==="fx"&&c.unshift("inprogress"),delete e.stop,d.call(a,f,e)),!c.length&&e&&e.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length<d?p.queue(this[0],a):c===b?this:this.each(function(){var b=p.queue(this,a,c);p._queueHooks(this,a),a==="fx"&&b[0]!=="inprogress"&&p.dequeue(this,a)})},dequeue:function(a){return this.each(function(){p.dequeue(this,a)})},delay:function(a,b){return a=p.fx?p.fx.speeds[a]||a:a,b=b||"fx",this.queue(b,function(b,c){var d=setTimeout(b,a);c.stop=function(){clearTimeout(d)}})},clearQueue:function(a){return this.queue(a||"fx",[])},promise:function(a,c){var d,e=1,f=p.Deferred(),g=this,h=this.length,i=function(){--e||f.resolveWith(g,[g])};typeof a!="string"&&(c=a,a=b),a=a||"fx";while(h--)(d=p._data(g[h],a+"queueHooks"))&&d.empty&&(e++,d.empty.add(i));return i(),f.promise(c)}});var L,M,N,O=/[\t\r\n]/g,P=/\r/g,Q=/^(?:button|input)$/i,R=/^(?:button|input|object|select|textarea)$/i,S=/^a(?:rea|)$/i,T=/^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,U=p.support.getSetAttribute;p.fn.extend({attr:function(a,b){return p.access(this,p.attr,a,b,arguments.length>1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c<d;c++){e=this[c];if(e.nodeType===1)if(!e.className&&b.length===1)e.className=a;else{f=" "+e.className+" ";for(g=0,h=b.length;g<h;g++)~f.indexOf(" "+b[g]+" ")||(f+=b[g]+" ");e.className=p.trim(f)}}}return this},removeClass:function(a){var c,d,e,f,g,h,i;if(p.isFunction(a))return this.each(function(b){p(this).removeClass(a.call(this,b,this.className))});if(a&&typeof a=="string"||a===b){c=(a||"").split(s);for(h=0,i=this.length;h<i;h++){e=this[h];if(e.nodeType===1&&e.className){d=(" "+e.className+" ").replace(O," ");for(f=0,g=c.length;f<g;f++)while(d.indexOf(" "+c[f]+" ")>-1)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c<d;c++)if(this[c].nodeType===1&&(" "+this[c].className+" ").replace(O," ").indexOf(b)>-1)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c<d;c++){e=h[c];if(e.selected&&(p.support.optDisabled?!e.disabled:e.getAttribute("disabled")===null)&&(!e.parentNode.disabled||!p.nodeName(e.parentNode,"optgroup"))){b=p(e).val();if(i)return b;g.push(b)}}return i&&!g.length&&h.length?p(h[f]).val():g},set:function(a,b){var c=p.makeArray(b);return p(a).find("option").each(function(){this.selected=p.inArray(p(this).val(),c)>=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,""+d),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g<d.length;g++)e=d[g],e&&(c=p.propFix[e]||e,f=T.test(e),f||p.attr(a,e,""),a.removeAttribute(U?e:c),f&&c in a&&(a[c]=!1))}},attrHooks:{type:{set:function(a,b){if(Q.test(a.nodeName)&&a.parentNode)p.error("type property can't be changed");else if(!p.support.radioValue&&b==="radio"&&p.nodeName(a,"input")){var c=a.value;return a.setAttribute("type",b),c&&(a.value=c),b}}},value:{get:function(a,b){return L&&p.nodeName(a,"button")?L.get(a,b):b in a?a.value:null},set:function(a,b,c){if(L&&p.nodeName(a,"button"))return L.set(a,b,c);a.value=b}}},propFix:{tabindex:"tabIndex",readonly:"readOnly","for":"htmlFor","class":"className",maxlength:"maxLength",cellspacing:"cellSpacing",cellpadding:"cellPadding",rowspan:"rowSpan",colspan:"colSpan",usemap:"useMap",frameborder:"frameBorder",contenteditable:"contentEditable"},prop:function(a,c,d){var e,f,g,h=a.nodeType;if(!a||h===3||h===8||h===2)return;return g=h!==1||!p.isXMLDoc(a),g&&(c=p.propFix[c]||c,f=p.propHooks[c]),d!==b?f&&"set"in f&&(e=f.set(a,d,c))!==b?e:a[c]=d:f&&"get"in f&&(e=f.get(a,c))!==null?e:a[c]},propHooks:{tabIndex:{get:function(a){var c=a.getAttributeNode("tabindex");return c&&c.specified?parseInt(c.value,10):R.test(a.nodeName)||S.test(a.nodeName)&&a.href?0:b}}}}),M={get:function(a,c){var d,e=p.prop(a,c);return e===!0||typeof e!="boolean"&&(d=a.getAttributeNode(c))&&d.nodeValue!==!1?c.toLowerCase():b},set:function(a,b,c){var d;return b===!1?p.removeAttr(a,c):(d=p.propFix[c]||c,d in a&&(a[d]=!0),a.setAttribute(c,c.toLowerCase())),c}},U||(N={name:!0,id:!0,coords:!0},L=p.valHooks.button={get:function(a,c){var d;return d=a.getAttributeNode(c),d&&(N[c]?d.value!=="":d.specified)?d.value:b},set:function(a,b,c){var d=a.getAttributeNode(c);return d||(d=e.createAttribute(c),a.setAttributeNode(d)),d.value=b+""}},p.each(["width","height"],function(a,b){p.attrHooks[b]=p.extend(p.attrHooks[b],{set:function(a,c){if(c==="")return a.setAttribute(b,"auto"),c}})}),p.attrHooks.contenteditable={get:L.get,set:function(a,b,c){b===""&&(b="false"),L.set(a,b,c)}}),p.support.hrefNormalized||p.each(["href","src","width","height"],function(a,c){p.attrHooks[c]=p.extend(p.attrHooks[c],{get:function(a){var d=a.getAttribute(c,2);return d===null?b:d}})}),p.support.style||(p.attrHooks.style={get:function(a){return a.style.cssText.toLowerCase()||b},set:function(a,b){return a.style.cssText=""+b}}),p.support.optSelected||(p.propHooks.selected=p.extend(p.propHooks.selected,{get:function(a){var b=a.parentNode;return b&&(b.selectedIndex,b.parentNode&&b.parentNode.selectedIndex),null}})),p.support.enctype||(p.propFix.enctype="encoding"),p.support.checkOn||p.each(["radio","checkbox"],function(){p.valHooks[this]={get:function(a){return a.getAttribute("value")===null?"on":a.value}}}),p.each(["radio","checkbox"],function(){p.valHooks[this]=p.extend(p.valHooks[this],{set:function(a,b){if(p.isArray(b))return a.checked=p.inArray(p(a).val(),b)>=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j<c.length;j++){k=W.exec(c[j])||[],l=k[1],m=(k[2]||"").split(".").sort(),r=p.event.special[l]||{},l=(f?r.delegateType:r.bindType)||l,r=p.event.special[l]||{},n=p.extend({type:l,origType:k[1],data:e,handler:d,guid:d.guid,selector:f,namespace:m.join(".")},o),q=i[l];if(!q){q=i[l]=[],q.delegateCount=0;if(!r.setup||r.setup.call(a,e,m,h)===!1)a.addEventListener?a.addEventListener(l,h,!1):a.attachEvent&&a.attachEvent("on"+l,h)}r.add&&(r.add.call(a,n),n.handler.guid||(n.handler.guid=d.guid)),f?q.splice(q.delegateCount++,0,n):q.push(n),p.event.global[l]=!0}a=null},global:{},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,n,o,q,r=p.hasData(a)&&p._data(a);if(!r||!(m=r.events))return;b=p.trim(_(b||"")).split(" ");for(f=0;f<b.length;f++){g=W.exec(b[f])||[],h=i=g[1],j=g[2];if(!h){for(h in m)p.event.remove(a,h+b[f],c,d,!0);continue}n=p.event.special[h]||{},h=(d?n.delegateType:n.bindType)||h,o=m[h]||[],k=o.length,j=j?new RegExp("(^|\\.)"+j.split(".").sort().join("\\.(?:.*\\.|)")+"(\\.|$)"):null;for(l=0;l<o.length;l++)q=o[l],(e||i===q.origType)&&(!c||c.guid===q.guid)&&(!j||j.test(q.namespace))&&(!d||d===q.selector||d==="**"&&q.selector)&&(o.splice(l--,1),q.selector&&o.delegateCount--,n.remove&&n.remove.call(a,q));o.length===0&&k!==o.length&&((!n.teardown||n.teardown.call(a,j,r.handle)===!1)&&p.removeEvent(a,h,r.handle),delete m[h])}p.isEmptyObject(m)&&(delete r.handle,p.removeData(a,"events",!0))},customEvent:{getData:!0,setData:!0,changeData:!0},trigger:function(c,d,f,g){if(!f||f.nodeType!==3&&f.nodeType!==8){var h,i,j,k,l,m,n,o,q,r,s=c.type||c,t=[];if($.test(s+p.event.triggered))return;s.indexOf("!")>=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j<q.length&&!c.isPropagationStopped();j++)k=q[j][0],c.type=q[j][1],o=(p._data(k,"events")||{})[c.type]&&p._data(k,"handle"),o&&o.apply(k,d),o=m&&k[m],o&&p.acceptData(k)&&o.apply(k,d)===!1&&c.preventDefault();return c.type=s,!g&&!c.isDefaultPrevented()&&(!n._default||n._default.apply(f.ownerDocument,d)===!1)&&(s!=="click"||!p.nodeName(f,"a"))&&p.acceptData(f)&&m&&f[s]&&(s!=="focus"&&s!=="blur"||c.target.offsetWidth!==0)&&!p.isWindow(f)&&(l=f[m],l&&(f[m]=null),p.event.triggered=s,f[s](),p.event.triggered=b,l&&(f[m]=l)),c.result}return},dispatch:function(c){c=p.event.fix(c||a.event);var d,e,f,g,h,i,j,k,l,m,n,o=(p._data(this,"events")||{})[c.type]||[],q=o.delegateCount,r=[].slice.call(arguments),s=!c.exclusive&&!c.namespace,t=p.event.special[c.type]||{},u=[];r[0]=c,c.delegateTarget=this;if(t.preDispatch&&t.preDispatch.call(this,c)===!1)return;if(q&&(!c.button||c.type!=="click")){g=p(this),g.context=this;for(f=c.target;f!=this;f=f.parentNode||this)if(f.disabled!==!0||c.type!=="click"){i={},k=[],g[0]=f;for(d=0;d<q;d++)l=o[d],m=l.selector,i[m]===b&&(i[m]=g.is(m)),i[m]&&k.push(l);k.length&&u.push({elem:f,matches:k})}}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d<u.length&&!c.isPropagationStopped();d++){j=u[d],c.currentTarget=j.elem;for(e=0;e<j.matches.length&&!c.isImmediatePropagationStopped();e++){l=j.matches[e];if(s||!c.namespace&&!l.namespace||c.namespace_re&&c.namespace_re.test(l.namespace))c.data=l.data,c.handleObj=l,h=((p.event.special[l.origType]||{}).handle||l.handler).apply(j.elem,r),h!==b&&(c.result=h,h===!1&&(c.preventDefault(),c.stopPropagation()))}}return t.postDispatch&&t.postDispatch.call(this,c),c.result},props:"attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(a,b){return a.which==null&&(a.which=b.charCode!=null?b.charCode:b.keyCode),a}},mouseHooks:{props:"button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(a,c){var d,f,g,h=c.button,i=c.fromElement;return a.pageX==null&&c.clientX!=null&&(d=a.target.ownerDocument||e,f=d.documentElement,g=d.body,a.pageX=c.clientX+(f&&f.scrollLeft||g&&g.scrollLeft||0)-(f&&f.clientLeft||g&&g.clientLeft||0),a.pageY=c.clientY+(f&&f.scrollTop||g&&g.scrollTop||0)-(f&&f.clientTop||g&&g.clientTop||0)),!a.relatedTarget&&i&&(a.relatedTarget=i===a.target?c.toElement:i),!a.which&&h!==b&&(a.which=h&1?1:h&2?3:h&4?2:0),a}},fix:function(a){if(a[p.expando])return a;var b,c,d=a,f=p.event.fixHooks[a.type]||{},g=f.props?this.props.concat(f.props):this.props;a=p.Event(d);for(b=g.length;b;)c=g[--b],a[c]=d[c];return a.target||(a.target=d.srcElement||e),a.target.nodeType===3&&(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,f.filter?f.filter(a,d):a},special:{ready:{setup:p.bindReady},load:{noBubble:!0},focus:{delegateType:"focusin"},blur:{delegateType:"focusout"},beforeunload:{setup:function(a,b,c){p.isWindow(this)&&(this.onbeforeunload=c)},teardown:function(a,b){this.onbeforeunload===b&&(this.onbeforeunload=null)}}},simulate:function(a,b,c,d){var e=p.extend(new p.Event,c,{type:a,isSimulated:!0,originalEvent:{}});d?p.event.trigger(e,null,b):p.event.dispatch.call(b,e),e.isDefaultPrevented()&&c.preventDefault()}},p.event.handle=p.event.dispatch,p.removeEvent=e.removeEventListener?function(a,b,c){a.removeEventListener&&a.removeEventListener(b,c,!1)}:function(a,b,c){var d="on"+b;a.detachEvent&&(typeof a[d]=="undefined"&&(a[d]=null),a.detachEvent(d,c))},p.Event=function(a,b){if(this instanceof p.Event)a&&a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||a.returnValue===!1||a.getPreventDefault&&a.getPreventDefault()?bb:ba):this.type=a,b&&p.extend(this,b),this.timeStamp=a&&a.timeStamp||p.now(),this[p.expando]=!0;else return new p.Event(a,b)},p.Event.prototype={preventDefault:function(){this.isDefaultPrevented=bb;var a=this.originalEvent;if(!a)return;a.preventDefault?a.preventDefault():a.returnValue=!1},stopPropagation:function(){this.isPropagationStopped=bb;var a=this.originalEvent;if(!a)return;a.stopPropagation&&a.stopPropagation(),a.cancelBubble=!0},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=bb,this.stopPropagation()},isDefaultPrevented:ba,isPropagationStopped:ba,isImmediatePropagationStopped:ba},p.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){p.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj,g=f.selector;if(!e||e!==d&&!p.contains(d,e))a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b;return c}}}),p.support.submitBubbles||(p.event.special.submit={setup:function(){if(p.nodeName(this,"form"))return!1;p.event.add(this,"click._submit keypress._submit",function(a){var c=a.target,d=p.nodeName(c,"input")||p.nodeName(c,"button")?c.form:b;d&&!p._data(d,"_submit_attached")&&(p.event.add(d,"submit._submit",function(a){a._submit_bubble=!0}),p._data(d,"_submit_attached",!0))})},postDispatch:function(a){a._submit_bubble&&(delete a._submit_bubble,this.parentNode&&!a.isTrigger&&p.event.simulate("submit",this.parentNode,a,!0))},teardown:function(){if(p.nodeName(this,"form"))return!1;p.event.remove(this,"._submit")}}),p.support.changeBubbles||(p.event.special.change={setup:function(){if(V.test(this.nodeName)){if(this.type==="checkbox"||this.type==="radio")p.event.add(this,"propertychange._change",function(a){a.originalEvent.propertyName==="checked"&&(this._just_changed=!0)}),p.event.add(this,"click._change",function(a){this._just_changed&&!a.isTrigger&&(this._just_changed=!1),p.event.simulate("change",this,a,!0)});return!1}p.event.add(this,"beforeactivate._change",function(a){var b=a.target;V.test(b.nodeName)&&!p._data(b,"_change_attached")&&(p.event.add(b,"change._change",function(a){this.parentNode&&!a.isSimulated&&!a.isTrigger&&p.event.simulate("change",this.parentNode,a,!0)}),p._data(b,"_change_attached",!0))})},handle:function(a){var b=a.target;if(this!==b||a.isSimulated||a.isTrigger||b.type!=="radio"&&b.type!=="checkbox")return a.handleObj.handler.apply(this,arguments)},teardown:function(){return p.event.remove(this,"._change"),V.test(this.nodeName)}}),p.support.focusinBubbles||p.each({focus:"focusin",blur:"focusout"},function(a,b){var c=0,d=function(a){p.event.simulate(b,a.target,p.event.fix(a),!0)};p.event.special[b]={setup:function(){c++===0&&e.addEventListener(a,d,!0)},teardown:function(){--c===0&&e.removeEventListener(a,d,!0)}}}),p.fn.extend({on:function(a,c,d,e,f){var g,h;if(typeof a=="object"){typeof c!="string"&&(d=d||c,c=b);for(h in a)this.on(h,c,d,a[h],f);return this}d==null&&e==null?(e=c,d=c=b):e==null&&(typeof c=="string"?(e=d,d=b):(e=d,d=c,c=b));if(e===!1)e=ba;else if(!e)return this;return f===1&&(g=e,e=function(a){return p().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=p.guid++)),this.each(function(){p.event.add(this,a,e,d,c)})},one:function(a,b,c,d){return this.on(a,b,c,d,1)},off:function(a,c,d){var e,f;if(a&&a.preventDefault&&a.handleObj)return e=a.handleObj,p(a.delegateTarget).off(e.namespace?e.origType+"."+e.namespace:e.origType,e.selector,e.handler),this;if(typeof a=="object"){for(f in a)this.off(f,c,a[f]);return this}if(c===!1||typeof c=="function")d=c,c=b;return d===!1&&(d=ba),this.each(function(){p.event.remove(this,a,d,c)})},bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},live:function(a,b,c){return p(this.context).on(a,this.selector,b,c),this},die:function(a,b){return p(this.context).off(a,this.selector||"**",b),this},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return arguments.length==1?this.off(a,"**"):this.off(b,a||"**",c)},trigger:function(a,b){return this.each(function(){p.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0])return p.event.trigger(a,b,this[0],!0)},toggle:function(a){var b=arguments,c=a.guid||p.guid++,d=0,e=function(c){var e=(p._data(this,"lastToggle"+a.guid)||0)%d;return p._data(this,"lastToggle"+a.guid,e+1),c.preventDefault(),b[e].apply(this,arguments)||!1};e.guid=c;while(d<b.length)b[d++].guid=c;return this.click(e)},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}}),p.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(a,b){p.fn[b]=function(a,c){return c==null&&(c=a,a=null),arguments.length>0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bd(a,b,c,d){var e=0,f=b.length;for(;e<f;e++)Z(a,b[e],c,d)}function be(a,b,c,d,e,f){var g,h=$.setFilters[b.toLowerCase()];return h||Z.error(b),(a||!(g=e))&&bd(a||"*",d,g=[],e),g.length>0?h(g,c,f):[]}function bf(a,c,d,e,f){var g,h,i,j,k,l,m,n,p=0,q=f.length,s=L.POS,t=new RegExp("^"+s.source+"(?!"+r+")","i"),u=function(){var a=1,c=arguments.length-2;for(;a<c;a++)arguments[a]===b&&(g[a]=b)};for(;p<q;p++){s.exec(""),a=f[p],j=[],i=0,k=e;while(g=s.exec(a)){n=s.lastIndex=g.index+g[0].length;if(n>i){m=a.slice(i,g.index),i=n,l=[c],B.test(m)&&(k&&(l=k),k=e);if(h=H.test(m))m=m.slice(0,-5).replace(B,"$&*");g.length>1&&g[0].replace(t,u),k=be(m,g[1],g[2],l,k,h)}}k?(j=j.concat(k),(m=a.slice(i))&&m!==")"?B.test(m)?bd(m,j,d,e):Z(m,c,d,e?e.concat(k):k):o.apply(d,j)):Z(a,c,d,e)}return q===1?d:Z.uniqueSort(d)}function bg(a,b,c){var d,e,f,g=[],i=0,j=D.exec(a),k=!j.pop()&&!j.pop(),l=k&&a.match(C)||[""],m=$.preFilter,n=$.filter,o=!c&&b!==h;for(;(e=l[i])!=null&&k;i++){g.push(d=[]),o&&(e=" "+e);while(e){k=!1;if(j=B.exec(e))e=e.slice(j[0].length),k=d.push({part:j.pop().replace(A," "),captures:j});for(f in n)(j=L[f].exec(e))&&(!m[f]||(j=m[f](j,b,c)))&&(e=e.slice(j.shift().length),k=d.push({part:f,captures:j}));if(!k)break}}return k||Z.error(a),g}function bh(a,b,e){var f=b.dir,g=m++;return a||(a=function(a){return a===e}),b.first?function(b,c){while(b=b[f])if(b.nodeType===1)return a(b,c)&&b}:function(b,e){var h,i=g+"."+d,j=i+"."+c;while(b=b[f])if(b.nodeType===1){if((h=b[q])===j)return b.sizset;if(typeof h=="string"&&h.indexOf(i)===0){if(b.sizset)return b}else{b[q]=j;if(a(b,e))return b.sizset=!0,b;b.sizset=!1}}}}function bi(a,b){return a?function(c,d){var e=b(c,d);return e&&a(e===!0?c:e,d)}:b}function bj(a,b,c){var d,e,f=0;for(;d=a[f];f++)$.relative[d.part]?e=bh(e,$.relative[d.part],b):(d.captures.push(b,c),e=bi(e,$.filter[d.part].apply(null,d.captures)));return e}function bk(a){return function(b,c){var d,e=0;for(;d=a[e];e++)if(d(b,c))return!0;return!1}}var c,d,e,f,g,h=a.document,i=h.documentElement,j="undefined",k=!1,l=!0,m=0,n=[].slice,o=[].push,q=("sizcache"+Math.random()).replace(".",""),r="[\\x20\\t\\r\\n\\f]",s="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",t=s.replace("w","w#"),u="([*^$|!~]?=)",v="\\["+r+"*("+s+")"+r+"*(?:"+u+r+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+t+")|)|)"+r+"*\\]",w=":("+s+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|((?:[^,]|\\\\,|(?:,(?=[^\\[]*\\]))|(?:,(?=[^\\(]*\\))))*))\\)|)",x=":(nth|eq|gt|lt|first|last|even|odd)(?:\\((\\d*)\\)|)(?=[^-]|$)",y=r+"*([\\x20\\t\\r\\n\\f>+~])"+r+"*",z="(?=[^\\x20\\t\\r\\n\\f])(?:\\\\.|"+v+"|"+w.replace(2,7)+"|[^\\\\(),])+",A=new RegExp("^"+r+"+|((?:^|[^\\\\])(?:\\\\.)*)"+r+"+$","g"),B=new RegExp("^"+y),C=new RegExp(z+"?(?="+r+"*,|$)","g"),D=new RegExp("^(?:(?!,)(?:(?:^|,)"+r+"*"+z+")*?|"+r+"*(.*?))(\\)|$)"),E=new RegExp(z.slice(19,-6)+"\\x20\\t\\r\\n\\f>+~])+|"+y,"g"),F=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,G=/[\x20\t\r\n\f]*[+~]/,H=/:not\($/,I=/h\d/i,J=/input|select|textarea|button/i,K=/\\(?!\\)/g,L={ID:new RegExp("^#("+s+")"),CLASS:new RegExp("^\\.("+s+")"),NAME:new RegExp("^\\[name=['\"]?("+s+")['\"]?\\]"),TAG:new RegExp("^("+s.replace("[-","[-\\*")+")"),ATTR:new RegExp("^"+v),PSEUDO:new RegExp("^"+w),CHILD:new RegExp("^:(only|nth|last|first)-child(?:\\("+r+"*(even|odd|(([+-]|)(\\d*)n|)"+r+"*(?:([+-]|)"+r+"*(\\d+)|))"+r+"*\\)|)","i"),POS:new RegExp(x,"ig"),needsContext:new RegExp("^"+r+"*[>+~]|"+x,"i")},M={},N=[],O={},P=[],Q=function(a){return a.sizzleFilter=!0,a},R=function(a){return function(b){return b.nodeName.toLowerCase()==="input"&&b.type===a}},S=function(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}},T=function(a){var b=!1,c=h.createElement("div");try{b=a(c)}catch(d){}return c=null,b},U=T(function(a){a.innerHTML="<select></select>";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),V=T(function(a){a.id=q+0,a.innerHTML="<a name='"+q+"'></a><div name='"+q+"'></div>",i.insertBefore(a,i.firstChild);var b=h.getElementsByName&&h.getElementsByName(q).length===2+h.getElementsByName(q+0).length;return g=!h.getElementById(q),i.removeChild(a),b}),W=T(function(a){return a.appendChild(h.createComment("")),a.getElementsByTagName("*").length===0}),X=T(function(a){return a.innerHTML="<a href='#'></a>",a.firstChild&&typeof a.firstChild.getAttribute!==j&&a.firstChild.getAttribute("href")==="#"}),Y=T(function(a){return a.innerHTML="<div class='hidden e'></div><div class='hidden'></div>",!a.getElementsByClassName||a.getElementsByClassName("e").length===0?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length!==1)}),Z=function(a,b,c,d){c=c||[],b=b||h;var e,f,g,i,j=b.nodeType;if(j!==1&&j!==9)return[];if(!a||typeof a!="string")return c;g=ba(b);if(!g&&!d)if(e=F.exec(a))if(i=e[1]){if(j===9){f=b.getElementById(i);if(!f||!f.parentNode)return c;if(f.id===i)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(i))&&bb(b,f)&&f.id===i)return c.push(f),c}else{if(e[2])return o.apply(c,n.call(b.getElementsByTagName(a),0)),c;if((i=e[3])&&Y&&b.getElementsByClassName)return o.apply(c,n.call(b.getElementsByClassName(i),0)),c}return bm(a,b,c,d,g)},$=Z.selectors={cacheLength:50,match:L,order:["ID","TAG"],attrHandle:{},createPseudo:Q,find:{ID:g?function(a,b,c){if(typeof b.getElementById!==j&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==j&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==j&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:W?function(a,b){if(typeof b.getElementsByTagName!==j)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(K,""),a[3]=(a[4]||a[5]||"").replace(K,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||Z.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&Z.error(a[0]),a},PSEUDO:function(a){var b,c=a[4];return L.CHILD.test(a[0])?null:(c&&(b=D.exec(c))&&b.pop()&&(a[0]=a[0].slice(0,b[0].length-c.length-1),c=b[0].slice(0,-1)),a.splice(2,3,c||a[3]),a)}},filter:{ID:g?function(a){return a=a.replace(K,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(K,""),function(b){var c=typeof b.getAttributeNode!==j&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(K,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=M[a];return b||(b=M[a]=new RegExp("(^|"+r+")"+a+"("+r+"|$)"),N.push(a),N.length>$.cacheLength&&delete M[N.shift()]),function(a){return b.test(a.className||typeof a.getAttribute!==j&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return b?function(d){var e=Z.attr(d,a),f=e+"";if(e==null)return b==="!=";switch(b){case"=":return f===c;case"!=":return f!==c;case"^=":return c&&f.indexOf(c)===0;case"*=":return c&&f.indexOf(c)>-1;case"$=":return c&&f.substr(f.length-c.length)===c;case"~=":return(" "+f+" ").indexOf(c)>-1;case"|=":return f===c||f.substr(0,c.length+1)===c+"-"}}:function(b){return Z.attr(b,a)!=null}},CHILD:function(a,b,c,d){if(a==="nth"){var e=m++;return function(a){var b,f,g=0,h=a;if(c===1&&d===0)return!0;b=a.parentNode;if(b&&(b[q]!==e||!a.sizset)){for(h=b.firstChild;h;h=h.nextSibling)if(h.nodeType===1){h.sizset=++g;if(h===a)break}b[q]=e}return f=a.sizset-d,c===0?f===0:f%c===0&&f/c>=0}}return function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b,c,d){var e=$.pseudos[a]||$.pseudos[a.toLowerCase()];return e||Z.error("unsupported pseudo: "+a),e.sizzleFilter?e(b,c,d):e}},pseudos:{not:Q(function(a,b,c){var d=bl(a.replace(A,"$1"),b,c);return function(a){return!d(a)}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!$.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},contains:Q(function(a){return function(b){return(b.textContent||b.innerText||bc(b)).indexOf(a)>-1}}),has:Q(function(a){return function(b){return Z(a,b).length>0}}),header:function(a){return I.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:R("radio"),checkbox:R("checkbox"),file:R("file"),password:R("password"),image:R("image"),submit:S("submit"),reset:S("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return J.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement}},setFilters:{first:function(a,b,c){return c?a.slice(1):[a[0]]},last:function(a,b,c){var d=a.pop();return c?a:[d]},even:function(a,b,c){var d=[],e=c?1:0,f=a.length;for(;e<f;e=e+2)d.push(a[e]);return d},odd:function(a,b,c){var d=[],e=c?0:1,f=a.length;for(;e<f;e=e+2)d.push(a[e]);return d},lt:function(a,b,c){return c?a.slice(+b):a.slice(0,+b)},gt:function(a,b,c){return c?a.slice(0,+b+1):a.slice(+b+1)},eq:function(a,b,c){var d=a.splice(+b,1);return c?a:d}}};$.setFilters.nth=$.setFilters.eq,$.filters=$.pseudos,X||($.attrHandle={href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}}),V&&($.order.push("NAME"),$.find.NAME=function(a,b){if(typeof b.getElementsByName!==j)return b.getElementsByName(a)}),Y&&($.order.splice(1,0,"CLASS"),$.find.CLASS=function(a,b,c){if(typeof b.getElementsByClassName!==j&&!c)return b.getElementsByClassName(a)});try{n.call(i.childNodes,0)[0].nodeType}catch(_){n=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}var ba=Z.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},bb=Z.contains=i.compareDocumentPosition?function(a,b){return!!(a.compareDocumentPosition(b)&16)}:i.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc=Z.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=bc(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=bc(b);return c};Z.attr=function(a,b){var c,d=ba(a);return d||(b=b.toLowerCase()),$.attrHandle[b]?$.attrHandle[b](a):U||d?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},Z.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},[0,0].sort(function(){return l=0}),i.compareDocumentPosition?e=function(a,b){return a===b?(k=!0,0):(!a.compareDocumentPosition||!b.compareDocumentPosition?a.compareDocumentPosition:a.compareDocumentPosition(b)&4)?-1:1}:(e=function(a,b){if(a===b)return k=!0,0;if(a.sourceIndex&&b.sourceIndex)return a.sourceIndex-b.sourceIndex;var c,d,e=[],g=[],h=a.parentNode,i=b.parentNode,j=h;if(h===i)return f(a,b);if(!h)return-1;if(!i)return 1;while(j)e.unshift(j),j=j.parentNode;j=i;while(j)g.unshift(j),j=j.parentNode;c=e.length,d=g.length;for(var l=0;l<c&&l<d;l++)if(e[l]!==g[l])return f(e[l],g[l]);return l===c?f(a,g[l],-1):f(e[l],b,1)},f=function(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}),Z.uniqueSort=function(a){var b,c=1;if(e){k=l,a.sort(e);if(k)for(;b=a[c];c++)b===a[c-1]&&a.splice(c--,1)}return a};var bl=Z.compile=function(a,b,c){var d,e,f,g=O[a];if(g&&g.context===b)return g;e=bg(a,b,c);for(f=0;d=e[f];f++)e[f]=bj(d,b,c);return g=O[a]=bk(e),g.context=b,g.runs=g.dirruns=0,P.push(a),P.length>$.cacheLength&&delete O[P.shift()],g};Z.matches=function(a,b){return Z(a,null,null,b)},Z.matchesSelector=function(a,b){return Z(b,null,null,[a]).length>0};var bm=function(a,b,e,f,g){a=a.replace(A,"$1");var h,i,j,k,l,m,p,q,r,s=a.match(C),t=a.match(E),u=b.nodeType;if(L.POS.test(a))return bf(a,b,e,f,s);if(f)h=n.call(f,0);else if(s&&s.length===1){if(t.length>1&&u===9&&!g&&(s=L.ID.exec(t[0]))){b=$.find.ID(s[1],b,g)[0];if(!b)return e;a=a.slice(t.shift().length)}q=(s=G.exec(t[0]))&&!s.index&&b.parentNode||b,r=t.pop(),m=r.split(":not")[0];for(j=0,k=$.order.length;j<k;j++){p=$.order[j];if(s=L[p].exec(m)){h=$.find[p]((s[1]||"").replace(K,""),q,g);if(h==null)continue;m===r&&(a=a.slice(0,a.length-r.length)+m.replace(L[p],""),a||o.apply(e,n.call(h,0)));break}}}if(a){i=bl(a,b,g),d=i.dirruns++,h==null&&(h=$.find.TAG("*",G.test(a)&&b.parentNode||b));for(j=0;l=h[j];j++)c=i.runs++,i(l,b)&&e.push(l)}return e};h.querySelectorAll&&function(){var a,b=bm,c=/'|\\/g,d=/\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g,e=[],f=[":active"],g=i.matchesSelector||i.mozMatchesSelector||i.webkitMatchesSelector||i.oMatchesSelector||i.msMatchesSelector;T(function(a){a.innerHTML="<select><option selected></option></select>",a.querySelectorAll("[selected]").length||e.push("\\["+r+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),T(function(a){a.innerHTML="<p test=''></p>",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+r+"*(?:\"\"|'')"),a.innerHTML="<input type='hidden'>",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=e.length&&new RegExp(e.join("|")),bm=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a)))if(d.nodeType===9)try{return o.apply(f,n.call(d.querySelectorAll(a),0)),f}catch(i){}else if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){var j=d.getAttribute("id"),k=j||q,l=G.test(a)&&d.parentNode||d;j?k=k.replace(c,"\\$&"):d.setAttribute("id",k);try{return o.apply(f,n.call(l.querySelectorAll(a.replace(C,"[id='"+k+"'] $&")),0)),f}catch(i){}finally{j||d.removeAttribute("id")}}return b(a,d,f,g,h)},g&&(T(function(b){a=g.call(b,"div");try{g.call(b,"[test!='']:sizzle"),f.push($.match.PSEUDO)}catch(c){}}),f=new RegExp(f.join("|")),Z.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!ba(b)&&!f.test(c)&&(!e||!e.test(c)))try{var h=g.call(b,c);if(h||a||b.document&&b.document.nodeType!==11)return h}catch(i){}return Z(c,null,null,[b]).length>0})}(),Z.attr=p.attr,p.find=Z,p.expr=Z.selectors,p.expr[":"]=p.expr.pseudos,p.unique=Z.uniqueSort,p.text=Z.getText,p.isXMLDoc=Z.isXML,p.contains=Z.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b<c;b++)if(p.contains(h[b],this))return!0});g=this.pushStack("","find",a);for(b=0,c=this.length;b<c;b++){d=g.length,p.find(a,this[b],g);if(b>0)for(e=d;e<g.length;e++)for(f=0;f<d;f++)if(g[f]===g[e]){g.splice(e--,1);break}}return g},has:function(a){var b,c=p(a,this),d=c.length;return this.filter(function(){for(b=0;b<d;b++)if(p.contains(this,c[b]))return!0})},not:function(a){return this.pushStack(bj(this,a,!1),"not",a)},filter:function(a){return this.pushStack(bj(this,a,!0),"filter",a)},is:function(a){return!!a&&(typeof a=="string"?bf.test(a)?p(a,this.context).index(this[0])>=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d<e;d++){c=this[d];while(c&&c.ownerDocument&&c!==b&&c.nodeType!==11){if(g?g.index(c)>-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/<tbody/i,br=/<|&#?\w+;/,bs=/<(?:script|style|link)/i,bt=/<(?:script|object|embed|option|style)/i,bu=new RegExp("<(?:"+bl+")[\\s/>]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*<!(?:\[CDATA\[|\-\-)|[\]\-]{2}>\s*$/g,bz={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X<div>","</div>"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1></$2>");try{for(;d<e;d++)c=this[d]||{},c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),c.innerHTML=a);c=0}catch(f){}}c&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(a){return bh(this[0])?this.length?this.pushStack(p(p.isFunction(a)?a():a),"replaceWith",a):this:p.isFunction(a)?this.each(function(b){var c=p(this),d=c.html();c.replaceWith(a.call(this,b,d))}):(typeof a!="string"&&(a=p(a).detach()),this.each(function(){var b=this.nextSibling,c=this.parentNode;p(this).remove(),b?p(b).before(a):p(c).append(a)}))},detach:function(a){return this.remove(a,!0)},domManip:function(a,c,d){a=[].concat.apply([],a);var e,f,g,h,i=0,j=a[0],k=[],l=this.length;if(!p.support.checkClone&&l>1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i<l;i++)d.call(c&&p.nodeName(this[i],"table")?bC(this[i],"tbody"):this[i],i===h?g:p.clone(g,!0,!0))}g=f=null,k.length&&p.each(k,function(a,b){b.src?p.ajax?p.ajax({url:b.src,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0}):p.error("no ajax"):p.globalEval((b.text||b.textContent||b.innerHTML||"").replace(by,"")),b.parentNode&&b.parentNode.removeChild(b)})}return this}}),p.buildFragment=function(a,c,d){var f,g,h,i=a[0];return c=c||e,c=(c[0]||c).ownerDocument||c[0]||c,typeof c.createDocumentFragment=="undefined"&&(c=e),a.length===1&&typeof i=="string"&&i.length<512&&c===e&&i.charAt(0)==="<"&&!bt.test(i)&&(p.support.checkClone||!bw.test(i))&&(p.support.html5Clone||!bu.test(i))&&(g=!0,f=p.fragments[i],h=f!==b),f||(f=c.createDocumentFragment(),p.clean(a,c,f,d),g&&(p.fragments[i]=h&&f)),{fragment:f,cacheable:g}},p.fragments={},p.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){p.fn[a]=function(c){var d,e=0,f=[],g=p(c),h=g.length,i=this.length===1&&this[0].parentNode;if((i==null||i&&i.nodeType===11&&i.childNodes.length===1)&&h===1)return g[b](this[0]),this;for(;e<h;e++)d=(e>0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=0,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(g=b===e&&bA;(h=a[s])!=null;s++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{g=g||bk(b),l=l||g.appendChild(b.createElement("div")),h=h.replace(bo,"<$1></$2>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]==="<table>"&&!m?l.childNodes:[];for(f=n.length-1;f>=0;--f)p.nodeName(n[f],"tbody")&&!n[f].childNodes.length&&n[f].parentNode.removeChild(n[f])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l=g.lastChild}h.nodeType?t.push(h):t=p.merge(t,h)}l&&(g.removeChild(l),h=l=g=null);if(!p.support.appendChecked)for(s=0;(h=t[s])!=null;s++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(s=0;(h=t[s])!=null;s++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[s+1,0].concat(r)),s+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^margin/,bO=new RegExp("^("+q+")(.*)$","i"),bP=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bQ=new RegExp("^([-+])=("+q+")","i"),bR={},bS={position:"absolute",visibility:"hidden",display:"block"},bT={letterSpacing:0,fontWeight:400,lineHeight:1},bU=["Top","Right","Bottom","Left"],bV=["Webkit","O","Moz","ms"],bW=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return bZ(this,!0)},hide:function(){return bZ(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bW.apply(this,arguments):this.each(function(){(c?a:bY(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bX(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bQ.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bX(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bT&&(f=bT[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(a,b){var c,d,e,f,g=getComputedStyle(a,null),h=a.style;return g&&(c=g[b],c===""&&!p.contains(a.ownerDocument.documentElement,a)&&(c=p.style(a,b)),bP.test(c)&&bN.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=c,c=g.width,h.width=d,h.minWidth=e,h.maxWidth=f)),c}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bP.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth!==0||bH(a,"display")!=="none"?ca(a,b,d):p.swap(a,bS,function(){return ca(a,b,d)})},set:function(a,c,d){return b$(a,c,d?b_(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bP.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bU[d]+b]=e[d]||e[d-2]||e[0];return f}},bN.test(a)||(p.cssHooks[a+b].set=b$)});var cc=/%20/g,cd=/\[\]$/,ce=/\r?\n/g,cf=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,cg=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||cg.test(this.nodeName)||cf.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(ce,"\r\n")}}):{name:b.name,value:c.replace(ce,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ch(d,a[d],c,f);return e.join("&").replace(cc,"+")};var ci,cj,ck=/#.*$/,cl=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cm=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,cn=/^(?:GET|HEAD)$/,co=/^\/\//,cp=/\?/,cq=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,cr=/([?&])_=[^&]*/,cs=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,ct=p.fn.load,cu={},cv={},cw=["*/"]+["*"];try{ci=f.href}catch(cx){ci=e.createElement("a"),ci.href="",ci=ci.href}cj=cs.exec(ci.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&ct)return ct.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("<div>").append(a.replace(cq,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cA(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cA(a,b),a},ajaxSettings:{url:ci,isLocal:cm.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cw},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cy(cu),ajaxTransport:cy(cv),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cB(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cC(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=""+(c||y),k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cl.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(ck,"").replace(co,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=cs.exec(l.url.toLowerCase()),l.crossDomain=!(!i||i[1]==cj[1]&&i[2]==cj[2]&&(i[3]||(i[1]==="http:"?80:443))==(cj[3]||(cj[1]==="http:"?80:443)))),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cz(cu,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!cn.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cp.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cr,"$1_="+z);l.url=A+(A===l.url?(cp.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cw+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cz(cv,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cD=[],cE=/\?/,cF=/(=)\?(?=&|$)|\?\?/,cG=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cD.pop()||p.expando+"_"+cG++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cF.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cF.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cF,"$1"+f):m?c.data=i.replace(cF,"$1"+f):k&&(c.url+=(cE.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cD.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cH,cI=a.ActiveXObject?function(){for(var a in cH)cH[a](0,1)}:!1,cJ=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cK()||cL()}:cK,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cI&&delete cH[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cJ,cI&&(cH||(cH={},p(a).unload(cI)),cH[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cM,cN,cO=/^(?:toggle|show|hide)$/,cP=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cQ=/queueHooks$/,cR=[cX],cS={"*":[function(a,b){var c,d,e,f=this.createTween(a,b),g=cP.exec(b),h=f.cur(),i=+h||0,j=1;if(g){c=+g[2],d=g[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&i){i=p.css(f.elem,a,!0)||c||1;do e=j=j||".5",i=i/j,p.style(f.elem,a,i+d),j=f.cur()/h;while(j!==1&&j!==e)}f.unit=d,f.start=i,f.end=g[1]?i+(g[1]+1)*c:c}return f}]};p.Animation=p.extend(cV,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d<e;d++)c=a[d],cS[c]=cS[c]||[],cS[c].unshift(b)},prefilter:function(a,b){b?cR.unshift(a):cR.push(a)}}),p.Tween=cY,cY.prototype={constructor:cY,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||"swing",this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(p.cssNumber[c]?"":"px")},cur:function(){var a=cY.propHooks[this.prop];return a&&a.get?a.get(this):cY.propHooks._default.get(this)},run:function(a){var b,c=cY.propHooks[this.prop];return this.pos=b=p.easing[this.easing](a,this.options.duration*a,0,1,this.options.duration),this.now=(this.end-this.start)*b+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),c&&c.set?c.set(this):cY.propHooks._default.set(this),this}},cY.prototype.init.prototype=cY.prototype,cY.propHooks={_default:{get:function(a){var b;return a.elem[a.prop]==null||!!a.elem.style&&a.elem.style[a.prop]!=null?(b=p.css(a.elem,a.prop,!1,""),!b||b==="auto"?0:b):a.elem[a.prop]},set:function(a){p.fx.step[a.prop]?p.fx.step[a.prop](a):a.elem.style&&(a.elem.style[p.cssProps[a.prop]]!=null||p.cssHooks[a.prop])?p.style(a.elem,a.prop,a.now+a.unit):a.elem[a.prop]=a.now}}},cY.propHooks.scrollTop=cY.propHooks.scrollLeft={set:function(a){a.elem.nodeType&&a.elem.parentNode&&(a.elem[a.prop]=a.now)}},p.each(["toggle","show","hide"],function(a,b){var c=p.fn[b];p.fn[b]=function(d,e,f){return d==null||typeof d=="boolean"||!a&&p.isFunction(d)&&p.isFunction(e)?c.apply(this,arguments):this.animate(cZ(b,!0),d,e,f)}}),p.fn.extend({fadeTo:function(a,b,c,d){return this.filter(bY).css("opacity",0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=p.isEmptyObject(a),f=p.speed(b,c,d),g=function(){var b=cV(this,p.extend({},a),f);e&&b.stop(!0)};return e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,c,d){var e=function(a){var b=a.stop;delete a.stop,b(d)};return typeof a!="string"&&(d=c,c=a,a=b),c&&a!==!1&&this.queue(a||"fx",[]),this.each(function(){var b=!0,c=a!=null&&a+"queueHooks",f=p.timers,g=p._data(this);if(c)g[c]&&g[c].stop&&e(g[c]);else for(c in g)g[c]&&g[c].stop&&cQ.test(c)&&e(g[c]);for(c=f.length;c--;)f[c].elem===this&&(a==null||f[c].queue===a)&&(f[c].anim.stop(d),b=!1,f.splice(c,1));(b||!d)&&p.dequeue(this,a)})}}),p.each({slideDown:cZ("show"),slideUp:cZ("hide"),slideToggle:cZ("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){p.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),p.speed=function(a,b,c){var d=a&&typeof a=="object"?p.extend({},a):{complete:c||!c&&b||p.isFunction(a)&&a,duration:a,easing:c&&b||b&&!p.isFunction(b)&&b};d.duration=p.fx.off?0:typeof d.duration=="number"?d.duration:d.duration in p.fx.speeds?p.fx.speeds[d.duration]:p.fx.speeds._default;if(d.queue==null||d.queue===!0)d.queue="fx";return d.old=d.complete,d.complete=function(){p.isFunction(d.old)&&d.old.call(this),d.queue&&p.dequeue(this,d.queue)},d},p.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2}},p.timers=[],p.fx=cY.prototype.init,p.fx.tick=function(){var a,b=p.timers,c=0;for(;c<b.length;c++)a=b[c],!a()&&b[c]===a&&b.splice(c--,1);b.length||p.fx.stop()},p.fx.timer=function(a){a()&&p.timers.push(a)&&!cN&&(cN=setInterval(p.fx.tick,p.fx.interval))},p.fx.interval=13,p.fx.stop=function(){clearInterval(cN),cN=null},p.fx.speeds={slow:600,fast:200,_default:400},p.fx.step={},p.expr&&p.expr.filters&&(p.expr.filters.animated=function(a){return p.grep(p.timers,function(b){return a===b.elem}).length});var c$=/^(?:body|html)$/i;p.fn.offset=function(a){if(arguments.length)return a===b?this:this.each(function(b){p.offset.setOffset(this,a,b)});var c,d,e,f,g,h,i,j,k,l,m=this[0],n=m&&m.ownerDocument;if(!n)return;return(e=n.body)===m?p.offset.bodyOffset(m):(d=n.documentElement,p.contains(d,m)?(c=m.getBoundingClientRect(),f=c_(n),g=d.clientTop||e.clientTop||0,h=d.clientLeft||e.clientLeft||0,i=f.pageYOffset||d.scrollTop,j=f.pageXOffset||d.scrollLeft,k=c.top+i-g,l=c.left+j-h,{top:k,left:l}):{top:0,left:0})},p.offset={bodyOffset:function(a){var b=a.offsetTop,c=a.offsetLeft;return p.support.doesNotIncludeMarginInBodyOffset&&(b+=parseFloat(p.css(a,"marginTop"))||0,c+=parseFloat(p.css(a,"marginLeft"))||0),{top:b,left:c}},setOffset:function(a,b,c){var d=p.css(a,"position");d==="static"&&(a.style.position="relative");var e=p(a),f=e.offset(),g=p.css(a,"top"),h=p.css(a,"left"),i=(d==="absolute"||d==="fixed")&&p.inArray("auto",[g,h])>-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c$.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c$.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=c_(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window);
 
  /* Modernizr 2.6.1 (Custom Build) | MIT & BSD
  * Build: http://modernizr.com/download/#-fontface-backgroundsize-borderimage-borderradius-boxshadow-flexbox-hsla-multiplebgs-opacity-rgba-textshadow-cssanimations-csscolumns-generatedcontent-cssgradients-cssreflections-csstransforms-csstransforms3d-csstransitions-applicationcache-canvas-canvastext-draganddrop-hashchange-history-audio-video-indexeddb-input-inputtypes-localstorage-postmessage-sessionstorage-websockets-websqldatabase-webworkers-geolocation-inlinesvg-smil-svg-svgclippaths-touch-webgl-shiv-mq-cssclasses-addtest-prefixed-teststyles-testprop-testallprops-hasevent-prefixes-domprefixes-load
  */
  ;window.Modernizr=function(a,b,c){function D(a){j.cssText=a}function E(a,b){return D(n.join(a+";")+(b||""))}function F(a,b){return typeof a===b}function G(a,b){return!!~(""+a).indexOf(b)}function H(a,b){for(var d in a){var e=a[d];if(!G(e,"-")&&j[e]!==c)return b=="pfx"?e:!0}return!1}function I(a,b,d){for(var e in a){var f=b[a[e]];if(f!==c)return d===!1?a[e]:F(f,"function")?f.bind(d||b):f}return!1}function J(a,b,c){var d=a.charAt(0).toUpperCase()+a.slice(1),e=(a+" "+p.join(d+" ")+d).split(" ");return F(b,"string")||F(b,"undefined")?H(e,b):(e=(a+" "+q.join(d+" ")+d).split(" "),I(e,b,c))}function K(){e.input=function(c){for(var d=0,e=c.length;d<e;d++)u[c[d]]=c[d]in k;return u.list&&(u.list=!!b.createElement("datalist")&&!!a.HTMLDataListElement),u}("autocomplete autofocus list placeholder max min multiple pattern required step".split(" ")),e.inputtypes=function(a){for(var d=0,e,f,h,i=a.length;d<i;d++)k.setAttribute("type",f=a[d]),e=k.type!=="text",e&&(k.value=l,k.style.cssText="position:absolute;visibility:hidden;",/^range$/.test(f)&&k.style.WebkitAppearance!==c?(g.appendChild(k),h=b.defaultView,e=h.getComputedStyle&&h.getComputedStyle(k,null).WebkitAppearance!=="textfield"&&k.offsetHeight!==0,g.removeChild(k)):/^(search|tel)$/.test(f)||(/^(url|email)$/.test(f)?e=k.checkValidity&&k.checkValidity()===!1:e=k.value!=l)),t[a[d]]=!!e;return t}("search tel url email datetime date month week time datetime-local number range color".split(" "))}var d="2.6.1",e={},f=!0,g=b.documentElement,h="modernizr",i=b.createElement(h),j=i.style,k=b.createElement("input"),l=":)",m={}.toString,n=" -webkit- -moz- -o- -ms- ".split(" "),o="Webkit Moz O ms",p=o.split(" "),q=o.toLowerCase().split(" "),r={svg:"http://www.w3.org/2000/svg"},s={},t={},u={},v=[],w=v.slice,x,y=function(a,c,d,e){var f,i,j,k=b.createElement("div"),l=b.body,m=l?l:b.createElement("body");if(parseInt(d,10))while(d--)j=b.createElement("div"),j.id=e?e[d]:h+(d+1),k.appendChild(j);return f=["&#173;",'<style id="s',h,'">',a,"</style>"].join(""),k.id=h,(l?k:m).innerHTML+=f,m.appendChild(k),l||(m.style.background="",g.appendChild(m)),i=c(k,a),l?k.parentNode.removeChild(k):m.parentNode.removeChild(m),!!i},z=function(b){var c=a.matchMedia||a.msMatchMedia;if(c)return c(b).matches;var d;return y("@media "+b+" { #"+h+" { position: absolute; } }",function(b){d=(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle)["position"]=="absolute"}),d},A=function(){function d(d,e){e=e||b.createElement(a[d]||"div"),d="on"+d;var f=d in e;return f||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(d,""),f=F(e[d],"function"),F(e[d],"undefined")||(e[d]=c),e.removeAttribute(d))),e=null,f}var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return d}(),B={}.hasOwnProperty,C;!F(B,"undefined")&&!F(B.call,"undefined")?C=function(a,b){return B.call(a,b)}:C=function(a,b){return b in a&&F(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=w.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(w.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(w.call(arguments)))};return e}),s.flexbox=function(){return J("flexWrap")},s.canvas=function(){var a=b.createElement("canvas");return!!a.getContext&&!!a.getContext("2d")},s.canvastext=function(){return!!e.canvas&&!!F(b.createElement("canvas").getContext("2d").fillText,"function")},s.webgl=function(){return!!a.WebGLRenderingContext},s.touch=function(){var c;return"ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch?c=!0:y(["@media (",n.join("touch-enabled),("),h,")","{#modernizr{top:9px;position:absolute}}"].join(""),function(a){c=a.offsetTop===9}),c},s.geolocation=function(){return"geolocation"in navigator},s.postmessage=function(){return!!a.postMessage},s.websqldatabase=function(){return!!a.openDatabase},s.indexedDB=function(){return!!J("indexedDB",a)},s.hashchange=function(){return A("hashchange",a)&&(b.documentMode===c||b.documentMode>7)},s.history=function(){return!!a.history&&!!history.pushState},s.draganddrop=function(){var a=b.createElement("div");return"draggable"in a||"ondragstart"in a&&"ondrop"in a},s.websockets=function(){return"WebSocket"in a||"MozWebSocket"in a},s.rgba=function(){return D("background-color:rgba(150,255,150,.5)"),G(j.backgroundColor,"rgba")},s.hsla=function(){return D("background-color:hsla(120,40%,100%,.5)"),G(j.backgroundColor,"rgba")||G(j.backgroundColor,"hsla")},s.multiplebgs=function(){return D("background:url(https://),url(https://),red url(https://)"),/(url\s*\(.*?){3}/.test(j.background)},s.backgroundsize=function(){return J("backgroundSize")},s.borderimage=function(){return J("borderImage")},s.borderradius=function(){return J("borderRadius")},s.boxshadow=function(){return J("boxShadow")},s.textshadow=function(){return b.createElement("div").style.textShadow===""},s.opacity=function(){return E("opacity:.55"),/^0.55$/.test(j.opacity)},s.cssanimations=function(){return J("animationName")},s.csscolumns=function(){return J("columnCount")},s.cssgradients=function(){var a="background-image:",b="gradient(linear,left top,right bottom,from(#9f9),to(white));",c="linear-gradient(left top,#9f9, white);";return D((a+"-webkit- ".split(" ").join(b+a)+n.join(c+a)).slice(0,-a.length)),G(j.backgroundImage,"gradient")},s.cssreflections=function(){return J("boxReflect")},s.csstransforms=function(){return!!J("transform")},s.csstransforms3d=function(){var a=!!J("perspective");return a&&"webkitPerspective"in g.style&&y("@media (transform-3d),(-webkit-transform-3d){#modernizr{left:9px;position:absolute;height:3px;}}",function(b,c){a=b.offsetLeft===9&&b.offsetHeight===3}),a},s.csstransitions=function(){return J("transition")},s.fontface=function(){var a;return y('@font-face {font-family:"font";src:url("https://")}',function(c,d){var e=b.getElementById("smodernizr"),f=e.sheet||e.styleSheet,g=f?f.cssRules&&f.cssRules[0]?f.cssRules[0].cssText:f.cssText||"":"";a=/src/i.test(g)&&g.indexOf(d.split(" ")[0])===0}),a},s.generatedcontent=function(){var a;return y(['#modernizr:after{content:"',l,'";visibility:hidden}'].join(""),function(b){a=b.offsetHeight>=1}),a},s.video=function(){var a=b.createElement("video"),c=!1;try{if(c=!!a.canPlayType)c=new Boolean(c),c.ogg=a.canPlayType('video/ogg; codecs="theora"').replace(/^no$/,""),c.h264=a.canPlayType('video/mp4; codecs="avc1.42E01E"').replace(/^no$/,""),c.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"').replace(/^no$/,"")}catch(d){}return c},s.audio=function(){var a=b.createElement("audio"),c=!1;try{if(c=!!a.canPlayType)c=new Boolean(c),c.ogg=a.canPlayType('audio/ogg; codecs="vorbis"').replace(/^no$/,""),c.mp3=a.canPlayType("audio/mpeg;").replace(/^no$/,""),c.wav=a.canPlayType('audio/wav; codecs="1"').replace(/^no$/,""),c.m4a=(a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;")).replace(/^no$/,"")}catch(d){}return c},s.localstorage=function(){try{return localStorage.setItem(h,h),localStorage.removeItem(h),!0}catch(a){return!1}},s.sessionstorage=function(){try{return sessionStorage.setItem(h,h),sessionStorage.removeItem(h),!0}catch(a){return!1}},s.webworkers=function(){return!!a.Worker},s.applicationcache=function(){return!!a.applicationCache},s.svg=function(){return!!b.createElementNS&&!!b.createElementNS(r.svg,"svg").createSVGRect},s.inlinesvg=function(){var a=b.createElement("div");return a.innerHTML="<svg/>",(a.firstChild&&a.firstChild.namespaceURI)==r.svg},s.smil=function(){return!!b.createElementNS&&/SVGAnimate/.test(m.call(b.createElementNS(r.svg,"animate")))},s.svgclippaths=function(){return!!b.createElementNS&&/SVGClipPath/.test(m.call(b.createElementNS(r.svg,"clipPath")))};for(var L in s)C(s,L)&&(x=L.toLowerCase(),e[x]=s[L](),v.push((e[x]?"":"no-")+x));return e.input||K(),e.addTest=function(a,b){if(typeof a=="object")for(var d in a)C(a,d)&&e.addTest(d,a[d]);else{a=a.toLowerCase();if(e[a]!==c)return e;b=typeof b=="function"?b():b,f&&(g.className+=" "+(b?"":"no-")+a),e[a]=b}return e},D(""),i=k=null,function(a,b){function k(a,b){var c=a.createElement("p"),d=a.getElementsByTagName("head")[0]||a.documentElement;return c.innerHTML="x<style>"+b+"</style>",d.insertBefore(c.lastChild,d.firstChild)}function l(){var a=r.elements;return typeof a=="string"?a.split(" "):a}function m(a){var b=i[a[g]];return b||(b={},h++,a[g]=h,i[h]=b),b}function n(a,c,f){c||(c=b);if(j)return c.createElement(a);f||(f=m(c));var g;return f.cache[a]?g=f.cache[a].cloneNode():e.test(a)?g=(f.cache[a]=f.createElem(a)).cloneNode():g=f.createElem(a),g.canHaveChildren&&!d.test(a)?f.frag.appendChild(g):g}function o(a,c){a||(a=b);if(j)return a.createDocumentFragment();c=c||m(a);var d=c.frag.cloneNode(),e=0,f=l(),g=f.length;for(;e<g;e++)d.createElement(f[e]);return d}function p(a,b){b.cache||(b.cache={},b.createElem=a.createElement,b.createFrag=a.createDocumentFragment,b.frag=b.createFrag()),a.createElement=function(c){return r.shivMethods?n(c,a,b):b.createElem(c)},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+l().join().replace(/\w+/g,function(a){return b.createElem(a),b.frag.createElement(a),'c("'+a+'")'})+");return n}")(r,b.frag)}function q(a){a||(a=b);var c=m(a);return r.shivCSS&&!f&&!c.hasCSS&&(c.hasCSS=!!k(a,"article,aside,figcaption,figure,footer,header,hgroup,nav,section{display:block}mark{background:#FF0;color:#000}")),j||p(a,c),a}var c=a.html5||{},d=/^<|^(?:button|map|select|textarea|object|iframe|option|optgroup)$/i,e=/^<|^(?:a|b|button|code|div|fieldset|form|h1|h2|h3|h4|h5|h6|i|iframe|img|input|label|li|link|ol|option|p|param|q|script|select|span|strong|style|table|tbody|td|textarea|tfoot|th|thead|tr|ul)$/i,f,g="_html5shiv",h=0,i={},j;(function(){try{var a=b.createElement("a");a.innerHTML="<xyz></xyz>",f="hidden"in a,j=a.childNodes.length==1||function(){b.createElement("a");var a=b.createDocumentFragment();return typeof a.cloneNode=="undefined"||typeof a.createDocumentFragment=="undefined"||typeof a.createElement=="undefined"}()}catch(c){f=!0,j=!0}})();var r={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,supportsUnknownElements:j,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:q,createElement:n,createDocumentFragment:o};a.html5=r,q(b)}(this,b),e._version=d,e._prefixes=n,e._domPrefixes=q,e._cssomPrefixes=p,e.mq=z,e.hasEvent=A,e.testProp=function(a){return H([a])},e.testAllProps=J,e.testStyles=y,e.prefixed=function(a,b,c){return b?J(a,b,c):J(a,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+v.join(" "):""),e}(this,this.document),function(a,b,c){function d(a){return o.call(a)=="[object Function]"}function e(a){return typeof a=="string"}function f(){}function g(a){return!a||a=="loaded"||a=="complete"||a=="uninitialized"}function h(){var a=p.shift();q=1,a?a.t?m(function(){(a.t=="c"?B.injectCss:B.injectJs)(a.s,0,a.a,a.x,a.e,1)},0):(a(),h()):q=0}function i(a,c,d,e,f,i,j){function k(b){if(!o&&g(l.readyState)&&(u.r=o=1,!q&&h(),l.onload=l.onreadystatechange=null,b)){a!="img"&&m(function(){t.removeChild(l)},50);for(var d in y[c])y[c].hasOwnProperty(d)&&y[c][d].onload()}}var j=j||B.errorTimeout,l={},o=0,r=0,u={t:d,s:c,e:f,a:i,x:j};y[c]===1&&(r=1,y[c]=[],l=b.createElement(a)),a=="object"?l.data=c:(l.src=c,l.type=a),l.width=l.height="0",l.onerror=l.onload=l.onreadystatechange=function(){k.call(this,r)},p.splice(e,0,u),a!="img"&&(r||y[c]===2?(t.insertBefore(l,s?null:n),m(k,j)):y[c].push(l))}function j(a,b,c,d,f){return q=0,b=b||"j",e(a)?i(b=="c"?v:u,a,b,this.i++,c,d,f):(p.splice(this.i++,0,a),p.length==1&&h()),this}function k(){var a=B;return a.loader={load:j,i:0},a}var l=b.documentElement,m=a.setTimeout,n=b.getElementsByTagName("script")[0],o={}.toString,p=[],q=0,r="MozAppearance"in l.style,s=r&&!!b.createRange().compareNode,t=s?l:n.parentNode,l=a.opera&&o.call(a.opera)=="[object Opera]",l=!!b.attachEvent&&!l,u=r?"object":l?"script":"img",v=l?"script":u,w=Array.isArray||function(a){return o.call(a)=="[object Array]"},x=[],y={},z={timeout:function(a,b){return b.length&&(a.timeout=b[0]),a}},A,B;B=function(a){function b(a){var a=a.split("!"),b=x.length,c=a.pop(),d=a.length,c={url:c,origUrl:c,prefixes:a},e,f,g;for(f=0;f<d;f++)g=a[f].split("="),(e=z[g.shift()])&&(c=e(c,g));for(f=0;f<b;f++)c=x[f](c);return c}function g(a,e,f,g,i){var j=b(a),l=j.autoCallback;j.url.split(".").pop().split("?").shift(),j.bypass||(e&&(e=d(e)?e:e[a]||e[g]||e[a.split("/").pop().split("?")[0]]||h),j.instead?j.instead(a,e,f,g,i):(y[j.url]?j.noexec=!0:y[j.url]=1,f.load(j.url,j.forceCSS||!j.forceJS&&"css"==j.url.split(".").pop().split("?").shift()?"c":c,j.noexec,j.attrs,j.timeout),(d(e)||d(l))&&f.load(function(){k(),e&&e(j.origUrl,i,g),l&&l(j.origUrl,i,g),y[j.url]=2})))}function i(a,b){function c(a,c){if(a){if(e(a))c||(j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}),g(a,j,b,0,h);else if(Object(a)===a)for(n in m=function(){var b=0,c;for(c in a)a.hasOwnProperty(c)&&b++;return b}(),a)a.hasOwnProperty(n)&&(!c&&!--m&&(d(j)?j=function(){var a=[].slice.call(arguments);k.apply(this,a),l()}:j[n]=function(a){return function(){var b=[].slice.call(arguments);a&&a.apply(this,b),l()}}(k[n])),g(a[n],j,b,n,h))}else!c&&l()}var h=!!a.test,i=a.load||a.both,j=a.callback||f,k=j,l=a.complete||f,m,n;c(h?a.yep:a.nope,!!i),i&&c(i)}var j,l,m=this.yepnope.loader;if(e(a))g(a,0,m,0);else if(w(a))for(j=0;j<a.length;j++)l=a[j],e(l)?g(l,0,m,0):w(l)?B(l):Object(l)===l&&i(l,m);else Object(a)===a&&i(a,m)},B.addPrefix=function(a,b){z[a]=b},B.addFilter=function(a){x.push(a)},B.errorTimeout=1e4,b.readyState==null&&b.addEventListener&&(b.readyState="loading",b.addEventListener("DOMContentLoaded",A=function(){b.removeEventListener("DOMContentLoaded",A,0),b.readyState="complete"},0)),a.yepnope=k(),a.yepnope.executeStack=h,a.yepnope.injectJs=function(a,c,d,e,i,j){var k=b.createElement("script"),l,o,e=e||B.errorTimeout;k.src=a;for(o in d)k.setAttribute(o,d[o]);c=j?h:c||f,k.onreadystatechange=k.onload=function(){!l&&g(k.readyState)&&(l=1,c(),k.onload=k.onreadystatechange=null)},m(function(){l||(l=1,c(1))},e),i?k.onload():n.parentNode.insertBefore(k,n)},a.yepnope.injectCss=function(a,c,d,e,g,i){var e=b.createElement("link"),j,c=i?h:c||f;e.href=a,e.rel="stylesheet",e.type="text/css";for(j in d)e.setAttribute(j,d[j]);g||(n.parentNode.insertBefore(e,n),m(c,0))}}(this,document),Modernizr.load=function(){yepnope.apply(window,[].slice.call(arguments,0))};
 
  include.path=${php.global.include.path}
  php.version=PHP_5
  source.encoding=UTF-8
  src.dir=.
  tags.asp=false
  tags.short=true
  web.root=.
 
  <?xml version="1.0" encoding="UTF-8"?><project xmlns="http://www.netbeans.org/ns/project/1">
  <type>org.netbeans.modules.php.project</type>
  <configuration>
  <data xmlns="http://www.netbeans.org/ns/php-project/1">
  <name>scannr</name>
  </data>
  </configuration>
  </project>
file:b/output.txt (new)
  Opening serial port...
  Loading notifymyandroid...
  Connecting database...
  Scannr started.
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104431
  Worker for 2012-10-12-1350001603.48-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 208862 frames written to 2012-10-12-1350001603.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  539716
  Worker for 2012-10-12-1350001607.25-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350001607.25-demo.wav has no TGID
  done - result 1079432 frames written to 2012-10-12-1350001607.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350001620.32-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350001620.32-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350001620.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104922
  Worker for 2012-10-12-1350001629.82-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 209844 frames written to 2012-10-12-1350001629.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  146619
  Worker for 2012-10-12-1350001633.44-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 293238 frames written to 2012-10-12-1350001633.44-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  249924
  Worker for 2012-10-12-1350001637.17-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 499848 frames written to 2012-10-12-1350001637.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1676614
  Worker for 2012-10-12-1350001643.71-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350001643.71-demo.wav has no TGID
  done - result 3353228 frames written to 2012-10-12-1350001643.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103409
  Worker for 2012-10-12-1350001687.19-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350001687.19-demo.wav has no TGID
  done - result 206818 frames written to 2012-10-12-1350001687.19-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350001690.07-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350001690.07-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350001690.07-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75976
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  124189
  Worker for 2012-10-12-1350001790.54-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 248378 frames written to 2012-10-12-1350001790.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  585796
  Worker for 2012-10-12-1350001795.16-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350001795.16-demo.wav has no TGID
  done - result 1171592 frames written to 2012-10-12-1350001795.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350001809.26-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350001809.26-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350001809.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350001811.92-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350001811.92-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350001811.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104600
  Worker for 2012-10-12-1350001858.18-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 209200 frames written to 2012-10-12-1350001858.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75423
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  634948
  Worker for 2012-10-12-1350001864.05-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350001864.05-demo.wav has no TGID
  done - result 1269896 frames written to 2012-10-12-1350001864.05-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350001879.27-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350001879.27-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350001879.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  119601
  Worker for 2012-10-12-1350001941.43-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 239202 frames written to 2012-10-12-1350001941.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  125808
  Worker for 2012-10-12-1350001945.62-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 251616 frames written to 2012-10-12-1350001945.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1544360
  Worker for 2012-10-12-1350001948.95-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350001948.95-demo.wav has no TGID
  done - result 3088720 frames written to 2012-10-12-1350001948.95-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350001990.55-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350001990.55-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350001990.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  129707
  Worker for 2012-10-12-1350002030.02-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 259414 frames written to 2012-10-12-1350002030.02-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  141380
  Worker for 2012-10-12-1350002033.49-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 282760 frames written to 2012-10-12-1350002033.49-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  943172
  Worker for 2012-10-12-1350002037.23-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1886344 frames written to 2012-10-12-1350002037.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  787524
  Worker for 2012-10-12-1350002060.63-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002060.63-demo.wav has no TGID
  done - result 1575048 frames written to 2012-10-12-1350002060.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350002079.66-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002079.66-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350002079.66-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  186054
  Worker for 2012-10-12-1350002102.47-demo.wav
  GLG,40078,NFM,0,0,CanberraBlackMnt,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  done - result 372108 frames written to 2012-10-12-1350002102.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  74889
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  640068
  Worker for 2012-10-12-1350002108.8-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002108.8-demo.wav has no TGID
  done - result 1280136 frames written to 2012-10-12-1350002108.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350002124.31-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002124.31-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350002124.31-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350002126.91-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002126.91-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350002126.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  164504
  Worker for 2012-10-12-1350002133.88-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 329008 frames written to 2012-10-12-1350002133.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75598
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  334916
  Worker for 2012-10-12-1350002139.31-demo.wav
  GLG,40068,NFM,0,0,CanberraMtAinsli,AustralianCapita,RFS Ops 1,1,0,NONE,NONE,NONE
  done - result 669832 frames written to 2012-10-12-1350002139.31-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  685124
  Worker for 2012-10-12-1350002148.33-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002148.33-demo.wav has no TGID
  done - result 1370248 frames written to 2012-10-12-1350002148.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350002164.92-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002164.92-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350002164.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350002167.48-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002167.48-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350002167.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97750
  Worker for 2012-10-12-1350002176.08-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002176.08-demo.wav has no TGID
  done - result 195500 frames written to 2012-10-12-1350002176.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104516
  Worker for 2012-10-12-1350002178.72-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002178.72-demo.wav has no TGID
  done - result 209032 frames written to 2012-10-12-1350002178.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  95300
  Worker for 2012-10-12-1350002181.35-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002181.35-demo.wav has no TGID
  done - result 190600 frames written to 2012-10-12-1350002181.35-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104516
  Worker for 2012-10-12-1350002183.84-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 209032 frames written to 2012-10-12-1350002183.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  210368
  Worker for 2012-10-12-1350002187.39-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 420736 frames written to 2012-10-12-1350002187.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2772036
  Worker for 2012-10-12-1350002192.83-demo.wav
  GLG,44010,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44010,1,0,NONE,NONE,NONE
  done - result 5544072 frames written to 2012-10-12-1350002192.83-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  94276
  Worker for 2012-10-12-1350002259.17-demo.wav
  GLG,44010,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44010,1,0,NONE,NONE,NONE
  done - result 188552 frames written to 2012-10-12-1350002259.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  751684
  Worker for 2012-10-12-1350002262.3-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002262.3-demo.wav has no TGID
  done - result 1503368 frames written to 2012-10-12-1350002262.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350002280.47-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002280.47-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350002280.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105189
  Worker for 2012-10-12-1350002314.42-demo.wav
  GLG,40068,NFM,0,0,CanberraBlackMnt,AustralianCapita,RFS Ops 1,1,0,NONE,NONE,NONE
  done - result 210378 frames written to 2012-10-12-1350002314.42-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  532548
  Worker for 2012-10-12-1350002318.25-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002318.25-demo.wav has no TGID
  done - result 1065096 frames written to 2012-10-12-1350002318.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350002331.2-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002331.2-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350002331.2-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350002333.8-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002333.8-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350002333.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  161666
  Worker for 2012-10-12-1350002377.18-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 323332 frames written to 2012-10-12-1350002377.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  659524
  Worker for 2012-10-12-1350002382.98-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002382.98-demo.wav has no TGID
  done - result 1319048 frames written to 2012-10-12-1350002382.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105540
  Worker for 2012-10-12-1350002399.17-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002399.17-demo.wav has no TGID
  done - result 211080 frames written to 2012-10-12-1350002399.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  277168
  Worker for 2012-10-12-1350002471.86-demo.wav
  GLG,30004,NFM,0,0,CanberraBlackMnt,RuralFireSvc-RFS,L GEORG,1,0,NONE,NONE,NONE
  done - result 554336 frames written to 2012-10-12-1350002471.86-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  703556
  Worker for 2012-10-12-1350002479.47-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002479.47-demo.wav has no TGID
  done - result 1407112 frames written to 2012-10-12-1350002479.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350002496.48-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002496.48-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350002496.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350002499.01-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002499.01-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350002499.01-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104391
  Worker for 2012-10-12-1350002606.55-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 208782 frames written to 2012-10-12-1350002606.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  596036
  Worker for 2012-10-12-1350002611.05-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002611.05-demo.wav has no TGID
  done - result 1192072 frames written to 2012-10-12-1350002611.05-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350002625.39-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002625.39-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350002625.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  112989
  Worker for 2012-10-12-1350002813.38-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 225978 frames written to 2012-10-12-1350002813.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  474382
  Worker for 2012-10-12-1350002817.13-demo.wav
  GLG,40078,NFM,0,0,CanberraBlackMnt,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  done - result 948764 frames written to 2012-10-12-1350002817.13-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  713544
  Worker for 2012-10-12-1350002829.48-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1427088 frames written to 2012-10-12-1350002829.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  220927
  Worker for 2012-10-12-1350002847.43-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 441854 frames written to 2012-10-12-1350002847.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  256911
  Worker for 2012-10-12-1350002854.14-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 513822 frames written to 2012-10-12-1350002854.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  382787
  Worker for 2012-10-12-1350002861.19-demo.wav
  GLG,40078,NFM,0,0,CanberraBlackMnt,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  done - result 765574 frames written to 2012-10-12-1350002861.19-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  156699
  Worker for 2012-10-12-1350002870.78-demo.wav
  GLG,40078,NFM,0,0,CanberraBlackMnt,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  done - result 313398 frames written to 2012-10-12-1350002870.78-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  603315
  Worker for 2012-10-12-1350002874.82-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002874.82-demo.wav has no TGID
  done - result 1206630 frames written to 2012-10-12-1350002874.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350002894.1-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002894.1-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350002894.1-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350002896.75-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002896.75-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350002896.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  118975
  Worker for 2012-10-12-1350002901.2-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 237950 frames written to 2012-10-12-1350002901.2-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  160836
  Worker for 2012-10-12-1350002904.27-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 321672 frames written to 2012-10-12-1350002904.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  189508
  Worker for 2012-10-12-1350002910.45-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 379016 frames written to 2012-10-12-1350002910.45-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1001540
  Worker for 2012-10-12-1350002915.23-demo.wav
  GLG,44010,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44010,1,0,NONE,NONE,NONE
  done - result 2003080 frames written to 2012-10-12-1350002915.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  222273
  Worker for 2012-10-12-1350002939.38-demo.wav
  GLG,44010,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44010,1,1,NONE,NONE,NONE
  done - result 444546 frames written to 2012-10-12-1350002939.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  714684
  Worker for 2012-10-12-1350002945.47-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002945.47-demo.wav has no TGID
  done - result 1429368 frames written to 2012-10-12-1350002945.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350002962.75-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002962.75-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350002962.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350002965.7-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350002965.7-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350002965.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  181887
  Worker for 2012-10-12-1350002985.98-demo.wav
  GLG,40078,NFM,0,0,CanberraMtAinsli,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  done - result 363774 frames written to 2012-10-12-1350002985.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  228145
  Worker for 2012-10-12-1350002992.23-demo.wav
  GLG,40078,NFM,0,0,CanberraMtAinsli,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  done - result 456290 frames written to 2012-10-12-1350002992.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  212036
  Worker for 2012-10-12-1350002998.49-demo.wav
  GLG,40078,NFM,0,0,CanberraMtAinsli,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  done - result 424072 frames written to 2012-10-12-1350002998.49-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  215090
  Worker for 2012-10-12-1350003004.47-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350003004.47-demo.wav has no TGID
  done - result 430180 frames written to 2012-10-12-1350003004.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  702526
  Worker for 2012-10-12-1350003009.83-demo.wav
  GLG,40083,NFM,0,0,CanberraMtAinsli,AustralianCapita,SES Ops 6,1,0,NONE,NONE,NONE
  done - result 1405052 frames written to 2012-10-12-1350003009.83-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1322052
  Worker for 2012-10-12-1350003027.34-demo.wav
  GLG,40083,NFM,0,0,CanberraMtAinsli,AustralianCapita,SES Ops 6,1,0,NONE,NONE,NONE
  done - result 2644104 frames written to 2012-10-12-1350003027.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  530794
  Worker for 2012-10-12-1350003059.62-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350003059.62-demo.wav has no TGID
  done - result 1061588 frames written to 2012-10-12-1350003059.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  470084
  Worker for 2012-10-12-1350003073.39-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350003073.39-demo.wav has no TGID
  done - result 940168 frames written to 2012-10-12-1350003073.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350003084.74-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350003084.74-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350003084.74-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  203860
  Worker for 2012-10-12-1350003311.38-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 407720 frames written to 2012-10-12-1350003311.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  155716
  Worker for 2012-10-12-1350003316.69-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 311432 frames written to 2012-10-12-1350003316.69-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1326148
  Worker for 2012-10-12-1350003320.67-demo.wav
  GLG,30004,NFM,0,0,CanberraBlackMnt,RuralFireSvc-RFS,L GEORG,1,0,NONE,NONE,NONE
  done - result 2652296 frames written to 2012-10-12-1350003320.67-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  267313
  Worker for 2012-10-12-1350003353.38-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 534626 frames written to 2012-10-12-1350003353.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  184388
  Worker for 2012-10-12-1350003361.2-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 368776 frames written to 2012-10-12-1350003361.2-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  331844
  Worker for 2012-10-12-1350003366.53-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 663688 frames written to 2012-10-12-1350003366.53-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  199748
  Worker for 2012-10-12-1350003376.05-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 399496 frames written to 2012-10-12-1350003376.05-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  127983
  Worker for 2012-10-12-1350003381.63-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 255966 frames written to 2012-10-12-1350003381.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1385536
  Worker for 2012-10-12-1350003385.26-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 2771072 frames written to 2012-10-12-1350003385.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  110269
  Worker for 2012-10-12-1350003419.17-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 220538 frames written to 2012-10-12-1350003419.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  304882
  Worker for 2012-10-12-1350003422.64-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 609764 frames written to 2012-10-12-1350003422.64-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  979868
  Worker for 2012-10-12-1350003430.26-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350003430.26-demo.wav has no TGID
  done - result 1959736 frames written to 2012-10-12-1350003430.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  107588
  Worker for 2012-10-12-1350003457.26-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350003457.26-demo.wav has no TGID
  done - result 215176 frames written to 2012-10-12-1350003457.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350003459.92-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350003459.92-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350003459.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93252
  Worker for 2012-10-12-1350003462.19-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350003462.19-demo.wav has no TGID
  done - result 186504 frames written to 2012-10-12-1350003462.19-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  81988
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  61141
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  124822
  Worker for 2012-10-12-1350003884.8-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 249644 frames written to 2012-10-12-1350003884.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76644
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  576580
  Worker for 2012-10-12-1350003889.22-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350003889.22-demo.wav has no TGID
  done - result 1153160 frames written to 2012-10-12-1350003889.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350003903.24-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350003903.24-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350003903.24-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  173321
  Worker for 2012-10-12-1350003950.57-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 346642 frames written to 2012-10-12-1350003950.57-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  237636
  Worker for 2012-10-12-1350003955.31-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 475272 frames written to 2012-10-12-1350003955.31-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  137284
  Worker for 2012-10-12-1350003963.39-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 274568 frames written to 2012-10-12-1350003963.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  260164
  Worker for 2012-10-12-1350003967.09-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 520328 frames written to 2012-10-12-1350003967.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  294517
  Worker for 2012-10-12-1350003974.21-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 589034 frames written to 2012-10-12-1350003974.21-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  305220
  Worker for 2012-10-12-1350003981.71-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 610440 frames written to 2012-10-12-1350003981.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  108612
  Worker for 2012-10-12-1350003989.26-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 217224 frames written to 2012-10-12-1350003989.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  141373
  Worker for 2012-10-12-1350003992.46-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 282746 frames written to 2012-10-12-1350003992.46-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  79940
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  763670
  Worker for 2012-10-12-1350003999.38-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350003999.38-demo.wav has no TGID
  done - result 1527340 frames written to 2012-10-12-1350003999.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350004017.85-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004017.85-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350004017.85-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  155785
  Worker for 2012-10-12-1350004056.08-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 311570 frames written to 2012-10-12-1350004056.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  487073
  Worker for 2012-10-12-1350004061.42-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 974146 frames written to 2012-10-12-1350004061.42-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  194628
  Worker for 2012-10-12-1350004073.32-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 389256 frames written to 2012-10-12-1350004073.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  409668
  Worker for 2012-10-12-1350004078.29-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004078.29-demo.wav has no TGID
  done - result 819336 frames written to 2012-10-12-1350004078.29-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  234564
  Worker for 2012-10-12-1350004088.31-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 469128 frames written to 2012-10-12-1350004088.31-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  603094
  Worker for 2012-10-12-1350004094.33-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004094.33-demo.wav has no TGID
  done - result 1206188 frames written to 2012-10-12-1350004094.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104516
  Worker for 2012-10-12-1350004112.57-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004112.57-demo.wav has no TGID
  done - result 209032 frames written to 2012-10-12-1350004112.57-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350004115.5-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004115.5-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350004115.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  112814
  Worker for 2012-10-12-1350004175.23-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 225628 frames written to 2012-10-12-1350004175.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105540
  Worker for 2012-10-12-1350004178.33-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 211080 frames written to 2012-10-12-1350004178.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  419646
  Worker for 2012-10-12-1350004181.13-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 839292 frames written to 2012-10-12-1350004181.13-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1174171
  Worker for 2012-10-12-1350004191.51-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004191.51-demo.wav has no TGID
  done - result 2348342 frames written to 2012-10-12-1350004191.51-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350004224.08-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004224.08-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350004224.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350004226.72-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004226.72-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350004226.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  172049
  Worker for 2012-10-12-1350004247.0-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 344098 frames written to 2012-10-12-1350004247.0-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75288
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  592919
  Worker for 2012-10-12-1350004253.28-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1185838 frames written to 2012-10-12-1350004253.28-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1015458
  Worker for 2012-10-12-1350004267.74-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004267.74-demo.wav has no TGID
  done - result 2030916 frames written to 2012-10-12-1350004267.74-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  117828
  Worker for 2012-10-12-1350004292.19-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 235656 frames written to 2012-10-12-1350004292.19-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  203907
  Worker for 2012-10-12-1350004295.95-demo.wav
  GLG,30004,NFM,0,0,CanberraBlackMnt,RuralFireSvc-RFS,L GEORG,1,0,NONE,NONE,NONE
  done - result 407814 frames written to 2012-10-12-1350004295.95-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  683003
  Worker for 2012-10-12-1350004301.78-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 1366006 frames written to 2012-10-12-1350004301.78-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104516
  Worker for 2012-10-12-1350004318.32-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 209032 frames written to 2012-10-12-1350004318.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  641092
  Worker for 2012-10-12-1350004321.76-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004321.76-demo.wav has no TGID
  done - result 1282184 frames written to 2012-10-12-1350004321.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350004337.33-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004337.33-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350004337.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350004339.94-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004339.94-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350004339.94-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  205636
  Worker for 2012-10-12-1350004343.77-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 411272 frames written to 2012-10-12-1350004343.77-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350004348.83-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 198792 frames written to 2012-10-12-1350004348.83-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  522308
  Worker for 2012-10-12-1350004354.52-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004354.52-demo.wav has no TGID
  done - result 1044616 frames written to 2012-10-12-1350004354.52-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  528474
  Worker for 2012-10-12-1350004367.24-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004367.24-demo.wav has no TGID
  done - result 1056948 frames written to 2012-10-12-1350004367.24-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350004385.35-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004385.35-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350004385.35-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  289385
  Worker for 2012-10-12-1350004428.28-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 578770 frames written to 2012-10-12-1350004428.28-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  220216
  Worker for 2012-10-12-1350004435.33-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 440432 frames written to 2012-10-12-1350004435.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  515436
  Worker for 2012-10-12-1350004442.38-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 1030872 frames written to 2012-10-12-1350004442.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  131140
  Worker for 2012-10-12-1350004454.96-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 262280 frames written to 2012-10-12-1350004454.96-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  309316
  Worker for 2012-10-12-1350004458.74-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 618632 frames written to 2012-10-12-1350004458.74-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  115780
  Worker for 2012-10-12-1350004467.58-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 231560 frames written to 2012-10-12-1350004467.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  232516
  Worker for 2012-10-12-1350004472.07-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 465032 frames written to 2012-10-12-1350004472.07-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  123972
  Worker for 2012-10-12-1350004478.68-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 247944 frames written to 2012-10-12-1350004478.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1652804
  Worker for 2012-10-12-1350004482.16-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004482.16-demo.wav has no TGID
  done - result 3305608 frames written to 2012-10-12-1350004482.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  123972
  Worker for 2012-10-12-1350004521.92-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 247944 frames written to 2012-10-12-1350004521.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  664644
  Worker for 2012-10-12-1350004526.31-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 1329288 frames written to 2012-10-12-1350004526.31-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  241702
  Worker for 2012-10-12-1350004542.36-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 483404 frames written to 2012-10-12-1350004542.36-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  200707
  Worker for 2012-10-12-1350004549.76-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 401414 frames written to 2012-10-12-1350004549.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2696911
  Worker for 2012-10-12-1350004554.81-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004554.81-demo.wav has no TGID
  done - result 5393822 frames written to 2012-10-12-1350004554.81-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103285
  Worker for 2012-10-12-1350004622.62-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004622.62-demo.wav has no TGID
  done - result 206570 frames written to 2012-10-12-1350004622.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350004625.49-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004625.49-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350004625.49-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  132700
  Worker for 2012-10-12-1350004684.22-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 265400 frames written to 2012-10-12-1350004684.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76375
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  384068
  Worker for 2012-10-12-1350004689.16-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 768136 frames written to 2012-10-12-1350004689.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  236612
  Worker for 2012-10-12-1350004699.36-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 473224 frames written to 2012-10-12-1350004699.36-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1338436
  Worker for 2012-10-12-1350004705.59-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004705.59-demo.wav has no TGID
  done - result 2676872 frames written to 2012-10-12-1350004705.59-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  489862
  Worker for 2012-10-12-1350004737.71-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004737.71-demo.wav has no TGID
  done - result 979724 frames written to 2012-10-12-1350004737.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  153668
  Worker for 2012-10-12-1350004755.17-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 307336 frames written to 2012-10-12-1350004755.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  384562
  Worker for 2012-10-12-1350004760.18-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 769124 frames written to 2012-10-12-1350004760.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105540
  Worker for 2012-10-12-1350004769.62-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 211080 frames written to 2012-10-12-1350004769.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1716116
  Worker for 2012-10-12-1350004773.18-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 3432232 frames written to 2012-10-12-1350004773.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1743170
  Worker for 2012-10-12-1350004814.7-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004814.7-demo.wav has no TGID
  done - result 3486340 frames written to 2012-10-12-1350004814.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102349
  Worker for 2012-10-12-1350004861.25-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004861.25-demo.wav has no TGID
  done - result 204698 frames written to 2012-10-12-1350004861.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  107229
  Worker for 2012-10-12-1350004922.22-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 214458 frames written to 2012-10-12-1350004922.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  114756
  Worker for 2012-10-12-1350004928.13-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 229512 frames written to 2012-10-12-1350004928.13-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  270404
  Worker for 2012-10-12-1350004931.17-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 540808 frames written to 2012-10-12-1350004931.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  806620
  Worker for 2012-10-12-1350004938.55-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004938.55-demo.wav has no TGID
  done - result 1613240 frames written to 2012-10-12-1350004938.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  95300
  Worker for 2012-10-12-1350004957.93-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004957.93-demo.wav has no TGID
  done - result 190600 frames written to 2012-10-12-1350004957.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  106662
  Worker for 2012-10-12-1350004964.82-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 213324 frames written to 2012-10-12-1350004964.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75154
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  640068
  Worker for 2012-10-12-1350004970.82-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004970.82-demo.wav has no TGID
  done - result 1280136 frames written to 2012-10-12-1350004970.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350004986.3-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004986.3-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350004986.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350004988.9-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350004988.9-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350004988.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105946
  Worker for 2012-10-12-1350005001.05-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 211892 frames written to 2012-10-12-1350005001.05-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  170052
  Worker for 2012-10-12-1350005003.96-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 340104 frames written to 2012-10-12-1350005003.96-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76868
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  106564
  Worker for 2012-10-12-1350005012.37-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 213128 frames written to 2012-10-12-1350005012.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1860570
  Worker for 2012-10-12-1350005015.27-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005015.27-demo.wav has no TGID
  done - result 3721140 frames written to 2012-10-12-1350005015.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105539
  Worker for 2012-10-12-1350005064.54-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005064.54-demo.wav has no TGID
  done - result 211078 frames written to 2012-10-12-1350005064.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  194025
  Worker for 2012-10-12-1350005118.04-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 388050 frames written to 2012-10-12-1350005118.04-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  355396
  Worker for 2012-10-12-1350005124.06-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 710792 frames written to 2012-10-12-1350005124.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  470084
  Worker for 2012-10-12-1350005132.8-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 940168 frames written to 2012-10-12-1350005132.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  352312
  Worker for 2012-10-12-1350005144.79-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 704624 frames written to 2012-10-12-1350005144.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  139331
  Worker for 2012-10-12-1350005154.87-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 278662 frames written to 2012-10-12-1350005154.87-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  149429
  Worker for 2012-10-12-1350005160.19-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 298858 frames written to 2012-10-12-1350005160.19-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  109634
  Worker for 2012-10-12-1350005163.87-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 219268 frames written to 2012-10-12-1350005163.87-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  79940
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1417281
  Worker for 2012-10-12-1350005168.89-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005168.89-demo.wav has no TGID
  done - result 2834562 frames written to 2012-10-12-1350005168.89-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  727108
  Worker for 2012-10-12-1350005202.89-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005202.89-demo.wav has no TGID
  done - result 1454216 frames written to 2012-10-12-1350005202.89-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350005220.5-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005220.5-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350005220.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350005223.08-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005223.08-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350005223.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  106338
  Worker for 2012-10-12-1350005268.48-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 212676 frames written to 2012-10-12-1350005268.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76291
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  424004
  Worker for 2012-10-12-1350005273.18-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 848008 frames written to 2012-10-12-1350005273.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  320580
  Worker for 2012-10-12-1350005283.75-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 641160 frames written to 2012-10-12-1350005283.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  588868
  Worker for 2012-10-12-1350005291.93-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005291.93-demo.wav has no TGID
  done - result 1177736 frames written to 2012-10-12-1350005291.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  534506
  Worker for 2012-10-12-1350005306.16-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005306.16-demo.wav has no TGID
  done - result 1069012 frames written to 2012-10-12-1350005306.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350005324.03-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005324.03-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350005324.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350005326.63-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005326.63-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350005326.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  151256
  Worker for 2012-10-12-1350005337.27-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 302512 frames written to 2012-10-12-1350005337.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  685937
  Worker for 2012-10-12-1350005344.35-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1371874 frames written to 2012-10-12-1350005344.35-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  173124
  Worker for 2012-10-12-1350005360.99-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 346248 frames written to 2012-10-12-1350005360.99-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  267332
  Worker for 2012-10-12-1350005365.3-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 534664 frames written to 2012-10-12-1350005365.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  869444
  Worker for 2012-10-12-1350005371.9-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1738888 frames written to 2012-10-12-1350005371.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  776260
  Worker for 2012-10-12-1350005393.55-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005393.55-demo.wav has no TGID
  done - result 1552520 frames written to 2012-10-12-1350005393.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350005412.3-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005412.3-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350005412.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  302423
  Worker for 2012-10-12-1350005461.61-demo.wav
  GLG,30004,NFM,0,0,CanberraBlackMnt,RuralFireSvc-RFS,L GEORG,1,0,NONE,NONE,NONE
  done - result 604846 frames written to 2012-10-12-1350005461.61-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  708676
  Worker for 2012-10-12-1350005469.95-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005469.95-demo.wav has no TGID
  done - result 1417352 frames written to 2012-10-12-1350005469.95-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350005487.08-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005487.08-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350005487.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93252
  Worker for 2012-10-12-1350005489.66-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005489.66-demo.wav has no TGID
  done - result 186504 frames written to 2012-10-12-1350005489.66-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  228761
  Worker for 2012-10-12-1350005591.37-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 457522 frames written to 2012-10-12-1350005591.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  74644
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  326724
  Worker for 2012-10-12-1350005598.31-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 653448 frames written to 2012-10-12-1350005598.31-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  202820
  Worker for 2012-10-12-1350005606.57-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 405640 frames written to 2012-10-12-1350005606.57-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  231492
  Worker for 2012-10-12-1350005612.06-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 462984 frames written to 2012-10-12-1350005612.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  254013
  Worker for 2012-10-12-1350005618.25-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 508026 frames written to 2012-10-12-1350005618.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  144452
  Worker for 2012-10-12-1350005624.72-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 288904 frames written to 2012-10-12-1350005624.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  225581
  Worker for 2012-10-12-1350005629.32-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 451162 frames written to 2012-10-12-1350005629.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96321
  Worker for 2012-10-12-1350005634.92-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 192642 frames written to 2012-10-12-1350005634.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  342084
  Worker for 2012-10-12-1350005637.69-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 684168 frames written to 2012-10-12-1350005637.69-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  170052
  Worker for 2012-10-12-1350005647.82-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 340104 frames written to 2012-10-12-1350005647.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  207940
  Worker for 2012-10-12-1350005652.13-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 415880 frames written to 2012-10-12-1350005652.13-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  185412
  Worker for 2012-10-12-1350005658.03-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 370824 frames written to 2012-10-12-1350005658.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  608324
  Worker for 2012-10-12-1350005663.88-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1216648 frames written to 2012-10-12-1350005663.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  108612
  Worker for 2012-10-12-1350005678.58-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 217224 frames written to 2012-10-12-1350005678.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  218180
  Worker for 2012-10-12-1350005681.36-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 436360 frames written to 2012-10-12-1350005681.36-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  244462
  Worker for 2012-10-12-1350005686.71-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 488924 frames written to 2012-10-12-1350005686.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  691254
  Worker for 2012-10-12-1350005692.82-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1382508 frames written to 2012-10-12-1350005692.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102468
  Worker for 2012-10-12-1350005709.58-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 204936 frames written to 2012-10-12-1350005709.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  147524
  Worker for 2012-10-12-1350005713.04-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 295048 frames written to 2012-10-12-1350005713.04-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  129061
  Worker for 2012-10-12-1350005717.44-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 258122 frames written to 2012-10-12-1350005717.44-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  361540
  Worker for 2012-10-12-1350005720.84-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005720.84-demo.wav has no TGID
  done - result 723080 frames written to 2012-10-12-1350005720.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  699460
  Worker for 2012-10-12-1350005729.68-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1398920 frames written to 2012-10-12-1350005729.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  115780
  Worker for 2012-10-12-1350005746.54-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 231560 frames written to 2012-10-12-1350005746.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76868
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  115780
  Worker for 2012-10-12-1350005751.33-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 231560 frames written to 2012-10-12-1350005751.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  473156
  Worker for 2012-10-12-1350005754.95-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005754.95-demo.wav has no TGID
  done - result 946312 frames written to 2012-10-12-1350005754.95-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  772164
  Worker for 2012-10-12-1350005766.46-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005766.46-demo.wav has no TGID
  done - result 1544328 frames written to 2012-10-12-1350005766.46-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350005785.0-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005785.0-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350005785.0-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350005787.56-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005787.56-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350005787.56-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  82903
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  155380
  Worker for 2012-10-12-1350005799.66-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 310760 frames written to 2012-10-12-1350005799.66-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  117828
  Worker for 2012-10-12-1350005803.74-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 235656 frames written to 2012-10-12-1350005803.74-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  676932
  Worker for 2012-10-12-1350005806.77-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005806.77-demo.wav has no TGID
  done - result 1353864 frames written to 2012-10-12-1350005806.77-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  509400
  Worker for 2012-10-12-1350005823.15-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005823.15-demo.wav has no TGID
  done - result 1018800 frames written to 2012-10-12-1350005823.15-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104516
  Worker for 2012-10-12-1350005841.47-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005841.47-demo.wav has no TGID
  done - result 209032 frames written to 2012-10-12-1350005841.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  174902
  Worker for 2012-10-12-1350005910.5-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 349804 frames written to 2012-10-12-1350005910.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  277474
  Worker for 2012-10-12-1350005916.83-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 554948 frames written to 2012-10-12-1350005916.83-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  760900
  Worker for 2012-10-12-1350005927.48-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 1521800 frames written to 2012-10-12-1350005927.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75830
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  419908
  Worker for 2012-10-12-1350005948.06-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 839816 frames written to 2012-10-12-1350005948.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  247876
  Worker for 2012-10-12-1350005959.37-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 495752 frames written to 2012-10-12-1350005959.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  794692
  Worker for 2012-10-12-1350005965.91-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350005965.91-demo.wav has no TGID
  done - result 1589384 frames written to 2012-10-12-1350005965.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  119876
  Worker for 2012-10-12-1350005985.1-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 239752 frames written to 2012-10-12-1350005985.1-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  137205
  Worker for 2012-10-12-1350005988.25-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 274410 frames written to 2012-10-12-1350005988.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  363564
  Worker for 2012-10-12-1350005992.18-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 727128 frames written to 2012-10-12-1350005992.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1370180
  Worker for 2012-10-12-1350006002.96-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006002.96-demo.wav has no TGID
  done - result 2740360 frames written to 2012-10-12-1350006002.96-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  718742
  Worker for 2012-10-12-1350006036.36-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006036.36-demo.wav has no TGID
  done - result 1437484 frames written to 2012-10-12-1350006036.36-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350006053.97-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006053.97-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350006053.97-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350006056.57-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006056.57-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350006056.57-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  83012
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105739
  Worker for 2012-10-12-1350006069.79-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 211478 frames written to 2012-10-12-1350006069.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  79940
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  277572
  Worker for 2012-10-12-1350006075.58-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 555144 frames written to 2012-10-12-1350006075.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  188484
  Worker for 2012-10-12-1350006082.92-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 376968 frames written to 2012-10-12-1350006082.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  195652
  Worker for 2012-10-12-1350006088.72-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 391304 frames written to 2012-10-12-1350006088.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  78916
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  175171
  Worker for 2012-10-12-1350006094.64-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 350342 frames written to 2012-10-12-1350006094.64-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1023519
  Worker for 2012-10-12-1350006099.24-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006099.24-demo.wav has no TGID
  done - result 2047038 frames written to 2012-10-12-1350006099.24-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350006127.98-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006127.98-demo.wav has no TGID
  done - result 206984 frames written to 2012-10-12-1350006127.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  173124
  Worker for 2012-10-12-1350006130.67-demo.wav
  GLG,40091,NFM,0,0,CanberraMtAinsli,AustralianCapita,Fire Mgt,1,0,NONE,NONE,NONE
  done - result 346248 frames written to 2012-10-12-1350006130.67-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  74606
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  145476
  Worker for 2012-10-12-1350006136.33-demo.wav
  GLG,40091,NFM,0,0,CanberraMtAinsli,AustralianCapita,Fire Mgt,1,0,NONE,NONE,NONE
  done - result 290952 frames written to 2012-10-12-1350006136.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  639044
  Worker for 2012-10-12-1350006140.0-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006140.0-demo.wav has no TGID
  done - result 1278088 frames written to 2012-10-12-1350006140.0-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  713796
  Worker for 2012-10-12-1350006155.89-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006155.89-demo.wav has no TGID
  done - result 1427592 frames written to 2012-10-12-1350006155.89-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350006173.17-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006173.17-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350006173.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  228941
  Worker for 2012-10-12-1350006240.76-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 457882 frames written to 2012-10-12-1350006240.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  680004
  Worker for 2012-10-12-1350006247.86-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006247.86-demo.wav has no TGID
  done - result 1360008 frames written to 2012-10-12-1350006247.86-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350006264.41-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006264.41-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350006264.41-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350006266.93-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006266.93-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350006266.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105244
  Worker for 2012-10-12-1350006496.45-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 210488 frames written to 2012-10-12-1350006496.45-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  529476
  Worker for 2012-10-12-1350006500.39-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006500.39-demo.wav has no TGID
  done - result 1058952 frames written to 2012-10-12-1350006500.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350006513.23-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006513.23-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350006513.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  210173
  Worker for 2012-10-12-1350006535.4-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 420346 frames written to 2012-10-12-1350006535.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  74947
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  796738
  Worker for 2012-10-12-1350006542.33-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1593476 frames written to 2012-10-12-1350006542.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  477252
  Worker for 2012-10-12-1350006561.62-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 954504 frames written to 2012-10-12-1350006561.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  140356
  Worker for 2012-10-12-1350006573.3-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 280712 frames written to 2012-10-12-1350006573.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  112672
  Worker for 2012-10-12-1350006578.24-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 225344 frames written to 2012-10-12-1350006578.24-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  457796
  Worker for 2012-10-12-1350006581.06-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 915592 frames written to 2012-10-12-1350006581.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  130116
  Worker for 2012-10-12-1350006592.2-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 260232 frames written to 2012-10-12-1350006592.2-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  286788
  Worker for 2012-10-12-1350006595.82-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 573576 frames written to 2012-10-12-1350006595.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  192533
  Worker for 2012-10-12-1350006604.87-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 385066 frames written to 2012-10-12-1350006604.87-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93224
  Worker for 2012-10-12-1350006609.93-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 186448 frames written to 2012-10-12-1350006609.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  822340
  Worker for 2012-10-12-1350006612.38-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006612.38-demo.wav has no TGID
  done - result 1644680 frames written to 2012-10-12-1350006612.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  769092
  Worker for 2012-10-12-1350006632.07-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1538184 frames written to 2012-10-12-1350006632.07-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  141330
  Worker for 2012-10-12-1350006651.39-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 282660 frames written to 2012-10-12-1350006651.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  127044
  Worker for 2012-10-12-1350006655.08-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 254088 frames written to 2012-10-12-1350006655.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  324676
  Worker for 2012-10-12-1350006658.7-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 649352 frames written to 2012-10-12-1350006658.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  273446
  Worker for 2012-10-12-1350006667.81-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 546892 frames written to 2012-10-12-1350006667.81-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  154691
  Worker for 2012-10-12-1350006674.74-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 309382 frames written to 2012-10-12-1350006674.74-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1934404
  Worker for 2012-10-12-1350006678.97-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 3868808 frames written to 2012-10-12-1350006678.97-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  298052
  Worker for 2012-10-12-1350006726.92-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 596104 frames written to 2012-10-12-1350006726.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  640068
  Worker for 2012-10-12-1350006737.09-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1280136 frames written to 2012-10-12-1350006737.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  542512
  Worker for 2012-10-12-1350006754.59-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1085024 frames written to 2012-10-12-1350006754.59-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350006767.78-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 206984 frames written to 2012-10-12-1350006767.78-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  473156
  Worker for 2012-10-12-1350006771.93-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 946312 frames written to 2012-10-12-1350006771.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1155140
  Worker for 2012-10-12-1350006784.49-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006784.49-demo.wav has no TGID
  done - result 2310280 frames written to 2012-10-12-1350006784.49-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  209988
  Worker for 2012-10-12-1350006812.17-demo.wav
  GLG,40091,NFM,0,0,CanberraMtAinsli,AustralianCapita,Fire Mgt,1,0,NONE,NONE,NONE
  done - result 419976 frames written to 2012-10-12-1350006812.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  122948
  Worker for 2012-10-12-1350006817.6-demo.wav
  GLG,40091,NFM,0,0,CanberraMtAinsli,AustralianCapita,Fire Mgt,1,0,NONE,NONE,NONE
  done - result 245896 frames written to 2012-10-12-1350006817.6-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  602534
  Worker for 2012-10-12-1350006821.03-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006821.03-demo.wav has no TGID
  done - result 1205068 frames written to 2012-10-12-1350006821.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350006838.73-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006838.73-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350006838.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  94276
  Worker for 2012-10-12-1350006841.34-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006841.34-demo.wav has no TGID
  done - result 188552 frames written to 2012-10-12-1350006841.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  139452
  Worker for 2012-10-12-1350006889.71-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 278904 frames written to 2012-10-12-1350006889.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  79940
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  260164
  Worker for 2012-10-12-1350006894.8-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 520328 frames written to 2012-10-12-1350006894.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  173123
  Worker for 2012-10-12-1350006901.3-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 346246 frames written to 2012-10-12-1350006901.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  717235
  Worker for 2012-10-12-1350006906.27-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1434470 frames written to 2012-10-12-1350006906.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1595460
  Worker for 2012-10-12-1350006923.5-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 3190920 frames written to 2012-10-12-1350006923.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  741444
  Worker for 2012-10-12-1350006962.68-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006962.68-demo.wav has no TGID
  done - result 1482888 frames written to 2012-10-12-1350006962.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350006980.63-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350006980.63-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350006980.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  151392
  Worker for 2012-10-12-1350006986.7-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 302784 frames written to 2012-10-12-1350006986.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75257
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  130116
  Worker for 2012-10-12-1350006992.48-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 260232 frames written to 2012-10-12-1350006992.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  142398
  Worker for 2012-10-12-1350006997.31-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 284796 frames written to 2012-10-12-1350006997.31-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  188427
  Worker for 2012-10-12-1350007002.03-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 376854 frames written to 2012-10-12-1350007002.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  206916
  Worker for 2012-10-12-1350007007.38-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 413832 frames written to 2012-10-12-1350007007.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93252
  Worker for 2012-10-12-1350007013.34-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 186504 frames written to 2012-10-12-1350007013.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  976964
  Worker for 2012-10-12-1350007016.41-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007016.41-demo.wav has no TGID
  done - result 1953928 frames written to 2012-10-12-1350007016.41-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  257092
  Worker for 2012-10-12-1350007039.84-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 514184 frames written to 2012-10-12-1350007039.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  107588
  Worker for 2012-10-12-1350007046.21-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 215176 frames written to 2012-10-12-1350007046.21-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  192557
  Worker for 2012-10-12-1350007049.32-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 385114 frames written to 2012-10-12-1350007049.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1728580
  Worker for 2012-10-12-1350007054.07-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 3457160 frames written to 2012-10-12-1350007054.07-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  340690
  Worker for 2012-10-12-1350007095.72-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007095.72-demo.wav has no TGID
  done - result 681380 frames written to 2012-10-12-1350007095.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  389188
  Worker for 2012-10-12-1350007104.13-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 778376 frames written to 2012-10-12-1350007104.13-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1120324
  Worker for 2012-10-12-1350007113.66-demo.wav
  GLG,30004,NFM,0,0,CanberraBlackMnt,RuralFireSvc-RFS,L GEORG,1,0,NONE,NONE,NONE
  done - result 2240648 frames written to 2012-10-12-1350007113.66-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  252099
  Worker for 2012-10-12-1350007141.29-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 504198 frames written to 2012-10-12-1350007141.29-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  241732
  Worker for 2012-10-12-1350007149.29-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 483464 frames written to 2012-10-12-1350007149.29-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  195652
  Worker for 2012-10-12-1350007156.12-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 391304 frames written to 2012-10-12-1350007156.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  229441
  Worker for 2012-10-12-1350007161.02-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 458882 frames written to 2012-10-12-1350007161.02-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  177220
  Worker for 2012-10-12-1350007166.75-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007166.75-demo.wav has no TGID
  done - result 354440 frames written to 2012-10-12-1350007166.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  389669
  Worker for 2012-10-12-1350007171.19-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 779338 frames written to 2012-10-12-1350007171.19-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350007181.17-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 202888 frames written to 2012-10-12-1350007181.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  138308
  Worker for 2012-10-12-1350007183.83-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 276616 frames written to 2012-10-12-1350007183.83-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  592221
  Worker for 2012-10-12-1350007187.93-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007187.93-demo.wav has no TGID
  done - result 1184442 frames written to 2012-10-12-1350007187.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104516
  Worker for 2012-10-12-1350007206.32-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007206.32-demo.wav has no TGID
  done - result 209032 frames written to 2012-10-12-1350007206.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350007208.96-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007208.96-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350007208.96-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93252
  Worker for 2012-10-12-1350007211.35-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007211.35-demo.wav has no TGID
  done - result 186504 frames written to 2012-10-12-1350007211.35-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  188325
  Worker for 2012-10-12-1350007266.07-demo.wav
  GLG,10301,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 376650 frames written to 2012-10-12-1350007266.07-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  123972
  Worker for 2012-10-12-1350007271.44-demo.wav
  GLG,10301,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 247944 frames written to 2012-10-12-1350007271.44-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  335940
  Worker for 2012-10-12-1350007275.04-demo.wav
  GLG,40078,NFM,0,0,CanberraBlackMnt,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  done - result 671880 frames written to 2012-10-12-1350007275.04-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  479207
  Worker for 2012-10-12-1350007285.4-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007285.4-demo.wav has no TGID
  done - result 958414 frames written to 2012-10-12-1350007285.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  106564
  Worker for 2012-10-12-1350007301.38-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007301.38-demo.wav has no TGID
  done - result 213128 frames written to 2012-10-12-1350007301.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350007304.06-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007304.06-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350007304.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  118852
  Worker for 2012-10-12-1350007306.58-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 237704 frames written to 2012-10-12-1350007306.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  116804
  Worker for 2012-10-12-1350007309.77-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 233608 frames written to 2012-10-12-1350007309.77-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  543812
  Worker for 2012-10-12-1350007312.81-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007312.81-demo.wav has no TGID
  done - result 1087624 frames written to 2012-10-12-1350007312.81-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1365925
  Worker for 2012-10-12-1350007326.03-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007326.03-demo.wav has no TGID
  done - result 2731850 frames written to 2012-10-12-1350007326.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  481989
  Worker for 2012-10-12-1350007359.1-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007359.1-demo.wav has no TGID
  done - result 963978 frames written to 2012-10-12-1350007359.1-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350007375.29-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007375.29-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350007375.29-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350007377.87-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007377.87-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350007377.87-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  162581
  Worker for 2012-10-12-1350007424.39-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 325162 frames written to 2012-10-12-1350007424.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  77892
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1275972
  Worker for 2012-10-12-1350007430.39-demo.wav
  GLG,10301,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 2551944 frames written to 2012-10-12-1350007430.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  300907
  Worker for 2012-10-12-1350007461.78-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 601814 frames written to 2012-10-12-1350007461.78-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102468
  Worker for 2012-10-12-1350007469.45-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 204936 frames written to 2012-10-12-1350007469.45-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  609348
  Worker for 2012-10-12-1350007472.1-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007472.1-demo.wav has no TGID
  done - result 1218696 frames written to 2012-10-12-1350007472.1-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  183364
  Worker for 2012-10-12-1350007486.88-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 366728 frames written to 2012-10-12-1350007486.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1292325
  Worker for 2012-10-12-1350007492.26-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 2584650 frames written to 2012-10-12-1350007492.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75045
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  369732
  Worker for 2012-10-12-1350007524.69-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 739464 frames written to 2012-10-12-1350007524.69-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  293956
  Worker for 2012-10-12-1350007534.22-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 587912 frames written to 2012-10-12-1350007534.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  219023
  Worker for 2012-10-12-1350007541.52-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007541.52-demo.wav has no TGID
  done - result 438046 frames written to 2012-10-12-1350007541.52-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  517940
  Worker for 2012-10-12-1350007547.09-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007547.09-demo.wav has no TGID
  done - result 1035880 frames written to 2012-10-12-1350007547.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350007564.98-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007564.98-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350007564.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  44109
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  220546
  Worker for 2012-10-12-1350007611.42-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 441092 frames written to 2012-10-12-1350007611.42-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  149572
  Worker for 2012-10-12-1350007617.06-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 299144 frames written to 2012-10-12-1350007617.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2512666
  Worker for 2012-10-12-1350007621.4-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007621.4-demo.wav has no TGID
  done - result 5025332 frames written to 2012-10-12-1350007621.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  521284
  Worker for 2012-10-12-1350007681.79-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1042568 frames written to 2012-10-12-1350007681.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350007696.14-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 202888 frames written to 2012-10-12-1350007696.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1494084
  Worker for 2012-10-12-1350007699.01-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 2988168 frames written to 2012-10-12-1350007699.01-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  177066
  Worker for 2012-10-12-1350007734.76-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 354132 frames written to 2012-10-12-1350007734.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1182031
  Worker for 2012-10-12-1350007739.44-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007739.44-demo.wav has no TGID
  done - result 2364062 frames written to 2012-10-12-1350007739.44-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350007771.89-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007771.89-demo.wav has no TGID
  done - result 206984 frames written to 2012-10-12-1350007771.89-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350007774.47-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007774.47-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350007774.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  107891
  Worker for 2012-10-12-1350007778.74-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 215782 frames written to 2012-10-12-1350007778.74-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75645
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  605252
  Worker for 2012-10-12-1350007783.93-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007783.93-demo.wav has no TGID
  done - result 1210504 frames written to 2012-10-12-1350007783.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350007798.57-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007798.57-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350007798.57-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  130072
  Worker for 2012-10-12-1350007879.76-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 260144 frames written to 2012-10-12-1350007879.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  168004
  Worker for 2012-10-12-1350007883.4-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 336008 frames written to 2012-10-12-1350007883.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1062980
  Worker for 2012-10-12-1350007887.69-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007887.69-demo.wav has no TGID
  done - result 2125960 frames written to 2012-10-12-1350007887.69-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  316484
  Worker for 2012-10-12-1350007913.25-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 632968 frames written to 2012-10-12-1350007913.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  290840
  Worker for 2012-10-12-1350007921.5-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 581680 frames written to 2012-10-12-1350007921.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  597060
  Worker for 2012-10-12-1350007928.63-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1194120 frames written to 2012-10-12-1350007928.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1114178
  Worker for 2012-10-12-1350007944.41-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350007944.41-demo.wav has no TGID
  done - result 2228356 frames written to 2012-10-12-1350007944.41-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1082415
  Worker for 2012-10-12-1350007971.23-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 2164830 frames written to 2012-10-12-1350007971.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  283129
  Worker for 2012-10-12-1350007997.92-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 566258 frames written to 2012-10-12-1350007997.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  153668
  Worker for 2012-10-12-1350008004.9-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 307336 frames written to 2012-10-12-1350008004.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  175172
  Worker for 2012-10-12-1350008008.76-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 350344 frames written to 2012-10-12-1350008008.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  329447
  Worker for 2012-10-12-1350008013.86-demo.wav
  GLG,10301,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 658894 frames written to 2012-10-12-1350008013.86-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  538608
  Worker for 2012-10-12-1350008022.37-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008022.37-demo.wav has no TGID
  done - result 1077216 frames written to 2012-10-12-1350008022.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350008038.93-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008038.93-demo.wav has no TGID
  done - result 206984 frames written to 2012-10-12-1350008038.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350008041.59-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008041.59-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350008041.59-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  108339
  Worker for 2012-10-12-1350008064.25-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 216678 frames written to 2012-10-12-1350008064.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  182340
  Worker for 2012-10-12-1350008067.86-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 364680 frames written to 2012-10-12-1350008067.86-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  174148
  Worker for 2012-10-12-1350008072.58-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 348296 frames written to 2012-10-12-1350008072.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  777284
  Worker for 2012-10-12-1350008077.66-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008077.66-demo.wav has no TGID
  done - result 1554568 frames written to 2012-10-12-1350008077.66-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350008096.42-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008096.42-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350008096.42-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350008099.21-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008099.21-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350008099.21-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105548
  Worker for 2012-10-12-1350008106.92-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 211096 frames written to 2012-10-12-1350008106.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76474
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  286788
  Worker for 2012-10-12-1350008111.72-demo.wav
  GLG,10301,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 573576 frames written to 2012-10-12-1350008111.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75013
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  547908
  Worker for 2012-10-12-1350008120.08-demo.wav
  GLG,10301,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 1095816 frames written to 2012-10-12-1350008120.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104516
  Worker for 2012-10-12-1350008133.67-demo.wav
  GLG,10301,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 209032 frames written to 2012-10-12-1350008133.67-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  425028
  Worker for 2012-10-12-1350008136.93-demo.wav
  GLG,10301,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 850056 frames written to 2012-10-12-1350008136.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  133188
  Worker for 2012-10-12-1350008147.23-demo.wav
  GLG,10301,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 266376 frames written to 2012-10-12-1350008147.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  160836
  Worker for 2012-10-12-1350008150.6-demo.wav
  GLG,10301,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 321672 frames written to 2012-10-12-1350008150.6-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  409629
  Worker for 2012-10-12-1350008155.15-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 819258 frames written to 2012-10-12-1350008155.15-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  161860
  Worker for 2012-10-12-1350008166.12-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 323720 frames written to 2012-10-12-1350008166.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  754756
  Worker for 2012-10-12-1350008171.12-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008171.12-demo.wav has no TGID
  done - result 1509512 frames written to 2012-10-12-1350008171.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350008189.26-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008189.26-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350008189.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  175344
  Worker for 2012-10-12-1350008197.9-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 350688 frames written to 2012-10-12-1350008197.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  776260
  Worker for 2012-10-12-1350008202.9-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008202.9-demo.wav has no TGID
  done - result 1552520 frames written to 2012-10-12-1350008202.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  315460
  Worker for 2012-10-12-1350008221.61-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 630920 frames written to 2012-10-12-1350008221.61-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  78916
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  701425
  Worker for 2012-10-12-1350008232.27-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008232.27-demo.wav has no TGID
  done - result 1402850 frames written to 2012-10-12-1350008232.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350008249.17-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008249.17-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350008249.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350008251.7-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008251.7-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350008251.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  113336
  Worker for 2012-10-12-1350008263.67-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 226672 frames written to 2012-10-12-1350008263.67-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  77892
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  188484
  Worker for 2012-10-12-1350008268.87-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 376968 frames written to 2012-10-12-1350008268.87-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  163871
  Worker for 2012-10-12-1350008273.57-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 327742 frames written to 2012-10-12-1350008273.57-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  597127
  Worker for 2012-10-12-1350008278.24-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008278.24-demo.wav has no TGID
  done - result 1194254 frames written to 2012-10-12-1350008278.24-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105540
  Worker for 2012-10-12-1350008296.65-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008296.65-demo.wav has no TGID
  done - result 211080 frames written to 2012-10-12-1350008296.65-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350008299.32-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008299.32-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350008299.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  265067
  Worker for 2012-10-12-1350008355.43-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 530134 frames written to 2012-10-12-1350008355.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  187425
  Worker for 2012-10-12-1350008362.95-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 374850 frames written to 2012-10-12-1350008362.95-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  587257
  Worker for 2012-10-12-1350008368.55-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008368.55-demo.wav has no TGID
  done - result 1174514 frames written to 2012-10-12-1350008368.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350008386.88-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008386.88-demo.wav has no TGID
  done - result 206984 frames written to 2012-10-12-1350008386.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  228033
  Worker for 2012-10-12-1350008396.34-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 456066 frames written to 2012-10-12-1350008396.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350008402.09-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 192648 frames written to 2012-10-12-1350008402.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  151620
  Worker for 2012-10-12-1350008404.59-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 303240 frames written to 2012-10-12-1350008404.59-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  77882
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1679428
  Worker for 2012-10-12-1350008410.08-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 3358856 frames written to 2012-10-12-1350008410.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  240850
  Worker for 2012-10-12-1350008451.13-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 481700 frames written to 2012-10-12-1350008451.13-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  283716
  Worker for 2012-10-12-1350008457.26-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 567432 frames written to 2012-10-12-1350008457.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  280627
  Worker for 2012-10-12-1350008464.27-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 561254 frames written to 2012-10-12-1350008464.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  432178
  Worker for 2012-10-12-1350008471.44-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 864356 frames written to 2012-10-12-1350008471.44-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1291667
  Worker for 2012-10-12-1350008482.01-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008482.01-demo.wav has no TGID
  done - result 2583334 frames written to 2012-10-12-1350008482.01-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  106564
  Worker for 2012-10-12-1350008516.37-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008516.37-demo.wav has no TGID
  done - result 213128 frames written to 2012-10-12-1350008516.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350008519.07-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008519.07-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350008519.07-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105889
  Worker for 2012-10-12-1350008583.0-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 211778 frames written to 2012-10-12-1350008583.0-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  644164
  Worker for 2012-10-12-1350008589.07-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008589.07-demo.wav has no TGID
  done - result 1288328 frames written to 2012-10-12-1350008589.07-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350008604.7-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008604.7-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350008604.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  114488
  Worker for 2012-10-12-1350008678.61-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 228976 frames written to 2012-10-12-1350008678.61-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  111684
  Worker for 2012-10-12-1350008681.95-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 223368 frames written to 2012-10-12-1350008681.95-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  133188
  Worker for 2012-10-12-1350008684.85-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 266376 frames written to 2012-10-12-1350008684.85-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  168004
  Worker for 2012-10-12-1350008688.32-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 336008 frames written to 2012-10-12-1350008688.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  592964
  Worker for 2012-10-12-1350008692.6-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1185928 frames written to 2012-10-12-1350008692.6-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  240708
  Worker for 2012-10-12-1350008707.59-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008707.59-demo.wav has no TGID
  done - result 481416 frames written to 2012-10-12-1350008707.59-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  721988
  Worker for 2012-10-12-1350008713.78-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008713.78-demo.wav has no TGID
  done - result 1443976 frames written to 2012-10-12-1350008713.78-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350008731.16-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008731.16-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350008731.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  130980
  Worker for 2012-10-12-1350008746.58-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 261960 frames written to 2012-10-12-1350008746.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  151248
  Worker for 2012-10-12-1350008750.99-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 302496 frames written to 2012-10-12-1350008750.99-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  365622
  Worker for 2012-10-12-1350008755.64-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 731244 frames written to 2012-10-12-1350008755.64-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  147491
  Worker for 2012-10-12-1350008764.85-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 294982 frames written to 2012-10-12-1350008764.85-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  568956
  Worker for 2012-10-12-1350008769.66-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008769.66-demo.wav has no TGID
  done - result 1137912 frames written to 2012-10-12-1350008769.66-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  106035
  Worker for 2012-10-12-1350008787.25-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008787.25-demo.wav has no TGID
  done - result 212070 frames written to 2012-10-12-1350008787.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93252
  Worker for 2012-10-12-1350008790.09-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008790.09-demo.wav has no TGID
  done - result 186504 frames written to 2012-10-12-1350008790.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  213161
  Worker for 2012-10-12-1350008809.01-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 426322 frames written to 2012-10-12-1350008809.01-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  286782
  Worker for 2012-10-12-1350008816.47-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 573564 frames written to 2012-10-12-1350008816.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  783428
  Worker for 2012-10-12-1350008824.25-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008824.25-demo.wav has no TGID
  done - result 1566856 frames written to 2012-10-12-1350008824.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102468
  Worker for 2012-10-12-1350008843.35-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008843.35-demo.wav has no TGID
  done - result 204936 frames written to 2012-10-12-1350008843.35-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  190296
  Worker for 2012-10-12-1350008933.78-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 380592 frames written to 2012-10-12-1350008933.78-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  480425
  Worker for 2012-10-12-1350008940.5-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 960850 frames written to 2012-10-12-1350008940.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  124996
  Worker for 2012-10-12-1350008956.35-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 249992 frames written to 2012-10-12-1350008956.35-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  131140
  Worker for 2012-10-12-1350008959.9-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 262280 frames written to 2012-10-12-1350008959.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  424004
  Worker for 2012-10-12-1350008963.38-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350008963.38-demo.wav has no TGID
  done - result 848008 frames written to 2012-10-12-1350008963.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  181316
  Worker for 2012-10-12-1350008973.75-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 362632 frames written to 2012-10-12-1350008973.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  290884
  Worker for 2012-10-12-1350008981.34-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 581768 frames written to 2012-10-12-1350008981.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350008988.62-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 194696 frames written to 2012-10-12-1350008988.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  146451
  Worker for 2012-10-12-1350008991.84-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 292902 frames written to 2012-10-12-1350008991.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1150020
  Worker for 2012-10-12-1350008996.11-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 2300040 frames written to 2012-10-12-1350008996.11-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  685880
  Worker for 2012-10-12-1350009024.39-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009024.39-demo.wav has no TGID
  done - result 1371760 frames written to 2012-10-12-1350009024.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  107588
  Worker for 2012-10-12-1350009040.99-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009040.99-demo.wav has no TGID
  done - result 215176 frames written to 2012-10-12-1350009040.99-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350009043.84-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009043.84-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350009043.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  116065
  Worker for 2012-10-12-1350009048.42-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 232130 frames written to 2012-10-12-1350009048.42-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76868
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  564292
  Worker for 2012-10-12-1350009052.7-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009052.7-demo.wav has no TGID
  done - result 1128584 frames written to 2012-10-12-1350009052.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350009066.65-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009066.65-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350009066.65-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350009069.24-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009069.24-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350009069.24-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  108612
  Worker for 2012-10-12-1350009071.65-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 217224 frames written to 2012-10-12-1350009071.65-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  527068
  Worker for 2012-10-12-1350009075.37-demo.wav
  GLG,44036,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 1054136 frames written to 2012-10-12-1350009075.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  111684
  Worker for 2012-10-12-1350009089.76-demo.wav
  GLG,44036,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 223368 frames written to 2012-10-12-1350009089.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  263072
  Worker for 2012-10-12-1350009093.94-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009093.94-demo.wav has no TGID
  done - result 526144 frames written to 2012-10-12-1350009093.94-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  245828
  Worker for 2012-10-12-1350009100.32-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 491656 frames written to 2012-10-12-1350009100.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  255044
  Worker for 2012-10-12-1350009108.36-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 510088 frames written to 2012-10-12-1350009108.36-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  591940
  Worker for 2012-10-12-1350009115.76-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 1183880 frames written to 2012-10-12-1350009115.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  462916
  Worker for 2012-10-12-1350009130.93-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009130.93-demo.wav has no TGID
  done - result 925832 frames written to 2012-10-12-1350009130.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350009142.14-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009142.14-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350009142.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105241
  Worker for 2012-10-12-1350009148.27-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 210482 frames written to 2012-10-12-1350009148.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  74970
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  636996
  Worker for 2012-10-12-1350009154.13-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009154.13-demo.wav has no TGID
  done - result 1273992 frames written to 2012-10-12-1350009154.13-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350009169.43-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009169.43-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350009169.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350009171.91-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009171.91-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350009171.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  81988
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105689
  Worker for 2012-10-12-1350009304.87-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 211378 frames written to 2012-10-12-1350009304.87-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  490564
  Worker for 2012-10-12-1350009308.52-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009308.52-demo.wav has no TGID
  done - result 981128 frames written to 2012-10-12-1350009308.52-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350009320.38-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009320.38-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350009320.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  122948
  Worker for 2012-10-12-1350009322.88-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 245896 frames written to 2012-10-12-1350009322.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  216132
  Worker for 2012-10-12-1350009326.09-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 432264 frames written to 2012-10-12-1350009326.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  143428
  Worker for 2012-10-12-1350009331.57-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 286856 frames written to 2012-10-12-1350009331.57-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1027140
  Worker for 2012-10-12-1350009335.66-demo.wav
  GLG,40068,NFM,0,0,CanberraMtAinsli,AustralianCapita,RFS Ops 1,1,0,NONE,NONE,NONE
  done - result 2054280 frames written to 2012-10-12-1350009335.66-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  95300
  Worker for 2012-10-12-1350009360.31-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009360.31-demo.wav has no TGID
  done - result 190600 frames written to 2012-10-12-1350009360.31-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  232841
  Worker for 2012-10-12-1350009363.47-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 465682 frames written to 2012-10-12-1350009363.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1822788
  Worker for 2012-10-12-1350009369.37-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009369.37-demo.wav has no TGID
  done - result 3645576 frames written to 2012-10-12-1350009369.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  654404
  Worker for 2012-10-12-1350009413.02-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1308808 frames written to 2012-10-12-1350009413.02-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  707652
  Worker for 2012-10-12-1350009429.54-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009429.54-demo.wav has no TGID
  done - result 1415304 frames written to 2012-10-12-1350009429.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350009446.55-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009446.55-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350009446.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350009449.09-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009449.09-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350009449.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  112294
  Worker for 2012-10-12-1350009453.37-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 224588 frames written to 2012-10-12-1350009453.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350009456.38-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 196744 frames written to 2012-10-12-1350009456.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  142404
  Worker for 2012-10-12-1350009458.84-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 284808 frames written to 2012-10-12-1350009458.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  173198
  Worker for 2012-10-12-1350009463.3-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 346396 frames written to 2012-10-12-1350009463.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  728132
  Worker for 2012-10-12-1350009469.34-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009469.34-demo.wav has no TGID
  done - result 1456264 frames written to 2012-10-12-1350009469.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350009487.13-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009487.13-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350009487.13-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  61648
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  199619
  Worker for 2012-10-12-1350009620.62-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 399238 frames written to 2012-10-12-1350009620.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  581034
  Worker for 2012-10-12-1350009626.83-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 1162068 frames written to 2012-10-12-1350009626.83-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350009640.97-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 184456 frames written to 2012-10-12-1350009640.97-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350009643.34-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 192648 frames written to 2012-10-12-1350009643.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  176196
  Worker for 2012-10-12-1350009645.88-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 352392 frames written to 2012-10-12-1350009645.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  812653
  Worker for 2012-10-12-1350009650.33-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1625306 frames written to 2012-10-12-1350009650.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  107588
  Worker for 2012-10-12-1350009673.5-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009673.5-demo.wav has no TGID
  done - result 215176 frames written to 2012-10-12-1350009673.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  94276
  Worker for 2012-10-12-1350009676.27-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009676.27-demo.wav has no TGID
  done - result 188552 frames written to 2012-10-12-1350009676.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  117828
  Worker for 2012-10-12-1350009678.66-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 235656 frames written to 2012-10-12-1350009678.66-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  120900
  Worker for 2012-10-12-1350009681.75-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 241800 frames written to 2012-10-12-1350009681.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  200772
  Worker for 2012-10-12-1350009685.49-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 401544 frames written to 2012-10-12-1350009685.49-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  94276
  Worker for 2012-10-12-1350009690.75-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 188552 frames written to 2012-10-12-1350009690.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1042660
  Worker for 2012-10-12-1350009693.19-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009693.19-demo.wav has no TGID
  done - result 2085320 frames written to 2012-10-12-1350009693.19-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  109636
  Worker for 2012-10-12-1350009721.4-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009721.4-demo.wav has no TGID
  done - result 219272 frames written to 2012-10-12-1350009721.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350009724.37-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009724.37-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350009724.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  295118
  Worker for 2012-10-12-1350009777.33-demo.wav
  GLG,30004,NFM,0,0,CanberraBlackMnt,RuralFireSvc-RFS,L GEORG,1,0,NONE,NONE,NONE
  done - result 590236 frames written to 2012-10-12-1350009777.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  335940
  Worker for 2012-10-12-1350009785.14-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 671880 frames written to 2012-10-12-1350009785.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  635972
  Worker for 2012-10-12-1350009795.23-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1271944 frames written to 2012-10-12-1350009795.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  156740
  Worker for 2012-10-12-1350009811.82-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 313480 frames written to 2012-10-12-1350009811.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  218180
  Worker for 2012-10-12-1350009815.75-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 436360 frames written to 2012-10-12-1350009815.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  775236
  Worker for 2012-10-12-1350009821.41-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1550472 frames written to 2012-10-12-1350009821.41-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1937476
  Worker for 2012-10-12-1350009841.62-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 3874952 frames written to 2012-10-12-1350009841.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  156740
  Worker for 2012-10-12-1350009887.98-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 313480 frames written to 2012-10-12-1350009887.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  283716
  Worker for 2012-10-12-1350009892.01-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 567432 frames written to 2012-10-12-1350009892.01-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  306244
  Worker for 2012-10-12-1350009898.97-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009898.97-demo.wav has no TGID
  done - result 612488 frames written to 2012-10-12-1350009898.97-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  168004
  Worker for 2012-10-12-1350009906.54-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 336008 frames written to 2012-10-12-1350009906.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  77892
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  79940
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  132108
  Worker for 2012-10-12-1350009913.3-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 264216 frames written to 2012-10-12-1350009913.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84631
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  484755
  Worker for 2012-10-12-1350009918.09-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009918.09-demo.wav has no TGID
  done - result 969510 frames written to 2012-10-12-1350009918.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  506214
  Worker for 2012-10-12-1350009929.93-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009929.93-demo.wav has no TGID
  done - result 1012428 frames written to 2012-10-12-1350009929.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  95300
  Worker for 2012-10-12-1350009947.84-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009947.84-demo.wav has no TGID
  done - result 190600 frames written to 2012-10-12-1350009947.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350009950.32-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350009950.32-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350009950.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  176598
  Worker for 2012-10-12-1350010124.15-demo.wav
  GLG,40078,NFM,0,0,CanberraBlackMnt,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  done - result 353196 frames written to 2012-10-12-1350010124.15-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75279
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  451652
  Worker for 2012-10-12-1350010130.44-demo.wav
  GLG,40078,NFM,0,0,CanberraBlackMnt,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  done - result 903304 frames written to 2012-10-12-1350010130.44-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  343864
  Worker for 2012-10-12-1350010142.33-demo.wav
  GLG,40068,NFM,0,0,CanberraMtAinsli,AustralianCapita,RFS Ops 1,1,0,NONE,NONE,NONE
  done - result 687728 frames written to 2012-10-12-1350010142.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  405572
  Worker for 2012-10-12-1350010150.75-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010150.75-demo.wav has no TGID
  done - result 811144 frames written to 2012-10-12-1350010150.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  379051
  Worker for 2012-10-12-1350010161.06-demo.wav
  GLG,40078,NFM,0,0,CanberraBlackMnt,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  done - result 758102 frames written to 2012-10-12-1350010161.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  489315
  Worker for 2012-10-12-1350010171.16-demo.wav
  GLG,30004,NFM,0,0,CanberraBlackMnt,RuralFireSvc-RFS,L GEORG,1,0,NONE,NONE,NONE
  done - result 978630 frames written to 2012-10-12-1350010171.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  220199
  Worker for 2012-10-12-1350010185.29-demo.wav
  GLG,30004,NFM,0,0,CanberraBlackMnt,RuralFireSvc-RFS,L GEORG,1,0,NONE,NONE,NONE
  done - result 440398 frames written to 2012-10-12-1350010185.29-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  82920
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  374020
  Worker for 2012-10-12-1350010192.77-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 748040 frames written to 2012-10-12-1350010192.77-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  743131
  Worker for 2012-10-12-1350010202.89-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010202.89-demo.wav has no TGID
  done - result 1486262 frames written to 2012-10-12-1350010202.89-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350010220.86-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010220.86-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350010220.86-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  120485
  Worker for 2012-10-12-1350010242.42-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 240970 frames written to 2012-10-12-1350010242.42-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75643
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  441412
  Worker for 2012-10-12-1350010247.31-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 882824 frames written to 2012-10-12-1350010247.31-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1685572
  Worker for 2012-10-12-1350010258.39-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010258.39-demo.wav has no TGID
  done - result 3371144 frames written to 2012-10-12-1350010258.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  221252
  Worker for 2012-10-12-1350010298.71-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 442504 frames written to 2012-10-12-1350010298.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350010305.06-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 202888 frames written to 2012-10-12-1350010305.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  115730
  Worker for 2012-10-12-1350010307.96-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 231460 frames written to 2012-10-12-1350010307.96-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  343776
  Worker for 2012-10-12-1350010311.62-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 687552 frames written to 2012-10-12-1350010311.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  582724
  Worker for 2012-10-12-1350010321.16-demo.wav
  GLG,40078,NFM,0,0,CanberraBlackMnt,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  done - result 1165448 frames written to 2012-10-12-1350010321.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  149572
  Worker for 2012-10-12-1350010336.58-demo.wav
  GLG,40078,NFM,0,0,CanberraBlackMnt,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  done - result 299144 frames written to 2012-10-12-1350010336.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1968542
  Worker for 2012-10-12-1350010340.42-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010340.42-demo.wav has no TGID
  done - result 3937084 frames written to 2012-10-12-1350010340.42-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101310
  Worker for 2012-10-12-1350010392.72-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010392.72-demo.wav has no TGID
  done - result 202620 frames written to 2012-10-12-1350010392.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  152235
  Worker for 2012-10-12-1350010468.9-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 304470 frames written to 2012-10-12-1350010468.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  355197
  Worker for 2012-10-12-1350010473.8-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 710394 frames written to 2012-10-12-1350010473.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  74830
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  396356
  Worker for 2012-10-12-1350010483.92-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 792712 frames written to 2012-10-12-1350010483.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  112708
  Worker for 2012-10-12-1350010494.11-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 225416 frames written to 2012-10-12-1350010494.11-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  147524
  Worker for 2012-10-12-1350010497.06-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 295048 frames written to 2012-10-12-1350010497.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  3864644
  Worker for 2012-10-12-1350010500.79-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010500.79-demo.wav has no TGID
  done - result 7729288 frames written to 2012-10-12-1350010500.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  762948
  Worker for 2012-10-12-1350010593.4-demo.wav
  GLG,44010,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44010,1,0,NONE,NONE,NONE
  done - result 1525896 frames written to 2012-10-12-1350010593.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  527428
  Worker for 2012-10-12-1350010611.83-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010611.83-demo.wav has no TGID
  done - result 1054856 frames written to 2012-10-12-1350010611.83-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  496433
  Worker for 2012-10-12-1350010624.49-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010624.49-demo.wav has no TGID
  done - result 992866 frames written to 2012-10-12-1350010624.49-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350010642.22-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010642.22-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350010642.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  160128
  Worker for 2012-10-12-1350010660.35-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 320256 frames written to 2012-10-12-1350010660.35-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  95300
  Worker for 2012-10-12-1350010665.63-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 190600 frames written to 2012-10-12-1350010665.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  286768
  Worker for 2012-10-12-1350010668.76-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,1,NONE,NONE,NONE
  done - result 573536 frames written to 2012-10-12-1350010668.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1068182
  Worker for 2012-10-12-1350010675.85-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010675.85-demo.wav has no TGID
  done - result 2136364 frames written to 2012-10-12-1350010675.85-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350010705.4-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010705.4-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350010705.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  122782
  Worker for 2012-10-12-1350010787.04-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 245564 frames written to 2012-10-12-1350010787.04-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  113732
  Worker for 2012-10-12-1350010790.85-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 227464 frames written to 2012-10-12-1350010790.85-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  249924
  Worker for 2012-10-12-1350010794.23-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 499848 frames written to 2012-10-12-1350010794.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1051024
  Worker for 2012-10-12-1350010800.53-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010800.53-demo.wav has no TGID
  done - result 2102048 frames written to 2012-10-12-1350010800.53-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105540
  Worker for 2012-10-12-1350010829.67-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010829.67-demo.wav has no TGID
  done - result 211080 frames written to 2012-10-12-1350010829.67-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350010832.33-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010832.33-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350010832.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  151232
  Worker for 2012-10-12-1350010942.63-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 302464 frames written to 2012-10-12-1350010942.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104516
  Worker for 2012-10-12-1350010947.04-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 209032 frames written to 2012-10-12-1350010947.04-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2061380
  Worker for 2012-10-12-1350010950.2-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 4122760 frames written to 2012-10-12-1350010950.2-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  649627
  Worker for 2012-10-12-1350010999.58-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350010999.58-demo.wav has no TGID
  done - result 1299254 frames written to 2012-10-12-1350010999.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350011019.94-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011019.94-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350011019.94-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93252
  Worker for 2012-10-12-1350011022.56-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011022.56-demo.wav has no TGID
  done - result 186504 frames written to 2012-10-12-1350011022.56-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  107818
  Worker for 2012-10-12-1350011028.18-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 215636 frames written to 2012-10-12-1350011028.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  110660
  Worker for 2012-10-12-1350011031.16-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 221320 frames written to 2012-10-12-1350011031.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  216132
  Worker for 2012-10-12-1350011034.06-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 432264 frames written to 2012-10-12-1350011034.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  187460
  Worker for 2012-10-12-1350011039.61-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 374920 frames written to 2012-10-12-1350011039.61-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  825412
  Worker for 2012-10-12-1350011044.26-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011044.26-demo.wav has no TGID
  done - result 1650824 frames written to 2012-10-12-1350011044.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  329796
  Worker for 2012-10-12-1350011064.07-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 659592 frames written to 2012-10-12-1350011064.07-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  169015
  Worker for 2012-10-12-1350011072.2-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 338030 frames written to 2012-10-12-1350011072.2-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  156367
  Worker for 2012-10-12-1350011076.43-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 312734 frames written to 2012-10-12-1350011076.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  772162
  Worker for 2012-10-12-1350011081.0-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011081.0-demo.wav has no TGID
  done - result 1544324 frames written to 2012-10-12-1350011081.0-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350011099.75-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011099.75-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350011099.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350011102.3-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011102.3-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350011102.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  107588
  Worker for 2012-10-12-1350011104.58-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 215176 frames written to 2012-10-12-1350011104.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  249061
  Worker for 2012-10-12-1350011110.59-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 498122 frames written to 2012-10-12-1350011110.59-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  77892
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  217115
  Worker for 2012-10-12-1350011119.42-demo.wav
  GLG,44010,NFM,0,0,CanberraMtAinsli,AustralianCapita,ACTION 44010,1,0,NONE,NONE,NONE
  done - result 434230 frames written to 2012-10-12-1350011119.42-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  209250
  Worker for 2012-10-12-1350011125.47-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 418500 frames written to 2012-10-12-1350011125.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  691268
  Worker for 2012-10-12-1350011131.49-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011131.49-demo.wav has no TGID
  done - result 1382536 frames written to 2012-10-12-1350011131.49-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350011148.23-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011148.23-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350011148.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  127259
  Worker for 2012-10-12-1350011162.09-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 254518 frames written to 2012-10-12-1350011162.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  485432
  Worker for 2012-10-12-1350011166.77-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 970864 frames written to 2012-10-12-1350011166.77-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  198669
  Worker for 2012-10-12-1350011178.62-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 397338 frames written to 2012-10-12-1350011178.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  79940
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  767044
  Worker for 2012-10-12-1350011187.22-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011187.22-demo.wav has no TGID
  done - result 1534088 frames written to 2012-10-12-1350011187.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  95300
  Worker for 2012-10-12-1350011205.68-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011205.68-demo.wav has no TGID
  done - result 190600 frames written to 2012-10-12-1350011205.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  241284
  Worker for 2012-10-12-1350011225.79-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 482568 frames written to 2012-10-12-1350011225.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  94276
  Worker for 2012-10-12-1350011231.86-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 188552 frames written to 2012-10-12-1350011231.86-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  195652
  Worker for 2012-10-12-1350011234.29-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 391304 frames written to 2012-10-12-1350011234.29-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  308292
  Worker for 2012-10-12-1350011239.55-demo.wav
  GLG,44010,NFM,0,0,CanberraMtAinsli,AustralianCapita,ACTION 44010,1,0,NONE,NONE,NONE
  done - result 616584 frames written to 2012-10-12-1350011239.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93251
  Worker for 2012-10-12-1350011247.21-demo.wav
  GLG,44010,NFM,0,0,CanberraMtAinsli,AustralianCapita,ACTION 44010,1,0,NONE,NONE,NONE
  done - result 186502 frames written to 2012-10-12-1350011247.21-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  131128
  Worker for 2012-10-12-1350011249.69-demo.wav
  GLG,44010,NFM,0,0,CanberraMtAinsli,AustralianCapita,ACTION 44010,1,0,NONE,NONE,NONE
  done - result 262256 frames written to 2012-10-12-1350011249.69-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  799812
  Worker for 2012-10-12-1350011253.04-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1599624 frames written to 2012-10-12-1350011253.04-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  107588
  Worker for 2012-10-12-1350011272.38-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 215176 frames written to 2012-10-12-1350011272.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  747586
  Worker for 2012-10-12-1350011275.65-demo.wav
  GLG,40078,NFM,0,0,CanberraBlackMnt,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  done - result 1495172 frames written to 2012-10-12-1350011275.65-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  297975
  Worker for 2012-10-12-1350011294.37-demo.wav
  GLG,40078,NFM,0,0,CanberraBlackMnt,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  done - result 595950 frames written to 2012-10-12-1350011294.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  434951
  Worker for 2012-10-12-1350011301.88-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011301.88-demo.wav has no TGID
  done - result 869902 frames written to 2012-10-12-1350011301.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  522248
  Worker for 2012-10-12-1350011312.41-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011312.41-demo.wav has no TGID
  done - result 1044496 frames written to 2012-10-12-1350011312.41-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350011330.78-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011330.78-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350011330.78-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  220765
  Worker for 2012-10-12-1350011358.28-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 441530 frames written to 2012-10-12-1350011358.28-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  498034
  Worker for 2012-10-12-1350011365.37-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011365.37-demo.wav has no TGID
  done - result 996068 frames written to 2012-10-12-1350011365.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  109636
  Worker for 2012-10-12-1350011380.85-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011380.85-demo.wav has no TGID
  done - result 219272 frames written to 2012-10-12-1350011380.85-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  94276
  Worker for 2012-10-12-1350011383.73-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011383.73-demo.wav has no TGID
  done - result 188552 frames written to 2012-10-12-1350011383.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  112970
  Worker for 2012-10-12-1350011402.9-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 225940 frames written to 2012-10-12-1350011402.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  144452
  Worker for 2012-10-12-1350011406.78-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 288904 frames written to 2012-10-12-1350011406.78-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  144452
  Worker for 2012-10-12-1350011412.68-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 288904 frames written to 2012-10-12-1350011412.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  138308
  Worker for 2012-10-12-1350011416.43-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 276616 frames written to 2012-10-12-1350011416.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  723012
  Worker for 2012-10-12-1350011419.96-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011419.96-demo.wav has no TGID
  done - result 1446024 frames written to 2012-10-12-1350011419.96-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  266308
  Worker for 2012-10-12-1350011437.46-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 532616 frames written to 2012-10-12-1350011437.46-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  766020
  Worker for 2012-10-12-1350011445.09-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011445.09-demo.wav has no TGID
  done - result 1532040 frames written to 2012-10-12-1350011445.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350011463.63-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011463.63-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350011463.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  44106
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105734
  Worker for 2012-10-12-1350011512.91-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 211468 frames written to 2012-10-12-1350011512.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  514116
  Worker for 2012-10-12-1350011516.73-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011516.73-demo.wav has no TGID
  done - result 1028232 frames written to 2012-10-12-1350011516.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350011529.38-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011529.38-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350011529.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  106128
  Worker for 2012-10-12-1350011542.49-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 212256 frames written to 2012-10-12-1350011542.49-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  132164
  Worker for 2012-10-12-1350011545.47-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 264328 frames written to 2012-10-12-1350011545.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  358468
  Worker for 2012-10-12-1350011548.91-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 716936 frames written to 2012-10-12-1350011548.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  434244
  Worker for 2012-10-12-1350011558.14-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 868488 frames written to 2012-10-12-1350011558.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  74661
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  678980
  Worker for 2012-10-12-1350011570.19-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011570.19-demo.wav has no TGID
  done - result 1357960 frames written to 2012-10-12-1350011570.19-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350011586.75-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011586.75-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350011586.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350011589.31-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011589.31-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350011589.31-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  81988
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  187357
  Worker for 2012-10-12-1350011707.77-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 374714 frames written to 2012-10-12-1350011707.77-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1121563
  Worker for 2012-10-12-1350011713.62-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 2243126 frames written to 2012-10-12-1350011713.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  740359
  Worker for 2012-10-12-1350011741.33-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011741.33-demo.wav has no TGID
  done - result 1480718 frames written to 2012-10-12-1350011741.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  238660
  Worker for 2012-10-12-1350011759.23-demo.wav
  GLG,44010,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44010,1,0,NONE,NONE,NONE
  done - result 477320 frames written to 2012-10-12-1350011759.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  113716
  Worker for 2012-10-12-1350011765.65-demo.wav
  GLG,44010,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44010,1,0,NONE,NONE,NONE
  done - result 227432 frames written to 2012-10-12-1350011765.65-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  547908
  Worker for 2012-10-12-1350011768.62-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011768.62-demo.wav has no TGID
  done - result 1095816 frames written to 2012-10-12-1350011768.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  515799
  Worker for 2012-10-12-1350011781.88-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011781.88-demo.wav has no TGID
  done - result 1031598 frames written to 2012-10-12-1350011781.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350011799.89-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011799.89-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350011799.89-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93252
  Worker for 2012-10-12-1350011802.51-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011802.51-demo.wav has no TGID
  done - result 186504 frames written to 2012-10-12-1350011802.51-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  108315
  Worker for 2012-10-12-1350011822.87-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 216630 frames written to 2012-10-12-1350011822.87-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  138110
  Worker for 2012-10-12-1350011827.01-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 276220 frames written to 2012-10-12-1350011827.01-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1620036
  Worker for 2012-10-12-1350011831.4-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011831.4-demo.wav has no TGID
  done - result 3240072 frames written to 2012-10-12-1350011831.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  625732
  Worker for 2012-10-12-1350011870.29-demo.wav
  GLG,44027,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1251464 frames written to 2012-10-12-1350011870.29-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  300855
  Worker for 2012-10-12-1350011886.49-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 601710 frames written to 2012-10-12-1350011886.49-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  579996
  Worker for 2012-10-12-1350011894.65-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1159992 frames written to 2012-10-12-1350011894.65-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  136985
  Worker for 2012-10-12-1350011909.66-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 273970 frames written to 2012-10-12-1350011909.66-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  176196
  Worker for 2012-10-12-1350011913.55-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 352392 frames written to 2012-10-12-1350011913.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  555978
  Worker for 2012-10-12-1350011918.03-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1111956 frames written to 2012-10-12-1350011918.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  166980
  Worker for 2012-10-12-1350011931.55-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,1,NONE,NONE,NONE
  done - result 333960 frames written to 2012-10-12-1350011931.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  281503
  Worker for 2012-10-12-1350011936.17-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 563006 frames written to 2012-10-12-1350011936.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  545860
  Worker for 2012-10-12-1350011943.2-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011943.2-demo.wav has no TGID
  done - result 1091720 frames written to 2012-10-12-1350011943.2-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  512874
  Worker for 2012-10-12-1350011956.38-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011956.38-demo.wav has no TGID
  done - result 1025748 frames written to 2012-10-12-1350011956.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350011974.1-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011974.1-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350011974.1-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350011976.75-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350011976.75-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350011976.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  153169
  Worker for 2012-10-12-1350012034.92-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 306338 frames written to 2012-10-12-1350012034.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  141380
  Worker for 2012-10-12-1350012038.82-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 282760 frames written to 2012-10-12-1350012038.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  178244
  Worker for 2012-10-12-1350012042.73-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 356488 frames written to 2012-10-12-1350012042.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  370756
  Worker for 2012-10-12-1350012047.26-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012047.26-demo.wav has no TGID
  done - result 741512 frames written to 2012-10-12-1350012047.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  516952
  Worker for 2012-10-12-1350012056.27-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012056.27-demo.wav has no TGID
  done - result 1033904 frames written to 2012-10-12-1350012056.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350012074.06-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012074.06-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350012074.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  56855
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  155563
  Worker for 2012-10-12-1350012103.47-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 311126 frames written to 2012-10-12-1350012103.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  113732
  Worker for 2012-10-12-1350012107.54-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 227464 frames written to 2012-10-12-1350012107.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  394308
  Worker for 2012-10-12-1350012110.43-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 788616 frames written to 2012-10-12-1350012110.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2791460
  Worker for 2012-10-12-1350012120.17-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 5582920 frames written to 2012-10-12-1350012120.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  320580
  Worker for 2012-10-12-1350012186.81-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012186.81-demo.wav has no TGID
  done - result 641160 frames written to 2012-10-12-1350012186.81-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  535119
  Worker for 2012-10-12-1350012194.56-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012194.56-demo.wav has no TGID
  done - result 1070238 frames written to 2012-10-12-1350012194.56-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350012212.41-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012212.41-demo.wav has no TGID
  done - result 206984 frames written to 2012-10-12-1350012212.41-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350012215.12-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012215.12-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350012215.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86077
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  120070
  Worker for 2012-10-12-1350012223.39-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 240140 frames written to 2012-10-12-1350012223.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  284146
  Worker for 2012-10-12-1350012227.52-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 568292 frames written to 2012-10-12-1350012227.52-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  227396
  Worker for 2012-10-12-1350012234.73-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 454792 frames written to 2012-10-12-1350012234.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  193597
  Worker for 2012-10-12-1350012240.38-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 387194 frames written to 2012-10-12-1350012240.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  758490
  Worker for 2012-10-12-1350012245.18-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012245.18-demo.wav has no TGID
  done - result 1516980 frames written to 2012-10-12-1350012245.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350012267.81-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012267.81-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350012267.81-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350012270.44-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012270.44-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350012270.44-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  297538
  Worker for 2012-10-12-1350012359.48-demo.wav
  GLG,44010,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44010,1,0,NONE,NONE,NONE
  done - result 595076 frames written to 2012-10-12-1350012359.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  516031
  Worker for 2012-10-12-1350012367.26-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012367.26-demo.wav has no TGID
  done - result 1032062 frames written to 2012-10-12-1350012367.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350012383.75-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012383.75-demo.wav has no TGID
  done - result 206984 frames written to 2012-10-12-1350012383.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350012386.46-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012386.46-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350012386.46-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  291736
  Worker for 2012-10-12-1350012392.15-demo.wav
  GLG,44010,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44010,1,0,NONE,NONE,NONE
  done - result 583472 frames written to 2012-10-12-1350012392.15-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  723550
  Worker for 2012-10-12-1350012400.22-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1447100 frames written to 2012-10-12-1350012400.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  246852
  Worker for 2012-10-12-1350012419.89-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 493704 frames written to 2012-10-12-1350012419.89-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1066457
  Worker for 2012-10-12-1350012426.09-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012426.09-demo.wav has no TGID
  done - result 2132914 frames written to 2012-10-12-1350012426.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350012456.18-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012456.18-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350012456.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  163841
  Worker for 2012-10-12-1350012468.6-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 327682 frames written to 2012-10-12-1350012468.6-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  152644
  Worker for 2012-10-12-1350012472.8-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 305288 frames written to 2012-10-12-1350012472.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  197700
  Worker for 2012-10-12-1350012476.71-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 395400 frames written to 2012-10-12-1350012476.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  229444
  Worker for 2012-10-12-1350012482.04-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012482.04-demo.wav has no TGID
  done - result 458888 frames written to 2012-10-12-1350012482.04-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  593782
  Worker for 2012-10-12-1350012487.71-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012487.71-demo.wav has no TGID
  done - result 1187564 frames written to 2012-10-12-1350012487.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350012506.16-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012506.16-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350012506.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  178244
  Worker for 2012-10-12-1350012508.67-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 356488 frames written to 2012-10-12-1350012508.67-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  111684
  Worker for 2012-10-12-1350012513.39-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 223368 frames written to 2012-10-12-1350012513.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  855108
  Worker for 2012-10-12-1350012516.87-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012516.87-demo.wav has no TGID
  done - result 1710216 frames written to 2012-10-12-1350012516.87-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  747588
  Worker for 2012-10-12-1350012537.47-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012537.47-demo.wav has no TGID
  done - result 1495176 frames written to 2012-10-12-1350012537.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350012555.5-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012555.5-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350012555.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  77892
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  173837
  Worker for 2012-10-12-1350012591.15-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 347674 frames written to 2012-10-12-1350012591.15-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  139332
  Worker for 2012-10-12-1350012595.59-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 278664 frames written to 2012-10-12-1350012595.59-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  324611
  Worker for 2012-10-12-1350012599.55-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 649222 frames written to 2012-10-12-1350012599.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  602129
  Worker for 2012-10-12-1350012607.61-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012607.61-demo.wav has no TGID
  done - result 1204258 frames written to 2012-10-12-1350012607.61-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105540
  Worker for 2012-10-12-1350012625.25-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012625.25-demo.wav has no TGID
  done - result 211080 frames written to 2012-10-12-1350012625.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350012628.03-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012628.03-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350012628.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  113839
  Worker for 2012-10-12-1350012682.36-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 227678 frames written to 2012-10-12-1350012682.36-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  152644
  Worker for 2012-10-12-1350012685.53-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 305288 frames written to 2012-10-12-1350012685.53-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  207940
  Worker for 2012-10-12-1350012689.33-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 415880 frames written to 2012-10-12-1350012689.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  163902
  Worker for 2012-10-12-1350012694.67-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 327804 frames written to 2012-10-12-1350012694.67-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  291782
  Worker for 2012-10-12-1350012699.48-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 583564 frames written to 2012-10-12-1350012699.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  255044
  Worker for 2012-10-12-1350012706.99-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 510088 frames written to 2012-10-12-1350012706.99-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  507959
  Worker for 2012-10-12-1350012713.3-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1015918 frames written to 2012-10-12-1350012713.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  819268
  Worker for 2012-10-12-1350012725.63-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1638536 frames written to 2012-10-12-1350012725.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  3579972
  Worker for 2012-10-12-1350012745.55-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012745.55-demo.wav has no TGID
  done - result 7159944 frames written to 2012-10-12-1350012745.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  639098
  Worker for 2012-10-12-1350012831.44-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 1278196 frames written to 2012-10-12-1350012831.44-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  400682
  Worker for 2012-10-12-1350012847.72-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 801364 frames written to 2012-10-12-1350012847.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  393284
  Worker for 2012-10-12-1350012857.92-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 786568 frames written to 2012-10-12-1350012857.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1334930
  Worker for 2012-10-12-1350012867.99-demo.wav
  GLG,44027,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 2669860 frames written to 2012-10-12-1350012867.99-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  175172
  Worker for 2012-10-12-1350012904.11-demo.wav
  GLG,44027,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 350344 frames written to 2012-10-12-1350012904.11-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  513836
  Worker for 2012-10-12-1350012910.01-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012910.01-demo.wav has no TGID
  done - result 1027672 frames written to 2012-10-12-1350012910.01-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350012926.81-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012926.81-demo.wav has no TGID
  done - result 206984 frames written to 2012-10-12-1350012926.81-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350012929.37-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350012929.37-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350012929.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76852
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  117399
  Worker for 2012-10-12-1350013068.56-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 234798 frames written to 2012-10-12-1350013068.56-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  131140
  Worker for 2012-10-12-1350013071.72-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 262280 frames written to 2012-10-12-1350013071.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  136260
  Worker for 2012-10-12-1350013075.17-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 272520 frames written to 2012-10-12-1350013075.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  141380
  Worker for 2012-10-12-1350013078.63-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 282760 frames written to 2012-10-12-1350013078.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  594468
  Worker for 2012-10-12-1350013082.92-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1188936 frames written to 2012-10-12-1350013082.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  151620
  Worker for 2012-10-12-1350013097.4-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 303240 frames written to 2012-10-12-1350013097.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  659481
  Worker for 2012-10-12-1350013101.23-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013101.23-demo.wav has no TGID
  done - result 1318962 frames written to 2012-10-12-1350013101.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  508460
  Worker for 2012-10-12-1350013117.2-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013117.2-demo.wav has no TGID
  done - result 1016920 frames written to 2012-10-12-1350013117.2-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350013135.19-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013135.19-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350013135.19-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  155196
  Worker for 2012-10-12-1350013144.63-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 310392 frames written to 2012-10-12-1350013144.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350013148.64-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 196744 frames written to 2012-10-12-1350013148.64-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  189508
  Worker for 2012-10-12-1350013151.24-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 379016 frames written to 2012-10-12-1350013151.24-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  150596
  Worker for 2012-10-12-1350013156.03-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 301192 frames written to 2012-10-12-1350013156.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  789572
  Worker for 2012-10-12-1350013160.47-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013160.47-demo.wav has no TGID
  done - result 1579144 frames written to 2012-10-12-1350013160.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350013179.71-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013179.71-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350013179.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  141884
  Worker for 2012-10-12-1350013304.59-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 283768 frames written to 2012-10-12-1350013304.59-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  128068
  Worker for 2012-10-12-1350013308.21-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 256136 frames written to 2012-10-12-1350013308.21-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  272293
  Worker for 2012-10-12-1350013311.68-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 544586 frames written to 2012-10-12-1350013311.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  764411
  Worker for 2012-10-12-1350013318.47-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013318.47-demo.wav has no TGID
  done - result 1528822 frames written to 2012-10-12-1350013318.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350013341.8-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013341.8-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350013341.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350013344.4-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013344.4-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350013344.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  251678
  Worker for 2012-10-12-1350013412.03-demo.wav
  GLG,30234,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 503356 frames written to 2012-10-12-1350013412.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  675908
  Worker for 2012-10-12-1350013419.14-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013419.14-demo.wav has no TGID
  done - result 1351816 frames written to 2012-10-12-1350013419.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350013435.73-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013435.73-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350013435.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350013438.3-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013438.3-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350013438.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104680
  Worker for 2012-10-12-1350013454.22-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 209360 frames written to 2012-10-12-1350013454.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76031
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  548932
  Worker for 2012-10-12-1350013458.81-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013458.81-demo.wav has no TGID
  done - result 1097864 frames written to 2012-10-12-1350013458.81-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104516
  Worker for 2012-10-12-1350013472.15-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013472.15-demo.wav has no TGID
  done - result 209032 frames written to 2012-10-12-1350013472.15-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  363633
  Worker for 2012-10-12-1350013522.62-demo.wav
  GLG,44011,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 727266 frames written to 2012-10-12-1350013522.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  145476
  Worker for 2012-10-12-1350013531.55-demo.wav
  GLG,44011,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 290952 frames written to 2012-10-12-1350013531.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  412949
  Worker for 2012-10-12-1350013535.88-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 825898 frames written to 2012-10-12-1350013535.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  111684
  Worker for 2012-10-12-1350013548.18-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 223368 frames written to 2012-10-12-1350013548.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1177668
  Worker for 2012-10-12-1350013551.12-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 2355336 frames written to 2012-10-12-1350013551.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  848964
  Worker for 2012-10-12-1350013579.69-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 1697928 frames written to 2012-10-12-1350013579.69-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1113156
  Worker for 2012-10-12-1350013600.4-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 2226312 frames written to 2012-10-12-1350013600.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  694664
  Worker for 2012-10-12-1350013629.81-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 1389328 frames written to 2012-10-12-1350013629.81-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350013646.58-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 184456 frames written to 2012-10-12-1350013646.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  107588
  Worker for 2012-10-12-1350013650.72-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 215176 frames written to 2012-10-12-1350013650.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2034756
  Worker for 2012-10-12-1350013653.66-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 4069512 frames written to 2012-10-12-1350013653.66-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  434244
  Worker for 2012-10-12-1350013702.35-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013702.35-demo.wav has no TGID
  done - result 868488 frames written to 2012-10-12-1350013702.35-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1166238
  Worker for 2012-10-12-1350013713.04-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 2332476 frames written to 2012-10-12-1350013713.04-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  761924
  Worker for 2012-10-12-1350013741.77-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013741.77-demo.wav has no TGID
  done - result 1523848 frames written to 2012-10-12-1350013741.77-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350013760.12-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013760.12-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350013760.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  139757
  Worker for 2012-10-12-1350013769.38-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 279514 frames written to 2012-10-12-1350013769.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  135236
  Worker for 2012-10-12-1350013773.73-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 270472 frames written to 2012-10-12-1350013773.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  188395
  Worker for 2012-10-12-1350013777.41-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 376790 frames written to 2012-10-12-1350013777.41-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  449604
  Worker for 2012-10-12-1350013782.39-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 899208 frames written to 2012-10-12-1350013782.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  142401
  Worker for 2012-10-12-1350013793.37-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 284802 frames written to 2012-10-12-1350013793.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1541188
  Worker for 2012-10-12-1350013797.1-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013797.1-demo.wav has no TGID
  done - result 3082376 frames written to 2012-10-12-1350013797.1-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  466576
  Worker for 2012-10-12-1350013834.0-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013834.0-demo.wav has no TGID
  done - result 933152 frames written to 2012-10-12-1350013834.0-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350013851.36-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013851.36-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350013851.36-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  110483
  Worker for 2012-10-12-1350013857.65-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 220966 frames written to 2012-10-12-1350013857.65-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  231204
  Worker for 2012-10-12-1350013861.59-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 462408 frames written to 2012-10-12-1350013861.59-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350013867.43-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 196744 frames written to 2012-10-12-1350013867.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  183364
  Worker for 2012-10-12-1350013870.07-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 366728 frames written to 2012-10-12-1350013870.07-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1107467
  Worker for 2012-10-12-1350013874.69-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013874.69-demo.wav has no TGID
  done - result 2214934 frames written to 2012-10-12-1350013874.69-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350013905.71-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013905.71-demo.wav has no TGID
  done - result 206984 frames written to 2012-10-12-1350013905.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  147810
  Worker for 2012-10-12-1350013920.56-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 295620 frames written to 2012-10-12-1350013920.56-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  138308
  Worker for 2012-10-12-1350013924.62-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 276616 frames written to 2012-10-12-1350013924.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  126016
  Worker for 2012-10-12-1350013928.23-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 252032 frames written to 2012-10-12-1350013928.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  164932
  Worker for 2012-10-12-1350013931.75-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 329864 frames written to 2012-10-12-1350013931.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98331
  Worker for 2012-10-12-1350013935.98-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 196662 frames written to 2012-10-12-1350013935.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  383905
  Worker for 2012-10-12-1350013939.42-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 767810 frames written to 2012-10-12-1350013939.42-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  160597
  Worker for 2012-10-12-1350013949.51-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 321194 frames written to 2012-10-12-1350013949.51-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  456750
  Worker for 2012-10-12-1350013954.47-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 913500 frames written to 2012-10-12-1350013954.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  277405
  Worker for 2012-10-12-1350013968.33-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 554810 frames written to 2012-10-12-1350013968.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  157764
  Worker for 2012-10-12-1350013975.25-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 315528 frames written to 2012-10-12-1350013975.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  182340
  Worker for 2012-10-12-1350013979.34-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 364680 frames written to 2012-10-12-1350013979.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  127352
  Worker for 2012-10-12-1350013984.76-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350013984.76-demo.wav has no TGID
  done - result 254704 frames written to 2012-10-12-1350013984.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  376900
  Worker for 2012-10-12-1350013988.1-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 753800 frames written to 2012-10-12-1350013988.1-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  134212
  Worker for 2012-10-12-1350013997.34-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 268424 frames written to 2012-10-12-1350013997.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  198703
  Worker for 2012-10-12-1350014001.93-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 397406 frames written to 2012-10-12-1350014001.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1136708
  Worker for 2012-10-12-1350014007.03-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 2273416 frames written to 2012-10-12-1350014007.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  113732
  Worker for 2012-10-12-1350014036.29-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 227464 frames written to 2012-10-12-1350014036.29-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1913924
  Worker for 2012-10-12-1350014039.75-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 3827848 frames written to 2012-10-12-1350014039.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  170780
  Worker for 2012-10-12-1350014085.61-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 341560 frames written to 2012-10-12-1350014085.61-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2132036
  Worker for 2012-10-12-1350014089.97-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 4264072 frames written to 2012-10-12-1350014089.97-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1104964
  Worker for 2012-10-12-1350014141.06-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014141.06-demo.wav has no TGID
  done - result 2209928 frames written to 2012-10-12-1350014141.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  132164
  Worker for 2012-10-12-1350014167.67-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 264328 frames written to 2012-10-12-1350014167.67-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  151737
  Worker for 2012-10-12-1350014171.66-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 303474 frames written to 2012-10-12-1350014171.66-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  110660
  Worker for 2012-10-12-1350014175.54-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 221320 frames written to 2012-10-12-1350014175.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  267328
  Worker for 2012-10-12-1350014178.84-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014178.84-demo.wav has no TGID
  done - result 534656 frames written to 2012-10-12-1350014178.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  247876
  Worker for 2012-10-12-1350014185.44-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 495752 frames written to 2012-10-12-1350014185.44-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  111684
  Worker for 2012-10-12-1350014191.62-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 223368 frames written to 2012-10-12-1350014191.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1243204
  Worker for 2012-10-12-1350014194.54-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 2486408 frames written to 2012-10-12-1350014194.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1208262
  Worker for 2012-10-12-1350014225.26-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014225.26-demo.wav has no TGID
  done - result 2416524 frames written to 2012-10-12-1350014225.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  147413
  Worker for 2012-10-12-1350014254.33-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 294826 frames written to 2012-10-12-1350014254.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  559172
  Worker for 2012-10-12-1350014258.06-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014258.06-demo.wav has no TGID
  done - result 1118344 frames written to 2012-10-12-1350014258.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  227396
  Worker for 2012-10-12-1350014271.63-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 454792 frames written to 2012-10-12-1350014271.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  215796
  Worker for 2012-10-12-1350014277.92-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 431592 frames written to 2012-10-12-1350014277.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  187460
  Worker for 2012-10-12-1350014283.36-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014283.36-demo.wav has no TGID
  done - result 374920 frames written to 2012-10-12-1350014283.36-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  172712
  Worker for 2012-10-12-1350014288.52-demo.wav
  GLG,i1045420,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 345424 frames written to 2012-10-12-1350014288.52-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  495684
  Worker for 2012-10-12-1350014293.39-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 991368 frames written to 2012-10-12-1350014293.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  172100
  Worker for 2012-10-12-1350014306.16-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 344200 frames written to 2012-10-12-1350014306.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  198724
  Worker for 2012-10-12-1350014310.68-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 397448 frames written to 2012-10-12-1350014310.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  280601
  Worker for 2012-10-12-1350014315.7-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 561202 frames written to 2012-10-12-1350014315.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  793484
  Worker for 2012-10-12-1350014322.68-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014322.68-demo.wav has no TGID
  done - result 1586968 frames written to 2012-10-12-1350014322.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  108612
  Worker for 2012-10-12-1350014345.14-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014345.14-demo.wav has no TGID
  done - result 217224 frames written to 2012-10-12-1350014345.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350014348.1-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014348.1-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350014348.1-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104516
  Worker for 2012-10-12-1350014350.57-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 209032 frames written to 2012-10-12-1350014350.57-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  74410
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  659524
  Worker for 2012-10-12-1350014356.63-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014356.63-demo.wav has no TGID
  done - result 1319048 frames written to 2012-10-12-1350014356.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  95300
  Worker for 2012-10-12-1350014372.56-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014372.56-demo.wav has no TGID
  done - result 190600 frames written to 2012-10-12-1350014372.56-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  106164
  Worker for 2012-10-12-1350014392.82-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 212328 frames written to 2012-10-12-1350014392.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76064
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  588868
  Worker for 2012-10-12-1350014398.03-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014398.03-demo.wav has no TGID
  done - result 1177736 frames written to 2012-10-12-1350014398.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350014412.24-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014412.24-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350014412.24-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  148616
  Worker for 2012-10-12-1350014468.04-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 297232 frames written to 2012-10-12-1350014468.04-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  171076
  Worker for 2012-10-12-1350014472.39-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 342152 frames written to 2012-10-12-1350014472.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  197616
  Worker for 2012-10-12-1350014476.77-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 395232 frames written to 2012-10-12-1350014476.77-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  799961
  Worker for 2012-10-12-1350014482.03-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014482.03-demo.wav has no TGID
  done - result 1599922 frames written to 2012-10-12-1350014482.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  106564
  Worker for 2012-10-12-1350014505.32-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014505.32-demo.wav has no TGID
  done - result 213128 frames written to 2012-10-12-1350014505.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93252
  Worker for 2012-10-12-1350014508.12-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014508.12-demo.wav has no TGID
  done - result 186504 frames written to 2012-10-12-1350014508.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105540
  Worker for 2012-10-12-1350014518.52-demo.wav
  GLG,44039,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 211080 frames written to 2012-10-12-1350014518.52-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  150596
  Worker for 2012-10-12-1350014522.14-demo.wav
  GLG,44039,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 301192 frames written to 2012-10-12-1350014522.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  106564
  Worker for 2012-10-12-1350014526.27-demo.wav
  GLG,44039,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 213128 frames written to 2012-10-12-1350014526.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1091652
  Worker for 2012-10-12-1350014529.17-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014529.17-demo.wav has no TGID
  done - result 2183304 frames written to 2012-10-12-1350014529.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  284735
  Worker for 2012-10-12-1350014555.41-demo.wav
  GLG,44039,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 569470 frames written to 2012-10-12-1350014555.41-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2217028
  Worker for 2012-10-12-1350014562.82-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014562.82-demo.wav has no TGID
  done - result 4434056 frames written to 2012-10-12-1350014562.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  393284
  Worker for 2012-10-12-1350014616.25-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 786568 frames written to 2012-10-12-1350014616.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  284698
  Worker for 2012-10-12-1350014625.93-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 569396 frames written to 2012-10-12-1350014625.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1132589
  Worker for 2012-10-12-1350014633.26-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 2265178 frames written to 2012-10-12-1350014633.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1168183
  Worker for 2012-10-12-1350014662.8-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014662.8-demo.wav has no TGID
  done - result 2336366 frames written to 2012-10-12-1350014662.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  515140
  Worker for 2012-10-12-1350014690.82-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1030280 frames written to 2012-10-12-1350014690.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  126002
  Worker for 2012-10-12-1350014703.32-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 252004 frames written to 2012-10-12-1350014703.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  938052
  Worker for 2012-10-12-1350014706.61-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 1876104 frames written to 2012-10-12-1350014706.61-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  175172
  Worker for 2012-10-12-1350014729.41-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 350344 frames written to 2012-10-12-1350014729.41-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  590916
  Worker for 2012-10-12-1350014734.09-demo.wav
  GLG,30234,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 1181832 frames written to 2012-10-12-1350014734.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  770116
  Worker for 2012-10-12-1350014748.39-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014748.39-demo.wav has no TGID
  done - result 1540232 frames written to 2012-10-12-1350014748.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  200772
  Worker for 2012-10-12-1350014766.93-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 401544 frames written to 2012-10-12-1350014766.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  148484
  Worker for 2012-10-12-1350014772.04-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 296968 frames written to 2012-10-12-1350014772.04-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  420932
  Worker for 2012-10-12-1350014776.46-demo.wav
  GLG,44039,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 841864 frames written to 2012-10-12-1350014776.46-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  265618
  Worker for 2012-10-12-1350014789.16-demo.wav
  GLG,44039,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 531236 frames written to 2012-10-12-1350014789.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  175172
  Worker for 2012-10-12-1350014795.79-demo.wav
  GLG,44039,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 350344 frames written to 2012-10-12-1350014795.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76846
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  288763
  Worker for 2012-10-12-1350014802.8-demo.wav
  GLG,44039,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 577526 frames written to 2012-10-12-1350014802.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  144452
  Worker for 2012-10-12-1350014809.98-demo.wav
  GLG,44039,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 288904 frames written to 2012-10-12-1350014809.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350014814.83-demo.wav
  GLG,44039,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 192648 frames written to 2012-10-12-1350014814.83-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1015525
  Worker for 2012-10-12-1350014817.43-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014817.43-demo.wav has no TGID
  done - result 2031050 frames written to 2012-10-12-1350014817.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  114756
  Worker for 2012-10-12-1350014845.82-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014845.82-demo.wav has no TGID
  done - result 229512 frames written to 2012-10-12-1350014845.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350014848.78-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350014848.78-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350014848.78-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  170347
  Worker for 2012-10-12-1350014979.59-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 340694 frames written to 2012-10-12-1350014979.59-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  656311
  Worker for 2012-10-12-1350014984.93-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 1312622 frames written to 2012-10-12-1350014984.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  262212
  Worker for 2012-10-12-1350015000.78-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 524424 frames written to 2012-10-12-1350015000.78-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  721988
  Worker for 2012-10-12-1350015007.18-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015007.18-demo.wav has no TGID
  done - result 1443976 frames written to 2012-10-12-1350015007.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  453700
  Worker for 2012-10-12-1350015024.57-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015024.57-demo.wav has no TGID
  done - result 907400 frames written to 2012-10-12-1350015024.57-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  749636
  Worker for 2012-10-12-1350015035.48-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015035.48-demo.wav has no TGID
  done - result 1499272 frames written to 2012-10-12-1350015035.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102468
  Worker for 2012-10-12-1350015053.5-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015053.5-demo.wav has no TGID
  done - result 204936 frames written to 2012-10-12-1350015053.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  181981
  Worker for 2012-10-12-1350015187.71-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 363962 frames written to 2012-10-12-1350015187.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  74829
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  644164
  Worker for 2012-10-12-1350015193.7-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015193.7-demo.wav has no TGID
  done - result 1288328 frames written to 2012-10-12-1350015193.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350015209.22-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015209.22-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350015209.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75610
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  150868
  Worker for 2012-10-12-1350015355.49-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 301736 frames written to 2012-10-12-1350015355.49-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  255854
  Worker for 2012-10-12-1350015360.46-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 511708 frames written to 2012-10-12-1350015360.46-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  203844
  Worker for 2012-10-12-1350015366.9-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 407688 frames written to 2012-10-12-1350015366.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  663620
  Worker for 2012-10-12-1350015371.98-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 1327240 frames written to 2012-10-12-1350015371.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350015388.04-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 184456 frames written to 2012-10-12-1350015388.04-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  114680
  Worker for 2012-10-12-1350015390.5-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 229360 frames written to 2012-10-12-1350015390.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  796740
  Worker for 2012-10-12-1350015394.55-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015394.55-demo.wav has no TGID
  done - result 1593480 frames written to 2012-10-12-1350015394.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350015413.69-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015413.69-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350015413.69-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350015416.23-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015416.23-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350015416.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  44106
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  121318
  Worker for 2012-10-12-1350015622.79-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 242636 frames written to 2012-10-12-1350015622.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  631405
  Worker for 2012-10-12-1350015627.21-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1262810 frames written to 2012-10-12-1350015627.21-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  852036
  Worker for 2012-10-12-1350015642.45-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1704072 frames written to 2012-10-12-1350015642.45-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2851908
  Worker for 2012-10-12-1350015662.88-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015662.88-demo.wav has no TGID
  done - result 5703816 frames written to 2012-10-12-1350015662.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  625732
  Worker for 2012-10-12-1350015731.63-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015731.63-demo.wav has no TGID
  done - result 1251464 frames written to 2012-10-12-1350015731.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350015746.71-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015746.71-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350015746.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350015749.25-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015749.25-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350015749.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  153089
  Worker for 2012-10-12-1350015754.75-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 306178 frames written to 2012-10-12-1350015754.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  612467
  Worker for 2012-10-12-1350015759.72-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 1224934 frames written to 2012-10-12-1350015759.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  250918
  Worker for 2012-10-12-1350015774.76-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 501836 frames written to 2012-10-12-1350015774.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  713974
  Worker for 2012-10-12-1350015781.94-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015781.94-demo.wav has no TGID
  done - result 1427948 frames written to 2012-10-12-1350015781.94-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  458820
  Worker for 2012-10-12-1350015799.22-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 917640 frames written to 2012-10-12-1350015799.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  842944
  Worker for 2012-10-12-1350015810.79-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015810.79-demo.wav has no TGID
  done - result 1685888 frames written to 2012-10-12-1350015810.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350015835.09-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015835.09-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350015835.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93252
  Worker for 2012-10-12-1350015837.69-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015837.69-demo.wav has no TGID
  done - result 186504 frames written to 2012-10-12-1350015837.69-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  173742
  Worker for 2012-10-12-1350015852.64-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 347484 frames written to 2012-10-12-1350015852.64-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  141380
  Worker for 2012-10-12-1350015856.89-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 282760 frames written to 2012-10-12-1350015856.89-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  172656
  Worker for 2012-10-12-1350015861.43-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 345312 frames written to 2012-10-12-1350015861.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  131119
  Worker for 2012-10-12-1350015865.74-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 262238 frames written to 2012-10-12-1350015865.74-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  429235
  Worker for 2012-10-12-1350015869.84-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 858470 frames written to 2012-10-12-1350015869.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  77892
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  185412
  Worker for 2012-10-12-1350015883.15-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 370824 frames written to 2012-10-12-1350015883.15-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  594815
  Worker for 2012-10-12-1350015887.74-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015887.74-demo.wav has no TGID
  done - result 1189630 frames written to 2012-10-12-1350015887.74-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  107588
  Worker for 2012-10-12-1350015905.77-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015905.77-demo.wav has no TGID
  done - result 215176 frames written to 2012-10-12-1350015905.77-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  95300
  Worker for 2012-10-12-1350015908.75-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015908.75-demo.wav has no TGID
  done - result 190600 frames written to 2012-10-12-1350015908.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  115652
  Worker for 2012-10-12-1350015968.61-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 231304 frames written to 2012-10-12-1350015968.61-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  545860
  Worker for 2012-10-12-1350015972.72-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015972.72-demo.wav has no TGID
  done - result 1091720 frames written to 2012-10-12-1350015972.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350015985.85-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350015985.85-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350015985.85-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105481
  Worker for 2012-10-12-1350016000.08-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 210962 frames written to 2012-10-12-1350016000.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  118852
  Worker for 2012-10-12-1350016003.21-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 237704 frames written to 2012-10-12-1350016003.21-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  259140
  Worker for 2012-10-12-1350016006.48-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 518280 frames written to 2012-10-12-1350016006.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  270404
  Worker for 2012-10-12-1350016013.23-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016013.23-demo.wav has no TGID
  done - result 540808 frames written to 2012-10-12-1350016013.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  511457
  Worker for 2012-10-12-1350016019.92-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016019.92-demo.wav has no TGID
  done - result 1022914 frames written to 2012-10-12-1350016019.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104516
  Worker for 2012-10-12-1350016038.06-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016038.06-demo.wav has no TGID
  done - result 209032 frames written to 2012-10-12-1350016038.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  119650
  Worker for 2012-10-12-1350016046.51-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 239300 frames written to 2012-10-12-1350016046.51-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  560196
  Worker for 2012-10-12-1350016050.86-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016050.86-demo.wav has no TGID
  done - result 1120392 frames written to 2012-10-12-1350016050.86-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350016064.72-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016064.72-demo.wav has no TGID
  done - result 206984 frames written to 2012-10-12-1350016064.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350016067.33-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016067.33-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350016067.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  146326
  Worker for 2012-10-12-1350016078.28-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 292652 frames written to 2012-10-12-1350016078.28-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75408
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  197700
  Worker for 2012-10-12-1350016083.62-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 395400 frames written to 2012-10-12-1350016083.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  229198
  Worker for 2012-10-12-1350016089.63-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 458396 frames written to 2012-10-12-1350016089.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  370867
  Worker for 2012-10-12-1350016096.11-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 741734 frames written to 2012-10-12-1350016096.11-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  138308
  Worker for 2012-10-12-1350016105.31-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 276616 frames written to 2012-10-12-1350016105.31-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1189537
  Worker for 2012-10-12-1350016108.82-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 2379074 frames written to 2012-10-12-1350016108.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  152644
  Worker for 2012-10-12-1350016140.95-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 305288 frames written to 2012-10-12-1350016140.95-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  257585
  Worker for 2012-10-12-1350016145.74-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 515170 frames written to 2012-10-12-1350016145.74-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  337987
  Worker for 2012-10-12-1350016152.44-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 675974 frames written to 2012-10-12-1350016152.44-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  74708
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  122948
  Worker for 2012-10-12-1350016162.92-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 245896 frames written to 2012-10-12-1350016162.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  376900
  Worker for 2012-10-12-1350016166.31-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 753800 frames written to 2012-10-12-1350016166.31-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76868
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  136229
  Worker for 2012-10-12-1350016177.23-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 272458 frames written to 2012-10-12-1350016177.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  365636
  Worker for 2012-10-12-1350016181.14-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016181.14-demo.wav has no TGID
  done - result 731272 frames written to 2012-10-12-1350016181.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  747588
  Worker for 2012-10-12-1350016190.16-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016190.16-demo.wav has no TGID
  done - result 1495176 frames written to 2012-10-12-1350016190.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  139332
  Worker for 2012-10-12-1350016208.39-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 278664 frames written to 2012-10-12-1350016208.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350016212.49-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 198792 frames written to 2012-10-12-1350016212.49-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  128068
  Worker for 2012-10-12-1350016215.11-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 256136 frames written to 2012-10-12-1350016215.11-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  77880
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  897092
  Worker for 2012-10-12-1350016221.42-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1794184 frames written to 2012-10-12-1350016221.42-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1007684
  Worker for 2012-10-12-1350016243.05-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016243.05-demo.wav has no TGID
  done - result 2015368 frames written to 2012-10-12-1350016243.05-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  485872
  Worker for 2012-10-12-1350016267.71-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 971744 frames written to 2012-10-12-1350016267.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  237215
  Worker for 2012-10-12-1350016280.29-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 474430 frames written to 2012-10-12-1350016280.29-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  245828
  Worker for 2012-10-12-1350016286.15-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 491656 frames written to 2012-10-12-1350016286.15-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1419329
  Worker for 2012-10-12-1350016292.81-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016292.81-demo.wav has no TGID
  done - result 2838658 frames written to 2012-10-12-1350016292.81-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  488892
  Worker for 2012-10-12-1350016326.82-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016326.82-demo.wav has no TGID
  done - result 977784 frames written to 2012-10-12-1350016326.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102468
  Worker for 2012-10-12-1350016343.61-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016343.61-demo.wav has no TGID
  done - result 204936 frames written to 2012-10-12-1350016343.61-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350016346.12-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016346.12-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350016346.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  162624
  Worker for 2012-10-12-1350016376.62-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 325248 frames written to 2012-10-12-1350016376.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  236612
  Worker for 2012-10-12-1350016380.7-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 473224 frames written to 2012-10-12-1350016380.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  202584
  Worker for 2012-10-12-1350016386.99-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 405168 frames written to 2012-10-12-1350016386.99-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  777321
  Worker for 2012-10-12-1350016392.67-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1554642 frames written to 2012-10-12-1350016392.67-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350016411.4-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 198792 frames written to 2012-10-12-1350016411.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  509990
  Worker for 2012-10-12-1350016414.72-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016414.72-demo.wav has no TGID
  done - result 1019980 frames written to 2012-10-12-1350016414.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350016431.02-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016431.02-demo.wav has no TGID
  done - result 206984 frames written to 2012-10-12-1350016431.02-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350016433.64-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016433.64-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350016433.64-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105484
  Worker for 2012-10-12-1350016466.06-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 210968 frames written to 2012-10-12-1350016466.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  138308
  Worker for 2012-10-12-1350016468.9-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 276616 frames written to 2012-10-12-1350016468.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  248856
  Worker for 2012-10-12-1350016472.71-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 497712 frames written to 2012-10-12-1350016472.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1492036
  Worker for 2012-10-12-1350016478.9-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 2984072 frames written to 2012-10-12-1350016478.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  109636
  Worker for 2012-10-12-1350016514.91-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 219272 frames written to 2012-10-12-1350016514.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1263684
  Worker for 2012-10-12-1350016518.44-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 2527368 frames written to 2012-10-12-1350016518.44-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  169028
  Worker for 2012-10-12-1350016548.91-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 338056 frames written to 2012-10-12-1350016548.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  111662
  Worker for 2012-10-12-1350016553.96-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 223324 frames written to 2012-10-12-1350016553.96-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1271866
  Worker for 2012-10-12-1350016557.29-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 2543732 frames written to 2012-10-12-1350016557.29-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  525380
  Worker for 2012-10-12-1350016589.87-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1050760 frames written to 2012-10-12-1350016589.87-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  390491
  Worker for 2012-10-12-1350016603.47-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 780982 frames written to 2012-10-12-1350016603.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  142360
  Worker for 2012-10-12-1350016613.06-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 284720 frames written to 2012-10-12-1350016613.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  780356
  Worker for 2012-10-12-1350016617.32-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016617.32-demo.wav has no TGID
  done - result 1560712 frames written to 2012-10-12-1350016617.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  170052
  Worker for 2012-10-12-1350016636.22-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 340104 frames written to 2012-10-12-1350016636.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  222276
  Worker for 2012-10-12-1350016641.03-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 444552 frames written to 2012-10-12-1350016641.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  665622
  Worker for 2012-10-12-1350016647.2-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016647.2-demo.wav has no TGID
  done - result 1331244 frames written to 2012-10-12-1350016647.2-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  510895
  Worker for 2012-10-12-1350016663.2-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016663.2-demo.wav has no TGID
  done - result 1021790 frames written to 2012-10-12-1350016663.2-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350016681.37-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016681.37-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350016681.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350016683.88-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016683.88-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350016683.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  249924
  Worker for 2012-10-12-1350016687.16-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 499848 frames written to 2012-10-12-1350016687.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  286544
  Worker for 2012-10-12-1350016694.64-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 573088 frames written to 2012-10-12-1350016694.64-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  759779
  Worker for 2012-10-12-1350016702.56-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016702.56-demo.wav has no TGID
  done - result 1519558 frames written to 2012-10-12-1350016702.56-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350016720.88-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016720.88-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350016720.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350016723.74-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016723.74-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350016723.74-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105491
  Worker for 2012-10-12-1350016738.53-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 210982 frames written to 2012-10-12-1350016738.53-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  491588
  Worker for 2012-10-12-1350016742.3-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016742.3-demo.wav has no TGID
  done - result 983176 frames written to 2012-10-12-1350016742.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102468
  Worker for 2012-10-12-1350016754.25-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016754.25-demo.wav has no TGID
  done - result 204936 frames written to 2012-10-12-1350016754.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350016756.81-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016756.81-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350016756.81-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  248110
  Worker for 2012-10-12-1350016774.5-demo.wav
  GLG,30004,NFM,0,0,CanberraBlackMnt,RuralFireSvc-RFS,L GEORG,1,0,NONE,NONE,NONE
  done - result 496220 frames written to 2012-10-12-1350016774.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  79940
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  249924
  Worker for 2012-10-12-1350016783.58-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 499848 frames written to 2012-10-12-1350016783.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1088580
  Worker for 2012-10-12-1350016791.31-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 2177160 frames written to 2012-10-12-1350016791.31-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  77892
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  160794
  Worker for 2012-10-12-1350016819.8-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016819.8-demo.wav has no TGID
  done - result 321588 frames written to 2012-10-12-1350016819.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  294980
  Worker for 2012-10-12-1350016823.81-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 589960 frames written to 2012-10-12-1350016823.81-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  180054
  Worker for 2012-10-12-1350016831.84-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 360108 frames written to 2012-10-12-1350016831.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  767044
  Worker for 2012-10-12-1350016837.37-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016837.37-demo.wav has no TGID
  done - result 1534088 frames written to 2012-10-12-1350016837.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350016855.78-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016855.78-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350016855.78-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  114613
  Worker for 2012-10-12-1350016928.19-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 229226 frames written to 2012-10-12-1350016928.19-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  528452
  Worker for 2012-10-12-1350016932.26-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016932.26-demo.wav has no TGID
  done - result 1056904 frames written to 2012-10-12-1350016932.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350016945.0-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350016945.0-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350016945.0-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  189227
  Worker for 2012-10-12-1350016959.54-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 378454 frames written to 2012-10-12-1350016959.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  227335
  Worker for 2012-10-12-1350016964.71-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 454670 frames written to 2012-10-12-1350016964.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  363131
  Worker for 2012-10-12-1350016971.26-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 726262 frames written to 2012-10-12-1350016971.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2970692
  Worker for 2012-10-12-1350016980.62-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 5941384 frames written to 2012-10-12-1350016980.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  390917
  Worker for 2012-10-12-1350017051.58-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 781834 frames written to 2012-10-12-1350017051.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  194478
  Worker for 2012-10-12-1350017061.49-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 388956 frames written to 2012-10-12-1350017061.49-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76868
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  161845
  Worker for 2012-10-12-1350017069.21-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 323690 frames written to 2012-10-12-1350017069.21-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  876612
  Worker for 2012-10-12-1350017073.3-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1753224 frames written to 2012-10-12-1350017073.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  191917
  Worker for 2012-10-12-1350017096.84-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 383834 frames written to 2012-10-12-1350017096.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  139332
  Worker for 2012-10-12-1350017101.73-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 278664 frames written to 2012-10-12-1350017101.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  516164
  Worker for 2012-10-12-1350017105.33-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017105.33-demo.wav has no TGID
  done - result 1032328 frames written to 2012-10-12-1350017105.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  420932
  Worker for 2012-10-12-1350017117.84-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 841864 frames written to 2012-10-12-1350017117.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  675845
  Worker for 2012-10-12-1350017128.78-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017128.78-demo.wav has no TGID
  done - result 1351690 frames written to 2012-10-12-1350017128.78-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350017145.01-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017145.01-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350017145.01-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  140486
  Worker for 2012-10-12-1350017149.54-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 280972 frames written to 2012-10-12-1350017149.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  582724
  Worker for 2012-10-12-1350017154.17-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017154.17-demo.wav has no TGID
  done - result 1165448 frames written to 2012-10-12-1350017154.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350017168.24-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017168.24-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350017168.24-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350017170.79-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017170.79-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350017170.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  257092
  Worker for 2012-10-12-1350017173.08-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 514184 frames written to 2012-10-12-1350017173.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  148548
  Worker for 2012-10-12-1350017179.36-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 297096 frames written to 2012-10-12-1350017179.36-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  109570
  Worker for 2012-10-12-1350017183.14-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 219140 frames written to 2012-10-12-1350017183.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  203844
  Worker for 2012-10-12-1350017185.99-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017185.99-demo.wav has no TGID
  done - result 407688 frames written to 2012-10-12-1350017185.99-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  152644
  Worker for 2012-10-12-1350017191.08-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 305288 frames written to 2012-10-12-1350017191.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  168894
  Worker for 2012-10-12-1350017195.89-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 337788 frames written to 2012-10-12-1350017195.89-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  833604
  Worker for 2012-10-12-1350017200.3-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017200.3-demo.wav has no TGID
  done - result 1667208 frames written to 2012-10-12-1350017200.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  547325
  Worker for 2012-10-12-1350017220.39-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017220.39-demo.wav has no TGID
  done - result 1094650 frames written to 2012-10-12-1350017220.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  95300
  Worker for 2012-10-12-1350017238.09-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017238.09-demo.wav has no TGID
  done - result 190600 frames written to 2012-10-12-1350017238.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350017240.5-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017240.5-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350017240.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105115
  Worker for 2012-10-12-1350017246.0-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 210230 frames written to 2012-10-12-1350017246.0-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350017248.64-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 200840 frames written to 2012-10-12-1350017248.64-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102468
  Worker for 2012-10-12-1350017251.48-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 204936 frames written to 2012-10-12-1350017251.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  116804
  Worker for 2012-10-12-1350017254.18-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 233608 frames written to 2012-10-12-1350017254.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  208848
  Worker for 2012-10-12-1350017257.46-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 417696 frames written to 2012-10-12-1350017257.46-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  759876
  Worker for 2012-10-12-1350017263.34-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017263.34-demo.wav has no TGID
  done - result 1519752 frames written to 2012-10-12-1350017263.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105540
  Worker for 2012-10-12-1350017281.64-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017281.64-demo.wav has no TGID
  done - result 211080 frames written to 2012-10-12-1350017281.64-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350017284.3-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017284.3-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350017284.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  130634
  Worker for 2012-10-12-1350017336.62-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 261268 frames written to 2012-10-12-1350017336.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  118852
  Worker for 2012-10-12-1350017339.93-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 237704 frames written to 2012-10-12-1350017339.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1154116
  Worker for 2012-10-12-1350017343.96-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017343.96-demo.wav has no TGID
  done - result 2308232 frames written to 2012-10-12-1350017343.96-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  513756
  Worker for 2012-10-12-1350017371.67-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017371.67-demo.wav has no TGID
  done - result 1027512 frames written to 2012-10-12-1350017371.67-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350017389.35-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017389.35-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350017389.35-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350017391.96-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017391.96-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350017391.96-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105059
  Worker for 2012-10-12-1350017509.26-demo.wav
  GLG,30004,NFM,0,0,CanberraBlackMnt,RuralFireSvc-RFS,L GEORG,1,0,NONE,NONE,NONE
  done - result 210118 frames written to 2012-10-12-1350017509.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  237090
  Worker for 2012-10-12-1350017515.29-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 474180 frames written to 2012-10-12-1350017515.29-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  648260
  Worker for 2012-10-12-1350017521.86-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017521.86-demo.wav has no TGID
  done - result 1296520 frames written to 2012-10-12-1350017521.86-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350017537.51-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017537.51-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350017537.51-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350017540.0-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017540.0-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350017540.0-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  153340
  Worker for 2012-10-12-1350017559.36-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 306680 frames written to 2012-10-12-1350017559.36-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  108612
  Worker for 2012-10-12-1350017563.68-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 217224 frames written to 2012-10-12-1350017563.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  162884
  Worker for 2012-10-12-1350017566.6-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 325768 frames written to 2012-10-12-1350017566.6-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2126912
  Worker for 2012-10-12-1350017571.84-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017571.84-demo.wav has no TGID
  done - result 4253824 frames written to 2012-10-12-1350017571.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  202820
  Worker for 2012-10-12-1350017622.74-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 405640 frames written to 2012-10-12-1350017622.74-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  141349
  Worker for 2012-10-12-1350017627.73-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 282698 frames written to 2012-10-12-1350017627.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1042500
  Worker for 2012-10-12-1350017631.44-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017631.44-demo.wav has no TGID
  done - result 2085000 frames written to 2012-10-12-1350017631.44-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  491616
  Worker for 2012-10-12-1350017656.51-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017656.51-demo.wav has no TGID
  done - result 983232 frames written to 2012-10-12-1350017656.51-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350017673.84-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017673.84-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350017673.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  182783
  Worker for 2012-10-12-1350017724.84-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 365566 frames written to 2012-10-12-1350017724.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  133188
  Worker for 2012-10-12-1350017729.38-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 266376 frames written to 2012-10-12-1350017729.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  150596
  Worker for 2012-10-12-1350017732.75-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 301192 frames written to 2012-10-12-1350017732.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  572465
  Worker for 2012-10-12-1350017736.95-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017736.95-demo.wav has no TGID
  done - result 1144930 frames written to 2012-10-12-1350017736.95-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350017754.78-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017754.78-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350017754.78-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350017757.4-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017757.4-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350017757.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  109212
  Worker for 2012-10-12-1350017765.11-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 218424 frames written to 2012-10-12-1350017765.11-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  397658
  Worker for 2012-10-12-1350017768.93-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 795316 frames written to 2012-10-12-1350017768.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  133188
  Worker for 2012-10-12-1350017778.72-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 266376 frames written to 2012-10-12-1350017778.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  724860
  Worker for 2012-10-12-1350017783.38-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017783.38-demo.wav has no TGID
  done - result 1449720 frames written to 2012-10-12-1350017783.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350017801.08-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017801.08-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350017801.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  134433
  Worker for 2012-10-12-1350017856.03-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 268866 frames written to 2012-10-12-1350017856.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  151620
  Worker for 2012-10-12-1350017859.48-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 303240 frames written to 2012-10-12-1350017859.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  120900
  Worker for 2012-10-12-1350017863.38-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 241800 frames written to 2012-10-12-1350017863.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76868
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  77812
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93250
  Worker for 2012-10-12-1350017869.98-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 186500 frames written to 2012-10-12-1350017869.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  347204
  Worker for 2012-10-12-1350017872.93-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 694408 frames written to 2012-10-12-1350017872.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  228416
  Worker for 2012-10-12-1350017881.43-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 456832 frames written to 2012-10-12-1350017881.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  920644
  Worker for 2012-10-12-1350017887.35-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 1841288 frames written to 2012-10-12-1350017887.35-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  753603
  Worker for 2012-10-12-1350017910.3-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017910.3-demo.wav has no TGID
  done - result 1507206 frames written to 2012-10-12-1350017910.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98262
  Worker for 2012-10-12-1350017928.41-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017928.41-demo.wav has no TGID
  done - result 196524 frames written to 2012-10-12-1350017928.41-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350017930.88-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017930.88-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350017930.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  124061
  Worker for 2012-10-12-1350017944.47-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 248122 frames written to 2012-10-12-1350017944.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  145553
  Worker for 2012-10-12-1350017948.79-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 291106 frames written to 2012-10-12-1350017948.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  512124
  Worker for 2012-10-12-1350017953.42-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017953.42-demo.wav has no TGID
  done - result 1024248 frames written to 2012-10-12-1350017953.42-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104516
  Worker for 2012-10-12-1350017969.52-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017969.52-demo.wav has no TGID
  done - result 209032 frames written to 2012-10-12-1350017969.52-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350017972.22-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 180360 frames written to 2012-10-12-1350017972.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  119751
  Worker for 2012-10-12-1350017987.45-demo.wav
  GLG,10301,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 239502 frames written to 2012-10-12-1350017987.45-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  627780
  Worker for 2012-10-12-1350017992.99-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350017992.99-demo.wav has no TGID
  done - result 1255560 frames written to 2012-10-12-1350017992.99-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  144452
  Worker for 2012-10-12-1350018008.1-demo.wav
  GLG,10301,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 288904 frames written to 2012-10-12-1350018008.1-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  367676
  Worker for 2012-10-12-1350018013.88-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 735352 frames written to 2012-10-12-1350018013.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  386550
  Worker for 2012-10-12-1350018023.71-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 773100 frames written to 2012-10-12-1350018023.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350018033.17-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 194696 frames written to 2012-10-12-1350018033.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  522410
  Worker for 2012-10-12-1350018036.71-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018036.71-demo.wav has no TGID
  done - result 1044820 frames written to 2012-10-12-1350018036.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350018052.95-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018052.95-demo.wav has no TGID
  done - result 206984 frames written to 2012-10-12-1350018052.95-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350018055.55-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018055.55-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350018055.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  200365
  Worker for 2012-10-12-1350018097.35-demo.wav
  GLG,30004,NFM,0,0,CanberraBlackMnt,RuralFireSvc-RFS,L GEORG,1,0,NONE,NONE,NONE
  done - result 400730 frames written to 2012-10-12-1350018097.35-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  680004
  Worker for 2012-10-12-1350018104.57-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018104.57-demo.wav has no TGID
  done - result 1360008 frames written to 2012-10-12-1350018104.57-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350018121.06-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018121.06-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350018121.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105245
  Worker for 2012-10-12-1350018139.8-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 210490 frames written to 2012-10-12-1350018139.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75679
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  602180
  Worker for 2012-10-12-1350018144.91-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018144.91-demo.wav has no TGID
  done - result 1204360 frames written to 2012-10-12-1350018144.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350018159.37-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018159.37-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350018159.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105976
  Worker for 2012-10-12-1350018226.56-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 211952 frames written to 2012-10-12-1350018226.56-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350018229.53-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 184456 frames written to 2012-10-12-1350018229.53-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  365636
  Worker for 2012-10-12-1350018232.22-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 731272 frames written to 2012-10-12-1350018232.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1171792
  Worker for 2012-10-12-1350018241.49-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018241.49-demo.wav has no TGID
  done - result 2343584 frames written to 2012-10-12-1350018241.49-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350018273.14-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018273.14-demo.wav has no TGID
  done - result 206984 frames written to 2012-10-12-1350018273.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350018275.76-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018275.76-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350018275.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  134840
  Worker for 2012-10-12-1350018284.14-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 269680 frames written to 2012-10-12-1350018284.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350018287.69-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 200840 frames written to 2012-10-12-1350018287.69-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  119876
  Worker for 2012-10-12-1350018290.33-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 239752 frames written to 2012-10-12-1350018290.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  531712
  Worker for 2012-10-12-1350018294.27-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018294.27-demo.wav has no TGID
  done - result 1063424 frames written to 2012-10-12-1350018294.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350018311.91-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018311.91-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350018311.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93252
  Worker for 2012-10-12-1350018314.55-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018314.55-demo.wav has no TGID
  done - result 186504 frames written to 2012-10-12-1350018314.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  195571
  Worker for 2012-10-12-1350018366.82-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 391142 frames written to 2012-10-12-1350018366.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  140356
  Worker for 2012-10-12-1350018372.25-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 280712 frames written to 2012-10-12-1350018372.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  575544
  Worker for 2012-10-12-1350018376.65-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018376.65-demo.wav has no TGID
  done - result 1151088 frames written to 2012-10-12-1350018376.65-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  230468
  Worker for 2012-10-12-1350018390.54-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 460936 frames written to 2012-10-12-1350018390.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1457220
  Worker for 2012-10-12-1350018396.29-demo.wav
  GLG,i1045200,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 2914440 frames written to 2012-10-12-1350018396.29-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  583747
  Worker for 2012-10-12-1350018431.71-demo.wav
  GLG,i1045200,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1167494 frames written to 2012-10-12-1350018431.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  134212
  Worker for 2012-10-12-1350018445.82-demo.wav
  GLG,i1045200,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 268424 frames written to 2012-10-12-1350018445.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  770115
  Worker for 2012-10-12-1350018450.62-demo.wav
  GLG,i1045200,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1540230 frames written to 2012-10-12-1350018450.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  465016
  Worker for 2012-10-12-1350018471.64-demo.wav
  GLG,i1045200,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 930032 frames written to 2012-10-12-1350018471.64-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  503876
  Worker for 2012-10-12-1350018484.11-demo.wav
  GLG,44036,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 1007752 frames written to 2012-10-12-1350018484.11-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75360
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  655428
  Worker for 2012-10-12-1350018498.3-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1310856 frames written to 2012-10-12-1350018498.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  231492
  Worker for 2012-10-12-1350018515.57-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 462984 frames written to 2012-10-12-1350018515.57-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  153668
  Worker for 2012-10-12-1350018521.56-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018521.56-demo.wav has no TGID
  done - result 307336 frames written to 2012-10-12-1350018521.56-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  361540
  Worker for 2012-10-12-1350018525.44-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 723080 frames written to 2012-10-12-1350018525.44-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1249348
  Worker for 2012-10-12-1350018534.21-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018534.21-demo.wav has no TGID
  done - result 2498696 frames written to 2012-10-12-1350018534.21-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  199748
  Worker for 2012-10-12-1350018564.17-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 399496 frames written to 2012-10-12-1350018564.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  113732
  Worker for 2012-10-12-1350018569.12-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 227464 frames written to 2012-10-12-1350018569.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  578297
  Worker for 2012-10-12-1350018572.42-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018572.42-demo.wav has no TGID
  done - result 1156594 frames written to 2012-10-12-1350018572.42-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  109636
  Worker for 2012-10-12-1350018590.46-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018590.46-demo.wav has no TGID
  done - result 219272 frames written to 2012-10-12-1350018590.46-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350018593.51-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018593.51-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350018593.51-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  159158
  Worker for 2012-10-12-1350018634.21-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 318316 frames written to 2012-10-12-1350018634.21-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  154692
  Worker for 2012-10-12-1350018639.07-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 309384 frames written to 2012-10-12-1350018639.07-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1439812
  Worker for 2012-10-12-1350018643.02-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018643.02-demo.wav has no TGID
  done - result 2879624 frames written to 2012-10-12-1350018643.02-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  127358
  Worker for 2012-10-12-1350018677.92-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 254716 frames written to 2012-10-12-1350018677.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  237392
  Worker for 2012-10-12-1350018682.07-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 474784 frames written to 2012-10-12-1350018682.07-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  286816
  Worker for 2012-10-12-1350018688.75-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 573632 frames written to 2012-10-12-1350018688.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  723012
  Worker for 2012-10-12-1350018695.88-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018695.88-demo.wav has no TGID
  done - result 1446024 frames written to 2012-10-12-1350018695.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  258116
  Worker for 2012-10-12-1350018713.34-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018713.34-demo.wav has no TGID
  done - result 516232 frames written to 2012-10-12-1350018713.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  404666
  Worker for 2012-10-12-1350018720.19-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 809332 frames written to 2012-10-12-1350018720.19-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1021931
  Worker for 2012-10-12-1350018730.79-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018730.79-demo.wav has no TGID
  done - result 2043862 frames written to 2012-10-12-1350018730.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104516
  Worker for 2012-10-12-1350018759.03-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018759.03-demo.wav has no TGID
  done - result 209032 frames written to 2012-10-12-1350018759.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350018761.73-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018761.73-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350018761.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  149631
  Worker for 2012-10-12-1350018830.92-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 299262 frames written to 2012-10-12-1350018830.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  138308
  Worker for 2012-10-12-1350018835.41-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 276616 frames written to 2012-10-12-1350018835.41-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1530948
  Worker for 2012-10-12-1350018838.97-demo.wav
  GLG,44011,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 3061896 frames written to 2012-10-12-1350018838.97-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1694000
  Worker for 2012-10-12-1350018875.69-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018875.69-demo.wav has no TGID
  done - result 3388000 frames written to 2012-10-12-1350018875.69-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105540
  Worker for 2012-10-12-1350018920.33-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018920.33-demo.wav has no TGID
  done - result 211080 frames written to 2012-10-12-1350018920.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350018922.99-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018922.99-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350018922.99-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76868
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  123141
  Worker for 2012-10-12-1350018935.97-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 246282 frames written to 2012-10-12-1350018935.97-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  159960
  Worker for 2012-10-12-1350018940.27-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 319920 frames written to 2012-10-12-1350018940.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1816644
  Worker for 2012-10-12-1350018944.49-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018944.49-demo.wav has no TGID
  done - result 3633288 frames written to 2012-10-12-1350018944.49-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  669650
  Worker for 2012-10-12-1350018988.37-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350018988.37-demo.wav has no TGID
  done - result 1339300 frames written to 2012-10-12-1350018988.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  185412
  Worker for 2012-10-12-1350019004.55-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 370824 frames written to 2012-10-12-1350019004.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  638999
  Worker for 2012-10-12-1350019010.42-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019010.42-demo.wav has no TGID
  done - result 1277998 frames written to 2012-10-12-1350019010.42-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350019025.84-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019025.84-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350019025.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350019028.75-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019028.75-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350019028.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  128531
  Worker for 2012-10-12-1350019041.98-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 257062 frames written to 2012-10-12-1350019041.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  146500
  Worker for 2012-10-12-1350019045.23-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 293000 frames written to 2012-10-12-1350019045.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  199748
  Worker for 2012-10-12-1350019048.98-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 399496 frames written to 2012-10-12-1350019048.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  164932
  Worker for 2012-10-12-1350019053.98-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 329864 frames written to 2012-10-12-1350019053.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2840627
  Worker for 2012-10-12-1350019058.14-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 5681254 frames written to 2012-10-12-1350019058.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  221252
  Worker for 2012-10-12-1350019125.95-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 442504 frames written to 2012-10-12-1350019125.95-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  111326
  Worker for 2012-10-12-1350019132.51-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 222652 frames written to 2012-10-12-1350019132.51-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  595143
  Worker for 2012-10-12-1350019135.67-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019135.67-demo.wav has no TGID
  done - result 1190286 frames written to 2012-10-12-1350019135.67-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  119876
  Worker for 2012-10-12-1350019153.4-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019153.4-demo.wav has no TGID
  done - result 239752 frames written to 2012-10-12-1350019153.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350019156.46-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019156.46-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350019156.46-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350019158.94-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019158.94-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350019158.94-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  81988
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  106128
  Worker for 2012-10-12-1350019166.07-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 212256 frames written to 2012-10-12-1350019166.07-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75451
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  313412
  Worker for 2012-10-12-1350019171.55-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 626824 frames written to 2012-10-12-1350019171.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  106564
  Worker for 2012-10-12-1350019179.89-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 213128 frames written to 2012-10-12-1350019179.89-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  181316
  Worker for 2012-10-12-1350019183.96-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 362632 frames written to 2012-10-12-1350019183.96-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  116684
  Worker for 2012-10-12-1350019188.51-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 233368 frames written to 2012-10-12-1350019188.51-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  968739
  Worker for 2012-10-12-1350019192.02-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019192.02-demo.wav has no TGID
  done - result 1937478 frames written to 2012-10-12-1350019192.02-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  485444
  Worker for 2012-10-12-1350019215.33-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 970888 frames written to 2012-10-12-1350019215.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  211012
  Worker for 2012-10-12-1350019227.26-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 422024 frames written to 2012-10-12-1350019227.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  269308
  Worker for 2012-10-12-1350019232.54-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 538616 frames written to 2012-10-12-1350019232.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  593972
  Worker for 2012-10-12-1350019239.54-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019239.54-demo.wav has no TGID
  done - result 1187944 frames written to 2012-10-12-1350019239.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350019258.9-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019258.9-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350019258.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  158431
  Worker for 2012-10-12-1350019290.22-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 316862 frames written to 2012-10-12-1350019290.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  173124
  Worker for 2012-10-12-1350019295.02-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 346248 frames written to 2012-10-12-1350019295.02-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  406596
  Worker for 2012-10-12-1350019299.75-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 813192 frames written to 2012-10-12-1350019299.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  79940
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  210998
  Worker for 2012-10-12-1350019312.39-demo.wav
  GLG,44036,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 421996 frames written to 2012-10-12-1350019312.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  244804
  Worker for 2012-10-12-1350019317.68-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019317.68-demo.wav has no TGID
  done - result 489608 frames written to 2012-10-12-1350019317.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  371780
  Worker for 2012-10-12-1350019323.75-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 743560 frames written to 2012-10-12-1350019323.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1280068
  Worker for 2012-10-12-1350019332.83-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019332.83-demo.wav has no TGID
  done - result 2560136 frames written to 2012-10-12-1350019332.83-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  713796
  Worker for 2012-10-12-1350019363.88-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019363.88-demo.wav has no TGID
  done - result 1427592 frames written to 2012-10-12-1350019363.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350019381.33-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019381.33-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350019381.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  166785
  Worker for 2012-10-12-1350019388.72-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 333570 frames written to 2012-10-12-1350019388.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75440
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  601156
  Worker for 2012-10-12-1350019394.12-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019394.12-demo.wav has no TGID
  done - result 1202312 frames written to 2012-10-12-1350019394.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350019408.64-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019408.64-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350019408.64-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  106037
  Worker for 2012-10-12-1350019428.35-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 212074 frames written to 2012-10-12-1350019428.35-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  109636
  Worker for 2012-10-12-1350019431.05-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 219272 frames written to 2012-10-12-1350019431.05-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  74940
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  581662
  Worker for 2012-10-12-1350019435.1-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 1163324 frames written to 2012-10-12-1350019435.1-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1766468
  Worker for 2012-10-12-1350019449.13-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019449.13-demo.wav has no TGID
  done - result 3532936 frames written to 2012-10-12-1350019449.13-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  210805
  Worker for 2012-10-12-1350019492.12-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 421610 frames written to 2012-10-12-1350019492.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  231808
  Worker for 2012-10-12-1350019498.22-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 463616 frames written to 2012-10-12-1350019498.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  235588
  Worker for 2012-10-12-1350019504.47-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 471176 frames written to 2012-10-12-1350019504.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  498714
  Worker for 2012-10-12-1350019510.43-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 997428 frames written to 2012-10-12-1350019510.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  776053
  Worker for 2012-10-12-1350019523.12-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019523.12-demo.wav has no TGID
  done - result 1552106 frames written to 2012-10-12-1350019523.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350019541.84-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019541.84-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350019541.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350019544.3-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019544.3-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350019544.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  125707
  Worker for 2012-10-12-1350019568.88-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 251414 frames written to 2012-10-12-1350019568.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  115780
  Worker for 2012-10-12-1350019572.16-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 231560 frames written to 2012-10-12-1350019572.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1042467
  Worker for 2012-10-12-1350019575.14-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 2084934 frames written to 2012-10-12-1350019575.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1457220
  Worker for 2012-10-12-1350019600.22-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 2914440 frames written to 2012-10-12-1350019600.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  117828
  Worker for 2012-10-12-1350019635.09-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 235656 frames written to 2012-10-12-1350019635.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  110660
  Worker for 2012-10-12-1350019638.15-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 221320 frames written to 2012-10-12-1350019638.15-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1654852
  Worker for 2012-10-12-1350019641.67-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 3309704 frames written to 2012-10-12-1350019641.67-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  607300
  Worker for 2012-10-12-1350019682.01-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019682.01-demo.wav has no TGID
  done - result 1214600 frames written to 2012-10-12-1350019682.01-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350019696.83-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019696.83-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350019696.83-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  173119
  Worker for 2012-10-12-1350019747.47-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 346238 frames written to 2012-10-12-1350019747.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  612654
  Worker for 2012-10-12-1350019753.14-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1225308 frames written to 2012-10-12-1350019753.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  308963
  Worker for 2012-10-12-1350019768.76-demo.wav
  GLG,40068,NFM,0,0,CanberraBlackMnt,AustralianCapita,RFS Ops 1,1,0,NONE,NONE,NONE
  done - result 617926 frames written to 2012-10-12-1350019768.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  216132
  Worker for 2012-10-12-1350019776.33-demo.wav
  GLG,40068,NFM,0,0,CanberraBlackMnt,AustralianCapita,RFS Ops 1,1,0,NONE,NONE,NONE
  done - result 432264 frames written to 2012-10-12-1350019776.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  529476
  Worker for 2012-10-12-1350019781.68-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019781.68-demo.wav has no TGID
  done - result 1058952 frames written to 2012-10-12-1350019781.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  217156
  Worker for 2012-10-12-1350019794.48-demo.wav
  GLG,40068,NFM,0,0,CanberraBlackMnt,AustralianCapita,RFS Ops 1,1,1,NONE,NONE,NONE
  done - result 434312 frames written to 2012-10-12-1350019794.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1112056
  Worker for 2012-10-12-1350019800.18-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019800.18-demo.wav has no TGID
  done - result 2224112 frames written to 2012-10-12-1350019800.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  550700
  Worker for 2012-10-12-1350019827.35-demo.wav
  GLG,40068,NFM,0,0,CanberraBlackMnt,AustralianCapita,RFS Ops 1,1,0,NONE,NONE,NONE
  done - result 1101400 frames written to 2012-10-12-1350019827.35-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  873540
  Worker for 2012-10-12-1350019840.74-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019840.74-demo.wav has no TGID
  done - result 1747080 frames written to 2012-10-12-1350019840.74-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  776260
  Worker for 2012-10-12-1350019861.75-demo.wav
  GLG,40068,NFM,0,0,CanberraBlackMnt,AustralianCapita,RFS Ops 1,1,1,NONE,NONE,NONE
  done - result 1552520 frames written to 2012-10-12-1350019861.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  271428
  Worker for 2012-10-12-1350019880.42-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019880.42-demo.wav has no TGID
  done - result 542856 frames written to 2012-10-12-1350019880.42-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  463928
  Worker for 2012-10-12-1350019887.01-demo.wav
  GLG,40068,NFM,0,0,CanberraBlackMnt,AustralianCapita,RFS Ops 1,1,0,NONE,NONE,NONE
  done - result 927856 frames written to 2012-10-12-1350019887.01-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  203832
  Worker for 2012-10-12-1350019898.16-demo.wav
  GLG,40068,NFM,0,0,CanberraBlackMnt,AustralianCapita,RFS Ops 1,1,0,NONE,NONE,NONE
  done - result 407664 frames written to 2012-10-12-1350019898.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  302133
  Worker for 2012-10-12-1350019903.17-demo.wav
  GLG,40068,NFM,0,0,CanberraBlackMnt,AustralianCapita,RFS Ops 1,1,1,NONE,NONE,NONE
  done - result 604266 frames written to 2012-10-12-1350019903.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  612621
  Worker for 2012-10-12-1350019910.54-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019910.54-demo.wav has no TGID
  done - result 1225242 frames written to 2012-10-12-1350019910.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350019928.23-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019928.23-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350019928.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350019931.01-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350019931.01-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350019931.01-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86072
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  150351
  Worker for 2012-10-12-1350020000.1-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 300702 frames written to 2012-10-12-1350020000.1-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  212036
  Worker for 2012-10-12-1350020003.94-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 424072 frames written to 2012-10-12-1350020003.94-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  662596
  Worker for 2012-10-12-1350020009.39-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020009.39-demo.wav has no TGID
  done - result 1325192 frames written to 2012-10-12-1350020009.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1432397
  Worker for 2012-10-12-1350020025.71-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 2864794 frames written to 2012-10-12-1350020025.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  142404
  Worker for 2012-10-12-1350020060.14-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 284808 frames written to 2012-10-12-1350020060.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  402500
  Worker for 2012-10-12-1350020064.24-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 805000 frames written to 2012-10-12-1350020064.24-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  745310
  Worker for 2012-10-12-1350020075.32-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020075.32-demo.wav has no TGID
  done - result 1490620 frames written to 2012-10-12-1350020075.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350020093.27-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020093.27-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350020093.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350020095.81-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020095.81-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350020095.81-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  143122
  Worker for 2012-10-12-1350020178.62-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 286244 frames written to 2012-10-12-1350020178.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  285025
  Worker for 2012-10-12-1350020183.25-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 570050 frames written to 2012-10-12-1350020183.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  281982
  Worker for 2012-10-12-1350020191.31-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 563964 frames written to 2012-10-12-1350020191.31-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  81988
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  111684
  Worker for 2012-10-12-1350020200.52-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 223368 frames written to 2012-10-12-1350020200.52-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  161860
  Worker for 2012-10-12-1350020203.84-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 323720 frames written to 2012-10-12-1350020203.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  848964
  Worker for 2012-10-12-1350020208.18-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1697928 frames written to 2012-10-12-1350020208.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  791620
  Worker for 2012-10-12-1350020229.79-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020229.79-demo.wav has no TGID
  done - result 1583240 frames written to 2012-10-12-1350020229.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  529922
  Worker for 2012-10-12-1350020248.77-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 1059844 frames written to 2012-10-12-1350020248.77-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  140356
  Worker for 2012-10-12-1350020266.58-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 280712 frames written to 2012-10-12-1350020266.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350020270.09-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 206984 frames written to 2012-10-12-1350020270.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1989700
  Worker for 2012-10-12-1350020272.68-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 3979400 frames written to 2012-10-12-1350020272.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  137268
  Worker for 2012-10-12-1350020320.97-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 274536 frames written to 2012-10-12-1350020320.97-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  566313
  Worker for 2012-10-12-1350020324.73-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020324.73-demo.wav has no TGID
  done - result 1132626 frames written to 2012-10-12-1350020324.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350020342.91-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020342.91-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350020342.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350020345.48-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020345.48-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350020345.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350020347.96-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020347.96-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350020347.96-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85196
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105887
  Worker for 2012-10-12-1350020382.79-demo.wav
  GLG,30004,NFM,0,0,CanberraBlackMnt,RuralFireSvc-RFS,L GEORG,1,0,NONE,NONE,NONE
  done - result 211774 frames written to 2012-10-12-1350020382.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  337988
  Worker for 2012-10-12-1350020386.0-demo.wav
  GLG,30004,NFM,0,0,CanberraBlackMnt,RuralFireSvc-RFS,L GEORG,1,0,NONE,NONE,NONE
  done - result 675976 frames written to 2012-10-12-1350020386.0-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  463914
  Worker for 2012-10-12-1350020394.92-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 927828 frames written to 2012-10-12-1350020394.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  527956
  Worker for 2012-10-12-1350020407.25-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020407.25-demo.wav has no TGID
  done - result 1055912 frames written to 2012-10-12-1350020407.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350020425.02-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020425.02-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350020425.02-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  94276
  Worker for 2012-10-12-1350020427.58-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020427.58-demo.wav has no TGID
  done - result 188552 frames written to 2012-10-12-1350020427.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104980
  Worker for 2012-10-12-1350020450.42-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 209960 frames written to 2012-10-12-1350020450.42-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76868
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  553028
  Worker for 2012-10-12-1350020454.56-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020454.56-demo.wav has no TGID
  done - result 1106056 frames written to 2012-10-12-1350020454.56-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  95300
  Worker for 2012-10-12-1350020467.98-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020467.98-demo.wav has no TGID
  done - result 190600 frames written to 2012-10-12-1350020467.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  151894
  Worker for 2012-10-12-1350020543.63-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 303788 frames written to 2012-10-12-1350020543.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  154692
  Worker for 2012-10-12-1350020547.59-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 309384 frames written to 2012-10-12-1350020547.59-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  193604
  Worker for 2012-10-12-1350020551.54-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 387208 frames written to 2012-10-12-1350020551.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  785476
  Worker for 2012-10-12-1350020557.12-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020557.12-demo.wav has no TGID
  done - result 1570952 frames written to 2012-10-12-1350020557.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350020576.3-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020576.3-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350020576.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  110348
  Worker for 2012-10-12-1350020628.64-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 220696 frames written to 2012-10-12-1350020628.64-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  114756
  Worker for 2012-10-12-1350020632.27-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 229512 frames written to 2012-10-12-1350020632.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  713796
  Worker for 2012-10-12-1350020635.7-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020635.7-demo.wav has no TGID
  done - result 1427592 frames written to 2012-10-12-1350020635.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  163675
  Worker for 2012-10-12-1350020653.08-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 327350 frames written to 2012-10-12-1350020653.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  741116
  Worker for 2012-10-12-1350020658.37-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020658.37-demo.wav has no TGID
  done - result 1482232 frames written to 2012-10-12-1350020658.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  94276
  Worker for 2012-10-12-1350020676.25-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020676.25-demo.wav has no TGID
  done - result 188552 frames written to 2012-10-12-1350020676.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  315460
  Worker for 2012-10-12-1350020678.6-demo.wav
  GLG,44011,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 630920 frames written to 2012-10-12-1350020678.6-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  921668
  Worker for 2012-10-12-1350020686.37-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020686.37-demo.wav has no TGID
  done - result 1843336 frames written to 2012-10-12-1350020686.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  477252
  Worker for 2012-10-12-1350020708.5-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 954504 frames written to 2012-10-12-1350020708.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  546884
  Worker for 2012-10-12-1350020720.93-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020720.93-demo.wav has no TGID
  done - result 1093768 frames written to 2012-10-12-1350020720.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350020734.19-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020734.19-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350020734.19-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  110660
  Worker for 2012-10-12-1350020736.7-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 221320 frames written to 2012-10-12-1350020736.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  263236
  Worker for 2012-10-12-1350020739.43-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 526472 frames written to 2012-10-12-1350020739.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91184
  Worker for 2012-10-12-1350020745.96-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 182368 frames written to 2012-10-12-1350020745.96-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  576222
  Worker for 2012-10-12-1350020748.86-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020748.86-demo.wav has no TGID
  done - result 1152444 frames written to 2012-10-12-1350020748.86-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350020766.73-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020766.73-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350020766.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93252
  Worker for 2012-10-12-1350020769.35-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020769.35-demo.wav has no TGID
  done - result 186504 frames written to 2012-10-12-1350020769.35-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  173223
  Worker for 2012-10-12-1350020830.91-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 346446 frames written to 2012-10-12-1350020830.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  219712
  Worker for 2012-10-12-1350020836.27-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 439424 frames written to 2012-10-12-1350020836.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  305220
  Worker for 2012-10-12-1350020842.06-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 610440 frames written to 2012-10-12-1350020842.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1365060
  Worker for 2012-10-12-1350020849.44-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020849.44-demo.wav has no TGID
  done - result 2730120 frames written to 2012-10-12-1350020849.44-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  522767
  Worker for 2012-10-12-1350020882.21-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020882.21-demo.wav has no TGID
  done - result 1045534 frames written to 2012-10-12-1350020882.21-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  305219
  Worker for 2012-10-12-1350020899.16-demo.wav
  GLG,44011,NFM,0,0,CanberraMtAinsli,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 610438 frames written to 2012-10-12-1350020899.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  153668
  Worker for 2012-10-12-1350020906.73-demo.wav
  GLG,44011,NFM,0,0,CanberraMtAinsli,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 307336 frames written to 2012-10-12-1350020906.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  806980
  Worker for 2012-10-12-1350020910.92-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020910.92-demo.wav has no TGID
  done - result 1613960 frames written to 2012-10-12-1350020910.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  503928
  Worker for 2012-10-12-1350020930.34-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020930.34-demo.wav has no TGID
  done - result 1007856 frames written to 2012-10-12-1350020930.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  134212
  Worker for 2012-10-12-1350020947.81-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 268424 frames written to 2012-10-12-1350020947.81-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  140356
  Worker for 2012-10-12-1350020952.1-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 280712 frames written to 2012-10-12-1350020952.1-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  300100
  Worker for 2012-10-12-1350020955.97-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 600200 frames written to 2012-10-12-1350020955.97-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  74452
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  688196
  Worker for 2012-10-12-1350020965.61-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020965.61-demo.wav has no TGID
  done - result 1376392 frames written to 2012-10-12-1350020965.61-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350020982.17-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020982.17-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350020982.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350020984.73-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350020984.73-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350020984.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  83012
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  318895
  Worker for 2012-10-12-1350021064.24-demo.wav
  GLG,44011,NFM,0,0,CanberraMtAinsli,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 637790 frames written to 2012-10-12-1350021064.24-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1211912
  Worker for 2012-10-12-1350021072.04-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021072.04-demo.wav has no TGID
  done - result 2423824 frames written to 2012-10-12-1350021072.04-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105540
  Worker for 2012-10-12-1350021104.96-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021104.96-demo.wav has no TGID
  done - result 211080 frames written to 2012-10-12-1350021104.96-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350021107.58-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021107.58-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350021107.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  279322
  Worker for 2012-10-12-1350021224.54-demo.wav
  GLG,44011,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 558644 frames written to 2012-10-12-1350021224.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  129092
  Worker for 2012-10-12-1350021231.39-demo.wav
  GLG,44011,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 258184 frames written to 2012-10-12-1350021231.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  553028
  Worker for 2012-10-12-1350021234.7-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021234.7-demo.wav has no TGID
  done - result 1106056 frames written to 2012-10-12-1350021234.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  748612
  Worker for 2012-10-12-1350021248.46-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021248.46-demo.wav has no TGID
  done - result 1497224 frames written to 2012-10-12-1350021248.46-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350021266.53-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021266.53-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350021266.53-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  68751
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  44106
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105283
  Worker for 2012-10-12-1350021329.91-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 210566 frames written to 2012-10-12-1350021329.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  646212
  Worker for 2012-10-12-1350021335.72-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021335.72-demo.wav has no TGID
  done - result 1292424 frames written to 2012-10-12-1350021335.72-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350021351.35-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021351.35-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350021351.35-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350021353.79-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021353.79-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350021353.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  114321
  Worker for 2012-10-12-1350021406.83-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 228642 frames written to 2012-10-12-1350021406.83-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  443128
  Worker for 2012-10-12-1350021411.08-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 886256 frames written to 2012-10-12-1350021411.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  643140
  Worker for 2012-10-12-1350021422.83-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021422.83-demo.wav has no TGID
  done - result 1286280 frames written to 2012-10-12-1350021422.83-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350021438.45-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021438.45-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350021438.45-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350021440.99-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021440.99-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350021440.99-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  83012
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  579910
  Worker for 2012-10-12-1350021467.24-demo.wav
  GLG,30004,NFM,0,0,CanberraBlackMnt,RuralFireSvc-RFS,L GEORG,1,0,NONE,NONE,NONE
  done - result 1159820 frames written to 2012-10-12-1350021467.24-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  460868
  Worker for 2012-10-12-1350021481.29-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 921736 frames written to 2012-10-12-1350021481.29-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  123972
  Worker for 2012-10-12-1350021492.51-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 247944 frames written to 2012-10-12-1350021492.51-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  529476
  Worker for 2012-10-12-1350021495.9-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021495.9-demo.wav has no TGID
  done - result 1058952 frames written to 2012-10-12-1350021495.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  505057
  Worker for 2012-10-12-1350021508.76-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021508.76-demo.wav has no TGID
  done - result 1010114 frames written to 2012-10-12-1350021508.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  95300
  Worker for 2012-10-12-1350021526.28-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021526.28-demo.wav has no TGID
  done - result 190600 frames written to 2012-10-12-1350021526.28-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350021528.75-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021528.75-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350021528.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  215019
  Worker for 2012-10-12-1350021534.81-demo.wav
  GLG,44011,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 430038 frames written to 2012-10-12-1350021534.81-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102468
  Worker for 2012-10-12-1350021540.18-demo.wav
  GLG,44011,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 204936 frames written to 2012-10-12-1350021540.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  518212
  Worker for 2012-10-12-1350021542.8-demo.wav
  GLG,44011,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44011,1,1,NONE,NONE,NONE
  done - result 1036424 frames written to 2012-10-12-1350021542.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  735534
  Worker for 2012-10-12-1350021555.4-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021555.4-demo.wav has no TGID
  done - result 1471068 frames written to 2012-10-12-1350021555.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350021573.06-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021573.06-demo.wav has no TGID
  done - result 206984 frames written to 2012-10-12-1350021573.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350021575.66-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021575.66-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350021575.66-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  113041
  Worker for 2012-10-12-1350021651.08-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 226082 frames written to 2012-10-12-1350021651.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76868
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  155716
  Worker for 2012-10-12-1350021655.14-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 311432 frames written to 2012-10-12-1350021655.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  154692
  Worker for 2012-10-12-1350021659.06-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 309384 frames written to 2012-10-12-1350021659.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  169019
  Worker for 2012-10-12-1350021662.93-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 338038 frames written to 2012-10-12-1350021662.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  761924
  Worker for 2012-10-12-1350021667.84-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021667.84-demo.wav has no TGID
  done - result 1523848 frames written to 2012-10-12-1350021667.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350021686.21-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021686.21-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350021686.21-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  116091
  Worker for 2012-10-12-1350021810.7-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 232182 frames written to 2012-10-12-1350021810.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  146500
  Worker for 2012-10-12-1350021813.71-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 293000 frames written to 2012-10-12-1350021813.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  108612
  Worker for 2012-10-12-1350021817.4-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 217224 frames written to 2012-10-12-1350021817.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  143364
  Worker for 2012-10-12-1350021820.23-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 286728 frames written to 2012-10-12-1350021820.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  722609
  Worker for 2012-10-12-1350021825.05-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1445218 frames written to 2012-10-12-1350021825.05-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  248900
  Worker for 2012-10-12-1350021842.87-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 497800 frames written to 2012-10-12-1350021842.87-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  364612
  Worker for 2012-10-12-1350021849.12-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021849.12-demo.wav has no TGID
  done - result 729224 frames written to 2012-10-12-1350021849.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  511866
  Worker for 2012-10-12-1350021857.98-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021857.98-demo.wav has no TGID
  done - result 1023732 frames written to 2012-10-12-1350021857.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350021875.7-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021875.7-demo.wav has no TGID
  done - result 198792 frames written to 2012-10-12-1350021875.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350021878.23-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350021878.23-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350021878.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  121969
  Worker for 2012-10-12-1350022064.33-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 243938 frames written to 2012-10-12-1350022064.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  127044
  Worker for 2012-10-12-1350022067.51-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 254088 frames written to 2012-10-12-1350022067.51-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  325583
  Worker for 2012-10-12-1350022072.14-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 651166 frames written to 2012-10-12-1350022072.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  918596
  Worker for 2012-10-12-1350022080.14-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 1837192 frames written to 2012-10-12-1350022080.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  188292
  Worker for 2012-10-12-1350022102.23-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 376584 frames written to 2012-10-12-1350022102.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  756786
  Worker for 2012-10-12-1350022107.24-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 1513572 frames written to 2012-10-12-1350022107.24-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  401760
  Worker for 2012-10-12-1350022126.26-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 803520 frames written to 2012-10-12-1350022126.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  293956
  Worker for 2012-10-12-1350022136.6-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022136.6-demo.wav has no TGID
  done - result 587912 frames written to 2012-10-12-1350022136.6-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  739077
  Worker for 2012-10-12-1350022144.22-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022144.22-demo.wav has no TGID
  done - result 1478154 frames written to 2012-10-12-1350022144.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350022162.09-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022162.09-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350022162.09-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  112770
  Worker for 2012-10-12-1350022243.05-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 225540 frames written to 2012-10-12-1350022243.05-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  122948
  Worker for 2012-10-12-1350022247.68-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 245896 frames written to 2012-10-12-1350022247.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2245700
  Worker for 2012-10-12-1350022251.43-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022251.43-demo.wav has no TGID
  done - result 4491400 frames written to 2012-10-12-1350022251.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  503544
  Worker for 2012-10-12-1350022305.11-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022305.11-demo.wav has no TGID
  done - result 1007088 frames written to 2012-10-12-1350022305.11-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102468
  Worker for 2012-10-12-1350022321.44-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022321.44-demo.wav has no TGID
  done - result 204936 frames written to 2012-10-12-1350022321.44-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  112652
  Worker for 2012-10-12-1350022348.06-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 225304 frames written to 2012-10-12-1350022348.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76868
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  263236
  Worker for 2012-10-12-1350022352.22-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 526472 frames written to 2012-10-12-1350022352.22-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  137284
  Worker for 2012-10-12-1350022358.73-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 274568 frames written to 2012-10-12-1350022358.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  171076
  Worker for 2012-10-12-1350022362.47-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 342152 frames written to 2012-10-12-1350022362.47-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  354122
  Worker for 2012-10-12-1350022366.83-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022366.83-demo.wav has no TGID
  done - result 708244 frames written to 2012-10-12-1350022366.83-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  249924
  Worker for 2012-10-12-1350022375.53-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 499848 frames written to 2012-10-12-1350022375.53-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  428100
  Worker for 2012-10-12-1350022381.88-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022381.88-demo.wav has no TGID
  done - result 856200 frames written to 2012-10-12-1350022381.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  547901
  Worker for 2012-10-12-1350022392.31-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022392.31-demo.wav has no TGID
  done - result 1095802 frames written to 2012-10-12-1350022392.31-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350022410.1-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022410.1-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350022410.1-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350022412.62-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022412.62-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350022412.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104715
  Worker for 2012-10-12-1350022459.41-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 209430 frames written to 2012-10-12-1350022459.41-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  163908
  Worker for 2012-10-12-1350022462.5-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 327816 frames written to 2012-10-12-1350022462.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  247876
  Worker for 2012-10-12-1350022466.68-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 495752 frames written to 2012-10-12-1350022466.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  293894
  Worker for 2012-10-12-1350022473.53-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 587788 frames written to 2012-10-12-1350022473.53-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  538701
  Worker for 2012-10-12-1350022483.6-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022483.6-demo.wav has no TGID
  done - result 1077402 frames written to 2012-10-12-1350022483.6-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104516
  Worker for 2012-10-12-1350022500.28-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022500.28-demo.wav has no TGID
  done - result 209032 frames written to 2012-10-12-1350022500.28-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350022502.89-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022502.89-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350022502.89-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350022505.2-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022505.2-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350022505.2-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  83012
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  271807
  Worker for 2012-10-12-1350022591.16-demo.wav
  GLG,10301,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 543614 frames written to 2012-10-12-1350022591.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  298052
  Worker for 2012-10-12-1350022598.11-demo.wav
  GLG,10301,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 596104 frames written to 2012-10-12-1350022598.11-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  669764
  Worker for 2012-10-12-1350022607.2-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022607.2-demo.wav has no TGID
  done - result 1339528 frames written to 2012-10-12-1350022607.2-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350022623.36-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022623.36-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350022623.36-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  147524
  Worker for 2012-10-12-1350022625.94-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 295048 frames written to 2012-10-12-1350022625.94-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  137414
  Worker for 2012-10-12-1350022631.16-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 274828 frames written to 2012-10-12-1350022631.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  246851
  Worker for 2012-10-12-1350022634.65-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 493702 frames written to 2012-10-12-1350022634.65-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  683076
  Worker for 2012-10-12-1350022640.77-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022640.77-demo.wav has no TGID
  done - result 1366152 frames written to 2012-10-12-1350022640.77-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  520075
  Worker for 2012-10-12-1350022657.25-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022657.25-demo.wav has no TGID
  done - result 1040150 frames written to 2012-10-12-1350022657.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350022674.66-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022674.66-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350022674.66-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350022677.27-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022677.27-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350022677.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  171114
  Worker for 2012-10-12-1350022779.43-demo.wav
  GLG,40093,NFM,0,0,CanberraMtAinsli,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 342228 frames written to 2012-10-12-1350022779.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75024
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  370756
  Worker for 2012-10-12-1350022785.06-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 741512 frames written to 2012-10-12-1350022785.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  331822
  Worker for 2012-10-12-1350022794.17-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 663644 frames written to 2012-10-12-1350022794.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  200768
  Worker for 2012-10-12-1350022802.58-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 401536 frames written to 2012-10-12-1350022802.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  767044
  Worker for 2012-10-12-1350022807.6-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022807.6-demo.wav has no TGID
  done - result 1534088 frames written to 2012-10-12-1350022807.6-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  447556
  Worker for 2012-10-12-1350022826.1-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 895112 frames written to 2012-10-12-1350022826.1-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  249103
  Worker for 2012-10-12-1350022837.62-demo.wav
  GLG,40093,NFM,0,0,CanberraBlackMnt,AustralianCapita,PCL Rural,1,0,NONE,NONE,NONE
  done - result 498206 frames written to 2012-10-12-1350022837.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1975364
  Worker for 2012-10-12-1350022844.28-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022844.28-demo.wav has no TGID
  done - result 3950728 frames written to 2012-10-12-1350022844.28-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  649284
  Worker for 2012-10-12-1350022891.98-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022891.98-demo.wav has no TGID
  done - result 1298568 frames written to 2012-10-12-1350022891.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350022907.54-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022907.54-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350022907.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350022910.18-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350022910.18-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350022910.18-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  85060
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  249058
  Worker for 2012-10-12-1350023085.91-demo.wav
  GLG,44011,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 498116 frames written to 2012-10-12-1350023085.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  138290
  Worker for 2012-10-12-1350023092.55-demo.wav
  GLG,44011,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 276580 frames written to 2012-10-12-1350023092.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  686148
  Worker for 2012-10-12-1350023096.79-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023096.79-demo.wav has no TGID
  done - result 1372296 frames written to 2012-10-12-1350023096.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350023113.5-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023113.5-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350023113.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  123284
  Worker for 2012-10-12-1350023155.71-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 246568 frames written to 2012-10-12-1350023155.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  224324
  Worker for 2012-10-12-1350023159.01-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 448648 frames written to 2012-10-12-1350023159.01-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  164932
  Worker for 2012-10-12-1350023164.55-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 329864 frames written to 2012-10-12-1350023164.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  584292
  Worker for 2012-10-12-1350023168.94-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023168.94-demo.wav has no TGID
  done - result 1168584 frames written to 2012-10-12-1350023168.94-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102468
  Worker for 2012-10-12-1350023186.75-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023186.75-demo.wav has no TGID
  done - result 204936 frames written to 2012-10-12-1350023186.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  96324
  Worker for 2012-10-12-1350023189.38-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023189.38-demo.wav has no TGID
  done - result 192648 frames written to 2012-10-12-1350023189.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105601
  Worker for 2012-10-12-1350023195.32-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 211202 frames written to 2012-10-12-1350023195.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  139332
  Worker for 2012-10-12-1350023198.08-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 278664 frames written to 2012-10-12-1350023198.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  136260
  Worker for 2012-10-12-1350023202.0-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 272520 frames written to 2012-10-12-1350023202.0-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  473134
  Worker for 2012-10-12-1350023206.28-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023206.28-demo.wav has no TGID
  done - result 946268 frames written to 2012-10-12-1350023206.28-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  745540
  Worker for 2012-10-12-1350023217.76-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1491080 frames written to 2012-10-12-1350023217.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  164932
  Worker for 2012-10-12-1350023236.02-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 329864 frames written to 2012-10-12-1350023236.02-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  607964
  Worker for 2012-10-12-1350023240.29-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023240.29-demo.wav has no TGID
  done - result 1215928 frames written to 2012-10-12-1350023240.29-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  323652
  Worker for 2012-10-12-1350023255.03-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 647304 frames written to 2012-10-12-1350023255.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  111684
  Worker for 2012-10-12-1350023263.03-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 223368 frames written to 2012-10-12-1350023263.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  584233
  Worker for 2012-10-12-1350023266.19-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023266.19-demo.wav has no TGID
  done - result 1168466 frames written to 2012-10-12-1350023266.19-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  106564
  Worker for 2012-10-12-1350023284.06-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023284.06-demo.wav has no TGID
  done - result 213128 frames written to 2012-10-12-1350023284.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350023286.77-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023286.77-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350023286.77-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  66561
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  166014
  Worker for 2012-10-12-1350023343.99-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 332028 frames written to 2012-10-12-1350023343.99-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  190233
  Worker for 2012-10-12-1350023349.32-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 380466 frames written to 2012-10-12-1350023349.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  230468
  Worker for 2012-10-12-1350023354.25-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 460936 frames written to 2012-10-12-1350023354.25-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1071722
  Worker for 2012-10-12-1350023360.08-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023360.08-demo.wav has no TGID
  done - result 2143444 frames written to 2012-10-12-1350023360.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102468
  Worker for 2012-10-12-1350023389.46-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023389.46-demo.wav has no TGID
  done - result 204936 frames written to 2012-10-12-1350023389.46-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350023392.01-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023392.01-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350023392.01-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104928
  Worker for 2012-10-12-1350023644.34-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 209856 frames written to 2012-10-12-1350023644.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  184750
  Worker for 2012-10-12-1350023647.98-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 369500 frames written to 2012-10-12-1350023647.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1329216
  Worker for 2012-10-12-1350023653.11-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 2658432 frames written to 2012-10-12-1350023653.11-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  77892
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  178244
  Worker for 2012-10-12-1350023687.53-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 356488 frames written to 2012-10-12-1350023687.53-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  575556
  Worker for 2012-10-12-1350023691.98-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023691.98-demo.wav has no TGID
  done - result 1151112 frames written to 2012-10-12-1350023691.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  175777
  Worker for 2012-10-12-1350023706.37-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 351554 frames written to 2012-10-12-1350023706.37-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  180291
  Worker for 2012-10-12-1350023710.93-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 360582 frames written to 2012-10-12-1350023710.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  196676
  Worker for 2012-10-12-1350023715.98-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 393352 frames written to 2012-10-12-1350023715.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  673760
  Worker for 2012-10-12-1350023721.23-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023721.23-demo.wav has no TGID
  done - result 1347520 frames written to 2012-10-12-1350023721.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  500492
  Worker for 2012-10-12-1350023737.56-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023737.56-demo.wav has no TGID
  done - result 1000984 frames written to 2012-10-12-1350023737.56-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350023755.12-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023755.12-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350023755.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  249315
  Worker for 2012-10-12-1350023873.4-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 498630 frames written to 2012-10-12-1350023873.4-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  132157
  Worker for 2012-10-12-1350023880.86-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 264314 frames written to 2012-10-12-1350023880.86-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  464961
  Worker for 2012-10-12-1350023885.14-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023885.14-demo.wav has no TGID
  done - result 929922 frames written to 2012-10-12-1350023885.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  489198
  Worker for 2012-10-12-1350023896.41-demo.wav
  GLG,44029,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 978396 frames written to 2012-10-12-1350023896.41-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  114756
  Worker for 2012-10-12-1350023908.32-demo.wav
  GLG,44029,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 229512 frames written to 2012-10-12-1350023908.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  127033
  Worker for 2012-10-12-1350023911.21-demo.wav
  GLG,44029,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 254066 frames written to 2012-10-12-1350023911.21-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2950212
  Worker for 2012-10-12-1350023914.38-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023914.38-demo.wav has no TGID
  done - result 5900424 frames written to 2012-10-12-1350023914.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  152644
  Worker for 2012-10-12-1350023984.85-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 305288 frames written to 2012-10-12-1350023984.85-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  147524
  Worker for 2012-10-12-1350023989.34-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 295048 frames written to 2012-10-12-1350023989.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  607037
  Worker for 2012-10-12-1350023993.61-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350023993.61-demo.wav has no TGID
  done - result 1214074 frames written to 2012-10-12-1350023993.61-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  329796
  Worker for 2012-10-12-1350024008.23-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 659592 frames written to 2012-10-12-1350024008.23-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  472994
  Worker for 2012-10-12-1350024017.48-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 945988 frames written to 2012-10-12-1350024017.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  324676
  Worker for 2012-10-12-1350024029.29-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 649352 frames written to 2012-10-12-1350024029.29-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2394606
  Worker for 2012-10-12-1350024037.2-demo.wav
  GLG,44011,NFM,0,0,CanberraMtAinsli,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 4789212 frames written to 2012-10-12-1350024037.2-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  2442395
  Worker for 2012-10-12-1350024094.58-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024094.58-demo.wav has no TGID
  done - result 4884790 frames written to 2012-10-12-1350024094.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104072
  Worker for 2012-10-12-1350024157.02-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024157.02-demo.wav has no TGID
  done - result 208144 frames written to 2012-10-12-1350024157.02-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  155729
  Worker for 2012-10-12-1350024161.43-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 311458 frames written to 2012-10-12-1350024161.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  75139
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  606276
  Worker for 2012-10-12-1350024166.94-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024166.94-demo.wav has no TGID
  done - result 1212552 frames written to 2012-10-12-1350024166.94-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350024181.59-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024181.59-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350024181.59-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105540
  Worker for 2012-10-12-1350024184.12-demo.wav
  GLG,44029,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 211080 frames written to 2012-10-12-1350024184.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  308878
  Worker for 2012-10-12-1350024187.79-demo.wav
  GLG,44011,NFM,0,0,CanberraMtAinsli,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 617756 frames written to 2012-10-12-1350024187.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  159810
  Worker for 2012-10-12-1350024195.64-demo.wav
  GLG,44011,NFM,0,0,CanberraMtAinsli,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 319620 frames written to 2012-10-12-1350024195.64-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  673860
  Worker for 2012-10-12-1350024199.78-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024199.78-demo.wav has no TGID
  done - result 1347720 frames written to 2012-10-12-1350024199.78-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  472132
  Worker for 2012-10-12-1350024216.03-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 944264 frames written to 2012-10-12-1350024216.03-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350024227.48-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 202888 frames written to 2012-10-12-1350024227.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  111664
  Worker for 2012-10-12-1350024230.89-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 223328 frames written to 2012-10-12-1350024230.89-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  657476
  Worker for 2012-10-12-1350024234.08-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024234.08-demo.wav has no TGID
  done - result 1314952 frames written to 2012-10-12-1350024234.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  189508
  Worker for 2012-10-12-1350024249.89-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 379016 frames written to 2012-10-12-1350024249.89-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  705379
  Worker for 2012-10-12-1350024255.33-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024255.33-demo.wav has no TGID
  done - result 1410758 frames written to 2012-10-12-1350024255.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102467
  Worker for 2012-10-12-1350024274.56-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024274.56-demo.wav has no TGID
  done - result 204934 frames written to 2012-10-12-1350024274.56-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  83012
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  203122
  Worker for 2012-10-12-1350024333.11-demo.wav
  GLG,44011,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 406244 frames written to 2012-10-12-1350024333.11-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  233540
  Worker for 2012-10-12-1350024338.12-demo.wav
  GLG,44011,NFM,0,0,CanberraBlackMnt,AustralianCapita,ACTION 44011,1,0,NONE,NONE,NONE
  done - result 467080 frames written to 2012-10-12-1350024338.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  779377
  Worker for 2012-10-12-1350024343.82-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024343.82-demo.wav has no TGID
  done - result 1558754 frames written to 2012-10-12-1350024343.82-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  502030
  Worker for 2012-10-12-1350024362.65-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024362.65-demo.wav has no TGID
  done - result 1004060 frames written to 2012-10-12-1350024362.65-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350024379.64-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024379.64-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350024379.64-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  88132
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  120798
  Worker for 2012-10-12-1350024455.56-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 241596 frames written to 2012-10-12-1350024455.56-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  107588
  Worker for 2012-10-12-1350024459.8-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 215176 frames written to 2012-10-12-1350024459.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1049668
  Worker for 2012-10-12-1350024463.16-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 2099336 frames written to 2012-10-12-1350024463.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  582346
  Worker for 2012-10-12-1350024489.89-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024489.89-demo.wav has no TGID
  done - result 1164692 frames written to 2012-10-12-1350024489.89-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  128068
  Worker for 2012-10-12-1350024506.59-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024506.59-demo.wav has no TGID
  done - result 256136 frames written to 2012-10-12-1350024506.59-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93252
  Worker for 2012-10-12-1350024509.91-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024509.91-demo.wav has no TGID
  done - result 186504 frames written to 2012-10-12-1350024509.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  130391
  Worker for 2012-10-12-1350024547.63-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 260782 frames written to 2012-10-12-1350024547.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  148509
  Worker for 2012-10-12-1350024552.27-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 297018 frames written to 2012-10-12-1350024552.27-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  271399
  Worker for 2012-10-12-1350024556.0-demo.wav
  GLG,44028,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 542798 frames written to 2012-10-12-1350024556.0-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  77892
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  114756
  Worker for 2012-10-12-1350024564.01-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024564.01-demo.wav has no TGID
  done - result 229512 frames written to 2012-10-12-1350024564.01-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  501638
  Worker for 2012-10-12-1350024566.9-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024566.9-demo.wav has no TGID
  done - result 1003276 frames written to 2012-10-12-1350024566.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350024584.46-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024584.46-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350024584.46-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  112708
  Worker for 2012-10-12-1350024586.91-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 225416 frames written to 2012-10-12-1350024586.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  335940
  Worker for 2012-10-12-1350024590.93-demo.wav
  GLG,44028,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 671880 frames written to 2012-10-12-1350024590.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  276548
  Worker for 2012-10-12-1350024599.13-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024599.13-demo.wav has no TGID
  done - result 553096 frames written to 2012-10-12-1350024599.13-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  562381
  Worker for 2012-10-12-1350024605.89-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1124762 frames written to 2012-10-12-1350024605.89-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105540
  Worker for 2012-10-12-1350024623.68-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 211080 frames written to 2012-10-12-1350024623.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  149572
  Worker for 2012-10-12-1350024627.01-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 299144 frames written to 2012-10-12-1350024627.01-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  164932
  Worker for 2012-10-12-1350024630.94-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 329864 frames written to 2012-10-12-1350024630.94-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  168004
  Worker for 2012-10-12-1350024635.08-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 336008 frames written to 2012-10-12-1350024635.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  750660
  Worker for 2012-10-12-1350024639.93-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024639.93-demo.wav has no TGID
  done - result 1501320 frames written to 2012-10-12-1350024639.93-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  107588
  Worker for 2012-10-12-1350024658.02-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024658.02-demo.wav has no TGID
  done - result 215176 frames written to 2012-10-12-1350024658.02-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  121622
  Worker for 2012-10-12-1350024735.97-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 243244 frames written to 2012-10-12-1350024735.97-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  267401
  Worker for 2012-10-12-1350024740.26-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 534802 frames written to 2012-10-12-1350024740.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  143428
  Worker for 2012-10-12-1350024746.88-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 286856 frames written to 2012-10-12-1350024746.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  482372
  Worker for 2012-10-12-1350024751.56-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024751.56-demo.wav has no TGID
  done - result 964744 frames written to 2012-10-12-1350024751.56-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  529960
  Worker for 2012-10-12-1350024763.17-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024763.17-demo.wav has no TGID
  done - result 1059920 frames written to 2012-10-12-1350024763.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  161860
  Worker for 2012-10-12-1350024780.67-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 323720 frames written to 2012-10-12-1350024780.67-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  139332
  Worker for 2012-10-12-1350024785.58-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 278664 frames written to 2012-10-12-1350024785.58-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  160836
  Worker for 2012-10-12-1350024789.17-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 321672 frames written to 2012-10-12-1350024789.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1014918
  Worker for 2012-10-12-1350024793.9-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024793.9-demo.wav has no TGID
  done - result 2029836 frames written to 2012-10-12-1350024793.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  103492
  Worker for 2012-10-12-1350024822.84-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024822.84-demo.wav has no TGID
  done - result 206984 frames written to 2012-10-12-1350024822.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350024825.54-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350024825.54-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350024825.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  176558
  Worker for 2012-10-12-1350024992.87-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 353116 frames written to 2012-10-12-1350024992.87-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  123972
  Worker for 2012-10-12-1350024997.68-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 247944 frames written to 2012-10-12-1350024997.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  582724
  Worker for 2012-10-12-1350025000.9-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025000.9-demo.wav has no TGID
  done - result 1165448 frames written to 2012-10-12-1350025000.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  731204
  Worker for 2012-10-12-1350025015.34-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025015.34-demo.wav has no TGID
  done - result 1462408 frames written to 2012-10-12-1350025015.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  101444
  Worker for 2012-10-12-1350025032.97-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025032.97-demo.wav has no TGID
  done - result 202888 frames written to 2012-10-12-1350025032.97-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93252
  Worker for 2012-10-12-1350025035.5-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025035.5-demo.wav has no TGID
  done - result 186504 frames written to 2012-10-12-1350025035.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  163694
  Worker for 2012-10-12-1350025112.57-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 327388 frames written to 2012-10-12-1350025112.57-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  129092
  Worker for 2012-10-12-1350025116.67-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 258184 frames written to 2012-10-12-1350025116.67-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  469600
  Worker for 2012-10-12-1350025119.88-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025119.88-demo.wav has no TGID
  done - result 939200 frames written to 2012-10-12-1350025119.88-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  182340
  Worker for 2012-10-12-1350025131.21-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 364680 frames written to 2012-10-12-1350025131.21-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  571922
  Worker for 2012-10-12-1350025136.14-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025136.14-demo.wav has no TGID
  done - result 1143844 frames written to 2012-10-12-1350025136.14-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  104516
  Worker for 2012-10-12-1350025152.5-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025152.5-demo.wav has no TGID
  done - result 209032 frames written to 2012-10-12-1350025152.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350025155.11-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025155.11-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350025155.11-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90150
  Worker for 2012-10-12-1350025157.59-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025157.59-demo.wav has no TGID
  done - result 180300 frames written to 2012-10-12-1350025157.59-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  83012
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76868
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  44111
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  132647
  Worker for 2012-10-12-1350025290.62-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 265294 frames written to 2012-10-12-1350025290.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  99396
  Worker for 2012-10-12-1350025294.84-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 198792 frames written to 2012-10-12-1350025294.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  146500
  Worker for 2012-10-12-1350025297.71-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 293000 frames written to 2012-10-12-1350025297.71-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  188484
  Worker for 2012-10-12-1350025301.81-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 376968 frames written to 2012-10-12-1350025301.81-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  595077
  Worker for 2012-10-12-1350025306.96-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025306.96-demo.wav has no TGID
  done - result 1190154 frames written to 2012-10-12-1350025306.96-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102468
  Worker for 2012-10-12-1350025325.43-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025325.43-demo.wav has no TGID
  done - result 204936 frames written to 2012-10-12-1350025325.43-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350025327.94-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025327.94-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350025327.94-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  127396
  Worker for 2012-10-12-1350025604.34-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 254792 frames written to 2012-10-12-1350025604.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  114756
  Worker for 2012-10-12-1350025607.55-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 229512 frames written to 2012-10-12-1350025607.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  168986
  Worker for 2012-10-12-1350025611.68-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 337972 frames written to 2012-10-12-1350025611.68-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  158788
  Worker for 2012-10-12-1350025615.92-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 317576 frames written to 2012-10-12-1350025615.92-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  716868
  Worker for 2012-10-12-1350025620.02-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025620.02-demo.wav has no TGID
  done - result 1433736 frames written to 2012-10-12-1350025620.02-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  150486
  Worker for 2012-10-12-1350025637.32-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 300972 frames written to 2012-10-12-1350025637.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  773436
  Worker for 2012-10-12-1350025641.8-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 1546872 frames written to 2012-10-12-1350025641.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  152140
  Worker for 2012-10-12-1350025661.7-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 304280 frames written to 2012-10-12-1350025661.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  113732
  Worker for 2012-10-12-1350025665.83-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 227464 frames written to 2012-10-12-1350025665.83-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1734724
  Worker for 2012-10-12-1350025668.7-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025668.7-demo.wav has no TGID
  done - result 3469448 frames written to 2012-10-12-1350025668.7-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  686148
  Worker for 2012-10-12-1350025710.38-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025710.38-demo.wav has no TGID
  done - result 1372296 frames written to 2012-10-12-1350025710.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  100420
  Worker for 2012-10-12-1350025726.91-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025726.91-demo.wav has no TGID
  done - result 200840 frames written to 2012-10-12-1350025726.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  139334
  Worker for 2012-10-12-1350025736.12-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 278668 frames written to 2012-10-12-1350025736.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  379380
  Worker for 2012-10-12-1350025740.8-demo.wav
  GLG,40067,NFM,0,0,CanberraBlackMnt,,,1,0,NONE,NONE,NONE
  done - result 758760 frames written to 2012-10-12-1350025740.8-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  79940
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  662596
  Worker for 2012-10-12-1350025751.77-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025751.77-demo.wav has no TGID
  done - result 1325192 frames written to 2012-10-12-1350025751.77-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  524356
  Worker for 2012-10-12-1350025767.73-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 1048712 frames written to 2012-10-12-1350025767.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  120900
  Worker for 2012-10-12-1350025780.97-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 241800 frames written to 2012-10-12-1350025780.97-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  268288
  Worker for 2012-10-12-1350025784.32-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 536576 frames written to 2012-10-12-1350025784.32-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  350275
  Worker for 2012-10-12-1350025790.84-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025790.84-demo.wav has no TGID
  done - result 700550 frames written to 2012-10-12-1350025790.84-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  527090
  Worker for 2012-10-12-1350025799.36-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025799.36-demo.wav has no TGID
  done - result 1054180 frames written to 2012-10-12-1350025799.36-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350025817.5-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025817.5-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350025817.5-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350025819.91-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025819.91-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350025819.91-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  84036
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  276421
  Worker for 2012-10-12-1350025844.79-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 552842 frames written to 2012-10-12-1350025844.79-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  505812
  Worker for 2012-10-12-1350025852.11-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025852.11-demo.wav has no TGID
  done - result 1011624 frames written to 2012-10-12-1350025852.11-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  114756
  Worker for 2012-10-12-1350025868.1-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025868.1-demo.wav has no TGID
  done - result 229512 frames written to 2012-10-12-1350025868.1-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350025871.05-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025871.05-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350025871.05-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  152904
  Worker for 2012-10-12-1350025913.61-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 305808 frames written to 2012-10-12-1350025913.61-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  241732
  Worker for 2012-10-12-1350025918.33-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 483464 frames written to 2012-10-12-1350025918.33-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  127941
  Worker for 2012-10-12-1350025924.75-demo.wav
  GLG,40067,NFM,0,0,CanberraMtAinsli,,,1,0,NONE,NONE,NONE
  done - result 255882 frames written to 2012-10-12-1350025924.75-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  202820
  Worker for 2012-10-12-1350025928.06-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025928.06-demo.wav has no TGID
  done - result 405640 frames written to 2012-10-12-1350025928.06-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  522970
  Worker for 2012-10-12-1350025933.12-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025933.12-demo.wav has no TGID
  done - result 1045940 frames written to 2012-10-12-1350025933.12-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102468
  Worker for 2012-10-12-1350025950.86-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025950.86-demo.wav has no TGID
  done - result 204936 frames written to 2012-10-12-1350025950.86-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  92228
  Worker for 2012-10-12-1350025953.54-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350025953.54-demo.wav has no TGID
  done - result 184456 frames written to 2012-10-12-1350025953.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  135842
  Worker for 2012-10-12-1350025988.3-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 271684 frames written to 2012-10-12-1350025988.3-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93252
  Worker for 2012-10-12-1350025991.63-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 186504 frames written to 2012-10-12-1350025991.63-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  366642
  Worker for 2012-10-12-1350025993.94-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 733284 frames written to 2012-10-12-1350025993.94-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  321245
  Worker for 2012-10-12-1350026003.62-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 642490 frames written to 2012-10-12-1350026003.62-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  704580
  Worker for 2012-10-12-1350026012.17-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350026012.17-demo.wav has no TGID
  done - result 1409160 frames written to 2012-10-12-1350026012.17-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  98372
  Worker for 2012-10-12-1350026029.05-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350026029.05-demo.wav has no TGID
  done - result 196744 frames written to 2012-10-12-1350026029.05-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  91204
  Worker for 2012-10-12-1350026031.48-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350026031.48-demo.wav has no TGID
  done - result 182408 frames written to 2012-10-12-1350026031.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  87108
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  127460
  Worker for 2012-10-12-1350026121.24-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 254920 frames written to 2012-10-12-1350026121.24-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  132164
  Worker for 2012-10-12-1350026124.52-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 264328 frames written to 2012-10-12-1350026124.52-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  222276
  Worker for 2012-10-12-1350026127.9-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 444552 frames written to 2012-10-12-1350026127.9-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  796985
  Worker for 2012-10-12-1350026133.96-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350026133.96-demo.wav has no TGID
  done - result 1593970 frames written to 2012-10-12-1350026133.96-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  111684
  Worker for 2012-10-12-1350026157.54-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350026157.54-demo.wav has no TGID
  done - result 223368 frames written to 2012-10-12-1350026157.54-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  90180
  Worker for 2012-10-12-1350026160.73-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350026160.73-demo.wav has no TGID
  done - result 180360 frames written to 2012-10-12-1350026160.73-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76501
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  166462
  Worker for 2012-10-12-1350026328.38-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 332924 frames written to 2012-10-12-1350026328.38-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  95300
  Worker for 2012-10-12-1350026332.55-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 190600 frames written to 2012-10-12-1350026332.55-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1215271
  Worker for 2012-10-12-1350026335.16-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350026335.16-demo.wav has no TGID
  done - result 2430542 frames written to 2012-10-12-1350026335.16-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  102468
  Worker for 2012-10-12-1350026368.34-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350026368.34-demo.wav has no TGID
  done - result 204936 frames written to 2012-10-12-1350026368.34-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  93252
  Worker for 2012-10-12-1350026370.86-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350026370.86-demo.wav has no TGID
  done - result 186504 frames written to 2012-10-12-1350026370.86-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  86084
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  76866
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  108106
  Worker for 2012-10-12-1350026723.98-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 216212 frames written to 2012-10-12-1350026723.98-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  105540
  Worker for 2012-10-12-1350026727.26-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 211080 frames written to 2012-10-12-1350026727.26-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  1018948
  Worker for 2012-10-12-1350026730.76-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350026730.76-demo.wav has no TGID
  done - result 2037896 frames written to 2012-10-12-1350026730.76-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  146500
  Worker for 2012-10-12-1350026755.15-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 293000 frames written to 2012-10-12-1350026755.15-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  787196
  Worker for 2012-10-12-1350026759.39-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350026759.39-demo.wav has no TGID
  done - result 1574392 frames written to 2012-10-12-1350026759.39-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  97348
  Worker for 2012-10-12-1350026778.48-demo.wav
  GLG,,,,,,,,,,,,
  2012-10-12-1350026778.48-demo.wav has no TGID
  done - result 194696 frames written to 2012-10-12-1350026778.48-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  89156
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  144005
  Worker for 2012-10-12-1350026786.08-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 288010 frames written to 2012-10-12-1350026786.08-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  123972
  Worker for 2012-10-12-1350026789.61-demo.wav
  GLG,10106,NFM,0,0,CanberraMtAinsli,FireandRescNewSo,SYD 7,1,0,NONE,NONE,NONE
  done - result 247944 frames written to 2012-10-12-1350026789.61-demo.wav
  ready to record again
  True
  1
  2
  3
  4
  5
  6
  7
  8
  9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  510939
  Worker for 2012-10-12-1350026792.66-demo.wav
 
 
directory:b/pynma (new)
 
file:b/robots.txt (new)
  # robotstxt.org/
 
  User-agent: *
 
file:b/run.bat (new)
  python scannr.py > output.txt
file:a/scannr.py -> file:b/scannr.py
  import logging
  logging.basicConfig(level=logging.DEBUG,
  format='%(asctime)s\t%(levelname)s\t%(message)s')
   
import snd import snd
import time import time
from datetime import date from datetime import date
import threading import threading
from pydispatch import dispatcher from pydispatch import dispatcher
import wave import wave
  import serial
  #python -m serial.tools.miniterm -p COM20 -e -b 115200 --cr
  import psycopg2
  import csv
  import sys,os
   
   
  sys.path.insert(0, os.path.join(os.path.dirname(__file__) or '.', 'pynma'))
  import pynma
   
filename = "demo.wav" filename = "demo.wav"
  MIN_LENGTH = 90000
   
def worker(filename):  
  def worker(filename, length):
   
"""thread worker function """thread worker function
http://www.doughellmann.com/PyMOTW/threading/ http://www.doughellmann.com/PyMOTW/threading/
  https://github.com/uskr/pynma
  ffmpeg -i 2012-09-29-1348911268.34-demo.wav -ar 8000 -ab 4.75k test.3gp
  http://stackoverflow.com/questions/2559746/getting-error-while-converting-wav-to-amr-using-ffmpeg
  """
  print 'Worker for '+filename
  ser.write("GLG\r")
  line = ser.readline() # read a '\n' terminated line
  print line
  reader = csv.reader([line])
  for row in reader:
  #GLG,40078,NFM,0,0,CanberraBlackMnt,AustralianCapita,SES Ops 1,1,0,NONE,NONE,NONE
  if (row[0] != 'GLG'):
  print "uh oh"
  if (row[1] != ''):
  tgid = row[1]
  #nma.push("scannr", "ping", filename, "http://www.google.com")
  tgname = row[7]
  sitename = row[5]
  """http://initd.org/psycopg/docs/usage.html"""
  cur = conn.cursor()
  cur.execute("INSERT INTO recordings (filename,tgid,tgname,sitename,length) VALUES (%s, %s,%s, %s, %s)",(filename,tgid,tgname,sitename, length))
  conn.commit()
  cur.close()
  else:
  print filename+" has no TGID"
   
https://github.com/uskr/pynma  
   
http://stackoverflow.com/questions/1092531/event-system-in-python """  
print 'Worker for '+filename  
   
return return
   
def filenameMaker(): def filenameMaker():
global filename global filename
filename = date.today().isoformat()+'-'+str(time.time())+'-demo.wav' filename = date.today().isoformat()+'-'+str(time.time())+'-demo.wav'
   
def record_to_async_file(): def record_to_async_file():
"Records from the microphone and outputs the resulting data to `path`" "Records from the microphone and outputs the resulting data to `path`"
sample_width, data = snd.record() sample_width, data = snd.record()
data = snd.pack('<' + ('h'*len(data)), *data) print str(len(data))
path = filename if len(data) > MIN_LENGTH:
dispatcher.send( signal='FILE_CREATED', sender=filename, filename=filename) data = snd.pack('<' + ('h'*len(data)), *data)
wf = wave.open(path, 'wb') path = "./data/"+filename
wf.setnchannels(1) dispatcher.send( signal='FILE_CREATED', sender=filename, filename=filename, length=len(data))
wf.setsampwidth(sample_width) wf = wave.open(path, 'wb')
wf.setframerate(snd.RATE) wf.setnchannels(1)
wf.writeframes(data) wf.setsampwidth(sample_width)
wf.close() wf.setframerate(snd.RATE)
print("done - result written to "+path) wf.writeframes(data)
  wf.close()
  del wf
  print("done - result "+str(len(data))+" frames written to "+path)
  del data
   
dispatcher.connect( filenameMaker, signal='SND_STARTED', sender=dispatcher.Any ) dispatcher.connect( filenameMaker, signal='SND_STARTED', sender=dispatcher.Any )
dispatcher.connect( worker, signal='FILE_CREATED', sender=dispatcher.Any ) dispatcher.connect( worker, signal='FILE_CREATED', sender=dispatcher.Any )
print "Scannr started..."  
  print "Opening serial port..."
  ser = serial.Serial('COM20', 112500, timeout=1)
  print "Loading notifymyandroid..."
  nma = pynma.PyNMA( "a6f50f76119eda33befe4325b4b9e1dd25eef7bad2868e4f")
  print "Connecting database..."
  conn = psycopg2.connect("dbname=scannr user=postgres password=snmc")
  print "Scannr started."
while True: while True:
print "ready to record" print "ready to record again"
record_to_async_file() record_to_async_file()
  ser.close()
file:a/snd.py -> file:b/snd.py
""" Record a few seconds of audio and save to a WAVE file. """ Record a few seconds of audio and save to a WAVE file.
Based on http://stackoverflow.com/questions/892199/detect-record-audio-in-python/6743593#6743593 Based on http://stackoverflow.com/questions/892199/detect-record-audio-in-python/6743593#6743593
""" """
   
import pyaudio import pyaudio
import wave import wave
import sys import sys
import audioop # http://docs.python.org/library/audioop import audioop # http://docs.python.org/library/audioop
from os.path import exists from os.path import exists
from array import array from array import array
from struct import unpack, pack from struct import unpack, pack
import threading import threading
from pydispatch import dispatcher from pydispatch import dispatcher
   
CHANNELS = 1 CHANNELS = 1
THRESHOLD = 500 THRESHOLD = 500
CHUNK_SIZE = 1024 CHUNK_SIZE = 1024
FORMAT = pyaudio.paInt16 FORMAT = pyaudio.paInt16
RATE = 44100 RATE = 44100
MAX_SILENT = 30 MAX_SILENT = 30
   
def is_silent(L): def is_silent(L):
"Returns `True` if below the 'silent' threshold" "Returns `True` if below the 'silent' threshold"
"print max(L)" "print max(L)"
"print max(L) < THRESHOLD" "print max(L) < THRESHOLD"
return max(L) < THRESHOLD return max(L) < THRESHOLD
   
def normalize(L): def normalize(L):
"Average the volume out" "Average the volume out"
MAXIMUM = 16384 MAXIMUM = 16384
times = float(MAXIMUM)/max(abs(i) for i in L) times = float(MAXIMUM)/max(abs(i) for i in L)
   
LRtn = array('h') LRtn = array('h')
for i in L: for i in L:
LRtn.append(int(i*times)) LRtn.append(int(i*times))
return LRtn return LRtn
   
def trim(L): def trim(L):
"Trim the blank spots at the start and end" "Trim the blank spots at the start and end"
def _trim(L): def _trim(L):
snd_started = False snd_started = False
LRtn = array('h') LRtn = array('h')
   
for i in L: for i in L:
if not snd_started and abs(i)>THRESHOLD: if not snd_started and abs(i)>THRESHOLD:
snd_started = True snd_started = True
LRtn.append(i) LRtn.append(i)
   
elif snd_started: elif snd_started:
LRtn.append(i) LRtn.append(i)
return LRtn return LRtn
   
# Trim to the left # Trim to the left
L = _trim(L) L = _trim(L)
   
# Trim to the right # Trim to the right
L.reverse() L.reverse()
L = _trim(L) L = _trim(L)
L.reverse() L.reverse()
return L return L
   
def add_silence(L, seconds): def add_silence(L, seconds):
"Add silence to the start and end of `L` of length `seconds` (float)" "Add silence to the start and end of `L` of length `seconds` (float)"
LRtn = array('h', [0 for i in xrange(int(seconds*RATE))]) LRtn = array('h', [0 for i in xrange(int(seconds*RATE))])
LRtn.extend(L) LRtn.extend(L)
LRtn.extend([0 for i in xrange(int(seconds*RATE))]) LRtn.extend([0 for i in xrange(int(seconds*RATE))])
return LRtn return LRtn
   
def record(): def record():
""" """
Record a word or words from the microphone and Record a word or words from the microphone and
return the data as an array of signed shorts. return the data as an array of signed shorts.
   
Normalizes the audio, trims silence from the Normalizes the audio, trims silence from the
start and end, and pads with 0.5 seconds of start and end, and pads with 0.5 seconds of
blank sound to make sure VLC et al can play blank sound to make sure VLC et al can play
it without getting chopped off. it without getting chopped off.
""" """
p = pyaudio.PyAudio() p = pyaudio.PyAudio()
stream = p.open(format=FORMAT, channels=1, rate=RATE, stream = p.open(format=FORMAT, channels=1, rate=RATE,
input=True, output=True, input=True, output=True,
frames_per_buffer=CHUNK_SIZE) frames_per_buffer=CHUNK_SIZE)
   
num_silent = 0 num_silent = 0
snd_started = False snd_started = False
   
LRtn = array('h') LRtn = array('h')
   
while 1: while 1:
data = stream.read(CHUNK_SIZE) data = stream.read(CHUNK_SIZE)
L = unpack('<' + ('h'*(len(data)/2)), data) # little endian, signed short L = unpack('<' + ('h'*(len(data)/2)), data) # little endian, signed short
L = array('h', L) L = array('h', L)
LRtn.extend(L)  
   
silent = is_silent(L) silent = is_silent(L)
#print silent, num_silent, L[:10] #print silent, num_silent, L[:10]
   
if silent and snd_started: if silent and snd_started:
num_silent += 1 num_silent += 1
print num_silent print num_silent
elif not silent and not snd_started: elif not silent and not snd_started:
dispatcher.send( signal='SND_STARTED') dispatcher.send( signal='SND_STARTED')
snd_started = True snd_started = True
print snd_started print snd_started
  if snd_started:
  LRtn.extend(L)
if snd_started and num_silent > MAX_SILENT: if snd_started and num_silent > MAX_SILENT:
break break
   
sample_width = p.get_sample_size(FORMAT) sample_width = p.get_sample_size(FORMAT)
stream.stop_stream() stream.stop_stream()
stream.close() stream.close()
p.terminate() p.terminate()
   
LRtn = normalize(LRtn) LRtn = normalize(LRtn)
LRtn = trim(LRtn) LRtn = trim(LRtn)
LRtn = add_silence(LRtn, 0.5) LRtn = add_silence(LRtn, 0.5)
return sample_width, LRtn return sample_width, LRtn
   
def record_to_file(path): def record_to_file(path):
"Records from the microphone and outputs the resulting data to `path`" "Records from the microphone and outputs the resulting data to `path`"
sample_width, data = record() sample_width, data = record()
data = pack('<' + ('h'*len(data)), *data) data = pack('<' + ('h'*len(data)), *data)
   
wf = wave.open(path, 'wb') wf = wave.open(path, 'wb')
wf.setnchannels(1) wf.setnchannels(1)
wf.setsampwidth(sample_width) wf.setsampwidth(sample_width)
wf.setframerate(RATE) wf.setframerate(RATE)
wf.writeframes(data) wf.writeframes(data)
wf.close() wf.close()
print("done - result written to "+path) print("done - result written to "+path)
  del data
   
   
   
   
if __name__ == '__main__': if __name__ == '__main__':
filename = 'demo.wav' filename = 'demo.wav'
record_to_file(filename) record_to_file(filename)
print("done - result written to "+filename) print("done - result written to "+filename)
   
file:b/trunklog.php (new)
  <?php
  // http://www.unitrunker.com/logs.html
  /*
  Timestamp as YYYYMMDDHHMMSS
  Site number in unformatted decimal
  Action: Call, Leaves, Joins, Login, Logout, Drop, Add, Busy, Deny, Kill
  Source type I or G
  Source ID in unformatted decimal
  Target type I or G
  Target ID in unformatted decimal
  Channel number in unformatted decimal
  Call Type*/
  $row = 0;
  echo "<table>";
  if (($handle = fopen("C:\Users\Madoka\AppData\Roaming\UniTrunker\S00000001\UniTrunker-20120411.LOG", "r")) !== FALSE) {
  while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) {
 
  if ($row > 0 && count($data) == 9) {
 
  echo "<tr>";
  for ($c=0; $c < count($data); $c++) {
  echo '<td>'.$data[$c] . "</td>\n";
  }
  echo "</tr>";
  }
  $row++;
  }
  fclose($handle);
  }
  echo "</table>";
  ?>
file:b/viewcalls.php (new)
  <?php
  include('common.inc.php');
  $tgid = 44028;
  include_header("fdds");
  ?>
  <div class="span12">
 
  <table width="100%" height="775px"><tr><td valign="middle"><span class="arrow-w" style="font-size:2em;">&lt;</span></td><td width="95%"><div id="placeholder" style="width:100%;height:575px;"></div></td><td valign="middle"><span class="arrow-e" style="font-size:2em;">&gt;</span></td></tr></table>
  <script>
  var data = [];
  var plot;
  var options = {
  lines: { show: true },
  points: { show: true },
  xaxis : {
  mode : 'time',
  labelsAngle : 45
  },
  selection : { mode : 'x', fps : 30 },
  series: {
  lines: { show: true },
  points: { show: true }
  },
  mouse : {
  track : true,
  relative : true
  }
  };
  $(function () {
  // graph
 
 
  var placeholder = document.getElementById("placeholder");
 
  drawGraph (options);
 
  // Hook into the 'flotr:select' event.
  Flotr.EventAdapter.observe(placeholder, 'flotr:select', function (area) {
 
  // Draw graph with new area
  graph = drawGraph({
  xaxis: {min:area.x1, max:area.x2, mode : 'time', labelsAngle : 45},
  yaxis: {min:area.y1, max:area.y2}
  });
  });
 
  // When graph is clicked, draw the graph with default area.
  Flotr.EventAdapter.observe(placeholder, 'flotr:click', function () { drawGraph(); });
 
 
  getData('<?php echo $tgid; ?>','<?php echo strtotime("10/09/2012") ?>','<?php echo strtotime("10/11/2012") ?>');
 
  });
 
  // Draw graph with default options, overwriting with passed options
  function drawGraph (opts) {
 
  // Clone the options, so the 'options' variable always keeps intact.
  var o = Flotr._.extend(Flotr._.clone(options), opts || {});
 
  // Return a new graph.
  return Flotr.draw(
  placeholder,
  data,
  o
  );
  }
 
 
  function onDataReceived(series) {
  data =[]
  for (var key in series.data) {
  data[data.length] = {label: key, data: series.data[key]};
  }
  drawGraph (options);
  }
  function getData(sensorID,from,to) {
  $.ajax({
  url: "<?php echo $basePath; ?>calls.json.php?action=graphcount&tgid="+sensorID+"&from="+from+"&to="+to,
  method: 'GET',
  dataType: 'json',
  success: onDataReceived
  });
  }
 
 
 
 
  </script>
  </div>
  <?php
  include_footer();
  ?>