├── .gitignore ├── LICENSE.md ├── agentauth ├── .htaccess ├── agents.yaml ├── composer.json ├── composer.lock ├── vendor │ ├── autoload.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ ├── ircmaxell │ │ └── password-compat │ │ │ ├── LICENSE.md │ │ │ ├── composer.json │ │ │ ├── lib │ │ │ └── password.php │ │ │ └── version-test.php │ ├── pimple │ │ └── pimple │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.rst │ │ │ ├── composer.json │ │ │ └── lib │ │ │ └── Pimple.php │ ├── psr │ │ └── log │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Psr │ │ │ └── Log │ │ │ │ ├── AbstractLogger.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── LogLevel.php │ │ │ │ ├── LoggerAwareInterface.php │ │ │ │ ├── LoggerAwareTrait.php │ │ │ │ ├── LoggerInterface.php │ │ │ │ ├── LoggerTrait.php │ │ │ │ ├── NullLogger.php │ │ │ │ └── Test │ │ │ │ └── LoggerInterfaceTest.php │ │ │ ├── README.md │ │ │ └── composer.json │ ├── silex │ │ └── silex │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.rst │ │ │ ├── bin │ │ │ ├── build │ │ │ ├── compile │ │ │ └── skeleton │ │ │ │ ├── fat_composer.json │ │ │ │ ├── index.php │ │ │ │ └── slim_composer.json │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Silex │ │ │ ├── Application.php │ │ │ ├── Application │ │ │ ├── FormTrait.php │ │ │ ├── MonologTrait.php │ │ │ ├── SecurityTrait.php │ │ │ ├── SwiftmailerTrait.php │ │ │ ├── TranslationTrait.php │ │ │ ├── TwigTrait.php │ │ │ └── UrlGeneratorTrait.php │ │ │ ├── CallbackResolver.php │ │ │ ├── ConstraintValidatorFactory.php │ │ │ ├── Controller.php │ │ │ ├── ControllerCollection.php │ │ │ ├── ControllerProviderInterface.php │ │ │ ├── ControllerResolver.php │ │ │ ├── EventListener │ │ │ ├── ConverterListener.php │ │ │ ├── LocaleListener.php │ │ │ ├── LogListener.php │ │ │ ├── MiddlewareListener.php │ │ │ └── StringToResponseListener.php │ │ │ ├── Exception │ │ │ └── ControllerFrozenException.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── ExceptionListenerWrapper.php │ │ │ ├── HttpCache.php │ │ │ ├── LazyUrlMatcher.php │ │ │ ├── Provider │ │ │ ├── DoctrineServiceProvider.php │ │ │ ├── FormServiceProvider.php │ │ │ ├── HttpCacheServiceProvider.php │ │ │ ├── HttpFragmentServiceProvider.php │ │ │ ├── MonologServiceProvider.php │ │ │ ├── RememberMeServiceProvider.php │ │ │ ├── SecurityServiceProvider.php │ │ │ ├── SerializerServiceProvider.php │ │ │ ├── ServiceControllerServiceProvider.php │ │ │ ├── SessionServiceProvider.php │ │ │ ├── SwiftmailerServiceProvider.php │ │ │ ├── TranslationServiceProvider.php │ │ │ ├── TwigServiceProvider.php │ │ │ ├── UrlGeneratorServiceProvider.php │ │ │ └── ValidatorServiceProvider.php │ │ │ ├── RedirectableUrlMatcher.php │ │ │ ├── Route.php │ │ │ ├── Route │ │ │ └── SecurityTrait.php │ │ │ ├── ServiceControllerResolver.php │ │ │ ├── ServiceProviderInterface.php │ │ │ ├── Translator.php │ │ │ ├── Util │ │ │ └── Compiler.php │ │ │ ├── ViewListenerWrapper.php │ │ │ └── WebTestCase.php │ └── symfony │ │ ├── debug │ │ ├── .gitignore │ │ ├── BufferingLogger.php │ │ ├── CHANGELOG.md │ │ ├── Debug.php │ │ ├── DebugClassLoader.php │ │ ├── ErrorHandler.php │ │ ├── Exception │ │ │ ├── ClassNotFoundException.php │ │ │ ├── ContextErrorException.php │ │ │ ├── DummyException.php │ │ │ ├── FatalErrorException.php │ │ │ ├── FatalThrowableError.php │ │ │ ├── FlattenException.php │ │ │ ├── OutOfMemoryException.php │ │ │ ├── UndefinedFunctionException.php │ │ │ └── UndefinedMethodException.php │ │ ├── ExceptionHandler.php │ │ ├── FatalErrorHandler │ │ │ ├── ClassNotFoundFatalErrorHandler.php │ │ │ ├── FatalErrorHandlerInterface.php │ │ │ ├── UndefinedFunctionFatalErrorHandler.php │ │ │ └── UndefinedMethodFatalErrorHandler.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ │ ├── event-dispatcher │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── ContainerAwareEventDispatcher.php │ │ ├── Debug │ │ │ ├── TraceableEventDispatcher.php │ │ │ ├── TraceableEventDispatcherInterface.php │ │ │ └── WrappedListener.php │ │ ├── DependencyInjection │ │ │ └── RegisterListenersPass.php │ │ ├── Event.php │ │ ├── EventDispatcher.php │ │ ├── EventDispatcherInterface.php │ │ ├── EventSubscriberInterface.php │ │ ├── GenericEvent.php │ │ ├── ImmutableEventDispatcher.php │ │ ├── LICENSE │ │ ├── README.md │ │ └── composer.json │ │ ├── http-foundation │ │ ├── .gitignore │ │ ├── AcceptHeader.php │ │ ├── AcceptHeaderItem.php │ │ ├── ApacheRequest.php │ │ ├── BinaryFileResponse.php │ │ ├── CHANGELOG.md │ │ ├── Cookie.php │ │ ├── Exception │ │ │ └── ConflictingHeadersException.php │ │ ├── ExpressionRequestMatcher.php │ │ ├── File │ │ │ ├── Exception │ │ │ │ ├── AccessDeniedException.php │ │ │ │ ├── FileException.php │ │ │ │ ├── FileNotFoundException.php │ │ │ │ ├── UnexpectedTypeException.php │ │ │ │ └── UploadException.php │ │ │ ├── File.php │ │ │ ├── MimeType │ │ │ │ ├── ExtensionGuesser.php │ │ │ │ ├── ExtensionGuesserInterface.php │ │ │ │ ├── FileBinaryMimeTypeGuesser.php │ │ │ │ ├── FileinfoMimeTypeGuesser.php │ │ │ │ ├── MimeTypeExtensionGuesser.php │ │ │ │ ├── MimeTypeGuesser.php │ │ │ │ └── MimeTypeGuesserInterface.php │ │ │ └── UploadedFile.php │ │ ├── FileBag.php │ │ ├── HeaderBag.php │ │ ├── IpUtils.php │ │ ├── JsonResponse.php │ │ ├── LICENSE │ │ ├── ParameterBag.php │ │ ├── README.md │ │ ├── RedirectResponse.php │ │ ├── Request.php │ │ ├── RequestMatcher.php │ │ ├── RequestMatcherInterface.php │ │ ├── RequestStack.php │ │ ├── Response.php │ │ ├── ResponseHeaderBag.php │ │ ├── ServerBag.php │ │ ├── Session │ │ │ ├── Attribute │ │ │ │ ├── AttributeBag.php │ │ │ │ ├── AttributeBagInterface.php │ │ │ │ └── NamespacedAttributeBag.php │ │ │ ├── Flash │ │ │ │ ├── AutoExpireFlashBag.php │ │ │ │ ├── FlashBag.php │ │ │ │ └── FlashBagInterface.php │ │ │ ├── Session.php │ │ │ ├── SessionBagInterface.php │ │ │ ├── SessionInterface.php │ │ │ └── Storage │ │ │ │ ├── Handler │ │ │ │ ├── LegacyPdoSessionHandler.php │ │ │ │ ├── MemcacheSessionHandler.php │ │ │ │ ├── MemcachedSessionHandler.php │ │ │ │ ├── MongoDbSessionHandler.php │ │ │ │ ├── NativeFileSessionHandler.php │ │ │ │ ├── NativeSessionHandler.php │ │ │ │ ├── NullSessionHandler.php │ │ │ │ ├── PdoSessionHandler.php │ │ │ │ └── WriteCheckSessionHandler.php │ │ │ │ ├── MetadataBag.php │ │ │ │ ├── MockArraySessionStorage.php │ │ │ │ ├── MockFileSessionStorage.php │ │ │ │ ├── NativeSessionStorage.php │ │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ │ ├── Proxy │ │ │ │ ├── AbstractProxy.php │ │ │ │ ├── NativeProxy.php │ │ │ │ └── SessionHandlerProxy.php │ │ │ │ └── SessionStorageInterface.php │ │ ├── StreamedResponse.php │ │ └── composer.json │ │ ├── http-kernel │ │ ├── .gitignore │ │ ├── Bundle │ │ │ ├── Bundle.php │ │ │ └── BundleInterface.php │ │ ├── CHANGELOG.md │ │ ├── CacheClearer │ │ │ ├── CacheClearerInterface.php │ │ │ └── ChainCacheClearer.php │ │ ├── CacheWarmer │ │ │ ├── CacheWarmer.php │ │ │ ├── CacheWarmerAggregate.php │ │ │ ├── CacheWarmerInterface.php │ │ │ └── WarmableInterface.php │ │ ├── Client.php │ │ ├── Config │ │ │ ├── EnvParametersResource.php │ │ │ └── FileLocator.php │ │ ├── Controller │ │ │ ├── ControllerReference.php │ │ │ ├── ControllerResolver.php │ │ │ ├── ControllerResolverInterface.php │ │ │ └── TraceableControllerResolver.php │ │ ├── DataCollector │ │ │ ├── AjaxDataCollector.php │ │ │ ├── ConfigDataCollector.php │ │ │ ├── DataCollector.php │ │ │ ├── DataCollectorInterface.php │ │ │ ├── DumpDataCollector.php │ │ │ ├── EventDataCollector.php │ │ │ ├── ExceptionDataCollector.php │ │ │ ├── LateDataCollectorInterface.php │ │ │ ├── LoggerDataCollector.php │ │ │ ├── MemoryDataCollector.php │ │ │ ├── RequestDataCollector.php │ │ │ ├── RouterDataCollector.php │ │ │ ├── TimeDataCollector.php │ │ │ └── Util │ │ │ │ └── ValueExporter.php │ │ ├── Debug │ │ │ ├── ErrorHandler.php │ │ │ ├── ExceptionHandler.php │ │ │ └── TraceableEventDispatcher.php │ │ ├── DependencyInjection │ │ │ ├── AddClassesToCachePass.php │ │ │ ├── ConfigurableExtension.php │ │ │ ├── ContainerAwareHttpKernel.php │ │ │ ├── Extension.php │ │ │ ├── FragmentRendererPass.php │ │ │ ├── LazyLoadingFragmentHandler.php │ │ │ ├── MergeExtensionConfigurationPass.php │ │ │ └── RegisterListenersPass.php │ │ ├── Event │ │ │ ├── FilterControllerEvent.php │ │ │ ├── FilterResponseEvent.php │ │ │ ├── FinishRequestEvent.php │ │ │ ├── GetResponseEvent.php │ │ │ ├── GetResponseForControllerResultEvent.php │ │ │ ├── GetResponseForExceptionEvent.php │ │ │ ├── KernelEvent.php │ │ │ └── PostResponseEvent.php │ │ ├── EventListener │ │ │ ├── AddRequestFormatsListener.php │ │ │ ├── DebugHandlersListener.php │ │ │ ├── DumpListener.php │ │ │ ├── ErrorsLoggerListener.php │ │ │ ├── EsiListener.php │ │ │ ├── ExceptionListener.php │ │ │ ├── FragmentListener.php │ │ │ ├── LocaleListener.php │ │ │ ├── ProfilerListener.php │ │ │ ├── ResponseListener.php │ │ │ ├── RouterListener.php │ │ │ ├── SaveSessionListener.php │ │ │ ├── SessionListener.php │ │ │ ├── StreamedResponseListener.php │ │ │ ├── SurrogateListener.php │ │ │ ├── TestSessionListener.php │ │ │ ├── TranslatorListener.php │ │ │ └── ValidateRequestListener.php │ │ ├── Exception │ │ │ ├── AccessDeniedHttpException.php │ │ │ ├── BadRequestHttpException.php │ │ │ ├── ConflictHttpException.php │ │ │ ├── FatalErrorException.php │ │ │ ├── FlattenException.php │ │ │ ├── GoneHttpException.php │ │ │ ├── HttpException.php │ │ │ ├── HttpExceptionInterface.php │ │ │ ├── LengthRequiredHttpException.php │ │ │ ├── MethodNotAllowedHttpException.php │ │ │ ├── NotAcceptableHttpException.php │ │ │ ├── NotFoundHttpException.php │ │ │ ├── PreconditionFailedHttpException.php │ │ │ ├── PreconditionRequiredHttpException.php │ │ │ ├── ServiceUnavailableHttpException.php │ │ │ ├── TooManyRequestsHttpException.php │ │ │ ├── UnauthorizedHttpException.php │ │ │ ├── UnprocessableEntityHttpException.php │ │ │ └── UnsupportedMediaTypeHttpException.php │ │ ├── Fragment │ │ │ ├── AbstractSurrogateFragmentRenderer.php │ │ │ ├── EsiFragmentRenderer.php │ │ │ ├── FragmentHandler.php │ │ │ ├── FragmentRendererInterface.php │ │ │ ├── HIncludeFragmentRenderer.php │ │ │ ├── InlineFragmentRenderer.php │ │ │ ├── RoutableFragmentRenderer.php │ │ │ └── SsiFragmentRenderer.php │ │ ├── HttpCache │ │ │ ├── Esi.php │ │ │ ├── EsiResponseCacheStrategy.php │ │ │ ├── EsiResponseCacheStrategyInterface.php │ │ │ ├── HttpCache.php │ │ │ ├── ResponseCacheStrategy.php │ │ │ ├── ResponseCacheStrategyInterface.php │ │ │ ├── Ssi.php │ │ │ ├── Store.php │ │ │ ├── StoreInterface.php │ │ │ └── SurrogateInterface.php │ │ ├── HttpKernel.php │ │ ├── HttpKernelInterface.php │ │ ├── Kernel.php │ │ ├── KernelEvents.php │ │ ├── KernelInterface.php │ │ ├── LICENSE │ │ ├── Log │ │ │ ├── DebugLoggerInterface.php │ │ │ ├── LoggerInterface.php │ │ │ └── NullLogger.php │ │ ├── Profiler │ │ │ ├── BaseMemcacheProfilerStorage.php │ │ │ ├── FileProfilerStorage.php │ │ │ ├── MemcacheProfilerStorage.php │ │ │ ├── MemcachedProfilerStorage.php │ │ │ ├── MongoDbProfilerStorage.php │ │ │ ├── MysqlProfilerStorage.php │ │ │ ├── PdoProfilerStorage.php │ │ │ ├── Profile.php │ │ │ ├── Profiler.php │ │ │ ├── ProfilerStorageInterface.php │ │ │ ├── RedisProfilerStorage.php │ │ │ └── SqliteProfilerStorage.php │ │ ├── README.md │ │ ├── TerminableInterface.php │ │ ├── UriSigner.php │ │ └── composer.json │ │ ├── polyfill-mbstring │ │ ├── LICENSE │ │ ├── Mbstring.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── unidata │ │ │ │ ├── lowerCase.php │ │ │ │ └── upperCase.php │ │ ├── bootstrap.php │ │ └── composer.json │ │ ├── polyfill-php54 │ │ ├── LICENSE │ │ ├── Php54.php │ │ ├── README.md │ │ ├── Resources │ │ │ └── stubs │ │ │ │ ├── CallbackFilterIterator.php │ │ │ │ ├── RecursiveCallbackFilterIterator.php │ │ │ │ └── SessionHandlerInterface.php │ │ ├── bootstrap.php │ │ └── composer.json │ │ ├── polyfill-php55 │ │ ├── LICENSE │ │ ├── Php55.php │ │ ├── Php55ArrayColumn.php │ │ ├── README.md │ │ ├── bootstrap.php │ │ └── composer.json │ │ └── routing │ │ ├── .gitignore │ │ ├── Annotation │ │ └── Route.php │ │ ├── CHANGELOG.md │ │ ├── CompiledRoute.php │ │ ├── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidParameterException.php │ │ ├── MethodNotAllowedException.php │ │ ├── MissingMandatoryParametersException.php │ │ ├── ResourceNotFoundException.php │ │ └── RouteNotFoundException.php │ │ ├── Generator │ │ ├── ConfigurableRequirementsInterface.php │ │ ├── Dumper │ │ │ ├── GeneratorDumper.php │ │ │ ├── GeneratorDumperInterface.php │ │ │ └── PhpGeneratorDumper.php │ │ ├── UrlGenerator.php │ │ └── UrlGeneratorInterface.php │ │ ├── LICENSE │ │ ├── Loader │ │ ├── AnnotationClassLoader.php │ │ ├── AnnotationDirectoryLoader.php │ │ ├── AnnotationFileLoader.php │ │ ├── ClosureLoader.php │ │ ├── DependencyInjection │ │ │ └── ServiceRouterLoader.php │ │ ├── DirectoryLoader.php │ │ ├── ObjectRouteLoader.php │ │ ├── PhpFileLoader.php │ │ ├── XmlFileLoader.php │ │ ├── YamlFileLoader.php │ │ └── schema │ │ │ └── routing │ │ │ └── routing-1.0.xsd │ │ ├── Matcher │ │ ├── ApacheUrlMatcher.php │ │ ├── Dumper │ │ │ ├── ApacheMatcherDumper.php │ │ │ ├── DumperCollection.php │ │ │ ├── DumperPrefixCollection.php │ │ │ ├── DumperRoute.php │ │ │ ├── MatcherDumper.php │ │ │ ├── MatcherDumperInterface.php │ │ │ └── PhpMatcherDumper.php │ │ ├── RedirectableUrlMatcher.php │ │ ├── RedirectableUrlMatcherInterface.php │ │ ├── RequestMatcherInterface.php │ │ ├── TraceableUrlMatcher.php │ │ ├── UrlMatcher.php │ │ └── UrlMatcherInterface.php │ │ ├── README.md │ │ ├── RequestContext.php │ │ ├── RequestContextAwareInterface.php │ │ ├── Route.php │ │ ├── RouteCollection.php │ │ ├── RouteCollectionBuilder.php │ │ ├── RouteCompiler.php │ │ ├── RouteCompilerInterface.php │ │ ├── Router.php │ │ ├── RouterInterface.php │ │ └── composer.json └── web │ └── index.php ├── agents ├── agent.php ├── index.php └── rpc │ ├── .htaccess │ ├── agentloader.php │ └── handler.php ├── checklists ├── checklist.php ├── checklistadmin.php ├── checklistadminchildren.php ├── checklistadminmeta.php ├── checklistmap.php ├── checklistprintfriendly.php ├── clgmap.php ├── clsppeditor.php ├── defaultchecklistexport.php ├── dynamicchecklist.php ├── dynamicmap.php ├── index.php ├── mappointaid.php ├── reports │ ├── download.php │ ├── downloadhandler.php │ └── voucherreporthandler.php ├── rpc │ ├── clsearchsuggest.php │ ├── clspeciessuggest.php │ ├── fieldguideexporter.php │ ├── fieldguideimageprocessor.php │ ├── gettid.php │ ├── index.php │ ├── linkvoucher.php │ ├── removetidfromchklst.php │ ├── speciessuggest.php │ └── testsql.php ├── tools │ ├── checklistloader.php │ ├── floradynsql.php │ ├── index.php │ ├── mappointaid.php │ └── mappolyaid.php ├── vaconflicts.php ├── vamissingtaxa.php └── voucheradmin.php ├── classes ├── ActionManager.php ├── AgentManager.php ├── ChecklistAdmin.php ├── ChecklistFGExportManager.php ├── ChecklistLoaderManager.php ├── ChecklistManager.php ├── ChecklistVoucherAdmin.php ├── ChecklistVoucherPensoft.php ├── ChecklistVoucherPensoftExcel.php ├── DwcArchiverAttribute.php ├── DwcArchiverCore.php ├── DwcArchiverDetermination.php ├── DwcArchiverImage.php ├── DwcArchiverOccurrence.php ├── DwcArchiverPublisher.php ├── DynamicChecklistManager.php ├── EOLManager.php ├── EOLUtilities.php ├── Encryption.php ├── ExsiccatiManager.php ├── FieldGuideManager.php ├── GPoint.php ├── GamesManager.php ├── GeneralClassTemplate.php ├── GlossaryManager.php ├── GlossaryUpload.php ├── ImageBatchProcessor.php ├── ImageCleaner.php ├── ImageDetailManager.php ├── ImageExplorer.php ├── ImageImport.php ├── ImageLibraryManager.php ├── ImageLocalProcessor.php ├── ImageProcessor.php ├── ImageShared.php ├── InstitutionManager.php ├── InventoryDynSqlManager.php ├── InventoryProjectManager.php ├── KeyCharAdmin.php ├── KeyCharDeficitManager.php ├── KeyDataManager.php ├── KeyEditorManager.php ├── KeyManager.php ├── KeyMassUpdate.php ├── Manager.php ├── MapInterfaceManager.php ├── MappingShared.php ├── ObservationSubmitManager.php ├── OccurrenceAPIManager.php ├── OccurrenceAccessStats.php ├── OccurrenceActionManager.php ├── OccurrenceAnnotationManager.php ├── OccurrenceAssociations.php ├── OccurrenceAttributes.php ├── OccurrenceChecklistManager.php ├── OccurrenceCleaner.php ├── OccurrenceCollectionProfile.php ├── OccurrenceCrowdSource.php ├── OccurrenceDataset.php ├── OccurrenceDownload.php ├── OccurrenceDuplicate.php ├── OccurrenceEditReview.php ├── OccurrenceEditorDeterminations.php ├── OccurrenceEditorImages.php ├── OccurrenceEditorManager.php ├── OccurrenceGeoLocate.php ├── OccurrenceGeorefTools.php ├── OccurrenceIndividualManager.php ├── OccurrenceLabel.php ├── OccurrenceListManager.php ├── OccurrenceMaintenance.php ├── OccurrenceManager.php ├── OccurrenceSkeletal.php ├── OccurrenceSupport.php ├── OccurrenceUtilities.php ├── OmOccurDeterminations.php ├── OmOccurrences.php ├── PermissionsManager.php ├── Person.php ├── PhpWord │ ├── Autoloader.php │ ├── Collection │ │ ├── AbstractCollection.php │ │ ├── Bookmarks.php │ │ ├── Charts.php │ │ ├── Endnotes.php │ │ ├── Footnotes.php │ │ └── Titles.php │ ├── Element │ │ ├── AbstractContainer.php │ │ ├── AbstractElement.php │ │ ├── Bookmark.php │ │ ├── Cell.php │ │ ├── Chart.php │ │ ├── CheckBox.php │ │ ├── Endnote.php │ │ ├── Field.php │ │ ├── Footer.php │ │ ├── Footnote.php │ │ ├── FormField.php │ │ ├── Header.php │ │ ├── Image.php │ │ ├── Line.php │ │ ├── Link.php │ │ ├── ListItem.php │ │ ├── ListItemRun.php │ │ ├── Object.php │ │ ├── PageBreak.php │ │ ├── PreserveText.php │ │ ├── Row.php │ │ ├── SDT.php │ │ ├── Section.php │ │ ├── Shape.php │ │ ├── TOC.php │ │ ├── Table.php │ │ ├── Text.php │ │ ├── TextBox.php │ │ ├── TextBreak.php │ │ ├── TextRun.php │ │ └── Title.php │ ├── Exception │ │ ├── CopyFileException.php │ │ ├── CreateTemporaryFileException.php │ │ ├── Exception.php │ │ ├── InvalidImageException.php │ │ ├── InvalidObjectException.php │ │ ├── InvalidStyleException.php │ │ └── UnsupportedImageTypeException.php │ ├── IOFactory.php │ ├── Media.php │ ├── Metadata │ │ ├── Compatibility.php │ │ ├── DocInfo.php │ │ └── Protection.php │ ├── PhpWord.php │ ├── Reader │ │ ├── AbstractReader.php │ │ ├── HTML.php │ │ ├── MsDoc.php │ │ ├── ODText.php │ │ ├── ODText │ │ │ ├── AbstractPart.php │ │ │ ├── Content.php │ │ │ └── Meta.php │ │ ├── RTF.php │ │ ├── RTF │ │ │ └── Document.php │ │ ├── ReaderInterface.php │ │ ├── Word2007.php │ │ └── Word2007 │ │ │ ├── AbstractPart.php │ │ │ ├── DocPropsApp.php │ │ │ ├── DocPropsCore.php │ │ │ ├── DocPropsCustom.php │ │ │ ├── Document.php │ │ │ ├── Endnotes.php │ │ │ ├── Footnotes.php │ │ │ ├── Numbering.php │ │ │ └── Styles.php │ ├── Settings.php │ ├── Shared │ │ ├── Converter.php │ │ ├── Drawing.php │ │ ├── Font.php │ │ ├── Html.php │ │ ├── OLERead.php │ │ ├── PCLZip │ │ │ └── pclzip.lib.php │ │ ├── String.php │ │ ├── StringElement.php │ │ ├── XMLReader.php │ │ ├── XMLWriter.php │ │ └── ZipArchive.php │ ├── Style.php │ ├── Style │ │ ├── AbstractStyle.php │ │ ├── Alignment.php │ │ ├── Border.php │ │ ├── Cell.php │ │ ├── Chart.php │ │ ├── Extrusion.php │ │ ├── Fill.php │ │ ├── Font.php │ │ ├── Frame.php │ │ ├── Image.php │ │ ├── Indentation.php │ │ ├── Line.php │ │ ├── LineNumbering.php │ │ ├── ListItem.php │ │ ├── Numbering.php │ │ ├── NumberingLevel.php │ │ ├── Outline.php │ │ ├── Paper.php │ │ ├── Paragraph.php │ │ ├── Row.php │ │ ├── Section.php │ │ ├── Shading.php │ │ ├── Shadow.php │ │ ├── Shape.php │ │ ├── Spacing.php │ │ ├── TOC.php │ │ ├── Tab.php │ │ ├── Table.php │ │ └── TextBox.php │ ├── Template.php │ ├── TemplateProcessor.php │ ├── Writer │ │ ├── AbstractWriter.php │ │ ├── HTML.php │ │ ├── HTML │ │ │ ├── Element │ │ │ │ ├── AbstractElement.php │ │ │ │ ├── Container.php │ │ │ │ ├── Endnote.php │ │ │ │ ├── Footnote.php │ │ │ │ ├── Image.php │ │ │ │ ├── Link.php │ │ │ │ ├── ListItem.php │ │ │ │ ├── PageBreak.php │ │ │ │ ├── Table.php │ │ │ │ ├── Text.php │ │ │ │ ├── TextBreak.php │ │ │ │ ├── TextRun.php │ │ │ │ └── Title.php │ │ │ ├── Part │ │ │ │ ├── AbstractPart.php │ │ │ │ ├── Body.php │ │ │ │ └── Head.php │ │ │ └── Style │ │ │ │ ├── AbstractStyle.php │ │ │ │ ├── Font.php │ │ │ │ ├── Generic.php │ │ │ │ ├── Image.php │ │ │ │ └── Paragraph.php │ │ ├── ODText.php │ │ ├── ODText │ │ │ ├── Element │ │ │ │ ├── AbstractElement.php │ │ │ │ ├── Container.php │ │ │ │ ├── Image.php │ │ │ │ ├── Link.php │ │ │ │ ├── Table.php │ │ │ │ ├── Text.php │ │ │ │ ├── TextBreak.php │ │ │ │ ├── TextRun.php │ │ │ │ └── Title.php │ │ │ ├── Part │ │ │ │ ├── AbstractPart.php │ │ │ │ ├── Content.php │ │ │ │ ├── Manifest.php │ │ │ │ ├── Meta.php │ │ │ │ ├── Mimetype.php │ │ │ │ └── Styles.php │ │ │ └── Style │ │ │ │ ├── AbstractStyle.php │ │ │ │ ├── Font.php │ │ │ │ ├── Image.php │ │ │ │ ├── Paragraph.php │ │ │ │ ├── Section.php │ │ │ │ └── Table.php │ │ ├── PDF.php │ │ ├── PDF │ │ │ ├── AbstractRenderer.php │ │ │ ├── DomPDF.php │ │ │ ├── MPDF.php │ │ │ └── TCPDF.php │ │ ├── RTF.php │ │ ├── RTF │ │ │ ├── Element │ │ │ │ ├── AbstractElement.php │ │ │ │ ├── Container.php │ │ │ │ ├── Image.php │ │ │ │ ├── Link.php │ │ │ │ ├── ListItem.php │ │ │ │ ├── PageBreak.php │ │ │ │ ├── Table.php │ │ │ │ ├── Text.php │ │ │ │ ├── TextBreak.php │ │ │ │ ├── TextRun.php │ │ │ │ └── Title.php │ │ │ ├── Part │ │ │ │ ├── AbstractPart.php │ │ │ │ ├── Document.php │ │ │ │ └── Header.php │ │ │ └── Style │ │ │ │ ├── AbstractStyle.php │ │ │ │ ├── Border.php │ │ │ │ ├── Font.php │ │ │ │ ├── Paragraph.php │ │ │ │ └── Section.php │ │ ├── Word2007.php │ │ ├── Word2007 │ │ │ ├── Element │ │ │ │ ├── AbstractElement.php │ │ │ │ ├── Bookmark.php │ │ │ │ ├── Chart.php │ │ │ │ ├── CheckBox.php │ │ │ │ ├── Container.php │ │ │ │ ├── Endnote.php │ │ │ │ ├── Field.php │ │ │ │ ├── Footnote.php │ │ │ │ ├── FormField.php │ │ │ │ ├── Image.php │ │ │ │ ├── Line.php │ │ │ │ ├── Link.php │ │ │ │ ├── ListItem.php │ │ │ │ ├── ListItemRun.php │ │ │ │ ├── Object.php │ │ │ │ ├── PageBreak.php │ │ │ │ ├── PreserveText.php │ │ │ │ ├── SDT.php │ │ │ │ ├── Shape.php │ │ │ │ ├── TOC.php │ │ │ │ ├── Table.php │ │ │ │ ├── Text.php │ │ │ │ ├── TextBox.php │ │ │ │ ├── TextBreak.php │ │ │ │ ├── TextRun.php │ │ │ │ └── Title.php │ │ │ ├── Part │ │ │ │ ├── AbstractPart.php │ │ │ │ ├── Chart.php │ │ │ │ ├── ContentTypes.php │ │ │ │ ├── DocPropsApp.php │ │ │ │ ├── DocPropsCore.php │ │ │ │ ├── DocPropsCustom.php │ │ │ │ ├── Document.php │ │ │ │ ├── Endnotes.php │ │ │ │ ├── FontTable.php │ │ │ │ ├── Footer.php │ │ │ │ ├── Footnotes.php │ │ │ │ ├── Header.php │ │ │ │ ├── Numbering.php │ │ │ │ ├── Rels.php │ │ │ │ ├── RelsDocument.php │ │ │ │ ├── RelsPart.php │ │ │ │ ├── Settings.php │ │ │ │ ├── Styles.php │ │ │ │ ├── Theme.php │ │ │ │ └── WebSettings.php │ │ │ └── Style │ │ │ │ ├── AbstractStyle.php │ │ │ │ ├── Alignment.php │ │ │ │ ├── Cell.php │ │ │ │ ├── Extrusion.php │ │ │ │ ├── Fill.php │ │ │ │ ├── Font.php │ │ │ │ ├── Frame.php │ │ │ │ ├── Image.php │ │ │ │ ├── Indentation.php │ │ │ │ ├── Line.php │ │ │ │ ├── LineNumbering.php │ │ │ │ ├── MarginBorder.php │ │ │ │ ├── Outline.php │ │ │ │ ├── Paragraph.php │ │ │ │ ├── Row.php │ │ │ │ ├── Section.php │ │ │ │ ├── Shading.php │ │ │ │ ├── Shadow.php │ │ │ │ ├── Shape.php │ │ │ │ ├── Spacing.php │ │ │ │ ├── Tab.php │ │ │ │ ├── Table.php │ │ │ │ └── TextBox.php │ │ └── WriterInterface.php │ └── resources │ │ ├── doc.png │ │ ├── ppt.png │ │ └── xls.png ├── PluginsManager.php ├── ProfileManager.php ├── RareSpeciesManager.php ├── RdfUtility.php ├── ReferenceManager.php ├── ReportsManager.php ├── SOLRManager.php ├── SalixHandler.php ├── SalixUtilities.php ├── SiteMapManager.php ├── SpatialModuleManager.php ├── SpecLoans.php ├── SpecProcNlpDupes.php ├── SpecProcNlpHandler.php ├── SpecProcNlpLbcc.php ├── SpecProcNlpLbccBryophyte.php ├── SpecProcNlpLbccLichen.php ├── SpecProcNlpParser.php ├── SpecProcNlpProfiles.php ├── SpecProcNlpSalix.php ├── SpecProcNlpUtilities.php ├── SpecProcessorGPI.php ├── SpecProcessorManager.php ├── SpecProcessorNEVP.php ├── SpecProcessorOcr.php ├── SpecUpload.php ├── SpecUploadBase.php ├── SpecUploadDigir.php ├── SpecUploadDirect.php ├── SpecUploadDwca.php ├── SpecUploadFile.php ├── TPDescEditorManager.php ├── TPEditorManager.php ├── TPImageEditorManager.php ├── TaxonProfileManager.php ├── TaxonProfileMap.php ├── TaxonomyAPIManager.php ├── TaxonomyCleaner.php ├── TaxonomyCleanerOccurrences.php ├── TaxonomyDisplayManager.php ├── TaxonomyEditorManager.php ├── TaxonomyHarvester.php ├── TaxonomyUpload.php ├── TaxonomyUtilities.php ├── UserTaxonomy.php ├── UuidFactory.php ├── VoucherManager.php ├── WebServiceBase.php ├── WordCloud.php ├── WsOccurEditor.php ├── iPlantUtility.php └── index.php ├── collections ├── admin │ ├── guidmapper.php │ ├── index.php │ ├── institutioneditor.php │ ├── logs │ │ └── index.php │ ├── schemas │ │ ├── darwin2brief.xsd │ │ ├── darwin2full.xsd │ │ ├── dwc1.0.xsd │ │ ├── dwc1.4.xsd │ │ ├── dwc2manis1.21.xsd │ │ └── lapi_schema_v2.xsd │ ├── specupload.php │ ├── specuploadmanagement.php │ ├── uploadcsv.php │ └── uploadviewer.php ├── checklist.php ├── checklistsymbiota.php ├── cleaning │ ├── coordinatevalidator.php │ ├── duplicatesearch.php │ ├── fieldstandardization.php │ ├── index.php │ ├── politicalunits.php │ ├── rpc │ │ ├── remaptaxon.php │ │ └── taxasuggest.php │ └── taxonomycleaner.php ├── datasets │ ├── datapublisher.php │ ├── datasetmanager.php │ ├── duplicatemanager.php │ ├── dwc │ │ └── .gitignore │ ├── dwcahandler.php │ ├── emlhandler.php │ ├── index.php │ ├── occurharvester.php │ ├── rpc │ │ ├── checkgbifinstall.php │ │ ├── getgbifcurl.php │ │ ├── getoccurrence.php │ │ └── getuserlist.php │ └── rsshandler.php ├── download │ ├── downloadhandler.php │ └── index.php ├── editor │ ├── assocsppaid.php │ ├── batchdeterminations.php │ ├── dupesearch.php │ ├── editreviewer.php │ ├── imageoccursubmit.php │ ├── includes │ │ ├── admintab.php │ │ ├── config │ │ │ ├── crowdSourcingVar.php │ │ │ ├── occurVarColl1_template.php │ │ │ ├── occurVarDefault_template.php │ │ │ ├── occurVarGenObsDefault_template.php │ │ │ └── occureditorcrowdsource.css │ │ ├── determinationtab.php │ │ ├── findannotations.php │ │ ├── geotools.php │ │ ├── imagetab.php │ │ ├── imgprocessor.php │ │ ├── queryform.php │ │ ├── resourcetab.php │ │ └── response.php │ ├── index.php │ ├── mappointaid.php │ ├── observationsubmit.php │ ├── occurdataentry.php │ ├── occurrenceeditor.php │ ├── occurrencetabledisplay.php │ ├── rpc │ │ ├── batchupdateverify.php │ │ ├── dupedelete.php │ │ ├── dupelist.php │ │ ├── dupequery.php │ │ ├── dupequerycatnum.php │ │ ├── dupequeryothercatnum.php │ │ ├── exsiccatisuggest.php │ │ ├── exsiccativalidation.php │ │ ├── getImageMime.php │ │ ├── getassocimgcnt.php │ │ ├── getassocspp.php │ │ ├── getassocvouchers.php │ │ ├── getcolspeciessuggest.php │ │ ├── getlocality.php │ │ ├── getnewdetspeclist.php │ │ ├── getspeciessuggest.php │ │ ├── index.php │ │ ├── localitysecuritycheck.php │ │ ├── lookupCountry.php │ │ ├── lookupCounty.php │ │ ├── lookupMunicipality.php │ │ ├── lookupState.php │ │ ├── makeactionrequest.php │ │ ├── nlplbcc.php │ │ ├── nlpsalix.php │ │ ├── occurAddData.php │ │ ├── ocrimage.php │ │ └── verifysciname.php │ └── skeletalsubmit.php ├── exsiccati │ ├── batchimport.php │ └── index.php ├── georef │ ├── batchgeoreftool.php │ ├── geolocate.php │ ├── geolocatetools.php │ ├── georefclone.php │ └── index.php ├── harvestparams.php ├── index.php ├── individual │ ├── index.php │ └── linkedresources.php ├── list.php ├── listtabledisplay.php ├── loans │ ├── exchange.php │ ├── exchangedetails.php │ ├── incomingdetails.php │ ├── index.php │ ├── outgoingdetails.php │ ├── reports │ │ ├── defaultenvelope.php │ │ ├── defaultinvoice.php │ │ ├── defaultmailinglabel.php │ │ └── defaultspecimenlist.php │ └── rpc │ │ ├── exidentifiercheck.php │ │ ├── generatenextid.php │ │ ├── insertloanspecimens.php │ │ ├── loaninidentifiercheck.php │ │ └── loanoutidentifiercheck.php ├── map │ ├── csvdownloadhandler.php │ ├── csvoptions.php │ ├── garmin.php │ ├── kmlmanager.php │ ├── mapinterface.php │ └── rpc │ │ ├── changemaprecordpage.php │ │ ├── checklistlist.php │ │ ├── maplazyloader.php │ │ ├── maprecordsetmanager.php │ │ └── updateselections.php ├── mapboundingbox.php ├── mappointradius.php ├── misc │ ├── assocmanagement.php │ ├── collbackup.php │ ├── collmetadata.php │ ├── collorderstats.php │ ├── collpermissions.php │ ├── collprofiles.php │ ├── collprofilestats.php │ ├── collstats.php │ ├── collstatscsv.php │ ├── collyearstats.php │ ├── commentlist.php │ ├── fgbatch.php │ ├── fgcsv.php │ ├── fgresults.php │ ├── index.php │ ├── occurrencesearch.php │ ├── rarespecies.php │ └── rpc │ │ ├── gettid.php │ │ ├── index.php │ │ └── speciessuggest.php ├── reports.php ├── reports │ ├── accessreport.php │ ├── defaultannotations.php │ ├── defaultannotationsexport.php │ ├── defaultlabels.php │ ├── defaultlabelsexport.php │ ├── getBarcode.php │ ├── getBarcodeCode39.php │ └── labelmanager.php ├── rpc │ ├── addallvouchers.php │ ├── addvoucher.php │ ├── changetablepage.php │ ├── getoccurrencelist.php │ ├── index.php │ ├── statreporting.php │ └── taxalist.php ├── specprocessor │ ├── cogetest.html │ ├── crowdsource │ │ ├── central.php │ │ ├── controlpanel.php │ │ ├── index.php │ │ └── review.php │ ├── dwcaexpeditionhandler.php │ ├── exporter.php │ ├── geolocate.php │ ├── imageprocessor.php │ ├── index.php │ ├── nlpbatchhandler.php │ ├── nlpdupehandler.php │ ├── nlpprocessor.php │ ├── nlpprofiles.php │ ├── ocr_handler.php │ ├── ocrprocessor.php │ ├── processor.php │ ├── reports.php │ ├── rpc │ │ ├── coge_build_dwca.php │ │ └── coge_getCount.php │ ├── salix │ │ └── salixhandler.php │ ├── standalone_scripts │ │ ├── ImageBatchConf_template.php │ │ ├── ImageBatchConnectionFactory_template.php │ │ ├── ImageBatchHandler.php │ │ ├── ImageIPlantHandler.php │ │ ├── readme.txt │ │ └── runbatchtunnel.sh │ └── wordcloudhandler.php └── traitattr │ ├── attributemining.php │ ├── index.php │ ├── occurattributes.php │ ├── rpc │ └── getTaxonFilter.php │ └── traitmanagment.php ├── config ├── dbconnection_docker_dev_stack.php ├── dbconnection_template.php ├── googleanalytics.php ├── includes │ ├── searchVarCustom_template.php │ └── searchVarDefault.php ├── index.php ├── schema-0.9.1 │ ├── latin1 │ │ ├── db_schema-0.9.1.sql │ │ ├── db_schema-ver_5.0-0.9.1.sql │ │ ├── db_schema_patch-0.9.1.1.sql │ │ ├── db_schema_patch-0.9.1.10.sql │ │ ├── db_schema_patch-0.9.1.11.sql │ │ ├── db_schema_patch-0.9.1.12.sql │ │ ├── db_schema_patch-0.9.1.13.sql │ │ ├── db_schema_patch-0.9.1.14.sql │ │ ├── db_schema_patch-0.9.1.15.sql │ │ ├── db_schema_patch-0.9.1.16.sql │ │ ├── db_schema_patch-0.9.1.16b.sql │ │ ├── db_schema_patch-0.9.1.2.sql │ │ ├── db_schema_patch-0.9.1.3.sql │ │ ├── db_schema_patch-0.9.1.4.sql │ │ ├── db_schema_patch-0.9.1.5.sql │ │ ├── db_schema_patch-0.9.1.6.sql │ │ ├── db_schema_patch-0.9.1.7.sql │ │ ├── db_schema_patch-0.9.1.8.sql │ │ ├── db_schema_patch-0.9.1.9.sql │ │ ├── db_schema_patch_0.9.template.sql │ │ └── stored_procedures-0.9.1.sql │ └── utf8 │ │ ├── db_schema-ver_5.0_utf8-0.9.1.sql │ │ ├── db_schema_patch-0.9.1.1.sql │ │ ├── db_schema_patch-0.9.1.10.sql │ │ ├── db_schema_patch-0.9.1.11.sql │ │ ├── db_schema_patch-0.9.1.12.sql │ │ ├── db_schema_patch-0.9.1.13.sql │ │ ├── db_schema_patch-0.9.1.14.sql │ │ ├── db_schema_patch-0.9.1.15.sql │ │ ├── db_schema_patch-0.9.1.16.sql │ │ ├── db_schema_patch-0.9.1.16b.sql │ │ ├── db_schema_patch-0.9.1.2.sql │ │ ├── db_schema_patch-0.9.1.3.sql │ │ ├── db_schema_patch-0.9.1.4.sql │ │ ├── db_schema_patch-0.9.1.5.sql │ │ ├── db_schema_patch-0.9.1.6.sql │ │ ├── db_schema_patch-0.9.1.7.sql │ │ ├── db_schema_patch-0.9.1.8.sql │ │ ├── db_schema_patch-0.9.1.9.sql │ │ ├── db_schema_utf8-0.9.1.sql │ │ ├── fp_views.sql │ │ └── stored_procedures-0.9.1.sql ├── schema-1.0 │ ├── data │ │ ├── extended_taxonrank.sql │ │ ├── lkup_geography.zip │ │ ├── taxa_upper_lichens.csv │ │ └── taxa_upper_plants.csv │ ├── dev │ │ ├── db_schema_patch_1.0.template.sql │ │ └── db_schema_patch_pending.sql │ ├── testClasses.php │ └── utf8 │ │ ├── db_schema-1.0.sql │ │ ├── db_schema_patch-1.1.sql │ │ └── fp_views.sql ├── setup.sh ├── solr │ ├── data-config.xml │ ├── readme.txt │ └── schema.xml ├── symbbase.php ├── symbini_docker_dev_stack.php └── symbini_template.php ├── content ├── collicon │ └── .gitignore ├── css │ └── .gitignore ├── dwca │ └── .gitignore ├── geolocate │ └── .gitignore ├── imglib │ └── .gitignore ├── lang │ ├── checklists │ │ ├── checklist.en.php │ │ ├── checklist.es.php │ │ ├── checklistadmin.en.php │ │ ├── checklistadmin.es.php │ │ ├── voucheradmin.en.php │ │ └── voucheradmin.es.php │ ├── collections │ │ ├── checklist.en.php │ │ ├── checklist.es.php │ │ ├── harvestparams.en.php │ │ ├── harvestparams.es.php │ │ ├── index.en.php │ │ ├── index.es.php │ │ ├── list.en.php │ │ ├── list.es.php │ │ ├── misc │ │ │ ├── collprofiles.en.php │ │ │ └── collprofiles.es.php │ │ ├── sharedterms.en.php │ │ └── sharedterms.es.php │ ├── ident │ │ ├── index.en.php │ │ ├── index.es.php │ │ ├── key.en.php │ │ └── key.es.php │ ├── projects │ │ ├── index.en.php │ │ └── index.es.php │ ├── shared │ │ ├── mapaids.en.php │ │ └── mapaids.es.php │ ├── sitemap.en.php │ ├── sitemap.es.php │ └── taxa │ │ ├── index.en.php │ │ └── index.es.php └── logs │ └── .gitignore ├── css ├── base.css ├── bootstrap.css ├── images │ ├── FontAwesome.otf │ ├── ajax-loader.gif │ ├── animated-overlay.gif │ ├── btns-next-prev.png │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── menu-item_divider.jpg │ ├── menu_pri_background.jpg │ ├── pagination.png │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ ├── ui-bg_flat_75_ffffff_40x100.png │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_glass_75_dadada_1x400.png │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ ├── ui-bg_glass_95_fef1ec_1x400.png │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_2e83ff_256x240.png │ ├── ui-icons_454545_256x240.png │ ├── ui-icons_888888_256x240.png │ └── ui-icons_cd0a0a_256x240.png ├── index.php ├── jquery-ui_accordian.css ├── jquery-ui_template.css ├── jquery.mobile-1.4.0.min.css ├── jquery.symbiota.css ├── main_template.css ├── occureditor.css ├── ol.css ├── slideshowstyle.css ├── spatialbase.css ├── speciesprofile_template.css ├── speciesprofilebase.css ├── visualsearch-datauri.css └── visualsearch.css ├── docker-compose.yml ├── docker ├── mysql │ └── custom.cnf ├── nginx │ └── nginx.conf └── php-fpm │ ├── Dockerfile │ └── php-ini-overrides.ini ├── docs ├── AUTHORS.txt ├── COPYING.txt ├── ChangeLog.txt ├── INSTALL.txt ├── INSTALL_DOCKER_DEV_STACK.txt ├── README.txt └── index.php ├── footer_template.php ├── games ├── flashcards.php ├── index.php ├── namegame.php ├── ootd │ ├── index.php │ ├── readme.txt │ └── rpc │ │ ├── ootdfamilylist.php │ │ └── ootdscinamelist.php └── rpc │ └── getwordlist.php ├── glossary ├── addterm.php ├── glossaryloader.php ├── glossdocexport.php ├── index.php ├── individual.php ├── rpc │ ├── checkterm.php │ └── taxalist.php ├── sources.php └── termdetails.php ├── header_template.php ├── ident ├── admin │ ├── chardetails.php │ ├── headingadmin.php │ ├── index.php │ ├── rpc │ │ ├── getcharstateimgcnt.php │ │ ├── getcharstatelangcnt.php │ │ ├── getdescrcnt.php │ │ ├── taxasuggest.php │ │ └── taxonvalidation.php │ └── taxonomylinkage.php ├── dichotomous │ ├── buildhierarchy.php │ ├── index.php │ ├── key.php │ └── loader.php ├── index.php ├── key.php ├── loadingcl.php ├── rpc │ ├── gettid.php │ └── index.php └── tools │ ├── chardeficit.php │ ├── editor.php │ ├── index.php │ └── massupdate.php ├── imagelib ├── admin │ ├── imageloader.php │ ├── index.php │ ├── thumbnailbuilder.php │ └── verifypaths.php ├── contributors.php ├── imgdetails.php ├── imgsearch.php ├── index.php ├── rpc │ ├── changeimagepage.php │ ├── displayimages.php │ ├── displayimagesforid.php │ ├── displayimagesforview.php │ ├── gettaxasuggest.php │ ├── gettid.php │ └── imagesearchautofill.php ├── search.php ├── unknownbrowse.php ├── unknowndisplay.php └── unknownsubmit.php ├── images ├── add.png ├── ajax-loader.gif ├── back.png ├── button_wfs.png ├── button_wms.png ├── chars │ ├── arrangement_alternate.jpg │ ├── arrangement_opposite.jpg │ └── arrangement_whorled.jpg ├── closedhand.cur ├── cross-out.png ├── del.png ├── dl.png ├── downrightarrow.png ├── drop.png ├── edit.png ├── edit_off.png ├── edit_on.png ├── editadmin.png ├── editplus.png ├── editspp.png ├── editvoucher.png ├── embed │ └── icons │ │ ├── cancel_search.png │ │ └── search_glyph.png ├── exsiccatiadd.png ├── find.png ├── games │ ├── games.png │ ├── namegame │ │ ├── apple_0.gif │ │ ├── apple_1.gif │ │ ├── apple_10.gif │ │ ├── apple_11.gif │ │ ├── apple_12.gif │ │ ├── apple_2.gif │ │ ├── apple_3.gif │ │ ├── apple_4.gif │ │ ├── apple_5.gif │ │ ├── apple_6.gif │ │ ├── apple_7.gif │ │ ├── apple_8.gif │ │ ├── apple_9.gif │ │ ├── apple_off.gif │ │ ├── apple_on.gif │ │ ├── apple_win.gif │ │ ├── flower0.gif │ │ ├── flower1.gif │ │ ├── flower10.gif │ │ ├── flower11.gif │ │ ├── flower12.gif │ │ ├── flower2.gif │ │ ├── flower3.gif │ │ ├── flower4.gif │ │ ├── flower5.gif │ │ ├── flower6.gif │ │ ├── flower7.gif │ │ ├── flower8.gif │ │ ├── flower9.gif │ │ ├── flower_off.gif │ │ ├── flower_on.gif │ │ ├── flowerwin.gif │ │ ├── gallow.gif │ │ ├── gallow1.gif │ │ ├── gallow2.gif │ │ ├── gallow3.gif │ │ ├── gallow4.gif │ │ ├── gallow5.gif │ │ ├── gallows.gif │ │ ├── hidden_off.gif │ │ ├── hidden_on.gif │ │ ├── hidden_on2.gif │ │ ├── man1_0.gif │ │ ├── man1_1.gif │ │ ├── man1_2.gif │ │ ├── man1_3.gif │ │ ├── man1_4.gif │ │ ├── man1_5.gif │ │ ├── man1_head_off.gif │ │ ├── man1_head_on.gif │ │ ├── man1win.gif │ │ ├── man2_0.gif │ │ ├── man2_1.gif │ │ ├── man2_2.gif │ │ ├── man2_3.gif │ │ ├── man2_4.gif │ │ ├── man2_5.gif │ │ ├── man2_head_off.gif │ │ ├── man2_head_on.gif │ │ ├── man2win.gif │ │ ├── plant0.gif │ │ ├── plant1.gif │ │ ├── plant10.gif │ │ ├── plant11.gif │ │ ├── plant12.gif │ │ ├── plant2.gif │ │ ├── plant3.gif │ │ ├── plant4.gif │ │ ├── plant5.gif │ │ ├── plant6.gif │ │ ├── plant7.gif │ │ ├── plant8.gif │ │ ├── plant9.gif │ │ ├── plant_off.gif │ │ ├── plant_on.gif │ │ ├── plantwin.gif │ │ ├── radio_off1.gif │ │ ├── radio_off2.gif │ │ ├── radio_off3.gif │ │ ├── radio_off4.gif │ │ ├── radio_on1.gif │ │ ├── radio_on1a.gif │ │ ├── radio_on2.gif │ │ ├── radio_on3.gif │ │ ├── radio_on4.gif │ │ ├── spacer.gif │ │ ├── tempcover.jpg │ │ ├── tempcover0.jpg │ │ ├── tempcover1.jpg │ │ ├── tempcover2.jpg │ │ ├── tempcover3.jpg │ │ ├── tempcover4.jpg │ │ ├── tempcover5.jpg │ │ ├── tempcover6.jpg │ │ ├── temppic.jpg │ │ ├── woman1_0.gif │ │ ├── woman1_1.gif │ │ ├── woman1_2.gif │ │ ├── woman1_3.gif │ │ ├── woman1_4.gif │ │ ├── woman1_5.gif │ │ ├── woman1_head_off.gif │ │ ├── woman1_head_on.gif │ │ ├── woman1win.gif │ │ ├── woman2_0.gif │ │ ├── woman2_1.gif │ │ ├── woman2_2.gif │ │ ├── woman2_3.gif │ │ ├── woman2_4.gif │ │ ├── woman2_5.gif │ │ ├── woman2_head_off.gif │ │ ├── woman2_head_on.gif │ │ ├── woman2win.gif │ │ ├── wwoman0.gif │ │ ├── wwoman1.gif │ │ ├── wwoman2.gif │ │ ├── wwoman3.gif │ │ ├── wwoman4.gif │ │ ├── wwoman5.gif │ │ ├── wwoman_head_off.gif │ │ ├── wwoman_head_on.gif │ │ └── wwomanwin.gif │ └── ootd │ │ ├── balloons-150.png │ │ ├── qmark.png │ │ └── uptriangle.png ├── geolocate.png ├── google.png ├── google │ ├── 00e13c-dot.png │ ├── 55d7d7-dot.png │ ├── 5781fc-dot.png │ ├── 7e55fc-dot.png │ ├── arrow.png │ ├── arrowshadow.png │ ├── blue-dot.png │ ├── e14f9e-dot.png │ ├── fc6355-dot.png │ ├── fcf357-dot.png │ ├── ff9900-dot.png │ ├── green-dot.png │ ├── ltblue-dot.png │ ├── marker_grey.png │ ├── orange-dot.png │ ├── pin-blue.png │ ├── pin-gray.png │ ├── pin-green.png │ ├── pin-ltblue.png │ ├── pin-orange.png │ ├── pin-pink.png │ ├── pin-purple.png │ ├── pin-red.png │ ├── pin-yellow.png │ ├── pink-dot.png │ ├── purple-dot.png │ ├── red-dot.png │ ├── shadow.png │ ├── smpin_black.png │ ├── smpin_blue.png │ ├── smpin_brown.png │ ├── smpin_gray.png │ ├── smpin_green.png │ ├── smpin_orange.png │ ├── smpin_purple.png │ ├── smpin_red.png │ ├── smpin_shadow.png │ ├── smpin_white.png │ ├── smpin_yellow.png │ └── yellow-dot.png ├── icons │ ├── eol.png │ ├── garmin.png │ └── tropicos.png ├── idigbio.png ├── image.png ├── index.php ├── info.png ├── inherit.png ├── jpg.png ├── key.png ├── layout │ ├── below_header.gif │ ├── brown_hor_strip.gif │ ├── brownline_bottom.gif │ ├── defaultfooter.gif │ ├── defaultheader.jpg │ ├── defaultleftstrip.gif │ ├── defaultrightstrip.gif │ ├── index.php │ ├── mini_header.gif │ ├── seinet_sl.jpg │ ├── vert_strip_left.gif │ └── vert_strip_right.gif ├── link.png ├── list.png ├── minus.png ├── minus_sm.png ├── newwin.png ├── next1.png ├── next1_roll.png ├── nsf.png ├── openhand.cur ├── plus.png ├── plus_sm.png ├── print.png ├── qmark.png ├── qmark_big.png ├── quiz.png ├── reddot.png ├── refresh.png ├── rightarrow.png ├── righttriangle.png ├── skipthisone.png ├── spatial_close_icon.png ├── tableft.png ├── tochild.png ├── toparent.png ├── undo.png ├── uptriangle.png ├── voucheradd.png ├── wordicon.png ├── workingcircle.gif ├── world.png └── x.png ├── index_template.php ├── js ├── FileSaver.min.js ├── backbone-0.9.10.js ├── dbf.js ├── garmin │ ├── garmin │ │ ├── activity │ │ │ ├── GarminActivity.js │ │ │ ├── GarminActivityDirectory.js │ │ │ ├── GarminActivityFilter.js │ │ │ ├── GarminActivityMatcher.js │ │ │ ├── GarminMeasurement.js │ │ │ ├── GarminSample.js │ │ │ ├── GarminSeries.js │ │ │ ├── GpxActivityFactory.js │ │ │ └── TcxActivityFactory.js │ │ ├── api │ │ │ └── GarminRemoteTransfer.js │ │ ├── device │ │ │ ├── GarminDevice.js │ │ │ ├── GarminDeviceControl.js │ │ │ ├── GarminDeviceDisplay.js │ │ │ ├── GarminDevicePlugin.js │ │ │ ├── GarminGeocode.js │ │ │ ├── GarminGpsDataStructures.js │ │ │ ├── GarminObjectGenerator.js │ │ │ ├── GarminPluginUtils.js │ │ │ ├── GoogleMapController.js │ │ │ └── style │ │ │ │ ├── Thumbs.db │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── button_bg.jpg │ │ │ │ ├── choose_bg.png │ │ │ │ ├── communicator.css │ │ │ │ ├── communicator2.css │ │ │ │ ├── garmin-white.gif │ │ │ │ └── garmin.jpg │ │ ├── directory │ │ │ ├── GarminDirectoryFactory.js │ │ │ ├── GarminDirectoryUtils.js │ │ │ └── GarminFile.js │ │ └── util │ │ │ ├── Util-Broadcaster.js │ │ │ ├── Util-BrowserDetect.js │ │ │ ├── Util-DateTimeFormat.js │ │ │ ├── Util-Json2.js │ │ │ ├── Util-PluginDetect.js │ │ │ └── Util-XmlConverter.js │ ├── jstests │ │ ├── GarminDevicePluginStub.js │ │ ├── Util-BroadcasterTest.html │ │ ├── Util-DateTimeFormatTest.html │ │ ├── UtilTestSuite.html │ │ ├── _testTemplate.html │ │ ├── controlTest.html │ │ ├── displayLogicTest.html │ │ ├── displayUIGenerationTest.html │ │ ├── garminTestSuite.html │ │ ├── gpsDataStructuresTest.html │ │ ├── gpxDataStructuresTest.html │ │ ├── pluginTest.html │ │ └── pluginUtilsTest.html │ └── prototype │ │ └── prototype.js ├── html2canvas.min.js ├── index.php ├── jquery-1.10.2.min.js ├── jquery-1.10.2.min.map ├── jquery-1.9.1.js ├── jquery-3.2.1.min.js ├── jquery-ui-1.10.4.js ├── jquery-ui-1.12.1 │ ├── AUTHORS.txt │ ├── LICENSE.txt │ ├── external │ │ └── jquery │ │ │ └── jquery.js │ ├── images │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ ├── index.html │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.css │ ├── jquery-ui.structure.min.css │ ├── jquery-ui.theme.css │ ├── jquery-ui.theme.min.css │ └── package.json ├── jquery-ui.js ├── jquery.imagetool-1.7.js ├── jquery.js ├── jquery.manifest.js ├── jquery.marcopolo.js ├── jquery.mobile-1.4.0.min.js ├── jquery.mobile-1.4.0.min.map ├── jquery.popupoverlay.js ├── jquery.slides.js ├── jscolor │ ├── arrow.gif │ ├── cross.gif │ ├── hs.png │ ├── hv.png │ └── jscolor.js ├── jszip.min.js ├── ol-symbiota-ext-debug.js ├── ol-symbiota-ext.js ├── pdfmake.min.js ├── readme_jquery.txt ├── shapefile.js ├── stream.js ├── symb │ ├── checklists.checklist.js │ ├── checklists.checklistadmin.js │ ├── checklists.fieldguideexport.js │ ├── checklists.voucheradmin.js │ ├── collections.coordinateValidation.js │ ├── collections.gbifpublisher.js │ ├── collections.georef.batchgeoreftool.js │ ├── collections.harvestparams.js │ ├── collections.imageoccursubmit.js │ ├── collections.index.js │ ├── collections.loans.js │ ├── collections.mapinterface.js │ ├── collections.observationsubmit.js │ ├── collections.occureditorimgtools.js │ ├── collections.occureditormain.js │ ├── collections.occureditorshare.js │ ├── collections.occureditortools.js │ ├── collections.occurskeletalsubmit.js │ ├── collections.search.js │ ├── collections.traitattr.js │ ├── games.ootd.js │ ├── geolocate.js │ ├── glossary.index.js │ ├── ident.key.js │ ├── imagelib.imgdetails.js │ ├── imagelib.imgexplorer.js │ ├── images.index.js │ ├── infobox.js │ ├── keydragzoom.js │ ├── markerclusterer.js │ ├── oms.min.js │ ├── plugins.js │ ├── profile.viewprofile.js │ ├── references.index.js │ ├── shared.js │ ├── spatial.module.js │ ├── taxa.editor.js │ ├── taxa.index.js │ ├── taxa.taxonomyeditor.js │ ├── taxa.taxonomyloader.js │ ├── taxa.tpimageeditor.js │ └── wktpolygontools.js ├── tiny_mce │ ├── langs │ │ └── en.js │ ├── license.txt │ ├── plugins │ │ ├── advhr │ │ │ ├── css │ │ │ │ └── advhr.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── rule.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ └── rule.htm │ │ ├── advimage │ │ │ ├── css │ │ │ │ └── advimage.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── image.htm │ │ │ ├── img │ │ │ │ └── sample.gif │ │ │ ├── js │ │ │ │ └── image.js │ │ │ └── langs │ │ │ │ └── en_dlg.js │ │ ├── advlink │ │ │ ├── css │ │ │ │ └── advlink.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── advlink.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ └── link.htm │ │ ├── advlist │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── autolink │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── autoresize │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── autosave │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── bbcode │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── contextmenu │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── directionality │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── emotions │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── emotions.htm │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ ├── js │ │ │ │ └── emotions.js │ │ │ └── langs │ │ │ │ └── en_dlg.js │ │ ├── example │ │ │ ├── dialog.htm │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── img │ │ │ │ └── example.gif │ │ │ ├── js │ │ │ │ └── dialog.js │ │ │ └── langs │ │ │ │ ├── en.js │ │ │ │ └── en_dlg.js │ │ ├── example_dependency │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── fullpage │ │ │ ├── css │ │ │ │ └── fullpage.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── fullpage.htm │ │ │ ├── js │ │ │ │ └── fullpage.js │ │ │ └── langs │ │ │ │ └── en_dlg.js │ │ ├── fullscreen │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── fullscreen.htm │ │ ├── iespell │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── inlinepopups │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── skins │ │ │ │ └── clearlooks2 │ │ │ │ │ ├── img │ │ │ │ │ ├── alert.gif │ │ │ │ │ ├── button.gif │ │ │ │ │ ├── buttons.gif │ │ │ │ │ ├── confirm.gif │ │ │ │ │ ├── corners.gif │ │ │ │ │ ├── horizontal.gif │ │ │ │ │ └── vertical.gif │ │ │ │ │ └── window.css │ │ │ └── template.htm │ │ ├── insertdatetime │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── layer │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── legacyoutput │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── lists │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── media │ │ │ ├── css │ │ │ │ └── media.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ ├── embed.js │ │ │ │ └── media.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ ├── media.htm │ │ │ └── moxieplayer.swf │ │ ├── nonbreaking │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── noneditable │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── pagebreak │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── paste │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ ├── pastetext.js │ │ │ │ └── pasteword.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ ├── pastetext.htm │ │ │ └── pasteword.htm │ │ ├── preview │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── example.html │ │ │ ├── jscripts │ │ │ │ └── embed.js │ │ │ └── preview.html │ │ ├── print │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── save │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── searchreplace │ │ │ ├── css │ │ │ │ └── searchreplace.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── searchreplace.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ └── searchreplace.htm │ │ ├── spellchecker │ │ │ ├── css │ │ │ │ └── content.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── img │ │ │ │ └── wline.gif │ │ ├── style │ │ │ ├── css │ │ │ │ └── props.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── props.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ ├── props.htm │ │ │ └── readme.txt │ │ ├── tabfocus │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── table │ │ │ ├── cell.htm │ │ │ ├── css │ │ │ │ ├── cell.css │ │ │ │ ├── row.css │ │ │ │ └── table.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ ├── cell.js │ │ │ │ ├── merge_cells.js │ │ │ │ ├── row.js │ │ │ │ └── table.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ ├── merge_cells.htm │ │ │ ├── row.htm │ │ │ └── table.htm │ │ ├── template │ │ │ ├── blank.htm │ │ │ ├── css │ │ │ │ └── template.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── template.js │ │ │ ├── langs │ │ │ │ └── en_dlg.js │ │ │ └── template.htm │ │ ├── visualblocks │ │ │ ├── css │ │ │ │ └── visualblocks.css │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── visualchars │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── wordcount │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ └── xhtmlxtras │ │ │ ├── abbr.htm │ │ │ ├── acronym.htm │ │ │ ├── attributes.htm │ │ │ ├── cite.htm │ │ │ ├── css │ │ │ ├── attributes.css │ │ │ └── popup.css │ │ │ ├── del.htm │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── ins.htm │ │ │ ├── js │ │ │ ├── abbr.js │ │ │ ├── acronym.js │ │ │ ├── attributes.js │ │ │ ├── cite.js │ │ │ ├── del.js │ │ │ ├── element_common.js │ │ │ └── ins.js │ │ │ └── langs │ │ │ └── en_dlg.js │ ├── themes │ │ ├── advanced │ │ │ ├── about.htm │ │ │ ├── anchor.htm │ │ │ ├── charmap.htm │ │ │ ├── color_picker.htm │ │ │ ├── editor_template.js │ │ │ ├── editor_template_src.js │ │ │ ├── image.htm │ │ │ ├── img │ │ │ │ ├── colorpicker.jpg │ │ │ │ ├── flash.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── iframe.gif │ │ │ │ ├── pagebreak.gif │ │ │ │ ├── quicktime.gif │ │ │ │ ├── realmedia.gif │ │ │ │ ├── shockwave.gif │ │ │ │ ├── trans.gif │ │ │ │ ├── video.gif │ │ │ │ └── windowsmedia.gif │ │ │ ├── js │ │ │ │ ├── about.js │ │ │ │ ├── anchor.js │ │ │ │ ├── charmap.js │ │ │ │ ├── color_picker.js │ │ │ │ ├── image.js │ │ │ │ ├── link.js │ │ │ │ └── source_editor.js │ │ │ ├── langs │ │ │ │ ├── en.js │ │ │ │ └── en_dlg.js │ │ │ ├── link.htm │ │ │ ├── shortcuts.htm │ │ │ ├── skins │ │ │ │ ├── default │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ └── tabs.gif │ │ │ │ │ └── ui.css │ │ │ │ ├── highcontrast │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ └── ui.css │ │ │ │ └── o2k7 │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── img │ │ │ │ │ ├── button_bg.png │ │ │ │ │ ├── button_bg_black.png │ │ │ │ │ └── button_bg_silver.png │ │ │ │ │ ├── ui.css │ │ │ │ │ ├── ui_black.css │ │ │ │ │ └── ui_silver.css │ │ │ └── source_editor.htm │ │ └── simple │ │ │ ├── editor_template.js │ │ │ ├── editor_template_src.js │ │ │ ├── img │ │ │ └── icons.gif │ │ │ ├── langs │ │ │ └── en.js │ │ │ └── skins │ │ │ ├── default │ │ │ ├── content.css │ │ │ └── ui.css │ │ │ └── o2k7 │ │ │ ├── content.css │ │ │ ├── img │ │ │ └── button_bg.png │ │ │ └── ui.css │ ├── tiny_mce.js │ ├── tiny_mce_popup.js │ ├── tiny_mce_src.js │ └── utils │ │ ├── editable_selects.js │ │ ├── form_utils.js │ │ ├── mctabs.js │ │ └── validate.js ├── underscore-1.4.3.js ├── vfs_fonts.js └── visualsearch.js ├── leftmenu_template.php ├── map ├── googlekml.php └── googlemap.php ├── misc ├── generaltemplate.php ├── index.php └── usagepolicy_template.php ├── plugins ├── external │ └── .gitignore ├── index.php ├── quicksearch │ └── readme.txt └── slideshow │ └── readme.txt ├── profile ├── imagesforid.php ├── index.php ├── newprofile.php ├── personalspecbackup.php ├── personalspecmenu.php ├── response.php ├── rpc │ ├── displayimagesforid.php │ ├── index.php │ ├── taxasuggest.php │ └── taxonvalidation.php ├── specimenstoid.php ├── taxoninterests.php ├── usermanagement.php ├── userprofile.php ├── usertaxonomymanager.php └── viewprofile.php ├── projects ├── checklisttab.php ├── index.php └── managertab.php ├── references ├── authoreditor.php ├── index.php ├── refdetails.php └── rpc │ ├── authorlist.php │ ├── authormanager.php │ ├── parentdetails.php │ ├── parenttitlelist.php │ └── seriestitlelist.php ├── requests ├── index.php └── rpc │ └── requestsearch.php ├── robots_template.txt ├── sitemap.php ├── spatial ├── includes │ ├── csvoptions.php │ ├── layercontroller.php │ ├── mapsettings.php │ ├── maptools.php │ ├── rastercalculator.php │ ├── reclassifytool.php │ └── vectorizeoverlay.php ├── index.php └── rpc │ ├── GeoServerConnector.php │ ├── SOLRConnector.php │ ├── changemaprecordpage.php │ ├── datadownloader.php │ ├── getlayersarr.php │ ├── gettaxalinks.php │ └── index.php ├── taxa ├── admin │ ├── CyprinidaeItisExample.bin │ ├── batchloader.php │ ├── eolmapper.php │ ├── index.php │ ├── rpc │ │ ├── getacceptedsuggest.php │ │ ├── getdynamicchildren.php │ │ ├── gettaxasuggest.php │ │ └── gettid.php │ ├── taxonomycleaner.php │ ├── taxonomydelete.php │ ├── taxonomydisplay.php │ ├── taxonomydynamicdisplay.php │ ├── taxonomyeditor.php │ ├── taxonomyloader.php │ ├── taxonomymaintenance.php │ ├── tpdesceditor.php │ ├── tpeditor.php │ └── tpimageeditor.php ├── includes │ └── config │ │ ├── taxaProfileElementsCustom_template.php │ │ ├── taxaProfileElementsDefault.php │ │ ├── taxaProfileTemplateCustom_template.php │ │ └── taxaProfileTemplateDefault.php └── index.php ├── temp ├── data │ ├── fieldguide │ │ └── .gitignore │ └── geolocate │ │ └── .gitignore ├── downloads │ └── .gitignore ├── images │ └── .gitignore ├── index.php ├── logs │ └── .gitignore ├── ootd │ └── .gitignore ├── report │ └── .gitignore ├── slideshow │ └── .gitignore ├── symbocr │ └── .gitignore └── wordclouds │ └── .gitignore ├── themes ├── index.php ├── liquid │ ├── css │ │ ├── jquery-ui.css │ │ ├── main.css │ │ └── speciesprofile.css │ ├── footer.php │ ├── header.php │ ├── index.php │ ├── leftmenu.php │ ├── readme.txt │ └── robots.txt └── static │ ├── css │ ├── jquery-ui.css │ ├── main.css │ └── speciesprofile.css │ ├── footer.php │ ├── header.php │ ├── index.php │ ├── leftmenu.php │ ├── readme.txt │ └── robots.txt ├── tools ├── charencodingclean.php ├── mappointaid.php └── mappolyaid.php ├── vendor ├── autoload.php ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json ├── pclzip │ └── pclzip │ │ ├── composer.json │ │ ├── gnu-lgpl.txt │ │ ├── pclzip.lib.php │ │ └── readme.txt ├── phpoffice │ ├── common │ │ ├── .gitignore │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── .travis_shell_after_success.sh │ │ ├── CHANGELOG.md │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── composer.json │ │ ├── phpmd.xml.dist │ │ ├── phpunit.xml.dist │ │ ├── src │ │ │ └── Common │ │ │ │ ├── Adapter │ │ │ │ └── Zip │ │ │ │ │ ├── PclZipAdapter.php │ │ │ │ │ ├── ZipArchiveAdapter.php │ │ │ │ │ └── ZipInterface.php │ │ │ │ ├── Autoloader.php │ │ │ │ ├── Drawing.php │ │ │ │ ├── File.php │ │ │ │ ├── Font.php │ │ │ │ ├── Microsoft │ │ │ │ └── OLERead.php │ │ │ │ ├── Text.php │ │ │ │ ├── XMLReader.php │ │ │ │ └── XMLWriter.php │ │ └── tests │ │ │ ├── Common │ │ │ └── Tests │ │ │ │ ├── Adapter │ │ │ │ └── Zip │ │ │ │ │ ├── PclZipAdapterTest.php │ │ │ │ │ └── ZipArchiveAdapterTest.php │ │ │ │ ├── AutoloaderTest.php │ │ │ │ ├── DrawingTest.php │ │ │ │ ├── FileTest.php │ │ │ │ ├── FontTest.php │ │ │ │ ├── TextTest.php │ │ │ │ ├── XMLWriterTest.php │ │ │ │ └── _includes │ │ │ │ ├── TestHelperZip.php │ │ │ │ └── XmlDocument.php │ │ │ ├── bootstrap.php │ │ │ └── resources │ │ │ ├── files │ │ │ └── Sample_01_Simple.pptx │ │ │ └── images │ │ │ └── PHPPowerPointLogo.png │ ├── phpexcel │ │ ├── PHPExcel.php │ │ └── PHPExcel │ │ │ ├── Autoloader.php │ │ │ ├── CachedObjectStorage │ │ │ ├── APC.php │ │ │ ├── CacheBase.php │ │ │ ├── DiscISAM.php │ │ │ ├── ICache.php │ │ │ ├── Igbinary.php │ │ │ ├── Memcache.php │ │ │ ├── Memory.php │ │ │ ├── MemoryGZip.php │ │ │ ├── MemorySerialized.php │ │ │ ├── PHPTemp.php │ │ │ ├── SQLite.php │ │ │ ├── SQLite3.php │ │ │ └── Wincache.php │ │ │ ├── CachedObjectStorageFactory.php │ │ │ ├── CalcEngine │ │ │ ├── CyclicReferenceStack.php │ │ │ └── Logger.php │ │ │ ├── Calculation.php │ │ │ ├── Calculation │ │ │ ├── Database.php │ │ │ ├── DateTime.php │ │ │ ├── Engineering.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── Financial.php │ │ │ ├── FormulaParser.php │ │ │ ├── FormulaToken.php │ │ │ ├── Function.php │ │ │ ├── Functions.php │ │ │ ├── Logical.php │ │ │ ├── LookupRef.php │ │ │ ├── MathTrig.php │ │ │ ├── Statistical.php │ │ │ ├── TextData.php │ │ │ ├── Token │ │ │ │ └── Stack.php │ │ │ └── functionlist.txt │ │ │ ├── Cell.php │ │ │ ├── Cell │ │ │ ├── AdvancedValueBinder.php │ │ │ ├── DataType.php │ │ │ ├── DataValidation.php │ │ │ ├── DefaultValueBinder.php │ │ │ ├── Hyperlink.php │ │ │ └── IValueBinder.php │ │ │ ├── Chart.php │ │ │ ├── Chart │ │ │ ├── Axis.php │ │ │ ├── DataSeries.php │ │ │ ├── DataSeriesValues.php │ │ │ ├── Exception.php │ │ │ ├── GridLines.php │ │ │ ├── Layout.php │ │ │ ├── Legend.php │ │ │ ├── PlotArea.php │ │ │ ├── Properties.php │ │ │ ├── Renderer │ │ │ │ ├── PHP Charting Libraries.txt │ │ │ │ └── jpgraph.php │ │ │ └── Title.php │ │ │ ├── Comment.php │ │ │ ├── DocumentProperties.php │ │ │ ├── DocumentSecurity.php │ │ │ ├── Exception.php │ │ │ ├── HashTable.php │ │ │ ├── Helper │ │ │ └── HTML.php │ │ │ ├── IComparable.php │ │ │ ├── IOFactory.php │ │ │ ├── NamedRange.php │ │ │ ├── Reader │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── DefaultReadFilter.php │ │ │ ├── Excel2003XML.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ └── Theme.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── Color.php │ │ │ │ ├── Color │ │ │ │ │ ├── BIFF5.php │ │ │ │ │ ├── BIFF8.php │ │ │ │ │ └── BuiltIn.php │ │ │ │ ├── ErrorCode.php │ │ │ │ ├── Escher.php │ │ │ │ ├── MD5.php │ │ │ │ ├── RC4.php │ │ │ │ └── Style │ │ │ │ │ ├── Border.php │ │ │ │ │ └── FillPattern.php │ │ │ ├── Exception.php │ │ │ ├── Gnumeric.php │ │ │ ├── HTML.php │ │ │ ├── IReadFilter.php │ │ │ ├── IReader.php │ │ │ ├── OOCalc.php │ │ │ └── SYLK.php │ │ │ ├── ReferenceHelper.php │ │ │ ├── RichText.php │ │ │ ├── RichText │ │ │ ├── ITextElement.php │ │ │ ├── Run.php │ │ │ └── TextElement.php │ │ │ ├── Settings.php │ │ │ ├── Shared │ │ │ ├── CodePage.php │ │ │ ├── Date.php │ │ │ ├── Drawing.php │ │ │ ├── Escher.php │ │ │ ├── Escher │ │ │ │ ├── DgContainer.php │ │ │ │ ├── DgContainer │ │ │ │ │ ├── SpgrContainer.php │ │ │ │ │ └── SpgrContainer │ │ │ │ │ │ └── SpContainer.php │ │ │ │ ├── DggContainer.php │ │ │ │ └── DggContainer │ │ │ │ │ ├── BstoreContainer.php │ │ │ │ │ └── BstoreContainer │ │ │ │ │ ├── BSE.php │ │ │ │ │ └── BSE │ │ │ │ │ └── Blip.php │ │ │ ├── Excel5.php │ │ │ ├── File.php │ │ │ ├── Font.php │ │ │ ├── JAMA │ │ │ │ ├── CHANGELOG.TXT │ │ │ │ ├── CholeskyDecomposition.php │ │ │ │ ├── EigenvalueDecomposition.php │ │ │ │ ├── LUDecomposition.php │ │ │ │ ├── Matrix.php │ │ │ │ ├── QRDecomposition.php │ │ │ │ ├── SingularValueDecomposition.php │ │ │ │ └── utils │ │ │ │ │ ├── Error.php │ │ │ │ │ └── Maths.php │ │ │ ├── OLE.php │ │ │ ├── OLE │ │ │ │ ├── ChainedBlockStream.php │ │ │ │ ├── PPS.php │ │ │ │ └── PPS │ │ │ │ │ ├── File.php │ │ │ │ │ └── Root.php │ │ │ ├── OLERead.php │ │ │ ├── PCLZip │ │ │ │ ├── gnu-lgpl.txt │ │ │ │ ├── pclzip.lib.php │ │ │ │ └── readme.txt │ │ │ ├── PasswordHasher.php │ │ │ ├── String.php │ │ │ ├── TimeZone.php │ │ │ ├── XMLWriter.php │ │ │ ├── ZipArchive.php │ │ │ ├── ZipStreamWrapper.php │ │ │ └── trend │ │ │ │ ├── bestFitClass.php │ │ │ │ ├── exponentialBestFitClass.php │ │ │ │ ├── linearBestFitClass.php │ │ │ │ ├── logarithmicBestFitClass.php │ │ │ │ ├── polynomialBestFitClass.php │ │ │ │ ├── powerBestFitClass.php │ │ │ │ └── trendClass.php │ │ │ ├── Style.php │ │ │ ├── Style │ │ │ ├── Alignment.php │ │ │ ├── Border.php │ │ │ ├── Borders.php │ │ │ ├── Color.php │ │ │ ├── Conditional.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── NumberFormat.php │ │ │ ├── Protection.php │ │ │ └── Supervisor.php │ │ │ ├── Worksheet.php │ │ │ ├── Worksheet │ │ │ ├── AutoFilter.php │ │ │ ├── AutoFilter │ │ │ │ ├── Column.php │ │ │ │ └── Column │ │ │ │ │ └── Rule.php │ │ │ ├── BaseDrawing.php │ │ │ ├── CellIterator.php │ │ │ ├── Column.php │ │ │ ├── ColumnCellIterator.php │ │ │ ├── ColumnDimension.php │ │ │ ├── ColumnIterator.php │ │ │ ├── Dimension.php │ │ │ ├── Drawing.php │ │ │ ├── Drawing │ │ │ │ └── Shadow.php │ │ │ ├── HeaderFooter.php │ │ │ ├── HeaderFooterDrawing.php │ │ │ ├── MemoryDrawing.php │ │ │ ├── PageMargins.php │ │ │ ├── PageSetup.php │ │ │ ├── Protection.php │ │ │ ├── Row.php │ │ │ ├── RowCellIterator.php │ │ │ ├── RowDimension.php │ │ │ ├── RowIterator.php │ │ │ └── SheetView.php │ │ │ ├── WorksheetIterator.php │ │ │ ├── Writer │ │ │ ├── Abstract.php │ │ │ ├── CSV.php │ │ │ ├── Excel2007.php │ │ │ ├── Excel2007 │ │ │ │ ├── Chart.php │ │ │ │ ├── Comments.php │ │ │ │ ├── ContentTypes.php │ │ │ │ ├── DocProps.php │ │ │ │ ├── Drawing.php │ │ │ │ ├── Rels.php │ │ │ │ ├── RelsRibbon.php │ │ │ │ ├── RelsVBA.php │ │ │ │ ├── StringTable.php │ │ │ │ ├── Style.php │ │ │ │ ├── Theme.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── WriterPart.php │ │ │ ├── Excel5.php │ │ │ ├── Excel5 │ │ │ │ ├── BIFFwriter.php │ │ │ │ ├── Escher.php │ │ │ │ ├── Font.php │ │ │ │ ├── Parser.php │ │ │ │ ├── Workbook.php │ │ │ │ ├── Worksheet.php │ │ │ │ └── Xf.php │ │ │ ├── Exception.php │ │ │ ├── HTML.php │ │ │ ├── IWriter.php │ │ │ ├── OpenDocument.php │ │ │ ├── OpenDocument │ │ │ │ ├── Cell │ │ │ │ │ └── Comment.php │ │ │ │ ├── Content.php │ │ │ │ ├── Meta.php │ │ │ │ ├── MetaInf.php │ │ │ │ ├── Mimetype.php │ │ │ │ ├── Settings.php │ │ │ │ ├── Styles.php │ │ │ │ ├── Thumbnails.php │ │ │ │ └── WriterPart.php │ │ │ ├── PDF.php │ │ │ └── PDF │ │ │ │ ├── Core.php │ │ │ │ ├── DomPDF.php │ │ │ │ ├── mPDF.php │ │ │ │ └── tcPDF.php │ │ │ └── locale │ │ │ ├── bg │ │ │ └── config │ │ │ ├── cs │ │ │ ├── config │ │ │ └── functions │ │ │ ├── da │ │ │ ├── config │ │ │ └── functions │ │ │ ├── de │ │ │ ├── config │ │ │ └── functions │ │ │ ├── en │ │ │ └── uk │ │ │ │ └── config │ │ │ ├── es │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fi │ │ │ ├── config │ │ │ └── functions │ │ │ ├── fr │ │ │ ├── config │ │ │ └── functions │ │ │ ├── hu │ │ │ ├── config │ │ │ └── functions │ │ │ ├── it │ │ │ ├── config │ │ │ └── functions │ │ │ ├── nl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── no │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pl │ │ │ ├── config │ │ │ └── functions │ │ │ ├── pt │ │ │ ├── br │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ ├── config │ │ │ └── functions │ │ │ ├── ru │ │ │ ├── config │ │ │ └── functions │ │ │ ├── sv │ │ │ ├── config │ │ │ └── functions │ │ │ └── tr │ │ │ ├── config │ │ │ └── functions │ ├── phpspreadsheet │ │ ├── .gitattributes │ │ ├── .github │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ ├── stale.yml │ │ │ └── support.yml │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.PHPExcel.md │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── bin │ │ │ ├── migrate-from-phpexcel │ │ │ └── pre-commit │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── docs │ │ │ ├── assets │ │ │ │ ├── ClassDiagrams │ │ │ │ │ ├── Architecture.cd │ │ │ │ │ ├── Architecture.png │ │ │ │ │ ├── ClassDiagrams.csproj │ │ │ │ │ ├── ClassDiagrams.csproj.user │ │ │ │ │ ├── ClassDiagrams.sln │ │ │ │ │ ├── Classes │ │ │ │ │ │ ├── IReader.cs │ │ │ │ │ │ ├── IWriter.cs │ │ │ │ │ │ ├── PHPExcel.cs │ │ │ │ │ │ ├── PHPExcel_IOFactory.cs │ │ │ │ │ │ ├── PHPExcel_Reader_Excel2007.cs │ │ │ │ │ │ ├── PHPExcel_Reader_Excel5.cs │ │ │ │ │ │ ├── PHPExcel_Reader_Serialized.cs │ │ │ │ │ │ ├── PHPExcel_Writer_Excel2007.cs │ │ │ │ │ │ ├── PHPExcel_Writer_Serialized.cs │ │ │ │ │ │ └── Worksheet.cs │ │ │ │ │ ├── Exports │ │ │ │ │ │ ├── Architecture.png │ │ │ │ │ │ └── ReaderWriter.png │ │ │ │ │ ├── ReaderWriter.cd │ │ │ │ │ └── ReaderWriter.png │ │ │ │ └── logo.svg │ │ │ ├── extra │ │ │ │ ├── extra.css │ │ │ │ └── extra.js │ │ │ ├── faq.md │ │ │ ├── index.md │ │ │ ├── references │ │ │ │ ├── features-cross-reference.md │ │ │ │ ├── function-list-by-category.md │ │ │ │ └── function-list-by-name.md │ │ │ └── topics │ │ │ │ ├── accessing-cells.md │ │ │ │ ├── architecture.md │ │ │ │ ├── autofilters.md │ │ │ │ ├── calculation-engine.md │ │ │ │ ├── creating-spreadsheet.md │ │ │ │ ├── file-formats.md │ │ │ │ ├── images │ │ │ │ ├── 01-01-autofilter.png │ │ │ │ ├── 01-02-autofilter.png │ │ │ │ ├── 01-03-filter-icon-1.png │ │ │ │ ├── 01-03-filter-icon-2.png │ │ │ │ ├── 01-04-autofilter.png │ │ │ │ ├── 01-schematic.png │ │ │ │ ├── 02-readers-writers.png │ │ │ │ ├── 04-01-simple-autofilter.png │ │ │ │ ├── 04-02-dategroup-autofilter.png │ │ │ │ ├── 04-03-custom-autofilter-1.png │ │ │ │ ├── 04-03-custom-autofilter-2.png │ │ │ │ ├── 04-04-dynamic-autofilter.png │ │ │ │ ├── 04-05-topten-autofilter-1.png │ │ │ │ ├── 04-05-topten-autofilter-2.png │ │ │ │ ├── 07-simple-example-1.png │ │ │ │ ├── 07-simple-example-2.png │ │ │ │ ├── 07-simple-example-3.png │ │ │ │ ├── 07-simple-example-4.png │ │ │ │ ├── 08-cell-comment.png │ │ │ │ ├── 08-column-width.png │ │ │ │ ├── 08-page-setup-margins.png │ │ │ │ ├── 08-page-setup-scaling-options.png │ │ │ │ ├── 08-styling-border-options.png │ │ │ │ ├── 09-command-line-calculation.png │ │ │ │ ├── 09-formula-in-cell-1.png │ │ │ │ └── 09-formula-in-cell-2.png │ │ │ │ ├── memory_saving.md │ │ │ │ ├── migration-from-PHPExcel.md │ │ │ │ ├── reading-and-writing-to-file.md │ │ │ │ ├── reading-files.md │ │ │ │ ├── recipes.md │ │ │ │ ├── settings.md │ │ │ │ └── worksheets.md │ │ ├── mkdocs.yml │ │ ├── phpunit.xml.dist │ │ ├── samples │ │ │ ├── Autofilter │ │ │ │ ├── 10_Autofilter.php │ │ │ │ ├── 10_Autofilter_selection_1.php │ │ │ │ ├── 10_Autofilter_selection_2.php │ │ │ │ └── 10_Autofilter_selection_display.php │ │ │ ├── Basic │ │ │ │ ├── 01_Simple.php │ │ │ │ ├── 01_Simple_download_ods.php │ │ │ │ ├── 01_Simple_download_pdf.php │ │ │ │ ├── 01_Simple_download_xls.php │ │ │ │ ├── 01_Simple_download_xlsx.php │ │ │ │ ├── 02_Types.php │ │ │ │ ├── 03_Formulas.php │ │ │ │ ├── 04_Printing.php │ │ │ │ ├── 05_Feature_demo.php │ │ │ │ ├── 06_Largescale.php │ │ │ │ ├── 07_Reader.php │ │ │ │ ├── 08_Conditional_formatting.php │ │ │ │ ├── 08_Conditional_formatting_2.php │ │ │ │ ├── 09_Pagebreaks.php │ │ │ │ ├── 11_Documentsecurity.php │ │ │ │ ├── 12_CellProtection.php │ │ │ │ ├── 13_Calculation.php │ │ │ │ ├── 13_CalculationCyclicFormulae.php │ │ │ │ ├── 14_Xls.php │ │ │ │ ├── 15_Datavalidation.php │ │ │ │ ├── 16_Csv.php │ │ │ │ ├── 17_Html.php │ │ │ │ ├── 18_Extendedcalculation.php │ │ │ │ ├── 19_Namedrange.php │ │ │ │ ├── 20_Read_Excel2003XML.php │ │ │ │ ├── 20_Read_Gnumeric.php │ │ │ │ ├── 20_Read_Ods.php │ │ │ │ ├── 20_Read_Sylk.php │ │ │ │ ├── 20_Read_Xls.php │ │ │ │ ├── 22_Heavily_formatted.php │ │ │ │ ├── 23_Sharedstyles.php │ │ │ │ ├── 24_Readfilter.php │ │ │ │ ├── 25_In_memory_image.php │ │ │ │ ├── 26_Utf8.php │ │ │ │ ├── 27_Images_Xls.php │ │ │ │ ├── 28_Iterator.php │ │ │ │ ├── 29_Advanced_value_binder.php │ │ │ │ ├── 30_Template.php │ │ │ │ ├── 31_Document_properties_write.php │ │ │ │ ├── 31_Document_properties_write_xls.php │ │ │ │ ├── 37_Page_layout_view.php │ │ │ │ ├── 38_Clone_worksheet.php │ │ │ │ ├── 39_Dropdown.php │ │ │ │ ├── 40_Duplicate_style.php │ │ │ │ ├── 41_Password.php │ │ │ │ ├── 42_RichText.php │ │ │ │ ├── 43_Merge_workbooks.php │ │ │ │ ├── 44_Worksheet_info.php │ │ │ │ ├── 45_Quadratic_equation_solver.php │ │ │ │ ├── 46_ReadHtml.php │ │ │ │ └── data │ │ │ │ │ └── continents │ │ │ │ │ ├── Africa.txt │ │ │ │ │ ├── Asia.txt │ │ │ │ │ ├── Europe.txt │ │ │ │ │ ├── North America.txt │ │ │ │ │ ├── Oceania.txt │ │ │ │ │ └── South America.txt │ │ │ ├── Calculations │ │ │ │ ├── Database │ │ │ │ │ ├── DAVERAGE.php │ │ │ │ │ ├── DCOUNT.php │ │ │ │ │ ├── DGET.php │ │ │ │ │ ├── DMAX.php │ │ │ │ │ ├── DMIN.php │ │ │ │ │ ├── DPRODUCT.php │ │ │ │ │ ├── DSTDEV.php │ │ │ │ │ ├── DSTDEVP.php │ │ │ │ │ ├── DVAR.php │ │ │ │ │ └── DVARP.php │ │ │ │ └── DateTime │ │ │ │ │ ├── DATE.php │ │ │ │ │ ├── DATEVALUE.php │ │ │ │ │ ├── TIME.php │ │ │ │ │ └── TIMEVALUE.php │ │ │ ├── Chart │ │ │ │ ├── 32_Chart_read_write.php │ │ │ │ ├── 32_Chart_read_write_HTML.php │ │ │ │ ├── 32_Chart_read_write_PDF.php │ │ │ │ ├── 33_Chart_create_area.php │ │ │ │ ├── 33_Chart_create_bar.php │ │ │ │ ├── 33_Chart_create_bar_stacked.php │ │ │ │ ├── 33_Chart_create_column.php │ │ │ │ ├── 33_Chart_create_column_2.php │ │ │ │ ├── 33_Chart_create_composite.php │ │ │ │ ├── 33_Chart_create_line.php │ │ │ │ ├── 33_Chart_create_multiple_charts.php │ │ │ │ ├── 33_Chart_create_pie.php │ │ │ │ ├── 33_Chart_create_radar.php │ │ │ │ ├── 33_Chart_create_scatter.php │ │ │ │ ├── 33_Chart_create_stock.php │ │ │ │ ├── 34_Chart_update.php │ │ │ │ └── 35_Chart_render.php │ │ │ ├── Header.php │ │ │ ├── Pdf │ │ │ │ ├── 21_Pdf_Domdf.php │ │ │ │ ├── 21_Pdf_TCPDF.php │ │ │ │ └── 21_Pdf_mPDF.php │ │ │ ├── Reader │ │ │ │ ├── 01_Simple_file_reader_using_IOFactory.php │ │ │ │ ├── 02_Simple_file_reader_using_a_specified_reader.php │ │ │ │ ├── 03_Simple_file_reader_using_the_IOFactory_to_return_a_reader.php │ │ │ │ ├── 04_Simple_file_reader_using_the_IOFactory_to_identify_a_reader_to_use.php │ │ │ │ ├── 05_Simple_file_reader_using_the_read_data_only_option.php │ │ │ │ ├── 06_Simple_file_reader_loading_all_worksheets.php │ │ │ │ ├── 07_Simple_file_reader_loading_a_single_named_worksheet.php │ │ │ │ ├── 08_Simple_file_reader_loading_several_named_worksheets.php │ │ │ │ ├── 09_Simple_file_reader_using_a_read_filter.php │ │ │ │ ├── 10_Simple_file_reader_using_a_configurable_read_filter.php │ │ │ │ ├── 11_Reading_a_workbook_in_chunks_using_a_configurable_read_filter_(version_1).php │ │ │ │ ├── 12_Reading_a_workbook_in_chunks_using_a_configurable_read_filter_(version_2).php │ │ │ │ ├── 13_Simple_file_reader_for_multiple_CSV_files.php │ │ │ │ ├── 14_Reading_a_large_CSV_file_in_chunks_to_split_across_multiple_worksheets.php │ │ │ │ ├── 15_Simple_file_reader_for_tab_separated_value_file_using_the_Advanced_Value_Binder.php │ │ │ │ ├── 16_Handling_loader_exceptions_using_TryCatch.php │ │ │ │ ├── 17_Simple_file_reader_loading_several_named_worksheets.php │ │ │ │ ├── 18_Reading_list_of_worksheets_without_loading_entire_file.php │ │ │ │ ├── 19_Reading_worksheet_information_without_loading_entire_file.php │ │ │ │ └── sampleData │ │ │ │ │ ├── example1.csv │ │ │ │ │ ├── example1.tsv │ │ │ │ │ ├── example1.xls │ │ │ │ │ ├── example2.csv │ │ │ │ │ └── example2.xls │ │ │ ├── Reading_workbook_data │ │ │ │ ├── Custom_properties.php │ │ │ │ ├── Custom_property_names.php │ │ │ │ ├── Properties.php │ │ │ │ ├── Worksheet_count_and_names.php │ │ │ │ └── sampleData │ │ │ │ │ ├── example1.xls │ │ │ │ │ ├── example1.xlsx │ │ │ │ │ └── example2.xls │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ ├── font-awesome.min.css │ │ │ │ │ └── phpspreadsheet.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── jquery.min.js │ │ │ ├── images │ │ │ │ ├── PhpSpreadsheet_logo.png │ │ │ │ ├── officelogo.jpg │ │ │ │ ├── paid.png │ │ │ │ └── termsconditions.jpg │ │ │ ├── index.php │ │ │ └── templates │ │ │ │ ├── 26template.xlsx │ │ │ │ ├── 27template.xls │ │ │ │ ├── 28iterators.xlsx │ │ │ │ ├── 30template.xls │ │ │ │ ├── 31docproperties.xls │ │ │ │ ├── 31docproperties.xlsx │ │ │ │ ├── 32chartreadwrite.xlsx │ │ │ │ ├── 32complexChartreadwrite.xlsx │ │ │ │ ├── 32readwriteAreaChart1.xlsx │ │ │ │ ├── 32readwriteAreaChart2.xlsx │ │ │ │ ├── 32readwriteAreaChart3.xlsx │ │ │ │ ├── 32readwriteAreaChart3D1.xlsx │ │ │ │ ├── 32readwriteAreaPercentageChart1.xlsx │ │ │ │ ├── 32readwriteAreaPercentageChart2.xlsx │ │ │ │ ├── 32readwriteAreaPercentageChart3D1.xlsx │ │ │ │ ├── 32readwriteAreaStackedChart1.xlsx │ │ │ │ ├── 32readwriteAreaStackedChart2.xlsx │ │ │ │ ├── 32readwriteAreaStackedChart3D1.xlsx │ │ │ │ ├── 32readwriteBarChart1.xlsx │ │ │ │ ├── 32readwriteBarChart2.xlsx │ │ │ │ ├── 32readwriteBarChart3.xlsx │ │ │ │ ├── 32readwriteBarChart3D1.xlsx │ │ │ │ ├── 32readwriteBarPercentageChart1.xlsx │ │ │ │ ├── 32readwriteBarPercentageChart2.xlsx │ │ │ │ ├── 32readwriteBarPercentageChart3D1.xlsx │ │ │ │ ├── 32readwriteBarStackedChart1.xlsx │ │ │ │ ├── 32readwriteBarStackedChart2.xlsx │ │ │ │ ├── 32readwriteBarStackedChart3D1.xlsx │ │ │ │ ├── 32readwriteBubbleChart1.xlsx │ │ │ │ ├── 32readwriteBubbleChart3D1.xlsx │ │ │ │ ├── 32readwriteChartWithImages1.xlsx │ │ │ │ ├── 32readwriteColumnChart1.xlsx │ │ │ │ ├── 32readwriteColumnChart2.xlsx │ │ │ │ ├── 32readwriteColumnChart3.xlsx │ │ │ │ ├── 32readwriteColumnChart3D1.xlsx │ │ │ │ ├── 32readwriteColumnChart4.xlsx │ │ │ │ ├── 32readwriteColumnPercentageChart1.xlsx │ │ │ │ ├── 32readwriteColumnPercentageChart2.xlsx │ │ │ │ ├── 32readwriteColumnPercentageChart3D1.xlsx │ │ │ │ ├── 32readwriteColumnStackedChart1.xlsx │ │ │ │ ├── 32readwriteColumnStackedChart2.xlsx │ │ │ │ ├── 32readwriteColumnStackedChart3D1.xlsx │ │ │ │ ├── 32readwriteDonutChart1.xlsx │ │ │ │ ├── 32readwriteDonutChart2.xlsx │ │ │ │ ├── 32readwriteDonutChart3.xlsx │ │ │ │ ├── 32readwriteDonutChart4.xlsx │ │ │ │ ├── 32readwriteDonutChartExploded1.xlsx │ │ │ │ ├── 32readwriteDonutChartMultiseries1.xlsx │ │ │ │ ├── 32readwriteLineChart1.xlsx │ │ │ │ ├── 32readwriteLineChart2.xlsx │ │ │ │ ├── 32readwriteLineChart3.xlsx │ │ │ │ ├── 32readwriteLineChart3D1.xlsx │ │ │ │ ├── 32readwriteLineChartNoPointMarkers1.xlsx │ │ │ │ ├── 32readwriteLinePercentageChart1.xlsx │ │ │ │ ├── 32readwriteLinePercentageChart2.xlsx │ │ │ │ ├── 32readwriteLineStackedChart1.xlsx │ │ │ │ ├── 32readwriteLineStackedChart2.xlsx │ │ │ │ ├── 32readwritePieChart1.xlsx │ │ │ │ ├── 32readwritePieChart2.xlsx │ │ │ │ ├── 32readwritePieChart3.xlsx │ │ │ │ ├── 32readwritePieChart3D1.xlsx │ │ │ │ ├── 32readwritePieChart4.xlsx │ │ │ │ ├── 32readwritePieChartExploded1.xlsx │ │ │ │ ├── 32readwritePieChartExploded3D1.xlsx │ │ │ │ ├── 32readwriteRadarChart1.xlsx │ │ │ │ ├── 32readwriteRadarChart2.xlsx │ │ │ │ ├── 32readwriteRadarChart3.xlsx │ │ │ │ ├── 32readwriteScatterChart1.xlsx │ │ │ │ ├── 32readwriteScatterChart2.xlsx │ │ │ │ ├── 32readwriteScatterChart3.xlsx │ │ │ │ ├── 32readwriteScatterChart4.xlsx │ │ │ │ ├── 32readwriteScatterChart5.xlsx │ │ │ │ ├── 32readwriteStockChart1.xlsx │ │ │ │ ├── 32readwriteStockChart2.xlsx │ │ │ │ ├── 32readwriteStockChart3.xlsx │ │ │ │ ├── 32readwriteStockChart4.xlsx │ │ │ │ ├── 32readwriteSurfaceChart1.xlsx │ │ │ │ ├── 32readwriteSurfaceChart2.xlsx │ │ │ │ ├── 32readwriteSurfaceChart3.xlsx │ │ │ │ ├── 32readwriteSurfaceChart4.xlsx │ │ │ │ ├── 36writeLineChart1.xlsx │ │ │ │ ├── 43mergeBook1.xlsx │ │ │ │ ├── 43mergeBook2.xlsx │ │ │ │ ├── 46readHtml.html │ │ │ │ ├── Excel2003XMLTest.xml │ │ │ │ ├── GnumericTest.gnumeric │ │ │ │ ├── OOCalcTest.ods │ │ │ │ ├── SylkTest.slk │ │ │ │ ├── chartSpreadsheet.php │ │ │ │ ├── largeSpreadsheet.php │ │ │ │ └── sampleSpreadsheet.php │ │ └── src │ │ │ ├── Bootstrap.php │ │ │ └── PhpSpreadsheet │ │ │ ├── Calculation │ │ │ ├── Calculation.php │ │ │ ├── Category.php │ │ │ ├── Database.php │ │ │ ├── DateTime.php │ │ │ ├── Engine │ │ │ │ ├── CyclicReferenceStack.php │ │ │ │ └── Logger.php │ │ │ ├── Engineering.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionHandler.php │ │ │ ├── Financial.php │ │ │ ├── FormulaParser.php │ │ │ ├── FormulaToken.php │ │ │ ├── Functions.php │ │ │ ├── Logical.php │ │ │ ├── LookupRef.php │ │ │ ├── MathTrig.php │ │ │ ├── Statistical.php │ │ │ ├── TextData.php │ │ │ ├── Token │ │ │ │ └── Stack.php │ │ │ ├── functionlist.txt │ │ │ └── locale │ │ │ │ ├── bg │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ │ ├── cs │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ │ ├── da │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ │ ├── de │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ │ ├── en │ │ │ │ └── uk │ │ │ │ │ └── config │ │ │ │ ├── es │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ │ ├── fi │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ │ ├── fr │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ │ ├── hu │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ │ ├── it │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ │ ├── nl │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ │ ├── no │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ │ ├── pl │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ │ ├── pt │ │ │ │ ├── br │ │ │ │ │ ├── config │ │ │ │ │ └── functions │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ │ ├── ru │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ │ ├── sv │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ │ └── tr │ │ │ │ ├── config │ │ │ │ └── functions │ │ │ ├── Cell │ │ │ ├── AdvancedValueBinder.php │ │ │ ├── Cell.php │ │ │ ├── Coordinate.php │ │ │ ├── DataType.php │ │ │ ├── DataValidation.php │ │ │ ├── DataValidator.php │ │ │ ├── DefaultValueBinder.php │ │ │ ├── Hyperlink.php │ │ │ └── IValueBinder.php │ │ │ ├── Chart │ │ │ ├── Axis.php │ │ │ ├── Chart.php │ │ │ ├── DataSeries.php │ │ │ ├── DataSeriesValues.php │ │ │ ├── Exception.php │ │ │ ├── GridLines.php │ │ │ ├── Layout.php │ │ │ ├── Legend.php │ │ │ ├── PlotArea.php │ │ │ ├── Properties.php │ │ │ ├── Renderer │ │ │ │ ├── IRenderer.php │ │ │ │ ├── JpGraph.php │ │ │ │ ├── PHP Charting Libraries.txt │ │ │ │ └── Polyfill.php │ │ │ └── Title.php │ │ │ ├── Collection │ │ │ ├── Cells.php │ │ │ ├── CellsFactory.php │ │ │ └── Memory.php │ │ │ ├── Comment.php │ │ │ ├── Document │ │ │ ├── Properties.php │ │ │ └── Security.php │ │ │ ├── Exception.php │ │ │ ├── HashTable.php │ │ │ ├── Helper │ │ │ ├── Html.php │ │ │ ├── Migrator.php │ │ │ └── Sample.php │ │ │ ├── IComparable.php │ │ │ ├── IOFactory.php │ │ │ ├── NamedRange.php │ │ │ ├── Reader │ │ │ ├── BaseReader.php │ │ │ ├── Csv.php │ │ │ ├── DefaultReadFilter.php │ │ │ ├── Exception.php │ │ │ ├── Gnumeric.php │ │ │ ├── Html.php │ │ │ ├── IReadFilter.php │ │ │ ├── IReader.php │ │ │ ├── Ods.php │ │ │ ├── Slk.php │ │ │ ├── Xls.php │ │ │ ├── Xls │ │ │ │ ├── Color.php │ │ │ │ ├── Color │ │ │ │ │ ├── BIFF5.php │ │ │ │ │ ├── BIFF8.php │ │ │ │ │ └── BuiltIn.php │ │ │ │ ├── ErrorCode.php │ │ │ │ ├── Escher.php │ │ │ │ ├── MD5.php │ │ │ │ ├── RC4.php │ │ │ │ └── Style │ │ │ │ │ ├── Border.php │ │ │ │ │ └── FillPattern.php │ │ │ ├── Xlsx.php │ │ │ ├── Xlsx │ │ │ │ ├── Chart.php │ │ │ │ └── Theme.php │ │ │ └── Xml.php │ │ │ ├── ReferenceHelper.php │ │ │ ├── RichText │ │ │ ├── ITextElement.php │ │ │ ├── RichText.php │ │ │ ├── Run.php │ │ │ └── TextElement.php │ │ │ ├── Settings.php │ │ │ ├── Shared │ │ │ ├── CodePage.php │ │ │ ├── Date.php │ │ │ ├── Drawing.php │ │ │ ├── Escher.php │ │ │ ├── Escher │ │ │ │ ├── DgContainer.php │ │ │ │ ├── DgContainer │ │ │ │ │ ├── SpgrContainer.php │ │ │ │ │ └── SpgrContainer │ │ │ │ │ │ └── SpContainer.php │ │ │ │ ├── DggContainer.php │ │ │ │ └── DggContainer │ │ │ │ │ ├── BstoreContainer.php │ │ │ │ │ └── BstoreContainer │ │ │ │ │ ├── BSE.php │ │ │ │ │ └── BSE │ │ │ │ │ └── Blip.php │ │ │ ├── File.php │ │ │ ├── Font.php │ │ │ ├── JAMA │ │ │ │ ├── CHANGELOG.TXT │ │ │ │ ├── CholeskyDecomposition.php │ │ │ │ ├── EigenvalueDecomposition.php │ │ │ │ ├── LUDecomposition.php │ │ │ │ ├── Matrix.php │ │ │ │ ├── QRDecomposition.php │ │ │ │ ├── SingularValueDecomposition.php │ │ │ │ └── utils │ │ │ │ │ └── Maths.php │ │ │ ├── OLE.php │ │ │ ├── OLE │ │ │ │ ├── ChainedBlockStream.php │ │ │ │ ├── PPS.php │ │ │ │ └── PPS │ │ │ │ │ ├── File.php │ │ │ │ │ └── Root.php │ │ │ ├── OLERead.php │ │ │ ├── PasswordHasher.php │ │ │ ├── StringHelper.php │ │ │ ├── TimeZone.php │ │ │ ├── Trend │ │ │ │ ├── BestFit.php │ │ │ │ ├── ExponentialBestFit.php │ │ │ │ ├── LinearBestFit.php │ │ │ │ ├── LogarithmicBestFit.php │ │ │ │ ├── PolynomialBestFit.php │ │ │ │ ├── PowerBestFit.php │ │ │ │ └── Trend.php │ │ │ ├── XMLWriter.php │ │ │ └── Xls.php │ │ │ ├── Spreadsheet.php │ │ │ ├── Style │ │ │ ├── Alignment.php │ │ │ ├── Border.php │ │ │ ├── Borders.php │ │ │ ├── Color.php │ │ │ ├── Conditional.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── NumberFormat.php │ │ │ ├── Protection.php │ │ │ ├── Style.php │ │ │ └── Supervisor.php │ │ │ ├── Worksheet │ │ │ ├── AutoFilter.php │ │ │ ├── AutoFilter │ │ │ │ ├── Column.php │ │ │ │ └── Column │ │ │ │ │ └── Rule.php │ │ │ ├── BaseDrawing.php │ │ │ ├── CellIterator.php │ │ │ ├── Column.php │ │ │ ├── ColumnCellIterator.php │ │ │ ├── ColumnDimension.php │ │ │ ├── ColumnIterator.php │ │ │ ├── Dimension.php │ │ │ ├── Drawing.php │ │ │ ├── Drawing │ │ │ │ └── Shadow.php │ │ │ ├── HeaderFooter.php │ │ │ ├── HeaderFooterDrawing.php │ │ │ ├── Iterator.php │ │ │ ├── MemoryDrawing.php │ │ │ ├── PageMargins.php │ │ │ ├── PageSetup.php │ │ │ ├── Protection.php │ │ │ ├── Row.php │ │ │ ├── RowCellIterator.php │ │ │ ├── RowDimension.php │ │ │ ├── RowIterator.php │ │ │ ├── SheetView.php │ │ │ └── Worksheet.php │ │ │ └── Writer │ │ │ ├── BaseWriter.php │ │ │ ├── Csv.php │ │ │ ├── Exception.php │ │ │ ├── Html.php │ │ │ ├── IWriter.php │ │ │ ├── Ods.php │ │ │ ├── Ods │ │ │ ├── Cell │ │ │ │ └── Comment.php │ │ │ ├── Content.php │ │ │ ├── Meta.php │ │ │ ├── MetaInf.php │ │ │ ├── Mimetype.php │ │ │ ├── Settings.php │ │ │ ├── Styles.php │ │ │ ├── Thumbnails.php │ │ │ └── WriterPart.php │ │ │ ├── Pdf.php │ │ │ ├── Pdf │ │ │ ├── Dompdf.php │ │ │ ├── Mpdf.php │ │ │ └── Tcpdf.php │ │ │ ├── Xls.php │ │ │ ├── Xls │ │ │ ├── BIFFwriter.php │ │ │ ├── Escher.php │ │ │ ├── Font.php │ │ │ ├── Parser.php │ │ │ ├── Workbook.php │ │ │ ├── Worksheet.php │ │ │ └── Xf.php │ │ │ ├── Xlsx.php │ │ │ └── Xlsx │ │ │ ├── Chart.php │ │ │ ├── Comments.php │ │ │ ├── ContentTypes.php │ │ │ ├── DocProps.php │ │ │ ├── Drawing.php │ │ │ ├── Rels.php │ │ │ ├── RelsRibbon.php │ │ │ ├── RelsVBA.php │ │ │ ├── StringTable.php │ │ │ ├── Style.php │ │ │ ├── Theme.php │ │ │ ├── Workbook.php │ │ │ ├── Worksheet.php │ │ │ └── WriterPart.php │ └── phpword │ │ ├── .gitignore │ │ ├── .php_cs.dist │ │ ├── .scrutinizer.yml │ │ ├── .travis.yml │ │ ├── .travis_shell_after_success.sh │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── COPYING │ │ ├── COPYING.LESSER │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── bootstrap.php │ │ ├── composer.json │ │ ├── phpmd.xml.dist │ │ ├── phpstan.neon │ │ ├── phpunit.xml.dist │ │ ├── phpword.ini.dist │ │ ├── src │ │ └── PhpWord │ │ │ ├── Collection │ │ │ ├── AbstractCollection.php │ │ │ ├── Bookmarks.php │ │ │ ├── Charts.php │ │ │ ├── Comments.php │ │ │ ├── Endnotes.php │ │ │ ├── Footnotes.php │ │ │ └── Titles.php │ │ │ ├── ComplexType │ │ │ ├── FootnoteProperties.php │ │ │ ├── ProofState.php │ │ │ └── TrackChangesView.php │ │ │ ├── Element │ │ │ ├── AbstractContainer.php │ │ │ ├── AbstractElement.php │ │ │ ├── Bookmark.php │ │ │ ├── Cell.php │ │ │ ├── Chart.php │ │ │ ├── CheckBox.php │ │ │ ├── Comment.php │ │ │ ├── Endnote.php │ │ │ ├── Field.php │ │ │ ├── Footer.php │ │ │ ├── Footnote.php │ │ │ ├── FormField.php │ │ │ ├── Header.php │ │ │ ├── Image.php │ │ │ ├── Line.php │ │ │ ├── Link.php │ │ │ ├── ListItem.php │ │ │ ├── ListItemRun.php │ │ │ ├── Object.php │ │ │ ├── PageBreak.php │ │ │ ├── PreserveText.php │ │ │ ├── Row.php │ │ │ ├── SDT.php │ │ │ ├── Section.php │ │ │ ├── Shape.php │ │ │ ├── TOC.php │ │ │ ├── Table.php │ │ │ ├── Text.php │ │ │ ├── TextBox.php │ │ │ ├── TextBreak.php │ │ │ ├── TextRun.php │ │ │ ├── Title.php │ │ │ └── TrackChange.php │ │ │ ├── Escaper │ │ │ ├── AbstractEscaper.php │ │ │ ├── EscaperInterface.php │ │ │ ├── RegExp.php │ │ │ ├── Rtf.php │ │ │ └── Xml.php │ │ │ ├── Exception │ │ │ ├── CopyFileException.php │ │ │ ├── CreateTemporaryFileException.php │ │ │ ├── Exception.php │ │ │ ├── InvalidImageException.php │ │ │ ├── InvalidObjectException.php │ │ │ ├── InvalidStyleException.php │ │ │ └── UnsupportedImageTypeException.php │ │ │ ├── IOFactory.php │ │ │ ├── Media.php │ │ │ ├── Metadata │ │ │ ├── Compatibility.php │ │ │ ├── DocInfo.php │ │ │ ├── Protection.php │ │ │ └── Settings.php │ │ │ ├── PhpWord.php │ │ │ ├── Reader │ │ │ ├── AbstractReader.php │ │ │ ├── HTML.php │ │ │ ├── MsDoc.php │ │ │ ├── ODText.php │ │ │ ├── ODText │ │ │ │ ├── AbstractPart.php │ │ │ │ ├── Content.php │ │ │ │ └── Meta.php │ │ │ ├── RTF.php │ │ │ ├── RTF │ │ │ │ └── Document.php │ │ │ ├── ReaderInterface.php │ │ │ ├── Word2007.php │ │ │ └── Word2007 │ │ │ │ ├── AbstractPart.php │ │ │ │ ├── DocPropsApp.php │ │ │ │ ├── DocPropsCore.php │ │ │ │ ├── DocPropsCustom.php │ │ │ │ ├── Document.php │ │ │ │ ├── Endnotes.php │ │ │ │ ├── Footnotes.php │ │ │ │ ├── Numbering.php │ │ │ │ ├── Settings.php │ │ │ │ └── Styles.php │ │ │ ├── Settings.php │ │ │ ├── Shared │ │ │ ├── AbstractEnum.php │ │ │ ├── Converter.php │ │ │ ├── Html.php │ │ │ ├── Microsoft │ │ │ │ └── PasswordEncoder.php │ │ │ ├── OLERead.php │ │ │ ├── PCLZip │ │ │ │ └── pclzip.lib.php │ │ │ └── ZipArchive.php │ │ │ ├── SimpleType │ │ │ ├── DocProtect.php │ │ │ ├── Jc.php │ │ │ ├── JcTable.php │ │ │ ├── LineSpacingRule.php │ │ │ ├── NumberFormat.php │ │ │ ├── TextAlignment.php │ │ │ └── Zoom.php │ │ │ ├── Style.php │ │ │ ├── Style │ │ │ ├── AbstractStyle.php │ │ │ ├── Border.php │ │ │ ├── Cell.php │ │ │ ├── Chart.php │ │ │ ├── Extrusion.php │ │ │ ├── Fill.php │ │ │ ├── Font.php │ │ │ ├── Frame.php │ │ │ ├── Image.php │ │ │ ├── Indentation.php │ │ │ ├── Language.php │ │ │ ├── Line.php │ │ │ ├── LineNumbering.php │ │ │ ├── ListItem.php │ │ │ ├── Numbering.php │ │ │ ├── NumberingLevel.php │ │ │ ├── Outline.php │ │ │ ├── Paper.php │ │ │ ├── Paragraph.php │ │ │ ├── Row.php │ │ │ ├── Section.php │ │ │ ├── Shading.php │ │ │ ├── Shadow.php │ │ │ ├── Shape.php │ │ │ ├── Spacing.php │ │ │ ├── TOC.php │ │ │ ├── Tab.php │ │ │ ├── Table.php │ │ │ └── TextBox.php │ │ │ ├── Template.php │ │ │ ├── TemplateProcessor.php │ │ │ ├── Writer │ │ │ ├── AbstractWriter.php │ │ │ ├── HTML.php │ │ │ ├── HTML │ │ │ │ ├── Element │ │ │ │ │ ├── AbstractElement.php │ │ │ │ │ ├── Container.php │ │ │ │ │ ├── Endnote.php │ │ │ │ │ ├── Footnote.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── Link.php │ │ │ │ │ ├── ListItem.php │ │ │ │ │ ├── PageBreak.php │ │ │ │ │ ├── Table.php │ │ │ │ │ ├── Text.php │ │ │ │ │ ├── TextBreak.php │ │ │ │ │ ├── TextRun.php │ │ │ │ │ └── Title.php │ │ │ │ ├── Part │ │ │ │ │ ├── AbstractPart.php │ │ │ │ │ ├── Body.php │ │ │ │ │ └── Head.php │ │ │ │ └── Style │ │ │ │ │ ├── AbstractStyle.php │ │ │ │ │ ├── Font.php │ │ │ │ │ ├── Generic.php │ │ │ │ │ ├── Image.php │ │ │ │ │ └── Paragraph.php │ │ │ ├── ODText.php │ │ │ ├── ODText │ │ │ │ ├── Element │ │ │ │ │ ├── AbstractElement.php │ │ │ │ │ ├── Container.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── Link.php │ │ │ │ │ ├── PageBreak.php │ │ │ │ │ ├── Table.php │ │ │ │ │ ├── Text.php │ │ │ │ │ ├── TextBreak.php │ │ │ │ │ ├── TextRun.php │ │ │ │ │ └── Title.php │ │ │ │ ├── Part │ │ │ │ │ ├── AbstractPart.php │ │ │ │ │ ├── Content.php │ │ │ │ │ ├── Manifest.php │ │ │ │ │ ├── Meta.php │ │ │ │ │ ├── Mimetype.php │ │ │ │ │ └── Styles.php │ │ │ │ └── Style │ │ │ │ │ ├── AbstractStyle.php │ │ │ │ │ ├── Font.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── Paragraph.php │ │ │ │ │ ├── Section.php │ │ │ │ │ └── Table.php │ │ │ ├── PDF.php │ │ │ ├── PDF │ │ │ │ ├── AbstractRenderer.php │ │ │ │ ├── DomPDF.php │ │ │ │ ├── MPDF.php │ │ │ │ └── TCPDF.php │ │ │ ├── RTF.php │ │ │ ├── RTF │ │ │ │ ├── Element │ │ │ │ │ ├── AbstractElement.php │ │ │ │ │ ├── Container.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── Link.php │ │ │ │ │ ├── ListItem.php │ │ │ │ │ ├── PageBreak.php │ │ │ │ │ ├── Table.php │ │ │ │ │ ├── Text.php │ │ │ │ │ ├── TextBreak.php │ │ │ │ │ ├── TextRun.php │ │ │ │ │ └── Title.php │ │ │ │ ├── Part │ │ │ │ │ ├── AbstractPart.php │ │ │ │ │ ├── Document.php │ │ │ │ │ └── Header.php │ │ │ │ └── Style │ │ │ │ │ ├── AbstractStyle.php │ │ │ │ │ ├── Border.php │ │ │ │ │ ├── Font.php │ │ │ │ │ ├── Paragraph.php │ │ │ │ │ └── Section.php │ │ │ ├── Word2007.php │ │ │ ├── Word2007 │ │ │ │ ├── Element │ │ │ │ │ ├── AbstractElement.php │ │ │ │ │ ├── Bookmark.php │ │ │ │ │ ├── Chart.php │ │ │ │ │ ├── CheckBox.php │ │ │ │ │ ├── Container.php │ │ │ │ │ ├── Endnote.php │ │ │ │ │ ├── Field.php │ │ │ │ │ ├── Footnote.php │ │ │ │ │ ├── FormField.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── Line.php │ │ │ │ │ ├── Link.php │ │ │ │ │ ├── ListItem.php │ │ │ │ │ ├── ListItemRun.php │ │ │ │ │ ├── Object.php │ │ │ │ │ ├── PageBreak.php │ │ │ │ │ ├── ParagraphAlignment.php │ │ │ │ │ ├── PreserveText.php │ │ │ │ │ ├── SDT.php │ │ │ │ │ ├── Shape.php │ │ │ │ │ ├── TOC.php │ │ │ │ │ ├── Table.php │ │ │ │ │ ├── TableAlignment.php │ │ │ │ │ ├── Text.php │ │ │ │ │ ├── TextBox.php │ │ │ │ │ ├── TextBreak.php │ │ │ │ │ ├── TextRun.php │ │ │ │ │ └── Title.php │ │ │ │ ├── Part │ │ │ │ │ ├── AbstractPart.php │ │ │ │ │ ├── Chart.php │ │ │ │ │ ├── Comments.php │ │ │ │ │ ├── ContentTypes.php │ │ │ │ │ ├── DocPropsApp.php │ │ │ │ │ ├── DocPropsCore.php │ │ │ │ │ ├── DocPropsCustom.php │ │ │ │ │ ├── Document.php │ │ │ │ │ ├── Endnotes.php │ │ │ │ │ ├── FontTable.php │ │ │ │ │ ├── Footer.php │ │ │ │ │ ├── Footnotes.php │ │ │ │ │ ├── Header.php │ │ │ │ │ ├── Numbering.php │ │ │ │ │ ├── Rels.php │ │ │ │ │ ├── RelsDocument.php │ │ │ │ │ ├── RelsPart.php │ │ │ │ │ ├── Settings.php │ │ │ │ │ ├── Styles.php │ │ │ │ │ ├── Theme.php │ │ │ │ │ └── WebSettings.php │ │ │ │ └── Style │ │ │ │ │ ├── AbstractStyle.php │ │ │ │ │ ├── Cell.php │ │ │ │ │ ├── Extrusion.php │ │ │ │ │ ├── Fill.php │ │ │ │ │ ├── Font.php │ │ │ │ │ ├── Frame.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── Indentation.php │ │ │ │ │ ├── Line.php │ │ │ │ │ ├── LineNumbering.php │ │ │ │ │ ├── MarginBorder.php │ │ │ │ │ ├── Outline.php │ │ │ │ │ ├── Paragraph.php │ │ │ │ │ ├── Row.php │ │ │ │ │ ├── Section.php │ │ │ │ │ ├── Shading.php │ │ │ │ │ ├── Shadow.php │ │ │ │ │ ├── Shape.php │ │ │ │ │ ├── Spacing.php │ │ │ │ │ ├── Tab.php │ │ │ │ │ ├── Table.php │ │ │ │ │ └── TextBox.php │ │ │ └── WriterInterface.php │ │ │ └── resources │ │ │ ├── doc.png │ │ │ ├── ppt.png │ │ │ └── xls.png │ │ └── tests │ │ ├── PhpWord │ │ ├── Collection │ │ │ └── CollectionTest.php │ │ ├── ComplexType │ │ │ ├── FootnotePropertiesTest.php │ │ │ └── ProofStateTest.php │ │ ├── Element │ │ │ ├── AbstractElementTest.php │ │ │ ├── BookmarkTest.php │ │ │ ├── CellTest.php │ │ │ ├── CheckBoxTest.php │ │ │ ├── CommentTest.php │ │ │ ├── FieldTest.php │ │ │ ├── FooterTest.php │ │ │ ├── FootnoteTest.php │ │ │ ├── HeaderTest.php │ │ │ ├── ImageTest.php │ │ │ ├── LineTest.php │ │ │ ├── LinkTest.php │ │ │ ├── ListItemRunTest.php │ │ │ ├── ListItemTest.php │ │ │ ├── ObjectTest.php │ │ │ ├── PageBreakTest.php │ │ │ ├── PreserveTextTest.php │ │ │ ├── RowTest.php │ │ │ ├── SDTTest.php │ │ │ ├── SectionTest.php │ │ │ ├── TOCTest.php │ │ │ ├── TableTest.php │ │ │ ├── TextBoxTest.php │ │ │ ├── TextBreakTest.php │ │ │ ├── TextRunTest.php │ │ │ ├── TextTest.php │ │ │ └── TitleTest.php │ │ ├── Exception │ │ │ ├── CopyFileExceptionTest.php │ │ │ ├── CreateTemporaryFileExceptionTest.php │ │ │ ├── ExceptionTest.php │ │ │ ├── InvalidImageExceptionTest.php │ │ │ ├── InvalidStyleExceptionTest.php │ │ │ └── UnsupportedImageTypeExceptionTest.php │ │ ├── IOFactoryTest.php │ │ ├── MediaTest.php │ │ ├── Metadata │ │ │ ├── DocInfoTest.php │ │ │ └── SettingsTest.php │ │ ├── PhpWordTest.php │ │ ├── Reader │ │ │ ├── HTMLTest.php │ │ │ ├── MsDocTest.php │ │ │ ├── ODTextTest.php │ │ │ ├── RTFTest.php │ │ │ └── Word2007Test.php │ │ ├── SettingsTest.php │ │ ├── Shared │ │ │ ├── ConverterTest.php │ │ │ ├── HtmlTest.php │ │ │ ├── Microsoft │ │ │ │ └── PasswordEncoderTest.php │ │ │ └── ZipArchiveTest.php │ │ ├── Style │ │ │ ├── AbstractStyleTest.php │ │ │ ├── CellTest.php │ │ │ ├── FontTest.php │ │ │ ├── ImageTest.php │ │ │ ├── IndentationTest.php │ │ │ ├── LanguageTest.php │ │ │ ├── LineNumberingTest.php │ │ │ ├── LineTest.php │ │ │ ├── ListItemTest.php │ │ │ ├── NumberingLevelTest.php │ │ │ ├── NumberingTest.php │ │ │ ├── PaperTest.php │ │ │ ├── ParagraphTest.php │ │ │ ├── RowTest.php │ │ │ ├── SectionTest.php │ │ │ ├── ShadingTest.php │ │ │ ├── SpacingTest.php │ │ │ ├── TOCTest.php │ │ │ ├── TabTest.php │ │ │ ├── TableTest.php │ │ │ └── TextBoxTest.php │ │ ├── StyleTest.php │ │ ├── TemplateProcessorTest.php │ │ ├── Writer │ │ │ ├── HTML │ │ │ │ ├── ElementTest.php │ │ │ │ ├── PartTest.php │ │ │ │ └── StyleTest.php │ │ │ ├── HTMLTest.php │ │ │ ├── ODText │ │ │ │ ├── ElementTest.php │ │ │ │ ├── Part │ │ │ │ │ ├── AbstractPartTest.php │ │ │ │ │ └── ContentTest.php │ │ │ │ └── StyleTest.php │ │ │ ├── ODTextTest.php │ │ │ ├── PDF │ │ │ │ ├── DomPDFTest.php │ │ │ │ ├── MPDFTest.php │ │ │ │ └── TCPDFTest.php │ │ │ ├── PDFTest.php │ │ │ ├── RTF │ │ │ │ ├── ElementTest.php │ │ │ │ └── StyleTest.php │ │ │ ├── RTFTest.php │ │ │ ├── Word2007 │ │ │ │ ├── ElementTest.php │ │ │ │ ├── Part │ │ │ │ │ ├── AbstractPartTest.php │ │ │ │ │ ├── CommentsTest.php │ │ │ │ │ ├── DocumentTest.php │ │ │ │ │ ├── FooterTest.php │ │ │ │ │ ├── FootnotesTest.php │ │ │ │ │ ├── HeaderTest.php │ │ │ │ │ ├── NumberingTest.php │ │ │ │ │ ├── SettingsTest.php │ │ │ │ │ └── StylesTest.php │ │ │ │ ├── PartTest.php │ │ │ │ ├── Style │ │ │ │ │ ├── FontTest.php │ │ │ │ │ └── ParagraphTest.php │ │ │ │ └── StyleTest.php │ │ │ └── Word2007Test.php │ │ ├── _files │ │ │ ├── documents │ │ │ │ ├── reader.doc │ │ │ │ ├── reader.docx │ │ │ │ ├── reader.docx.zip │ │ │ │ ├── reader.html │ │ │ │ ├── reader.odt │ │ │ │ ├── reader.rtf │ │ │ │ ├── sheet.xls │ │ │ │ └── without_table_macros.docx │ │ │ ├── images │ │ │ │ ├── PhpWord.png │ │ │ │ ├── alexz-johnson.pcx │ │ │ │ ├── angela_merkel.tif │ │ │ │ ├── duke_nukem.bmp │ │ │ │ ├── earth.jpg │ │ │ │ ├── firefox.png │ │ │ │ ├── mario.gif │ │ │ │ ├── mars.jpg │ │ │ │ └── mars_noext_jpg │ │ │ ├── templates │ │ │ │ ├── blank.docx │ │ │ │ ├── clone-delete-block.docx │ │ │ │ ├── clone-merge.docx │ │ │ │ ├── corrupted_main_document_part.docx │ │ │ │ ├── header-footer.docx │ │ │ │ └── with_table_macros.docx │ │ │ └── xsl │ │ │ │ ├── passthrough.xsl │ │ │ │ └── remove_tables_by_needle.xsl │ │ └── _includes │ │ │ ├── TestHelperDOCX.php │ │ │ └── XmlDocument.php │ │ └── bootstrap.php ├── psr │ └── simple-cache │ │ ├── .editorconfig │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── CacheException.php │ │ ├── CacheInterface.php │ │ └── InvalidArgumentException.php └── zendframework │ ├── zend-escaper │ ├── CHANGELOG.md │ ├── CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── composer.json │ ├── doc │ │ └── book │ │ │ ├── configuration.md │ │ │ ├── escaping-css.md │ │ │ ├── escaping-html-attributes.md │ │ │ ├── escaping-html.md │ │ │ ├── escaping-javascript.md │ │ │ ├── escaping-url.md │ │ │ ├── index.html │ │ │ ├── index.md │ │ │ ├── intro.md │ │ │ └── theory-of-operation.md │ ├── mkdocs.yml │ └── src │ │ ├── Escaper.php │ │ └── Exception │ │ ├── ExceptionInterface.php │ │ ├── InvalidArgumentException.php │ │ └── RuntimeException.php │ └── zend-stdlib │ ├── CHANGELOG.md │ ├── CONDUCT.md │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── README.md │ ├── benchmark │ ├── ExtractPriorityQueue.php │ ├── InsertPriorityQueue.php │ └── RemovePriorityQueue.php │ ├── composer.json │ ├── doc │ ├── book │ │ ├── console-helper.md │ │ ├── index.html │ │ ├── index.md │ │ └── migration.md │ └── bookdown.json │ ├── mkdocs.yml │ ├── phpcs.xml │ └── src │ ├── AbstractOptions.php │ ├── ArrayObject.php │ ├── ArraySerializableInterface.php │ ├── ArrayStack.php │ ├── ArrayUtils.php │ ├── ArrayUtils │ ├── MergeRemoveKey.php │ ├── MergeReplaceKey.php │ └── MergeReplaceKeyInterface.php │ ├── ConsoleHelper.php │ ├── DispatchableInterface.php │ ├── ErrorHandler.php │ ├── Exception │ ├── BadMethodCallException.php │ ├── DomainException.php │ ├── ExceptionInterface.php │ ├── ExtensionNotLoadedException.php │ ├── InvalidArgumentException.php │ ├── LogicException.php │ └── RuntimeException.php │ ├── FastPriorityQueue.php │ ├── Glob.php │ ├── Guard │ ├── AllGuardsTrait.php │ ├── ArrayOrTraversableGuardTrait.php │ ├── EmptyGuardTrait.php │ └── NullGuardTrait.php │ ├── InitializableInterface.php │ ├── JsonSerializable.php │ ├── Message.php │ ├── MessageInterface.php │ ├── ParameterObjectInterface.php │ ├── Parameters.php │ ├── ParametersInterface.php │ ├── PriorityList.php │ ├── PriorityQueue.php │ ├── Request.php │ ├── RequestInterface.php │ ├── Response.php │ ├── ResponseInterface.php │ ├── SplPriorityQueue.php │ ├── SplQueue.php │ ├── SplStack.php │ ├── StringUtils.php │ └── StringWrapper │ ├── AbstractStringWrapper.php │ ├── Iconv.php │ ├── Intl.php │ ├── MbString.php │ ├── Native.php │ └── StringWrapperInterface.php └── webservices ├── autofillsciname.php ├── autofillvernacular.php ├── dataentryactivity.php ├── dwc ├── dwcaBatchIngestHandler.php ├── dwcaingesthandler.php ├── dwcaingesttest.php ├── dwcapubhandler.php └── rss.xml ├── fieldguidebatch.php ├── imageuploader.php ├── occurrenceWriterTester.php ├── occurrencelookup.php ├── occurrencewriter.php ├── plugins └── .gitignore ├── rights.php ├── salixparser.php └── token.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/LICENSE.md -------------------------------------------------------------------------------- /agentauth/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/agentauth/.htaccess -------------------------------------------------------------------------------- /agentauth/agents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/agentauth/agents.yaml -------------------------------------------------------------------------------- /agentauth/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/agentauth/composer.json -------------------------------------------------------------------------------- /agentauth/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/agentauth/composer.lock -------------------------------------------------------------------------------- /agentauth/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/agentauth/vendor/autoload.php -------------------------------------------------------------------------------- /agentauth/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/agentauth/vendor/composer/LICENSE -------------------------------------------------------------------------------- /agentauth/vendor/pimple/pimple/.gitignore: -------------------------------------------------------------------------------- 1 | phpunit.xml 2 | -------------------------------------------------------------------------------- /agentauth/vendor/psr/log/.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /agentauth/vendor/psr/log/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/agentauth/vendor/psr/log/LICENSE -------------------------------------------------------------------------------- /agentauth/vendor/psr/log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/agentauth/vendor/psr/log/README.md -------------------------------------------------------------------------------- /agentauth/vendor/silex/silex/.gitignore: -------------------------------------------------------------------------------- 1 | /phpunit.xml 2 | /vendor 3 | /build 4 | /composer.lock 5 | 6 | -------------------------------------------------------------------------------- /agentauth/vendor/silex/silex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/agentauth/vendor/silex/silex/LICENSE -------------------------------------------------------------------------------- /agentauth/vendor/symfony/debug/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /agentauth/vendor/symfony/event-dispatcher/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /agentauth/vendor/symfony/http-foundation/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /agentauth/vendor/symfony/routing/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | composer.lock 3 | phpunit.xml 4 | -------------------------------------------------------------------------------- /agentauth/web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/agentauth/web/index.php -------------------------------------------------------------------------------- /agents/agent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/agents/agent.php -------------------------------------------------------------------------------- /agents/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/agents/index.php -------------------------------------------------------------------------------- /agents/rpc/.htaccess: -------------------------------------------------------------------------------- 1 | Options -Indexes 2 | -------------------------------------------------------------------------------- /agents/rpc/agentloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/agents/rpc/agentloader.php -------------------------------------------------------------------------------- /agents/rpc/handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/agents/rpc/handler.php -------------------------------------------------------------------------------- /checklists/checklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/checklist.php -------------------------------------------------------------------------------- /checklists/checklistadmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/checklistadmin.php -------------------------------------------------------------------------------- /checklists/checklistadminchildren.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/checklistadminchildren.php -------------------------------------------------------------------------------- /checklists/checklistadminmeta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/checklistadminmeta.php -------------------------------------------------------------------------------- /checklists/checklistmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/checklistmap.php -------------------------------------------------------------------------------- /checklists/checklistprintfriendly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/checklistprintfriendly.php -------------------------------------------------------------------------------- /checklists/clgmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/clgmap.php -------------------------------------------------------------------------------- /checklists/clsppeditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/clsppeditor.php -------------------------------------------------------------------------------- /checklists/defaultchecklistexport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/defaultchecklistexport.php -------------------------------------------------------------------------------- /checklists/dynamicchecklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/dynamicchecklist.php -------------------------------------------------------------------------------- /checklists/dynamicmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/dynamicmap.php -------------------------------------------------------------------------------- /checklists/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/index.php -------------------------------------------------------------------------------- /checklists/mappointaid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/mappointaid.php -------------------------------------------------------------------------------- /checklists/reports/download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/reports/download.php -------------------------------------------------------------------------------- /checklists/rpc/clsearchsuggest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/rpc/clsearchsuggest.php -------------------------------------------------------------------------------- /checklists/rpc/clspeciessuggest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/rpc/clspeciessuggest.php -------------------------------------------------------------------------------- /checklists/rpc/fieldguideexporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/rpc/fieldguideexporter.php -------------------------------------------------------------------------------- /checklists/rpc/gettid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/rpc/gettid.php -------------------------------------------------------------------------------- /checklists/rpc/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/rpc/index.php -------------------------------------------------------------------------------- /checklists/rpc/linkvoucher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/rpc/linkvoucher.php -------------------------------------------------------------------------------- /checklists/rpc/speciessuggest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/rpc/speciessuggest.php -------------------------------------------------------------------------------- /checklists/rpc/testsql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/rpc/testsql.php -------------------------------------------------------------------------------- /checklists/tools/checklistloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/tools/checklistloader.php -------------------------------------------------------------------------------- /checklists/tools/floradynsql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/tools/floradynsql.php -------------------------------------------------------------------------------- /checklists/tools/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/tools/index.php -------------------------------------------------------------------------------- /checklists/tools/mappointaid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/tools/mappointaid.php -------------------------------------------------------------------------------- /checklists/tools/mappolyaid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/tools/mappolyaid.php -------------------------------------------------------------------------------- /checklists/vaconflicts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/vaconflicts.php -------------------------------------------------------------------------------- /checklists/vamissingtaxa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/vamissingtaxa.php -------------------------------------------------------------------------------- /checklists/voucheradmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/checklists/voucheradmin.php -------------------------------------------------------------------------------- /classes/ActionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ActionManager.php -------------------------------------------------------------------------------- /classes/AgentManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/AgentManager.php -------------------------------------------------------------------------------- /classes/ChecklistAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ChecklistAdmin.php -------------------------------------------------------------------------------- /classes/ChecklistFGExportManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ChecklistFGExportManager.php -------------------------------------------------------------------------------- /classes/ChecklistLoaderManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ChecklistLoaderManager.php -------------------------------------------------------------------------------- /classes/ChecklistManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ChecklistManager.php -------------------------------------------------------------------------------- /classes/ChecklistVoucherAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ChecklistVoucherAdmin.php -------------------------------------------------------------------------------- /classes/ChecklistVoucherPensoft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ChecklistVoucherPensoft.php -------------------------------------------------------------------------------- /classes/DwcArchiverAttribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/DwcArchiverAttribute.php -------------------------------------------------------------------------------- /classes/DwcArchiverCore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/DwcArchiverCore.php -------------------------------------------------------------------------------- /classes/DwcArchiverDetermination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/DwcArchiverDetermination.php -------------------------------------------------------------------------------- /classes/DwcArchiverImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/DwcArchiverImage.php -------------------------------------------------------------------------------- /classes/DwcArchiverOccurrence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/DwcArchiverOccurrence.php -------------------------------------------------------------------------------- /classes/DwcArchiverPublisher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/DwcArchiverPublisher.php -------------------------------------------------------------------------------- /classes/DynamicChecklistManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/DynamicChecklistManager.php -------------------------------------------------------------------------------- /classes/EOLManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/EOLManager.php -------------------------------------------------------------------------------- /classes/EOLUtilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/EOLUtilities.php -------------------------------------------------------------------------------- /classes/Encryption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/Encryption.php -------------------------------------------------------------------------------- /classes/ExsiccatiManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ExsiccatiManager.php -------------------------------------------------------------------------------- /classes/FieldGuideManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/FieldGuideManager.php -------------------------------------------------------------------------------- /classes/GPoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/GPoint.php -------------------------------------------------------------------------------- /classes/GamesManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/GamesManager.php -------------------------------------------------------------------------------- /classes/GeneralClassTemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/GeneralClassTemplate.php -------------------------------------------------------------------------------- /classes/GlossaryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/GlossaryManager.php -------------------------------------------------------------------------------- /classes/GlossaryUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/GlossaryUpload.php -------------------------------------------------------------------------------- /classes/ImageBatchProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ImageBatchProcessor.php -------------------------------------------------------------------------------- /classes/ImageCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ImageCleaner.php -------------------------------------------------------------------------------- /classes/ImageDetailManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ImageDetailManager.php -------------------------------------------------------------------------------- /classes/ImageExplorer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ImageExplorer.php -------------------------------------------------------------------------------- /classes/ImageImport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ImageImport.php -------------------------------------------------------------------------------- /classes/ImageLibraryManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ImageLibraryManager.php -------------------------------------------------------------------------------- /classes/ImageLocalProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ImageLocalProcessor.php -------------------------------------------------------------------------------- /classes/ImageProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ImageProcessor.php -------------------------------------------------------------------------------- /classes/ImageShared.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ImageShared.php -------------------------------------------------------------------------------- /classes/InstitutionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/InstitutionManager.php -------------------------------------------------------------------------------- /classes/InventoryDynSqlManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/InventoryDynSqlManager.php -------------------------------------------------------------------------------- /classes/InventoryProjectManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/InventoryProjectManager.php -------------------------------------------------------------------------------- /classes/KeyCharAdmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/KeyCharAdmin.php -------------------------------------------------------------------------------- /classes/KeyCharDeficitManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/KeyCharDeficitManager.php -------------------------------------------------------------------------------- /classes/KeyDataManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/KeyDataManager.php -------------------------------------------------------------------------------- /classes/KeyEditorManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/KeyEditorManager.php -------------------------------------------------------------------------------- /classes/KeyManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/KeyManager.php -------------------------------------------------------------------------------- /classes/KeyMassUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/KeyMassUpdate.php -------------------------------------------------------------------------------- /classes/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/Manager.php -------------------------------------------------------------------------------- /classes/MapInterfaceManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/MapInterfaceManager.php -------------------------------------------------------------------------------- /classes/MappingShared.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/MappingShared.php -------------------------------------------------------------------------------- /classes/ObservationSubmitManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ObservationSubmitManager.php -------------------------------------------------------------------------------- /classes/OccurrenceAPIManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceAPIManager.php -------------------------------------------------------------------------------- /classes/OccurrenceAccessStats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceAccessStats.php -------------------------------------------------------------------------------- /classes/OccurrenceActionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceActionManager.php -------------------------------------------------------------------------------- /classes/OccurrenceAssociations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceAssociations.php -------------------------------------------------------------------------------- /classes/OccurrenceAttributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceAttributes.php -------------------------------------------------------------------------------- /classes/OccurrenceCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceCleaner.php -------------------------------------------------------------------------------- /classes/OccurrenceCrowdSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceCrowdSource.php -------------------------------------------------------------------------------- /classes/OccurrenceDataset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceDataset.php -------------------------------------------------------------------------------- /classes/OccurrenceDownload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceDownload.php -------------------------------------------------------------------------------- /classes/OccurrenceDuplicate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceDuplicate.php -------------------------------------------------------------------------------- /classes/OccurrenceEditReview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceEditReview.php -------------------------------------------------------------------------------- /classes/OccurrenceEditorImages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceEditorImages.php -------------------------------------------------------------------------------- /classes/OccurrenceEditorManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceEditorManager.php -------------------------------------------------------------------------------- /classes/OccurrenceGeoLocate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceGeoLocate.php -------------------------------------------------------------------------------- /classes/OccurrenceGeorefTools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceGeorefTools.php -------------------------------------------------------------------------------- /classes/OccurrenceLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceLabel.php -------------------------------------------------------------------------------- /classes/OccurrenceListManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceListManager.php -------------------------------------------------------------------------------- /classes/OccurrenceMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceMaintenance.php -------------------------------------------------------------------------------- /classes/OccurrenceManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceManager.php -------------------------------------------------------------------------------- /classes/OccurrenceSkeletal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceSkeletal.php -------------------------------------------------------------------------------- /classes/OccurrenceSupport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceSupport.php -------------------------------------------------------------------------------- /classes/OccurrenceUtilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OccurrenceUtilities.php -------------------------------------------------------------------------------- /classes/OmOccurDeterminations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OmOccurDeterminations.php -------------------------------------------------------------------------------- /classes/OmOccurrences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/OmOccurrences.php -------------------------------------------------------------------------------- /classes/PermissionsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PermissionsManager.php -------------------------------------------------------------------------------- /classes/Person.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/Person.php -------------------------------------------------------------------------------- /classes/PhpWord/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Autoloader.php -------------------------------------------------------------------------------- /classes/PhpWord/Collection/Charts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Collection/Charts.php -------------------------------------------------------------------------------- /classes/PhpWord/Collection/Titles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Collection/Titles.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Bookmark.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Bookmark.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Cell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Cell.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Chart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Chart.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/CheckBox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/CheckBox.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Endnote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Endnote.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Field.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Footer.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Footnote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Footnote.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/FormField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/FormField.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Header.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Image.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Line.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Link.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/ListItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/ListItem.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Object.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/PageBreak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/PageBreak.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Row.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/SDT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/SDT.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Section.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Shape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Shape.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/TOC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/TOC.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Table.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Text.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/TextBox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/TextBox.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/TextBreak.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/TextBreak.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/TextRun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/TextRun.php -------------------------------------------------------------------------------- /classes/PhpWord/Element/Title.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Element/Title.php -------------------------------------------------------------------------------- /classes/PhpWord/IOFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/IOFactory.php -------------------------------------------------------------------------------- /classes/PhpWord/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Media.php -------------------------------------------------------------------------------- /classes/PhpWord/Metadata/DocInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Metadata/DocInfo.php -------------------------------------------------------------------------------- /classes/PhpWord/PhpWord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/PhpWord.php -------------------------------------------------------------------------------- /classes/PhpWord/Reader/HTML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Reader/HTML.php -------------------------------------------------------------------------------- /classes/PhpWord/Reader/MsDoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Reader/MsDoc.php -------------------------------------------------------------------------------- /classes/PhpWord/Reader/ODText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Reader/ODText.php -------------------------------------------------------------------------------- /classes/PhpWord/Reader/RTF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Reader/RTF.php -------------------------------------------------------------------------------- /classes/PhpWord/Reader/Word2007.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Reader/Word2007.php -------------------------------------------------------------------------------- /classes/PhpWord/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Settings.php -------------------------------------------------------------------------------- /classes/PhpWord/Shared/Converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Shared/Converter.php -------------------------------------------------------------------------------- /classes/PhpWord/Shared/Drawing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Shared/Drawing.php -------------------------------------------------------------------------------- /classes/PhpWord/Shared/Font.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Shared/Font.php -------------------------------------------------------------------------------- /classes/PhpWord/Shared/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Shared/Html.php -------------------------------------------------------------------------------- /classes/PhpWord/Shared/OLERead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Shared/OLERead.php -------------------------------------------------------------------------------- /classes/PhpWord/Shared/String.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Shared/String.php -------------------------------------------------------------------------------- /classes/PhpWord/Shared/XMLReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Shared/XMLReader.php -------------------------------------------------------------------------------- /classes/PhpWord/Shared/XMLWriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Shared/XMLWriter.php -------------------------------------------------------------------------------- /classes/PhpWord/Shared/ZipArchive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Shared/ZipArchive.php -------------------------------------------------------------------------------- /classes/PhpWord/Style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Alignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Alignment.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Border.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Border.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Cell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Cell.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Chart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Chart.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Extrusion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Extrusion.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Fill.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Fill.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Font.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Font.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Frame.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Image.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Indentation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Indentation.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Line.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/ListItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/ListItem.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Numbering.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Numbering.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Outline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Outline.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Paper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Paper.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Paragraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Paragraph.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Row.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Section.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Shading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Shading.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Shadow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Shadow.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Shape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Shape.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Spacing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Spacing.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/TOC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/TOC.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Tab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Tab.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/Table.php -------------------------------------------------------------------------------- /classes/PhpWord/Style/TextBox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Style/TextBox.php -------------------------------------------------------------------------------- /classes/PhpWord/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Template.php -------------------------------------------------------------------------------- /classes/PhpWord/TemplateProcessor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/TemplateProcessor.php -------------------------------------------------------------------------------- /classes/PhpWord/Writer/HTML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Writer/HTML.php -------------------------------------------------------------------------------- /classes/PhpWord/Writer/ODText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Writer/ODText.php -------------------------------------------------------------------------------- /classes/PhpWord/Writer/PDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Writer/PDF.php -------------------------------------------------------------------------------- /classes/PhpWord/Writer/PDF/DomPDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Writer/PDF/DomPDF.php -------------------------------------------------------------------------------- /classes/PhpWord/Writer/PDF/MPDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Writer/PDF/MPDF.php -------------------------------------------------------------------------------- /classes/PhpWord/Writer/RTF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/Writer/RTF.php -------------------------------------------------------------------------------- /classes/PhpWord/resources/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/resources/doc.png -------------------------------------------------------------------------------- /classes/PhpWord/resources/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/resources/ppt.png -------------------------------------------------------------------------------- /classes/PhpWord/resources/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PhpWord/resources/xls.png -------------------------------------------------------------------------------- /classes/PluginsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/PluginsManager.php -------------------------------------------------------------------------------- /classes/ProfileManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ProfileManager.php -------------------------------------------------------------------------------- /classes/RareSpeciesManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/RareSpeciesManager.php -------------------------------------------------------------------------------- /classes/RdfUtility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/RdfUtility.php -------------------------------------------------------------------------------- /classes/ReferenceManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ReferenceManager.php -------------------------------------------------------------------------------- /classes/ReportsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/ReportsManager.php -------------------------------------------------------------------------------- /classes/SOLRManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SOLRManager.php -------------------------------------------------------------------------------- /classes/SalixHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SalixHandler.php -------------------------------------------------------------------------------- /classes/SalixUtilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SalixUtilities.php -------------------------------------------------------------------------------- /classes/SiteMapManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SiteMapManager.php -------------------------------------------------------------------------------- /classes/SpatialModuleManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpatialModuleManager.php -------------------------------------------------------------------------------- /classes/SpecLoans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecLoans.php -------------------------------------------------------------------------------- /classes/SpecProcNlpDupes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecProcNlpDupes.php -------------------------------------------------------------------------------- /classes/SpecProcNlpHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecProcNlpHandler.php -------------------------------------------------------------------------------- /classes/SpecProcNlpLbcc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecProcNlpLbcc.php -------------------------------------------------------------------------------- /classes/SpecProcNlpLbccLichen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecProcNlpLbccLichen.php -------------------------------------------------------------------------------- /classes/SpecProcNlpParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecProcNlpParser.php -------------------------------------------------------------------------------- /classes/SpecProcNlpProfiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecProcNlpProfiles.php -------------------------------------------------------------------------------- /classes/SpecProcNlpSalix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecProcNlpSalix.php -------------------------------------------------------------------------------- /classes/SpecProcNlpUtilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecProcNlpUtilities.php -------------------------------------------------------------------------------- /classes/SpecProcessorGPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecProcessorGPI.php -------------------------------------------------------------------------------- /classes/SpecProcessorManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecProcessorManager.php -------------------------------------------------------------------------------- /classes/SpecProcessorNEVP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecProcessorNEVP.php -------------------------------------------------------------------------------- /classes/SpecProcessorOcr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecProcessorOcr.php -------------------------------------------------------------------------------- /classes/SpecUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecUpload.php -------------------------------------------------------------------------------- /classes/SpecUploadBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecUploadBase.php -------------------------------------------------------------------------------- /classes/SpecUploadDigir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecUploadDigir.php -------------------------------------------------------------------------------- /classes/SpecUploadDirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecUploadDirect.php -------------------------------------------------------------------------------- /classes/SpecUploadDwca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecUploadDwca.php -------------------------------------------------------------------------------- /classes/SpecUploadFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/SpecUploadFile.php -------------------------------------------------------------------------------- /classes/TPDescEditorManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/TPDescEditorManager.php -------------------------------------------------------------------------------- /classes/TPEditorManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/TPEditorManager.php -------------------------------------------------------------------------------- /classes/TPImageEditorManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/TPImageEditorManager.php -------------------------------------------------------------------------------- /classes/TaxonProfileManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/TaxonProfileManager.php -------------------------------------------------------------------------------- /classes/TaxonProfileMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/TaxonProfileMap.php -------------------------------------------------------------------------------- /classes/TaxonomyAPIManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/TaxonomyAPIManager.php -------------------------------------------------------------------------------- /classes/TaxonomyCleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/TaxonomyCleaner.php -------------------------------------------------------------------------------- /classes/TaxonomyDisplayManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/TaxonomyDisplayManager.php -------------------------------------------------------------------------------- /classes/TaxonomyEditorManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/TaxonomyEditorManager.php -------------------------------------------------------------------------------- /classes/TaxonomyHarvester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/TaxonomyHarvester.php -------------------------------------------------------------------------------- /classes/TaxonomyUpload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/TaxonomyUpload.php -------------------------------------------------------------------------------- /classes/TaxonomyUtilities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/TaxonomyUtilities.php -------------------------------------------------------------------------------- /classes/UserTaxonomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/UserTaxonomy.php -------------------------------------------------------------------------------- /classes/UuidFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/UuidFactory.php -------------------------------------------------------------------------------- /classes/VoucherManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/VoucherManager.php -------------------------------------------------------------------------------- /classes/WebServiceBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/WebServiceBase.php -------------------------------------------------------------------------------- /classes/WordCloud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/WordCloud.php -------------------------------------------------------------------------------- /classes/WsOccurEditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/WsOccurEditor.php -------------------------------------------------------------------------------- /classes/iPlantUtility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/iPlantUtility.php -------------------------------------------------------------------------------- /classes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/classes/index.php -------------------------------------------------------------------------------- /collections/admin/guidmapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/admin/guidmapper.php -------------------------------------------------------------------------------- /collections/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/admin/index.php -------------------------------------------------------------------------------- /collections/admin/logs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/admin/logs/index.php -------------------------------------------------------------------------------- /collections/admin/specupload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/admin/specupload.php -------------------------------------------------------------------------------- /collections/admin/uploadcsv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/admin/uploadcsv.php -------------------------------------------------------------------------------- /collections/admin/uploadviewer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/admin/uploadviewer.php -------------------------------------------------------------------------------- /collections/checklist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/checklist.php -------------------------------------------------------------------------------- /collections/checklistsymbiota.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/checklistsymbiota.php -------------------------------------------------------------------------------- /collections/cleaning/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/cleaning/index.php -------------------------------------------------------------------------------- /collections/datasets/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/datasets/index.php -------------------------------------------------------------------------------- /collections/download/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/download/index.php -------------------------------------------------------------------------------- /collections/editor/assocsppaid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/editor/assocsppaid.php -------------------------------------------------------------------------------- /collections/editor/dupesearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/editor/dupesearch.php -------------------------------------------------------------------------------- /collections/editor/includes/config/crowdSourcingVar.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/editor/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/editor/index.php -------------------------------------------------------------------------------- /collections/editor/mappointaid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/editor/mappointaid.php -------------------------------------------------------------------------------- /collections/editor/rpc/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/editor/rpc/index.php -------------------------------------------------------------------------------- /collections/editor/rpc/nlplbcc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/editor/rpc/nlplbcc.php -------------------------------------------------------------------------------- /collections/exsiccati/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/exsiccati/index.php -------------------------------------------------------------------------------- /collections/georef/geolocate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/georef/geolocate.php -------------------------------------------------------------------------------- /collections/georef/georefclone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/georef/georefclone.php -------------------------------------------------------------------------------- /collections/georef/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/georef/index.php -------------------------------------------------------------------------------- /collections/harvestparams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/harvestparams.php -------------------------------------------------------------------------------- /collections/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/index.php -------------------------------------------------------------------------------- /collections/individual/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/individual/index.php -------------------------------------------------------------------------------- /collections/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/list.php -------------------------------------------------------------------------------- /collections/listtabledisplay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/listtabledisplay.php -------------------------------------------------------------------------------- /collections/loans/exchange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/loans/exchange.php -------------------------------------------------------------------------------- /collections/loans/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/loans/index.php -------------------------------------------------------------------------------- /collections/map/csvoptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/map/csvoptions.php -------------------------------------------------------------------------------- /collections/map/garmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/map/garmin.php -------------------------------------------------------------------------------- /collections/map/kmlmanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/map/kmlmanager.php -------------------------------------------------------------------------------- /collections/map/mapinterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/map/mapinterface.php -------------------------------------------------------------------------------- /collections/mapboundingbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/mapboundingbox.php -------------------------------------------------------------------------------- /collections/mappointradius.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/mappointradius.php -------------------------------------------------------------------------------- /collections/misc/collbackup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/misc/collbackup.php -------------------------------------------------------------------------------- /collections/misc/collmetadata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/misc/collmetadata.php -------------------------------------------------------------------------------- /collections/misc/collprofiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/misc/collprofiles.php -------------------------------------------------------------------------------- /collections/misc/collstats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/misc/collstats.php -------------------------------------------------------------------------------- /collections/misc/collstatscsv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/misc/collstatscsv.php -------------------------------------------------------------------------------- /collections/misc/collyearstats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/misc/collyearstats.php -------------------------------------------------------------------------------- /collections/misc/commentlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/misc/commentlist.php -------------------------------------------------------------------------------- /collections/misc/fgbatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/misc/fgbatch.php -------------------------------------------------------------------------------- /collections/misc/fgcsv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/misc/fgcsv.php -------------------------------------------------------------------------------- /collections/misc/fgresults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/misc/fgresults.php -------------------------------------------------------------------------------- /collections/misc/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/misc/index.php -------------------------------------------------------------------------------- /collections/misc/rarespecies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/misc/rarespecies.php -------------------------------------------------------------------------------- /collections/misc/rpc/gettid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/misc/rpc/gettid.php -------------------------------------------------------------------------------- /collections/misc/rpc/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/misc/rpc/index.php -------------------------------------------------------------------------------- /collections/reports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/reports.php -------------------------------------------------------------------------------- /collections/reports/getBarcode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/reports/getBarcode.php -------------------------------------------------------------------------------- /collections/rpc/addallvouchers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/rpc/addallvouchers.php -------------------------------------------------------------------------------- /collections/rpc/addvoucher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/rpc/addvoucher.php -------------------------------------------------------------------------------- /collections/rpc/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/rpc/index.php -------------------------------------------------------------------------------- /collections/rpc/statreporting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/rpc/statreporting.php -------------------------------------------------------------------------------- /collections/rpc/taxalist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/rpc/taxalist.php -------------------------------------------------------------------------------- /collections/specprocessor/crowdsource/central.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /collections/traitattr/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/collections/traitattr/index.php -------------------------------------------------------------------------------- /config/dbconnection_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/config/dbconnection_template.php -------------------------------------------------------------------------------- /config/googleanalytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/config/googleanalytics.php -------------------------------------------------------------------------------- /config/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/config/index.php -------------------------------------------------------------------------------- /config/schema-1.0/testClasses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/config/schema-1.0/testClasses.php -------------------------------------------------------------------------------- /config/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/config/setup.sh -------------------------------------------------------------------------------- /config/solr/data-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/config/solr/data-config.xml -------------------------------------------------------------------------------- /config/solr/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/config/solr/readme.txt -------------------------------------------------------------------------------- /config/solr/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/config/solr/schema.xml -------------------------------------------------------------------------------- /config/symbbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/config/symbbase.php -------------------------------------------------------------------------------- /config/symbini_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/config/symbini_template.php -------------------------------------------------------------------------------- /content/collicon/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/collicon/.gitignore -------------------------------------------------------------------------------- /content/css/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/css/.gitignore -------------------------------------------------------------------------------- /content/dwca/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/dwca/.gitignore -------------------------------------------------------------------------------- /content/geolocate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/geolocate/.gitignore -------------------------------------------------------------------------------- /content/imglib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/imglib/.gitignore -------------------------------------------------------------------------------- /content/lang/ident/index.en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/lang/ident/index.en.php -------------------------------------------------------------------------------- /content/lang/ident/index.es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/lang/ident/index.es.php -------------------------------------------------------------------------------- /content/lang/ident/key.en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/lang/ident/key.en.php -------------------------------------------------------------------------------- /content/lang/ident/key.es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/lang/ident/key.es.php -------------------------------------------------------------------------------- /content/lang/projects/index.en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/lang/projects/index.en.php -------------------------------------------------------------------------------- /content/lang/projects/index.es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/lang/projects/index.es.php -------------------------------------------------------------------------------- /content/lang/shared/mapaids.en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/lang/shared/mapaids.en.php -------------------------------------------------------------------------------- /content/lang/shared/mapaids.es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/lang/shared/mapaids.es.php -------------------------------------------------------------------------------- /content/lang/sitemap.en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/lang/sitemap.en.php -------------------------------------------------------------------------------- /content/lang/sitemap.es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/lang/sitemap.es.php -------------------------------------------------------------------------------- /content/lang/taxa/index.en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/lang/taxa/index.en.php -------------------------------------------------------------------------------- /content/lang/taxa/index.es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/lang/taxa/index.es.php -------------------------------------------------------------------------------- /content/logs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/content/logs/.gitignore -------------------------------------------------------------------------------- /css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/base.css -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/images/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/images/FontAwesome.otf -------------------------------------------------------------------------------- /css/images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/images/ajax-loader.gif -------------------------------------------------------------------------------- /css/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/images/animated-overlay.gif -------------------------------------------------------------------------------- /css/images/btns-next-prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/images/btns-next-prev.png -------------------------------------------------------------------------------- /css/images/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/images/fontawesome-webfont.eot -------------------------------------------------------------------------------- /css/images/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/images/fontawesome-webfont.svg -------------------------------------------------------------------------------- /css/images/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/images/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /css/images/menu-item_divider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/images/menu-item_divider.jpg -------------------------------------------------------------------------------- /css/images/menu_pri_background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/images/menu_pri_background.jpg -------------------------------------------------------------------------------- /css/images/pagination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/images/pagination.png -------------------------------------------------------------------------------- /css/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/index.php -------------------------------------------------------------------------------- /css/jquery-ui_accordian.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/jquery-ui_accordian.css -------------------------------------------------------------------------------- /css/jquery-ui_template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/jquery-ui_template.css -------------------------------------------------------------------------------- /css/jquery.mobile-1.4.0.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/jquery.mobile-1.4.0.min.css -------------------------------------------------------------------------------- /css/jquery.symbiota.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/jquery.symbiota.css -------------------------------------------------------------------------------- /css/main_template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/main_template.css -------------------------------------------------------------------------------- /css/occureditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/occureditor.css -------------------------------------------------------------------------------- /css/ol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/ol.css -------------------------------------------------------------------------------- /css/slideshowstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/slideshowstyle.css -------------------------------------------------------------------------------- /css/spatialbase.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/spatialbase.css -------------------------------------------------------------------------------- /css/speciesprofile_template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/speciesprofile_template.css -------------------------------------------------------------------------------- /css/speciesprofilebase.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/speciesprofilebase.css -------------------------------------------------------------------------------- /css/visualsearch-datauri.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/visualsearch-datauri.css -------------------------------------------------------------------------------- /css/visualsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/css/visualsearch.css -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/mysql/custom.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/docker/mysql/custom.cnf -------------------------------------------------------------------------------- /docker/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/docker/nginx/nginx.conf -------------------------------------------------------------------------------- /docker/php-fpm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/docker/php-fpm/Dockerfile -------------------------------------------------------------------------------- /docs/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/docs/AUTHORS.txt -------------------------------------------------------------------------------- /docs/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/docs/COPYING.txt -------------------------------------------------------------------------------- /docs/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/docs/ChangeLog.txt -------------------------------------------------------------------------------- /docs/INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/docs/INSTALL.txt -------------------------------------------------------------------------------- /docs/INSTALL_DOCKER_DEV_STACK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/docs/INSTALL_DOCKER_DEV_STACK.txt -------------------------------------------------------------------------------- /docs/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/docs/README.txt -------------------------------------------------------------------------------- /docs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/docs/index.php -------------------------------------------------------------------------------- /footer_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/footer_template.php -------------------------------------------------------------------------------- /games/flashcards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/games/flashcards.php -------------------------------------------------------------------------------- /games/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/games/index.php -------------------------------------------------------------------------------- /games/namegame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/games/namegame.php -------------------------------------------------------------------------------- /games/ootd/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/games/ootd/index.php -------------------------------------------------------------------------------- /games/ootd/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/games/ootd/readme.txt -------------------------------------------------------------------------------- /games/ootd/rpc/ootdfamilylist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/games/ootd/rpc/ootdfamilylist.php -------------------------------------------------------------------------------- /games/ootd/rpc/ootdscinamelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/games/ootd/rpc/ootdscinamelist.php -------------------------------------------------------------------------------- /games/rpc/getwordlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/games/rpc/getwordlist.php -------------------------------------------------------------------------------- /glossary/addterm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/glossary/addterm.php -------------------------------------------------------------------------------- /glossary/glossaryloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/glossary/glossaryloader.php -------------------------------------------------------------------------------- /glossary/glossdocexport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/glossary/glossdocexport.php -------------------------------------------------------------------------------- /glossary/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/glossary/index.php -------------------------------------------------------------------------------- /glossary/individual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/glossary/individual.php -------------------------------------------------------------------------------- /glossary/rpc/checkterm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/glossary/rpc/checkterm.php -------------------------------------------------------------------------------- /glossary/rpc/taxalist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/glossary/rpc/taxalist.php -------------------------------------------------------------------------------- /glossary/sources.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/glossary/sources.php -------------------------------------------------------------------------------- /glossary/termdetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/glossary/termdetails.php -------------------------------------------------------------------------------- /header_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/header_template.php -------------------------------------------------------------------------------- /ident/admin/chardetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/admin/chardetails.php -------------------------------------------------------------------------------- /ident/admin/headingadmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/admin/headingadmin.php -------------------------------------------------------------------------------- /ident/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/admin/index.php -------------------------------------------------------------------------------- /ident/admin/rpc/getdescrcnt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/admin/rpc/getdescrcnt.php -------------------------------------------------------------------------------- /ident/admin/rpc/taxasuggest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/admin/rpc/taxasuggest.php -------------------------------------------------------------------------------- /ident/admin/taxonomylinkage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/admin/taxonomylinkage.php -------------------------------------------------------------------------------- /ident/dichotomous/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/dichotomous/index.php -------------------------------------------------------------------------------- /ident/dichotomous/key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/dichotomous/key.php -------------------------------------------------------------------------------- /ident/dichotomous/loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/dichotomous/loader.php -------------------------------------------------------------------------------- /ident/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/index.php -------------------------------------------------------------------------------- /ident/key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/key.php -------------------------------------------------------------------------------- /ident/loadingcl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/loadingcl.php -------------------------------------------------------------------------------- /ident/rpc/gettid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/rpc/gettid.php -------------------------------------------------------------------------------- /ident/rpc/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/rpc/index.php -------------------------------------------------------------------------------- /ident/tools/chardeficit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/tools/chardeficit.php -------------------------------------------------------------------------------- /ident/tools/editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/tools/editor.php -------------------------------------------------------------------------------- /ident/tools/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/tools/index.php -------------------------------------------------------------------------------- /ident/tools/massupdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/ident/tools/massupdate.php -------------------------------------------------------------------------------- /imagelib/admin/imageloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/imagelib/admin/imageloader.php -------------------------------------------------------------------------------- /imagelib/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/imagelib/admin/index.php -------------------------------------------------------------------------------- /imagelib/admin/verifypaths.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/imagelib/admin/verifypaths.php -------------------------------------------------------------------------------- /imagelib/contributors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/imagelib/contributors.php -------------------------------------------------------------------------------- /imagelib/imgdetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/imagelib/imgdetails.php -------------------------------------------------------------------------------- /imagelib/imgsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/imagelib/imgsearch.php -------------------------------------------------------------------------------- /imagelib/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/imagelib/index.php -------------------------------------------------------------------------------- /imagelib/rpc/changeimagepage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/imagelib/rpc/changeimagepage.php -------------------------------------------------------------------------------- /imagelib/rpc/displayimages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/imagelib/rpc/displayimages.php -------------------------------------------------------------------------------- /imagelib/rpc/gettaxasuggest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/imagelib/rpc/gettaxasuggest.php -------------------------------------------------------------------------------- /imagelib/rpc/gettid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/imagelib/rpc/gettid.php -------------------------------------------------------------------------------- /imagelib/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/imagelib/search.php -------------------------------------------------------------------------------- /imagelib/unknownbrowse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/imagelib/unknownbrowse.php -------------------------------------------------------------------------------- /imagelib/unknowndisplay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/imagelib/unknowndisplay.php -------------------------------------------------------------------------------- /imagelib/unknownsubmit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/imagelib/unknownsubmit.php -------------------------------------------------------------------------------- /images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/add.png -------------------------------------------------------------------------------- /images/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/ajax-loader.gif -------------------------------------------------------------------------------- /images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/back.png -------------------------------------------------------------------------------- /images/button_wfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/button_wfs.png -------------------------------------------------------------------------------- /images/button_wms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/button_wms.png -------------------------------------------------------------------------------- /images/closedhand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/closedhand.cur -------------------------------------------------------------------------------- /images/cross-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/cross-out.png -------------------------------------------------------------------------------- /images/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/del.png -------------------------------------------------------------------------------- /images/dl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/dl.png -------------------------------------------------------------------------------- /images/downrightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/downrightarrow.png -------------------------------------------------------------------------------- /images/drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/drop.png -------------------------------------------------------------------------------- /images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/edit.png -------------------------------------------------------------------------------- /images/edit_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/edit_off.png -------------------------------------------------------------------------------- /images/edit_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/edit_on.png -------------------------------------------------------------------------------- /images/editadmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/editadmin.png -------------------------------------------------------------------------------- /images/editplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/editplus.png -------------------------------------------------------------------------------- /images/editspp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/editspp.png -------------------------------------------------------------------------------- /images/editvoucher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/editvoucher.png -------------------------------------------------------------------------------- /images/exsiccatiadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/exsiccatiadd.png -------------------------------------------------------------------------------- /images/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/find.png -------------------------------------------------------------------------------- /images/games/games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/games.png -------------------------------------------------------------------------------- /images/games/namegame/apple_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/apple_0.gif -------------------------------------------------------------------------------- /images/games/namegame/apple_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/apple_1.gif -------------------------------------------------------------------------------- /images/games/namegame/apple_10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/apple_10.gif -------------------------------------------------------------------------------- /images/games/namegame/apple_11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/apple_11.gif -------------------------------------------------------------------------------- /images/games/namegame/apple_12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/apple_12.gif -------------------------------------------------------------------------------- /images/games/namegame/apple_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/apple_2.gif -------------------------------------------------------------------------------- /images/games/namegame/apple_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/apple_3.gif -------------------------------------------------------------------------------- /images/games/namegame/apple_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/apple_4.gif -------------------------------------------------------------------------------- /images/games/namegame/apple_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/apple_5.gif -------------------------------------------------------------------------------- /images/games/namegame/apple_6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/apple_6.gif -------------------------------------------------------------------------------- /images/games/namegame/apple_7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/apple_7.gif -------------------------------------------------------------------------------- /images/games/namegame/apple_8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/apple_8.gif -------------------------------------------------------------------------------- /images/games/namegame/apple_9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/apple_9.gif -------------------------------------------------------------------------------- /images/games/namegame/apple_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/apple_on.gif -------------------------------------------------------------------------------- /images/games/namegame/flower0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/flower0.gif -------------------------------------------------------------------------------- /images/games/namegame/flower1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/flower1.gif -------------------------------------------------------------------------------- /images/games/namegame/flower10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/flower10.gif -------------------------------------------------------------------------------- /images/games/namegame/flower11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/flower11.gif -------------------------------------------------------------------------------- /images/games/namegame/flower12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/flower12.gif -------------------------------------------------------------------------------- /images/games/namegame/flower2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/flower2.gif -------------------------------------------------------------------------------- /images/games/namegame/flower3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/flower3.gif -------------------------------------------------------------------------------- /images/games/namegame/flower4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/flower4.gif -------------------------------------------------------------------------------- /images/games/namegame/flower5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/flower5.gif -------------------------------------------------------------------------------- /images/games/namegame/flower6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/flower6.gif -------------------------------------------------------------------------------- /images/games/namegame/flower7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/flower7.gif -------------------------------------------------------------------------------- /images/games/namegame/flower8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/flower8.gif -------------------------------------------------------------------------------- /images/games/namegame/flower9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/flower9.gif -------------------------------------------------------------------------------- /images/games/namegame/gallow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/gallow.gif -------------------------------------------------------------------------------- /images/games/namegame/gallow1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/gallow1.gif -------------------------------------------------------------------------------- /images/games/namegame/gallow2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/gallow2.gif -------------------------------------------------------------------------------- /images/games/namegame/gallow3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/gallow3.gif -------------------------------------------------------------------------------- /images/games/namegame/gallow4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/gallow4.gif -------------------------------------------------------------------------------- /images/games/namegame/gallow5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/gallow5.gif -------------------------------------------------------------------------------- /images/games/namegame/gallows.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/gallows.gif -------------------------------------------------------------------------------- /images/games/namegame/man1_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/man1_0.gif -------------------------------------------------------------------------------- /images/games/namegame/man1_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/man1_1.gif -------------------------------------------------------------------------------- /images/games/namegame/man1_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/man1_2.gif -------------------------------------------------------------------------------- /images/games/namegame/man1_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/man1_3.gif -------------------------------------------------------------------------------- /images/games/namegame/man1_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/man1_4.gif -------------------------------------------------------------------------------- /images/games/namegame/man1_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/man1_5.gif -------------------------------------------------------------------------------- /images/games/namegame/man1win.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/man1win.gif -------------------------------------------------------------------------------- /images/games/namegame/man2_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/man2_0.gif -------------------------------------------------------------------------------- /images/games/namegame/man2_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/man2_1.gif -------------------------------------------------------------------------------- /images/games/namegame/man2_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/man2_2.gif -------------------------------------------------------------------------------- /images/games/namegame/man2_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/man2_3.gif -------------------------------------------------------------------------------- /images/games/namegame/man2_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/man2_4.gif -------------------------------------------------------------------------------- /images/games/namegame/man2_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/man2_5.gif -------------------------------------------------------------------------------- /images/games/namegame/man2win.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/man2win.gif -------------------------------------------------------------------------------- /images/games/namegame/plant0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/plant0.gif -------------------------------------------------------------------------------- /images/games/namegame/plant1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/plant1.gif -------------------------------------------------------------------------------- /images/games/namegame/plant10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/plant10.gif -------------------------------------------------------------------------------- /images/games/namegame/plant11.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/plant11.gif -------------------------------------------------------------------------------- /images/games/namegame/plant12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/plant12.gif -------------------------------------------------------------------------------- /images/games/namegame/plant2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/plant2.gif -------------------------------------------------------------------------------- /images/games/namegame/plant3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/plant3.gif -------------------------------------------------------------------------------- /images/games/namegame/plant4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/plant4.gif -------------------------------------------------------------------------------- /images/games/namegame/plant5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/plant5.gif -------------------------------------------------------------------------------- /images/games/namegame/plant6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/plant6.gif -------------------------------------------------------------------------------- /images/games/namegame/plant7.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/plant7.gif -------------------------------------------------------------------------------- /images/games/namegame/plant8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/plant8.gif -------------------------------------------------------------------------------- /images/games/namegame/plant9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/plant9.gif -------------------------------------------------------------------------------- /images/games/namegame/plant_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/plant_on.gif -------------------------------------------------------------------------------- /images/games/namegame/plantwin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/plantwin.gif -------------------------------------------------------------------------------- /images/games/namegame/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/spacer.gif -------------------------------------------------------------------------------- /images/games/namegame/temppic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/temppic.jpg -------------------------------------------------------------------------------- /images/games/namegame/woman1_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/woman1_0.gif -------------------------------------------------------------------------------- /images/games/namegame/woman1_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/woman1_1.gif -------------------------------------------------------------------------------- /images/games/namegame/woman1_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/woman1_2.gif -------------------------------------------------------------------------------- /images/games/namegame/woman1_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/woman1_3.gif -------------------------------------------------------------------------------- /images/games/namegame/woman1_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/woman1_4.gif -------------------------------------------------------------------------------- /images/games/namegame/woman1_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/woman1_5.gif -------------------------------------------------------------------------------- /images/games/namegame/woman2_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/woman2_0.gif -------------------------------------------------------------------------------- /images/games/namegame/woman2_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/woman2_1.gif -------------------------------------------------------------------------------- /images/games/namegame/woman2_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/woman2_2.gif -------------------------------------------------------------------------------- /images/games/namegame/woman2_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/woman2_3.gif -------------------------------------------------------------------------------- /images/games/namegame/woman2_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/woman2_4.gif -------------------------------------------------------------------------------- /images/games/namegame/woman2_5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/woman2_5.gif -------------------------------------------------------------------------------- /images/games/namegame/wwoman0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/wwoman0.gif -------------------------------------------------------------------------------- /images/games/namegame/wwoman1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/wwoman1.gif -------------------------------------------------------------------------------- /images/games/namegame/wwoman2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/wwoman2.gif -------------------------------------------------------------------------------- /images/games/namegame/wwoman3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/wwoman3.gif -------------------------------------------------------------------------------- /images/games/namegame/wwoman4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/wwoman4.gif -------------------------------------------------------------------------------- /images/games/namegame/wwoman5.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/namegame/wwoman5.gif -------------------------------------------------------------------------------- /images/games/ootd/balloons-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/ootd/balloons-150.png -------------------------------------------------------------------------------- /images/games/ootd/qmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/ootd/qmark.png -------------------------------------------------------------------------------- /images/games/ootd/uptriangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/games/ootd/uptriangle.png -------------------------------------------------------------------------------- /images/geolocate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/geolocate.png -------------------------------------------------------------------------------- /images/google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google.png -------------------------------------------------------------------------------- /images/google/00e13c-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/00e13c-dot.png -------------------------------------------------------------------------------- /images/google/55d7d7-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/55d7d7-dot.png -------------------------------------------------------------------------------- /images/google/5781fc-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/5781fc-dot.png -------------------------------------------------------------------------------- /images/google/7e55fc-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/7e55fc-dot.png -------------------------------------------------------------------------------- /images/google/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/arrow.png -------------------------------------------------------------------------------- /images/google/arrowshadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/arrowshadow.png -------------------------------------------------------------------------------- /images/google/blue-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/blue-dot.png -------------------------------------------------------------------------------- /images/google/e14f9e-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/e14f9e-dot.png -------------------------------------------------------------------------------- /images/google/fc6355-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/fc6355-dot.png -------------------------------------------------------------------------------- /images/google/fcf357-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/fcf357-dot.png -------------------------------------------------------------------------------- /images/google/ff9900-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/ff9900-dot.png -------------------------------------------------------------------------------- /images/google/green-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/green-dot.png -------------------------------------------------------------------------------- /images/google/ltblue-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/ltblue-dot.png -------------------------------------------------------------------------------- /images/google/marker_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/marker_grey.png -------------------------------------------------------------------------------- /images/google/orange-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/orange-dot.png -------------------------------------------------------------------------------- /images/google/pin-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/pin-blue.png -------------------------------------------------------------------------------- /images/google/pin-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/pin-gray.png -------------------------------------------------------------------------------- /images/google/pin-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/pin-green.png -------------------------------------------------------------------------------- /images/google/pin-ltblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/pin-ltblue.png -------------------------------------------------------------------------------- /images/google/pin-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/pin-orange.png -------------------------------------------------------------------------------- /images/google/pin-pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/pin-pink.png -------------------------------------------------------------------------------- /images/google/pin-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/pin-purple.png -------------------------------------------------------------------------------- /images/google/pin-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/pin-red.png -------------------------------------------------------------------------------- /images/google/pin-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/pin-yellow.png -------------------------------------------------------------------------------- /images/google/pink-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/pink-dot.png -------------------------------------------------------------------------------- /images/google/purple-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/purple-dot.png -------------------------------------------------------------------------------- /images/google/red-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/red-dot.png -------------------------------------------------------------------------------- /images/google/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/shadow.png -------------------------------------------------------------------------------- /images/google/smpin_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/smpin_black.png -------------------------------------------------------------------------------- /images/google/smpin_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/smpin_blue.png -------------------------------------------------------------------------------- /images/google/smpin_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/smpin_brown.png -------------------------------------------------------------------------------- /images/google/smpin_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/smpin_gray.png -------------------------------------------------------------------------------- /images/google/smpin_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/smpin_green.png -------------------------------------------------------------------------------- /images/google/smpin_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/smpin_orange.png -------------------------------------------------------------------------------- /images/google/smpin_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/smpin_purple.png -------------------------------------------------------------------------------- /images/google/smpin_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/smpin_red.png -------------------------------------------------------------------------------- /images/google/smpin_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/smpin_shadow.png -------------------------------------------------------------------------------- /images/google/smpin_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/smpin_white.png -------------------------------------------------------------------------------- /images/google/smpin_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/smpin_yellow.png -------------------------------------------------------------------------------- /images/google/yellow-dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/google/yellow-dot.png -------------------------------------------------------------------------------- /images/icons/eol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/icons/eol.png -------------------------------------------------------------------------------- /images/icons/garmin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/icons/garmin.png -------------------------------------------------------------------------------- /images/icons/tropicos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/icons/tropicos.png -------------------------------------------------------------------------------- /images/idigbio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/idigbio.png -------------------------------------------------------------------------------- /images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/image.png -------------------------------------------------------------------------------- /images/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/index.php -------------------------------------------------------------------------------- /images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/info.png -------------------------------------------------------------------------------- /images/inherit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/inherit.png -------------------------------------------------------------------------------- /images/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/jpg.png -------------------------------------------------------------------------------- /images/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/key.png -------------------------------------------------------------------------------- /images/layout/below_header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/layout/below_header.gif -------------------------------------------------------------------------------- /images/layout/brown_hor_strip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/layout/brown_hor_strip.gif -------------------------------------------------------------------------------- /images/layout/brownline_bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/layout/brownline_bottom.gif -------------------------------------------------------------------------------- /images/layout/defaultfooter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/layout/defaultfooter.gif -------------------------------------------------------------------------------- /images/layout/defaultheader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/layout/defaultheader.jpg -------------------------------------------------------------------------------- /images/layout/defaultleftstrip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/layout/defaultleftstrip.gif -------------------------------------------------------------------------------- /images/layout/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/layout/index.php -------------------------------------------------------------------------------- /images/layout/mini_header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/layout/mini_header.gif -------------------------------------------------------------------------------- /images/layout/seinet_sl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/layout/seinet_sl.jpg -------------------------------------------------------------------------------- /images/layout/vert_strip_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/layout/vert_strip_left.gif -------------------------------------------------------------------------------- /images/layout/vert_strip_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/layout/vert_strip_right.gif -------------------------------------------------------------------------------- /images/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/link.png -------------------------------------------------------------------------------- /images/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/list.png -------------------------------------------------------------------------------- /images/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/minus.png -------------------------------------------------------------------------------- /images/minus_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/minus_sm.png -------------------------------------------------------------------------------- /images/newwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/newwin.png -------------------------------------------------------------------------------- /images/next1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/next1.png -------------------------------------------------------------------------------- /images/next1_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/next1_roll.png -------------------------------------------------------------------------------- /images/nsf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/nsf.png -------------------------------------------------------------------------------- /images/openhand.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/openhand.cur -------------------------------------------------------------------------------- /images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/plus.png -------------------------------------------------------------------------------- /images/plus_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/plus_sm.png -------------------------------------------------------------------------------- /images/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/print.png -------------------------------------------------------------------------------- /images/qmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/qmark.png -------------------------------------------------------------------------------- /images/qmark_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/qmark_big.png -------------------------------------------------------------------------------- /images/quiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/quiz.png -------------------------------------------------------------------------------- /images/reddot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/reddot.png -------------------------------------------------------------------------------- /images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/refresh.png -------------------------------------------------------------------------------- /images/rightarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/rightarrow.png -------------------------------------------------------------------------------- /images/righttriangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/righttriangle.png -------------------------------------------------------------------------------- /images/skipthisone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/skipthisone.png -------------------------------------------------------------------------------- /images/spatial_close_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/spatial_close_icon.png -------------------------------------------------------------------------------- /images/tableft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/tableft.png -------------------------------------------------------------------------------- /images/tochild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/tochild.png -------------------------------------------------------------------------------- /images/toparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/toparent.png -------------------------------------------------------------------------------- /images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/undo.png -------------------------------------------------------------------------------- /images/uptriangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/uptriangle.png -------------------------------------------------------------------------------- /images/voucheradd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/voucheradd.png -------------------------------------------------------------------------------- /images/wordicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/wordicon.png -------------------------------------------------------------------------------- /images/workingcircle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/workingcircle.gif -------------------------------------------------------------------------------- /images/world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/world.png -------------------------------------------------------------------------------- /images/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/images/x.png -------------------------------------------------------------------------------- /index_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/index_template.php -------------------------------------------------------------------------------- /js/FileSaver.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/FileSaver.min.js -------------------------------------------------------------------------------- /js/backbone-0.9.10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/backbone-0.9.10.js -------------------------------------------------------------------------------- /js/dbf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/dbf.js -------------------------------------------------------------------------------- /js/garmin/jstests/controlTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/garmin/jstests/controlTest.html -------------------------------------------------------------------------------- /js/garmin/jstests/pluginTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/garmin/jstests/pluginTest.html -------------------------------------------------------------------------------- /js/garmin/prototype/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/garmin/prototype/prototype.js -------------------------------------------------------------------------------- /js/html2canvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/html2canvas.min.js -------------------------------------------------------------------------------- /js/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/index.php -------------------------------------------------------------------------------- /js/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /js/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /js/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery-1.9.1.js -------------------------------------------------------------------------------- /js/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /js/jquery-ui-1.10.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery-ui-1.10.4.js -------------------------------------------------------------------------------- /js/jquery-ui-1.12.1/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery-ui-1.12.1/AUTHORS.txt -------------------------------------------------------------------------------- /js/jquery-ui-1.12.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery-ui-1.12.1/LICENSE.txt -------------------------------------------------------------------------------- /js/jquery-ui-1.12.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery-ui-1.12.1/index.html -------------------------------------------------------------------------------- /js/jquery-ui-1.12.1/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery-ui-1.12.1/jquery-ui.css -------------------------------------------------------------------------------- /js/jquery-ui-1.12.1/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery-ui-1.12.1/jquery-ui.js -------------------------------------------------------------------------------- /js/jquery-ui-1.12.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery-ui-1.12.1/package.json -------------------------------------------------------------------------------- /js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery-ui.js -------------------------------------------------------------------------------- /js/jquery.imagetool-1.7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery.imagetool-1.7.js -------------------------------------------------------------------------------- /js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery.js -------------------------------------------------------------------------------- /js/jquery.manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery.manifest.js -------------------------------------------------------------------------------- /js/jquery.marcopolo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery.marcopolo.js -------------------------------------------------------------------------------- /js/jquery.mobile-1.4.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery.mobile-1.4.0.min.js -------------------------------------------------------------------------------- /js/jquery.mobile-1.4.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery.mobile-1.4.0.min.map -------------------------------------------------------------------------------- /js/jquery.popupoverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery.popupoverlay.js -------------------------------------------------------------------------------- /js/jquery.slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jquery.slides.js -------------------------------------------------------------------------------- /js/jscolor/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jscolor/arrow.gif -------------------------------------------------------------------------------- /js/jscolor/cross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jscolor/cross.gif -------------------------------------------------------------------------------- /js/jscolor/hs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jscolor/hs.png -------------------------------------------------------------------------------- /js/jscolor/hv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jscolor/hv.png -------------------------------------------------------------------------------- /js/jscolor/jscolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jscolor/jscolor.js -------------------------------------------------------------------------------- /js/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/jszip.min.js -------------------------------------------------------------------------------- /js/ol-symbiota-ext-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/ol-symbiota-ext-debug.js -------------------------------------------------------------------------------- /js/ol-symbiota-ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/ol-symbiota-ext.js -------------------------------------------------------------------------------- /js/pdfmake.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/pdfmake.min.js -------------------------------------------------------------------------------- /js/readme_jquery.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/readme_jquery.txt -------------------------------------------------------------------------------- /js/shapefile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/shapefile.js -------------------------------------------------------------------------------- /js/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/stream.js -------------------------------------------------------------------------------- /js/symb/checklists.checklist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/checklists.checklist.js -------------------------------------------------------------------------------- /js/symb/checklists.voucheradmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/checklists.voucheradmin.js -------------------------------------------------------------------------------- /js/symb/collections.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/collections.index.js -------------------------------------------------------------------------------- /js/symb/collections.loans.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/collections.loans.js -------------------------------------------------------------------------------- /js/symb/collections.search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/collections.search.js -------------------------------------------------------------------------------- /js/symb/collections.traitattr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/collections.traitattr.js -------------------------------------------------------------------------------- /js/symb/games.ootd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/games.ootd.js -------------------------------------------------------------------------------- /js/symb/geolocate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/geolocate.js -------------------------------------------------------------------------------- /js/symb/glossary.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/glossary.index.js -------------------------------------------------------------------------------- /js/symb/ident.key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/ident.key.js -------------------------------------------------------------------------------- /js/symb/imagelib.imgdetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/imagelib.imgdetails.js -------------------------------------------------------------------------------- /js/symb/imagelib.imgexplorer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/imagelib.imgexplorer.js -------------------------------------------------------------------------------- /js/symb/images.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/images.index.js -------------------------------------------------------------------------------- /js/symb/infobox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/infobox.js -------------------------------------------------------------------------------- /js/symb/keydragzoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/keydragzoom.js -------------------------------------------------------------------------------- /js/symb/markerclusterer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/markerclusterer.js -------------------------------------------------------------------------------- /js/symb/oms.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/oms.min.js -------------------------------------------------------------------------------- /js/symb/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/plugins.js -------------------------------------------------------------------------------- /js/symb/profile.viewprofile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/profile.viewprofile.js -------------------------------------------------------------------------------- /js/symb/references.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/references.index.js -------------------------------------------------------------------------------- /js/symb/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/shared.js -------------------------------------------------------------------------------- /js/symb/spatial.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/spatial.module.js -------------------------------------------------------------------------------- /js/symb/taxa.editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/taxa.editor.js -------------------------------------------------------------------------------- /js/symb/taxa.index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/taxa.index.js -------------------------------------------------------------------------------- /js/symb/taxa.taxonomyeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/taxa.taxonomyeditor.js -------------------------------------------------------------------------------- /js/symb/taxa.taxonomyloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/taxa.taxonomyloader.js -------------------------------------------------------------------------------- /js/symb/taxa.tpimageeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/taxa.tpimageeditor.js -------------------------------------------------------------------------------- /js/symb/wktpolygontools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/symb/wktpolygontools.js -------------------------------------------------------------------------------- /js/tiny_mce/langs/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/tiny_mce/langs/en.js -------------------------------------------------------------------------------- /js/tiny_mce/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/tiny_mce/license.txt -------------------------------------------------------------------------------- /js/tiny_mce/plugins/advhr/rule.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/tiny_mce/plugins/advhr/rule.htm -------------------------------------------------------------------------------- /js/tiny_mce/plugins/table/cell.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/tiny_mce/plugins/table/cell.htm -------------------------------------------------------------------------------- /js/tiny_mce/plugins/table/row.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/tiny_mce/plugins/table/row.htm -------------------------------------------------------------------------------- /js/tiny_mce/tiny_mce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/tiny_mce/tiny_mce.js -------------------------------------------------------------------------------- /js/tiny_mce/tiny_mce_popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/tiny_mce/tiny_mce_popup.js -------------------------------------------------------------------------------- /js/tiny_mce/tiny_mce_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/tiny_mce/tiny_mce_src.js -------------------------------------------------------------------------------- /js/tiny_mce/utils/form_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/tiny_mce/utils/form_utils.js -------------------------------------------------------------------------------- /js/tiny_mce/utils/mctabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/tiny_mce/utils/mctabs.js -------------------------------------------------------------------------------- /js/tiny_mce/utils/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/tiny_mce/utils/validate.js -------------------------------------------------------------------------------- /js/underscore-1.4.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/underscore-1.4.3.js -------------------------------------------------------------------------------- /js/vfs_fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/vfs_fonts.js -------------------------------------------------------------------------------- /js/visualsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/js/visualsearch.js -------------------------------------------------------------------------------- /leftmenu_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/leftmenu_template.php -------------------------------------------------------------------------------- /map/googlekml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/map/googlekml.php -------------------------------------------------------------------------------- /map/googlemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/map/googlemap.php -------------------------------------------------------------------------------- /misc/generaltemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/misc/generaltemplate.php -------------------------------------------------------------------------------- /misc/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/misc/index.php -------------------------------------------------------------------------------- /misc/usagepolicy_template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/misc/usagepolicy_template.php -------------------------------------------------------------------------------- /plugins/external/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/plugins/external/.gitignore -------------------------------------------------------------------------------- /plugins/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/plugins/index.php -------------------------------------------------------------------------------- /plugins/quicksearch/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/plugins/quicksearch/readme.txt -------------------------------------------------------------------------------- /plugins/slideshow/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/plugins/slideshow/readme.txt -------------------------------------------------------------------------------- /profile/imagesforid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/imagesforid.php -------------------------------------------------------------------------------- /profile/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/index.php -------------------------------------------------------------------------------- /profile/newprofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/newprofile.php -------------------------------------------------------------------------------- /profile/personalspecbackup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/personalspecbackup.php -------------------------------------------------------------------------------- /profile/personalspecmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/personalspecmenu.php -------------------------------------------------------------------------------- /profile/response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/response.php -------------------------------------------------------------------------------- /profile/rpc/displayimagesforid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/rpc/displayimagesforid.php -------------------------------------------------------------------------------- /profile/rpc/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/rpc/index.php -------------------------------------------------------------------------------- /profile/rpc/taxasuggest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/rpc/taxasuggest.php -------------------------------------------------------------------------------- /profile/rpc/taxonvalidation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/rpc/taxonvalidation.php -------------------------------------------------------------------------------- /profile/specimenstoid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/specimenstoid.php -------------------------------------------------------------------------------- /profile/taxoninterests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/taxoninterests.php -------------------------------------------------------------------------------- /profile/usermanagement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/usermanagement.php -------------------------------------------------------------------------------- /profile/userprofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/userprofile.php -------------------------------------------------------------------------------- /profile/usertaxonomymanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/usertaxonomymanager.php -------------------------------------------------------------------------------- /profile/viewprofile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/profile/viewprofile.php -------------------------------------------------------------------------------- /projects/checklisttab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/projects/checklisttab.php -------------------------------------------------------------------------------- /projects/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/projects/index.php -------------------------------------------------------------------------------- /projects/managertab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/projects/managertab.php -------------------------------------------------------------------------------- /references/authoreditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/references/authoreditor.php -------------------------------------------------------------------------------- /references/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/references/index.php -------------------------------------------------------------------------------- /references/refdetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/references/refdetails.php -------------------------------------------------------------------------------- /references/rpc/authorlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/references/rpc/authorlist.php -------------------------------------------------------------------------------- /references/rpc/authormanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/references/rpc/authormanager.php -------------------------------------------------------------------------------- /references/rpc/parentdetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/references/rpc/parentdetails.php -------------------------------------------------------------------------------- /references/rpc/parenttitlelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/references/rpc/parenttitlelist.php -------------------------------------------------------------------------------- /references/rpc/seriestitlelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/references/rpc/seriestitlelist.php -------------------------------------------------------------------------------- /requests/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/requests/index.php -------------------------------------------------------------------------------- /requests/rpc/requestsearch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/requests/rpc/requestsearch.php -------------------------------------------------------------------------------- /robots_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/robots_template.txt -------------------------------------------------------------------------------- /sitemap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/sitemap.php -------------------------------------------------------------------------------- /spatial/includes/csvoptions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/spatial/includes/csvoptions.php -------------------------------------------------------------------------------- /spatial/includes/mapsettings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/spatial/includes/mapsettings.php -------------------------------------------------------------------------------- /spatial/includes/maptools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/spatial/includes/maptools.php -------------------------------------------------------------------------------- /spatial/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/spatial/index.php -------------------------------------------------------------------------------- /spatial/rpc/GeoServerConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/spatial/rpc/GeoServerConnector.php -------------------------------------------------------------------------------- /spatial/rpc/SOLRConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/spatial/rpc/SOLRConnector.php -------------------------------------------------------------------------------- /spatial/rpc/datadownloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/spatial/rpc/datadownloader.php -------------------------------------------------------------------------------- /spatial/rpc/getlayersarr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/spatial/rpc/getlayersarr.php -------------------------------------------------------------------------------- /spatial/rpc/gettaxalinks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/spatial/rpc/gettaxalinks.php -------------------------------------------------------------------------------- /spatial/rpc/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/spatial/rpc/index.php -------------------------------------------------------------------------------- /taxa/admin/batchloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/taxa/admin/batchloader.php -------------------------------------------------------------------------------- /taxa/admin/eolmapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/taxa/admin/eolmapper.php -------------------------------------------------------------------------------- /taxa/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/taxa/admin/index.php -------------------------------------------------------------------------------- /taxa/admin/rpc/gettaxasuggest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/taxa/admin/rpc/gettaxasuggest.php -------------------------------------------------------------------------------- /taxa/admin/rpc/gettid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/taxa/admin/rpc/gettid.php -------------------------------------------------------------------------------- /taxa/admin/taxonomycleaner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/taxa/admin/taxonomycleaner.php -------------------------------------------------------------------------------- /taxa/admin/taxonomydelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/taxa/admin/taxonomydelete.php -------------------------------------------------------------------------------- /taxa/admin/taxonomydisplay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/taxa/admin/taxonomydisplay.php -------------------------------------------------------------------------------- /taxa/admin/taxonomyeditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/taxa/admin/taxonomyeditor.php -------------------------------------------------------------------------------- /taxa/admin/taxonomyloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/taxa/admin/taxonomyloader.php -------------------------------------------------------------------------------- /taxa/admin/taxonomymaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/taxa/admin/taxonomymaintenance.php -------------------------------------------------------------------------------- /taxa/admin/tpdesceditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/taxa/admin/tpdesceditor.php -------------------------------------------------------------------------------- /taxa/admin/tpeditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/taxa/admin/tpeditor.php -------------------------------------------------------------------------------- /taxa/admin/tpimageeditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/taxa/admin/tpimageeditor.php -------------------------------------------------------------------------------- /taxa/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/taxa/index.php -------------------------------------------------------------------------------- /temp/data/fieldguide/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/temp/data/fieldguide/.gitignore -------------------------------------------------------------------------------- /temp/data/geolocate/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/temp/data/geolocate/.gitignore -------------------------------------------------------------------------------- /temp/downloads/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/temp/downloads/.gitignore -------------------------------------------------------------------------------- /temp/images/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/temp/images/.gitignore -------------------------------------------------------------------------------- /temp/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/temp/index.php -------------------------------------------------------------------------------- /temp/logs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/temp/logs/.gitignore -------------------------------------------------------------------------------- /temp/ootd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/temp/ootd/.gitignore -------------------------------------------------------------------------------- /temp/report/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/temp/report/.gitignore -------------------------------------------------------------------------------- /temp/slideshow/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/temp/slideshow/.gitignore -------------------------------------------------------------------------------- /temp/symbocr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/temp/symbocr/.gitignore -------------------------------------------------------------------------------- /temp/wordclouds/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/temp/wordclouds/.gitignore -------------------------------------------------------------------------------- /themes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/index.php -------------------------------------------------------------------------------- /themes/liquid/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/liquid/css/jquery-ui.css -------------------------------------------------------------------------------- /themes/liquid/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/liquid/css/main.css -------------------------------------------------------------------------------- /themes/liquid/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/liquid/footer.php -------------------------------------------------------------------------------- /themes/liquid/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/liquid/header.php -------------------------------------------------------------------------------- /themes/liquid/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/liquid/index.php -------------------------------------------------------------------------------- /themes/liquid/leftmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/liquid/leftmenu.php -------------------------------------------------------------------------------- /themes/liquid/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/liquid/readme.txt -------------------------------------------------------------------------------- /themes/liquid/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/liquid/robots.txt -------------------------------------------------------------------------------- /themes/static/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/static/css/jquery-ui.css -------------------------------------------------------------------------------- /themes/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/static/css/main.css -------------------------------------------------------------------------------- /themes/static/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/static/footer.php -------------------------------------------------------------------------------- /themes/static/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/static/header.php -------------------------------------------------------------------------------- /themes/static/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/static/index.php -------------------------------------------------------------------------------- /themes/static/leftmenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/static/leftmenu.php -------------------------------------------------------------------------------- /themes/static/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/static/readme.txt -------------------------------------------------------------------------------- /themes/static/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/themes/static/robots.txt -------------------------------------------------------------------------------- /tools/charencodingclean.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/tools/charencodingclean.php -------------------------------------------------------------------------------- /tools/mappointaid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/tools/mappointaid.php -------------------------------------------------------------------------------- /tools/mappolyaid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/tools/mappolyaid.php -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/pclzip/pclzip/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/pclzip/pclzip/composer.json -------------------------------------------------------------------------------- /vendor/pclzip/pclzip/gnu-lgpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/pclzip/pclzip/gnu-lgpl.txt -------------------------------------------------------------------------------- /vendor/pclzip/pclzip/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/pclzip/pclzip/readme.txt -------------------------------------------------------------------------------- /vendor/phpoffice/common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/phpoffice/common/.gitignore -------------------------------------------------------------------------------- /vendor/phpoffice/common/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/phpoffice/common/COPYING -------------------------------------------------------------------------------- /vendor/phpoffice/common/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/phpoffice/common/LICENSE -------------------------------------------------------------------------------- /vendor/phpoffice/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/phpoffice/common/README.md -------------------------------------------------------------------------------- /vendor/phpoffice/common/VERSION: -------------------------------------------------------------------------------- 1 | 0.2.7 -------------------------------------------------------------------------------- /vendor/phpoffice/phpword/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/phpoffice/phpword/COPYING -------------------------------------------------------------------------------- /vendor/phpoffice/phpword/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/phpoffice/phpword/LICENSE -------------------------------------------------------------------------------- /vendor/phpoffice/phpword/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/phpoffice/phpword/README.md -------------------------------------------------------------------------------- /vendor/phpoffice/phpword/VERSION: -------------------------------------------------------------------------------- 1 | 0.13.0 -------------------------------------------------------------------------------- /vendor/psr/simple-cache/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/psr/simple-cache/LICENSE.md -------------------------------------------------------------------------------- /vendor/psr/simple-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/vendor/psr/simple-cache/README.md -------------------------------------------------------------------------------- /vendor/zendframework/zend-escaper/doc/book/index.md: -------------------------------------------------------------------------------- 1 | ../../README.md -------------------------------------------------------------------------------- /vendor/zendframework/zend-stdlib/doc/book/index.md: -------------------------------------------------------------------------------- 1 | ../../README.md -------------------------------------------------------------------------------- /webservices/autofillsciname.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/webservices/autofillsciname.php -------------------------------------------------------------------------------- /webservices/autofillvernacular.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/webservices/autofillvernacular.php -------------------------------------------------------------------------------- /webservices/dataentryactivity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/webservices/dataentryactivity.php -------------------------------------------------------------------------------- /webservices/dwc/dwcaingesttest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/webservices/dwc/dwcaingesttest.php -------------------------------------------------------------------------------- /webservices/dwc/dwcapubhandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/webservices/dwc/dwcapubhandler.php -------------------------------------------------------------------------------- /webservices/dwc/rss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/webservices/dwc/rss.xml -------------------------------------------------------------------------------- /webservices/fieldguidebatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/webservices/fieldguidebatch.php -------------------------------------------------------------------------------- /webservices/imageuploader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/webservices/imageuploader.php -------------------------------------------------------------------------------- /webservices/occurrencelookup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/webservices/occurrencelookup.php -------------------------------------------------------------------------------- /webservices/occurrencewriter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/webservices/occurrencewriter.php -------------------------------------------------------------------------------- /webservices/plugins/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/webservices/plugins/.gitignore -------------------------------------------------------------------------------- /webservices/rights.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/webservices/rights.php -------------------------------------------------------------------------------- /webservices/salixparser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/webservices/salixparser.php -------------------------------------------------------------------------------- /webservices/token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Symbiota/Symbiota-deprecated/HEAD/webservices/token.php --------------------------------------------------------------------------------