├── .gitattributes ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── admin ├── checkTaskCompletion.py ├── commandRunner.py ├── cost.py ├── cron │ ├── haliteEmailer.py │ ├── install.sh │ ├── linkChecker.py │ └── workerChecker.py ├── md │ ├── DISASTER.md │ ├── INSTALL.md │ ├── SPEC.md │ ├── STARTER_PACKAGE_CHECKLIST.md │ └── components.png ├── rankReset.py └── updateOrgs.py ├── airesources ├── C++ │ ├── MyBot.cpp │ ├── RandomBot.cpp │ ├── hlt.hpp │ ├── networking.hpp │ ├── runGame.bat │ └── runGame.sh ├── C │ ├── MyBot.c │ ├── RandomBot.c │ ├── hlt.h │ ├── runGame.bat │ └── runGame.sh ├── CSharp │ ├── Halite.csproj │ ├── HaliteHelper.cs │ ├── MyBot.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RandomBot.cs │ ├── runGame.bat │ └── runGame.sh ├── Clojure │ ├── .gitignore │ ├── README.md │ ├── project.clj │ ├── runGame.bat │ ├── runGame.sh │ └── src │ │ ├── MyBot.clj │ │ ├── RandomBot.clj │ │ ├── game.clj │ │ └── io.clj ├── Go │ ├── MyBot.go │ ├── RandomBot.go │ ├── runGame.bat │ ├── runGame.sh │ └── src │ │ └── hlt │ │ ├── gamemap.go │ │ └── networking.go ├── Java │ ├── Direction.java │ ├── GameMap.java │ ├── InitPackage.java │ ├── Location.java │ ├── Move.java │ ├── MyBot.java │ ├── Networking.java │ ├── RandomBot.java │ ├── Site.java │ ├── runGame.bat │ └── runGame.sh ├── JavaScript │ ├── MyBot.js │ ├── RandomBot.js │ ├── hlt.js │ ├── networking.js │ ├── runGame.bat │ └── runGame.sh ├── Julia │ ├── MyBot.jl │ ├── RandomBot.jl │ ├── hlt.jl │ ├── networking.jl │ ├── runGame.bat │ └── runGame.sh ├── OCaml │ ├── MyBot.ml │ ├── README.md │ ├── RandomBot.ml │ ├── debug.ml │ ├── halite.ml │ ├── runGame.bat │ ├── runGame.sh │ └── td.ml ├── PHP │ ├── MyBot.php │ ├── RandomBot.php │ ├── hlt.php │ ├── networking.php │ ├── runGame.bat │ └── runGame.sh ├── Python │ ├── MyBot.py │ ├── RandomBot.py │ ├── hlt.py │ ├── runGame.bat │ └── runGame.sh ├── Ruby │ ├── MyBot.rb │ ├── RandomBot.rb │ ├── game_map.rb │ ├── location.rb │ ├── move.rb │ ├── networking.rb │ ├── runGame.bat │ ├── runGame.sh │ └── site.rb ├── Rust │ ├── Cargo.toml │ ├── runGame.bat │ ├── runGame.sh │ └── src │ │ ├── MyBot.rs │ │ ├── RandomBot.rs │ │ └── hlt │ │ ├── mod.rs │ │ ├── networking.rs │ │ └── types.rs ├── Scala │ ├── Bot.scala │ ├── Direction.scala │ ├── Env.scala │ ├── Grid.scala │ ├── Move.scala │ ├── MyBot.scala │ ├── RandomBot.scala │ ├── Runner.scala │ ├── runGame.bat │ └── runGame.sh └── Sockets │ ├── HaliteSocketHelper.cs │ ├── SocketNetworking.java │ ├── pipe_socket_translator.py │ ├── socket_networking.hpp │ └── socket_networking.py ├── appveyor.yml ├── environment ├── Makefile ├── core │ ├── Halite.cpp │ ├── Halite.hpp │ ├── hlt.hpp │ └── json.hpp ├── install.sh ├── main.cpp ├── make.bat ├── networking │ ├── Networking.cpp │ └── Networking.hpp └── tclap │ ├── Arg.h │ ├── ArgException.h │ ├── ArgTraits.h │ ├── CmdLine.h │ ├── CmdLineInterface.h │ ├── CmdLineOutput.h │ ├── Constraint.h │ ├── DocBookOutput.h │ ├── HelpVisitor.h │ ├── IgnoreRestVisitor.h │ ├── Makefile.am │ ├── Makefile.in │ ├── MultiArg.h │ ├── MultiSwitchArg.h │ ├── OptionalUnlabeledTracker.h │ ├── StandardTraits.h │ ├── StdOutput.h │ ├── SwitchArg.h │ ├── UnlabeledMultiArg.h │ ├── UnlabeledValueArg.h │ ├── ValueArg.h │ ├── ValuesConstraint.h │ ├── VersionVisitor.h │ ├── Visitor.h │ ├── XorHandler.h │ └── ZshCompletionOutput.h ├── tests ├── environment │ ├── Fail10Bot.py │ ├── FailInitBot.py │ ├── ModBot.py │ ├── Timeout10Bot.py │ ├── TimeoutInitBot.py │ ├── hlt.py │ ├── networking.py │ └── testenv.py ├── install.sh ├── runTests.sh ├── scalabilityTests │ ├── BasicJavaBot.zip │ └── main.py ├── setupMysql.py ├── travisTests.ini ├── website │ ├── APITest.php │ ├── GameTest.php │ ├── HistoryTest.php │ ├── UserTest.php │ └── testFile.txt └── worker │ ├── languageBot │ ├── LANGUAGE │ ├── MyBot.py │ ├── hlt.py │ ├── networking.py │ └── run.sh │ ├── loseBot │ ├── MyBot.py │ ├── hlt.py │ └── run.sh │ ├── testWorker.py │ └── winBot │ ├── MyBot.py │ ├── hlt.py │ └── run.sh ├── visualizer ├── .editorconfig ├── .gitattributes ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── index.html ├── index.js ├── lib │ ├── bootstrap.min.css │ ├── bootstrap.min.js │ ├── jquery.min.js │ ├── lodash.min.js │ ├── pixi.min.js │ ├── seedrandom.min.js │ └── xss.js ├── main.js ├── package.json ├── script │ ├── parsereplay.js │ └── visualizer.js └── style │ └── general.css ├── website ├── .htaccess ├── 404.php ├── about.php ├── advanced_command_line.php ├── advanced_development.php ├── advanced_game_server.php ├── advanced_libraries.php ├── advanced_replay_file.php ├── advanced_strategy.php ├── advanced_third_party.php ├── advanced_writing_sp.php ├── api │ ├── API.class.php │ ├── manager │ │ ├── .htaccess │ │ ├── ManagerAPI.php │ │ ├── api.php │ │ ├── trueskillMatchQuality.py │ │ └── updateTrueskill.py │ └── web │ │ ├── .htaccess │ │ ├── WebsiteAPI.php │ │ ├── api.php │ │ └── openNewWorker.py ├── archiveEnvironment.sh ├── archiveStarterPackages.sh ├── assets │ ├── amino.png │ ├── combination.png │ ├── cornell_tech.png │ ├── example_vis.png │ ├── favicons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── manifest.json │ │ ├── mstile-144x144.png │ │ ├── mstile-150x150.png │ │ ├── mstile-310x150.png │ │ ├── mstile-310x310.png │ │ └── mstile-70x70.png │ ├── full_logo.png │ ├── full_logo.svg │ ├── hero.png │ ├── overkill-1.png │ ├── overkill-2.png │ ├── two_sigma.png │ ├── vettery.png │ └── vis │ │ ├── dl_arrow.png │ │ ├── dr_arrow.png │ │ ├── l_arrow.png │ │ ├── pause.png │ │ ├── play.png │ │ ├── q_mark.png │ │ └── r_arrow.png ├── associate.php ├── basics_faqs.php ├── basics_improve_random.php ├── basics_intro_halite.php ├── basics_quickstart.php ├── composer.json ├── cron │ ├── backupDatabase │ └── backupWebsite ├── downloads.php ├── email.php ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── game.php ├── includes │ ├── dropdowns.php │ ├── footer.php │ ├── header.php │ ├── leaderTable.php │ ├── learn_sidebar.php │ ├── login_form.php │ ├── navbar.php │ └── register_form.php ├── index.php ├── install.sh ├── leaderboard.php ├── lib │ ├── bootstrap.min.css │ ├── bootstrap.min.js │ ├── bootstrap │ │ ├── bootstrap │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── reset-text.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── bootswatch.less │ │ ├── build.less │ │ ├── build.sh │ │ ├── output.css │ │ └── variables.less │ ├── jquery.min.js │ ├── lodash.min.js │ ├── pixi.min.js │ ├── seedrandom.min.js │ ├── swiftmailer │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── README │ │ ├── VERSION │ │ ├── composer.json │ │ ├── lib │ │ │ ├── classes │ │ │ │ ├── Swift.php │ │ │ │ └── Swift │ │ │ │ │ ├── Attachment.php │ │ │ │ │ ├── ByteStream │ │ │ │ │ ├── AbstractFilterableInputStream.php │ │ │ │ │ ├── ArrayByteStream.php │ │ │ │ │ ├── FileByteStream.php │ │ │ │ │ └── TemporaryFileByteStream.php │ │ │ │ │ ├── CharacterReader.php │ │ │ │ │ ├── CharacterReader │ │ │ │ │ ├── GenericFixedWidthReader.php │ │ │ │ │ ├── UsAsciiReader.php │ │ │ │ │ └── Utf8Reader.php │ │ │ │ │ ├── CharacterReaderFactory.php │ │ │ │ │ ├── CharacterReaderFactory │ │ │ │ │ └── SimpleCharacterReaderFactory.php │ │ │ │ │ ├── CharacterStream.php │ │ │ │ │ ├── CharacterStream │ │ │ │ │ ├── ArrayCharacterStream.php │ │ │ │ │ └── NgCharacterStream.php │ │ │ │ │ ├── ConfigurableSpool.php │ │ │ │ │ ├── DependencyContainer.php │ │ │ │ │ ├── DependencyException.php │ │ │ │ │ ├── EmbeddedFile.php │ │ │ │ │ ├── Encoder.php │ │ │ │ │ ├── Encoder │ │ │ │ │ ├── Base64Encoder.php │ │ │ │ │ ├── QpEncoder.php │ │ │ │ │ └── Rfc2231Encoder.php │ │ │ │ │ ├── Encoding.php │ │ │ │ │ ├── Events │ │ │ │ │ ├── CommandEvent.php │ │ │ │ │ ├── CommandListener.php │ │ │ │ │ ├── Event.php │ │ │ │ │ ├── EventDispatcher.php │ │ │ │ │ ├── EventListener.php │ │ │ │ │ ├── EventObject.php │ │ │ │ │ ├── ResponseEvent.php │ │ │ │ │ ├── ResponseListener.php │ │ │ │ │ ├── SendEvent.php │ │ │ │ │ ├── SendListener.php │ │ │ │ │ ├── SimpleEventDispatcher.php │ │ │ │ │ ├── TransportChangeEvent.php │ │ │ │ │ ├── TransportChangeListener.php │ │ │ │ │ ├── TransportExceptionEvent.php │ │ │ │ │ └── TransportExceptionListener.php │ │ │ │ │ ├── FailoverTransport.php │ │ │ │ │ ├── FileSpool.php │ │ │ │ │ ├── FileStream.php │ │ │ │ │ ├── Filterable.php │ │ │ │ │ ├── Image.php │ │ │ │ │ ├── InputByteStream.php │ │ │ │ │ ├── IoException.php │ │ │ │ │ ├── KeyCache.php │ │ │ │ │ ├── KeyCache │ │ │ │ │ ├── ArrayKeyCache.php │ │ │ │ │ ├── DiskKeyCache.php │ │ │ │ │ ├── KeyCacheInputStream.php │ │ │ │ │ ├── NullKeyCache.php │ │ │ │ │ └── SimpleKeyCacheInputStream.php │ │ │ │ │ ├── LoadBalancedTransport.php │ │ │ │ │ ├── MailTransport.php │ │ │ │ │ ├── Mailer.php │ │ │ │ │ ├── Mailer │ │ │ │ │ ├── ArrayRecipientIterator.php │ │ │ │ │ └── RecipientIterator.php │ │ │ │ │ ├── MemorySpool.php │ │ │ │ │ ├── Message.php │ │ │ │ │ ├── Mime │ │ │ │ │ ├── Attachment.php │ │ │ │ │ ├── CharsetObserver.php │ │ │ │ │ ├── ContentEncoder.php │ │ │ │ │ ├── ContentEncoder │ │ │ │ │ │ ├── Base64ContentEncoder.php │ │ │ │ │ │ ├── NativeQpContentEncoder.php │ │ │ │ │ │ ├── PlainContentEncoder.php │ │ │ │ │ │ ├── QpContentEncoder.php │ │ │ │ │ │ ├── QpContentEncoderProxy.php │ │ │ │ │ │ └── RawContentEncoder.php │ │ │ │ │ ├── EmbeddedFile.php │ │ │ │ │ ├── EncodingObserver.php │ │ │ │ │ ├── Grammar.php │ │ │ │ │ ├── Header.php │ │ │ │ │ ├── HeaderEncoder.php │ │ │ │ │ ├── HeaderEncoder │ │ │ │ │ │ ├── Base64HeaderEncoder.php │ │ │ │ │ │ └── QpHeaderEncoder.php │ │ │ │ │ ├── HeaderFactory.php │ │ │ │ │ ├── HeaderSet.php │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── AbstractHeader.php │ │ │ │ │ │ ├── DateHeader.php │ │ │ │ │ │ ├── IdentificationHeader.php │ │ │ │ │ │ ├── MailboxHeader.php │ │ │ │ │ │ ├── OpenDKIMHeader.php │ │ │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ │ │ ├── PathHeader.php │ │ │ │ │ │ └── UnstructuredHeader.php │ │ │ │ │ ├── Message.php │ │ │ │ │ ├── MimeEntity.php │ │ │ │ │ ├── MimePart.php │ │ │ │ │ ├── ParameterizedHeader.php │ │ │ │ │ ├── SimpleHeaderFactory.php │ │ │ │ │ ├── SimpleHeaderSet.php │ │ │ │ │ ├── SimpleMessage.php │ │ │ │ │ └── SimpleMimeEntity.php │ │ │ │ │ ├── MimePart.php │ │ │ │ │ ├── NullTransport.php │ │ │ │ │ ├── OutputByteStream.php │ │ │ │ │ ├── Plugins │ │ │ │ │ ├── AntiFloodPlugin.php │ │ │ │ │ ├── BandwidthMonitorPlugin.php │ │ │ │ │ ├── Decorator │ │ │ │ │ │ └── Replacements.php │ │ │ │ │ ├── DecoratorPlugin.php │ │ │ │ │ ├── ImpersonatePlugin.php │ │ │ │ │ ├── Logger.php │ │ │ │ │ ├── LoggerPlugin.php │ │ │ │ │ ├── Loggers │ │ │ │ │ │ ├── ArrayLogger.php │ │ │ │ │ │ └── EchoLogger.php │ │ │ │ │ ├── MessageLogger.php │ │ │ │ │ ├── Pop │ │ │ │ │ │ ├── Pop3Connection.php │ │ │ │ │ │ └── Pop3Exception.php │ │ │ │ │ ├── PopBeforeSmtpPlugin.php │ │ │ │ │ ├── RedirectingPlugin.php │ │ │ │ │ ├── Reporter.php │ │ │ │ │ ├── ReporterPlugin.php │ │ │ │ │ ├── Reporters │ │ │ │ │ │ ├── HitReporter.php │ │ │ │ │ │ └── HtmlReporter.php │ │ │ │ │ ├── Sleeper.php │ │ │ │ │ ├── ThrottlerPlugin.php │ │ │ │ │ └── Timer.php │ │ │ │ │ ├── Preferences.php │ │ │ │ │ ├── ReplacementFilterFactory.php │ │ │ │ │ ├── RfcComplianceException.php │ │ │ │ │ ├── SendmailTransport.php │ │ │ │ │ ├── SignedMessage.php │ │ │ │ │ ├── Signer.php │ │ │ │ │ ├── Signers │ │ │ │ │ ├── BodySigner.php │ │ │ │ │ ├── DKIMSigner.php │ │ │ │ │ ├── DomainKeySigner.php │ │ │ │ │ ├── HeaderSigner.php │ │ │ │ │ ├── OpenDKIMSigner.php │ │ │ │ │ └── SMimeSigner.php │ │ │ │ │ ├── SmtpTransport.php │ │ │ │ │ ├── Spool.php │ │ │ │ │ ├── SpoolTransport.php │ │ │ │ │ ├── StreamFilter.php │ │ │ │ │ ├── StreamFilters │ │ │ │ │ ├── ByteArrayReplacementFilter.php │ │ │ │ │ ├── StringReplacementFilter.php │ │ │ │ │ └── StringReplacementFilterFactory.php │ │ │ │ │ ├── SwiftException.php │ │ │ │ │ ├── Transport.php │ │ │ │ │ ├── Transport │ │ │ │ │ ├── AbstractSmtpTransport.php │ │ │ │ │ ├── Esmtp │ │ │ │ │ │ ├── Auth │ │ │ │ │ │ │ ├── CramMd5Authenticator.php │ │ │ │ │ │ │ ├── LoginAuthenticator.php │ │ │ │ │ │ │ ├── NTLMAuthenticator.php │ │ │ │ │ │ │ ├── PlainAuthenticator.php │ │ │ │ │ │ │ └── XOAuth2Authenticator.php │ │ │ │ │ │ ├── AuthHandler.php │ │ │ │ │ │ └── Authenticator.php │ │ │ │ │ ├── EsmtpHandler.php │ │ │ │ │ ├── EsmtpTransport.php │ │ │ │ │ ├── FailoverTransport.php │ │ │ │ │ ├── IoBuffer.php │ │ │ │ │ ├── LoadBalancedTransport.php │ │ │ │ │ ├── MailInvoker.php │ │ │ │ │ ├── MailTransport.php │ │ │ │ │ ├── NullTransport.php │ │ │ │ │ ├── SendmailTransport.php │ │ │ │ │ ├── SimpleMailInvoker.php │ │ │ │ │ ├── SmtpAgent.php │ │ │ │ │ ├── SpoolTransport.php │ │ │ │ │ └── StreamBuffer.php │ │ │ │ │ ├── TransportException.php │ │ │ │ │ └── Validate.php │ │ │ ├── dependency_maps │ │ │ │ ├── cache_deps.php │ │ │ │ ├── message_deps.php │ │ │ │ ├── mime_deps.php │ │ │ │ └── transport_deps.php │ │ │ ├── mime_types.php │ │ │ ├── preferences.php │ │ │ ├── swift_init.php │ │ │ ├── swift_required.php │ │ │ ├── swift_required_pear.php │ │ │ └── swiftmailer_generate_mimes_config.php │ │ ├── phpunit.xml.dist │ │ └── tests │ │ │ ├── IdenticalBinaryConstraint.php │ │ │ ├── StreamCollector.php │ │ │ ├── SwiftMailerSmokeTestCase.php │ │ │ ├── SwiftMailerTestCase.php │ │ │ ├── _samples │ │ │ ├── charsets │ │ │ │ ├── iso-2022-jp │ │ │ │ │ └── one.txt │ │ │ │ ├── iso-8859-1 │ │ │ │ │ └── one.txt │ │ │ │ └── utf-8 │ │ │ │ │ ├── one.txt │ │ │ │ │ ├── three.txt │ │ │ │ │ └── two.txt │ │ │ ├── dkim │ │ │ │ ├── dkim.test.priv │ │ │ │ └── dkim.test.pub │ │ │ ├── files │ │ │ │ ├── data.txt │ │ │ │ └── swiftmailer.png │ │ │ └── smime │ │ │ │ ├── CA.srl │ │ │ │ ├── ca.crt │ │ │ │ ├── ca.key │ │ │ │ ├── create-cert.sh │ │ │ │ ├── encrypt.crt │ │ │ │ ├── encrypt.key │ │ │ │ ├── encrypt2.crt │ │ │ │ ├── encrypt2.key │ │ │ │ ├── intermediate.crt │ │ │ │ ├── intermediate.key │ │ │ │ ├── sign.crt │ │ │ │ ├── sign.key │ │ │ │ ├── sign2.crt │ │ │ │ └── sign2.key │ │ │ ├── acceptance.conf.php.default │ │ │ ├── acceptance │ │ │ └── Swift │ │ │ │ ├── AttachmentAcceptanceTest.php │ │ │ │ ├── ByteStream │ │ │ │ └── FileByteStreamAcceptanceTest.php │ │ │ │ ├── CharacterReaderFactory │ │ │ │ └── SimpleCharacterReaderFactoryAcceptanceTest.php │ │ │ │ ├── DependencyContainerAcceptanceTest.php │ │ │ │ ├── EmbeddedFileAcceptanceTest.php │ │ │ │ ├── Encoder │ │ │ │ ├── Base64EncoderAcceptanceTest.php │ │ │ │ ├── QpEncoderAcceptanceTest.php │ │ │ │ └── Rfc2231EncoderAcceptanceTest.php │ │ │ │ ├── EncodingAcceptanceTest.php │ │ │ │ ├── KeyCache │ │ │ │ ├── ArrayKeyCacheAcceptanceTest.php │ │ │ │ └── DiskKeyCacheAcceptanceTest.php │ │ │ │ ├── MessageAcceptanceTest.php │ │ │ │ ├── Mime │ │ │ │ ├── AttachmentAcceptanceTest.php │ │ │ │ ├── ContentEncoder │ │ │ │ │ ├── Base64ContentEncoderAcceptanceTest.php │ │ │ │ │ ├── NativeQpContentEncoderAcceptanceTest.php │ │ │ │ │ ├── PlainContentEncoderAcceptanceTest.php │ │ │ │ │ └── QpContentEncoderAcceptanceTest.php │ │ │ │ ├── EmbeddedFileAcceptanceTest.php │ │ │ │ ├── HeaderEncoder │ │ │ │ │ └── Base64HeaderEncoderAcceptanceTest.php │ │ │ │ ├── MimePartAcceptanceTest.php │ │ │ │ └── SimpleMessageAcceptanceTest.php │ │ │ │ ├── MimePartAcceptanceTest.php │ │ │ │ └── Transport │ │ │ │ └── StreamBuffer │ │ │ │ ├── AbstractStreamBufferAcceptanceTest.php │ │ │ │ ├── BasicSocketAcceptanceTest.php │ │ │ │ ├── ProcessAcceptanceTest.php │ │ │ │ ├── SocketTimeoutTest.php │ │ │ │ ├── SslSocketAcceptanceTest.php │ │ │ │ └── TlsSocketAcceptanceTest.php │ │ │ ├── bootstrap.php │ │ │ ├── bug │ │ │ └── Swift │ │ │ │ ├── Bug111Test.php │ │ │ │ ├── Bug118Test.php │ │ │ │ ├── Bug206Test.php │ │ │ │ ├── Bug274Test.php │ │ │ │ ├── Bug34Test.php │ │ │ │ ├── Bug35Test.php │ │ │ │ ├── Bug38Test.php │ │ │ │ ├── Bug518Test.php │ │ │ │ ├── Bug51Test.php │ │ │ │ ├── Bug534Test.php │ │ │ │ ├── Bug71Test.php │ │ │ │ ├── Bug76Test.php │ │ │ │ └── BugFileByteStreamConsecutiveReadCallsTest.php │ │ │ ├── fixtures │ │ │ └── MimeEntityFixture.php │ │ │ ├── smoke.conf.php.default │ │ │ ├── smoke │ │ │ └── Swift │ │ │ │ └── Smoke │ │ │ │ ├── AttachmentSmokeTest.php │ │ │ │ ├── BasicSmokeTest.php │ │ │ │ ├── HtmlWithAttachmentSmokeTest.php │ │ │ │ └── InternationalSmokeTest.php │ │ │ └── unit │ │ │ └── Swift │ │ │ ├── ByteStream │ │ │ └── ArrayByteStreamTest.php │ │ │ ├── CharacterReader │ │ │ ├── GenericFixedWidthReaderTest.php │ │ │ ├── UsAsciiReaderTest.php │ │ │ └── Utf8ReaderTest.php │ │ │ ├── CharacterStream │ │ │ └── ArrayCharacterStreamTest.php │ │ │ ├── DependencyContainerTest.php │ │ │ ├── Encoder │ │ │ ├── Base64EncoderTest.php │ │ │ ├── QpEncoderTest.php │ │ │ └── Rfc2231EncoderTest.php │ │ │ ├── Events │ │ │ ├── CommandEventTest.php │ │ │ ├── EventObjectTest.php │ │ │ ├── ResponseEventTest.php │ │ │ ├── SendEventTest.php │ │ │ ├── SimpleEventDispatcherTest.php │ │ │ ├── TransportChangeEventTest.php │ │ │ └── TransportExceptionEventTest.php │ │ │ ├── KeyCache │ │ │ ├── ArrayKeyCacheTest.php │ │ │ └── SimpleKeyCacheInputStreamTest.php │ │ │ ├── Mailer │ │ │ └── ArrayRecipientIteratorTest.php │ │ │ ├── MailerTest.php │ │ │ ├── MessageTest.php │ │ │ ├── Mime │ │ │ ├── AbstractMimeEntityTest.php │ │ │ ├── AttachmentTest.php │ │ │ ├── ContentEncoder │ │ │ │ ├── Base64ContentEncoderTest.php │ │ │ │ ├── PlainContentEncoderTest.php │ │ │ │ └── QpContentEncoderTest.php │ │ │ ├── EmbeddedFileTest.php │ │ │ ├── HeaderEncoder │ │ │ │ ├── Base64HeaderEncoderTest.php │ │ │ │ └── QpHeaderEncoderTest.php │ │ │ ├── Headers │ │ │ │ ├── DateHeaderTest.php │ │ │ │ ├── IdentificationHeaderTest.php │ │ │ │ ├── MailboxHeaderTest.php │ │ │ │ ├── ParameterizedHeaderTest.php │ │ │ │ ├── PathHeaderTest.php │ │ │ │ └── UnstructuredHeaderTest.php │ │ │ ├── MimePartTest.php │ │ │ ├── SimpleHeaderFactoryTest.php │ │ │ ├── SimpleHeaderSetTest.php │ │ │ ├── SimpleMessageTest.php │ │ │ └── SimpleMimeEntityTest.php │ │ │ ├── Plugins │ │ │ ├── AntiFloodPluginTest.php │ │ │ ├── BandwidthMonitorPluginTest.php │ │ │ ├── DecoratorPluginTest.php │ │ │ ├── LoggerPluginTest.php │ │ │ ├── Loggers │ │ │ │ ├── ArrayLoggerTest.php │ │ │ │ └── EchoLoggerTest.php │ │ │ ├── PopBeforeSmtpPluginTest.php │ │ │ ├── RedirectingPluginTest.php │ │ │ ├── ReporterPluginTest.php │ │ │ ├── Reporters │ │ │ │ ├── HitReporterTest.php │ │ │ │ └── HtmlReporterTest.php │ │ │ └── ThrottlerPluginTest.php │ │ │ ├── Signers │ │ │ ├── DKIMSignerTest.php │ │ │ ├── OpenDKIMSignerTest.php │ │ │ └── SMimeSignerTest.php │ │ │ ├── StreamFilters │ │ │ ├── ByteArrayReplacementFilterTest.php │ │ │ ├── StringReplacementFilterFactoryTest.php │ │ │ └── StringReplacementFilterTest.php │ │ │ └── Transport │ │ │ ├── AbstractSmtpEventSupportTest.php │ │ │ ├── AbstractSmtpTest.php │ │ │ ├── Esmtp │ │ │ ├── Auth │ │ │ │ ├── CramMd5AuthenticatorTest.php │ │ │ │ ├── LoginAuthenticatorTest.php │ │ │ │ ├── NTLMAuthenticatorTest.php │ │ │ │ └── PlainAuthenticatorTest.php │ │ │ └── AuthHandlerTest.php │ │ │ ├── EsmtpTransport │ │ │ └── ExtensionSupportTest.php │ │ │ ├── EsmtpTransportTest.php │ │ │ ├── FailoverTransportTest.php │ │ │ ├── LoadBalancedTransportTest.php │ │ │ ├── MailTransportTest.php │ │ │ ├── SendmailTransportTest.php │ │ │ └── StreamBufferTest.php │ └── xss.js ├── local_visualizer.php ├── organizationWhitelist.txt ├── privacy_policy.php ├── recent_games.php ├── robots.txt ├── rules_contest.php ├── rules_game.php ├── script │ ├── associate.js │ ├── backend.js │ ├── basics_intro_halite.js │ ├── email.js │ ├── game.js │ ├── general.js │ ├── index.js │ ├── leaderTable.js │ ├── leaderboard.js │ ├── localVisualizer.js │ ├── parsereplay.js │ ├── recent_games.js │ ├── status.js │ ├── user.js │ └── visualizer.js ├── sql │ ├── dummyData.sql │ ├── importDummyData.sh │ ├── install.sh │ └── schema.sql ├── status.php ├── style │ ├── general.css │ └── learn.css ├── terms_of_service.php ├── tutorials │ ├── basic │ │ ├── BasicBot.cpp │ │ ├── BasicBot.java │ │ ├── BasicBot.py │ │ └── BasicBot.rs │ ├── bfs │ │ └── BfsBot.java │ ├── machinelearning │ │ ├── MattBot.py │ │ ├── TrainMatt.py │ │ ├── hlt.py │ │ ├── my_model_architecture.json │ │ ├── my_model_weights.h5 │ │ └── networking.py │ └── random │ │ ├── ImprovedRandom.cpp │ │ ├── ImprovedRandom.java │ │ └── ImprovedRandom.py └── user.php └── worker ├── Dockerfile ├── archive.py ├── backend.py ├── buildDocker.sh ├── changeAPIKey.py ├── compiler.py ├── install.sh ├── runGame.sh ├── startWorkerScreen.sh ├── stopWorkerScreen.sh └── worker.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/README.md -------------------------------------------------------------------------------- /admin/checkTaskCompletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/admin/checkTaskCompletion.py -------------------------------------------------------------------------------- /admin/commandRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/admin/commandRunner.py -------------------------------------------------------------------------------- /admin/cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/admin/cost.py -------------------------------------------------------------------------------- /admin/cron/haliteEmailer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/admin/cron/haliteEmailer.py -------------------------------------------------------------------------------- /admin/cron/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/admin/cron/install.sh -------------------------------------------------------------------------------- /admin/cron/linkChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/admin/cron/linkChecker.py -------------------------------------------------------------------------------- /admin/cron/workerChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/admin/cron/workerChecker.py -------------------------------------------------------------------------------- /admin/md/DISASTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/admin/md/DISASTER.md -------------------------------------------------------------------------------- /admin/md/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/admin/md/INSTALL.md -------------------------------------------------------------------------------- /admin/md/SPEC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/admin/md/SPEC.md -------------------------------------------------------------------------------- /admin/md/STARTER_PACKAGE_CHECKLIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/admin/md/STARTER_PACKAGE_CHECKLIST.md -------------------------------------------------------------------------------- /admin/md/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/admin/md/components.png -------------------------------------------------------------------------------- /admin/rankReset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/admin/rankReset.py -------------------------------------------------------------------------------- /admin/updateOrgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/admin/updateOrgs.py -------------------------------------------------------------------------------- /airesources/C++/MyBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/C++/MyBot.cpp -------------------------------------------------------------------------------- /airesources/C++/RandomBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/C++/RandomBot.cpp -------------------------------------------------------------------------------- /airesources/C++/hlt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/C++/hlt.hpp -------------------------------------------------------------------------------- /airesources/C++/networking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/C++/networking.hpp -------------------------------------------------------------------------------- /airesources/C++/runGame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/C++/runGame.bat -------------------------------------------------------------------------------- /airesources/C++/runGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/C++/runGame.sh -------------------------------------------------------------------------------- /airesources/C/MyBot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/C/MyBot.c -------------------------------------------------------------------------------- /airesources/C/RandomBot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/C/RandomBot.c -------------------------------------------------------------------------------- /airesources/C/hlt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/C/hlt.h -------------------------------------------------------------------------------- /airesources/C/runGame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/C/runGame.bat -------------------------------------------------------------------------------- /airesources/C/runGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/C/runGame.sh -------------------------------------------------------------------------------- /airesources/CSharp/Halite.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/CSharp/Halite.csproj -------------------------------------------------------------------------------- /airesources/CSharp/HaliteHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/CSharp/HaliteHelper.cs -------------------------------------------------------------------------------- /airesources/CSharp/MyBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/CSharp/MyBot.cs -------------------------------------------------------------------------------- /airesources/CSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/CSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /airesources/CSharp/RandomBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/CSharp/RandomBot.cs -------------------------------------------------------------------------------- /airesources/CSharp/runGame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/CSharp/runGame.bat -------------------------------------------------------------------------------- /airesources/CSharp/runGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/CSharp/runGame.sh -------------------------------------------------------------------------------- /airesources/Clojure/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Clojure/.gitignore -------------------------------------------------------------------------------- /airesources/Clojure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Clojure/README.md -------------------------------------------------------------------------------- /airesources/Clojure/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Clojure/project.clj -------------------------------------------------------------------------------- /airesources/Clojure/runGame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Clojure/runGame.bat -------------------------------------------------------------------------------- /airesources/Clojure/runGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Clojure/runGame.sh -------------------------------------------------------------------------------- /airesources/Clojure/src/MyBot.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Clojure/src/MyBot.clj -------------------------------------------------------------------------------- /airesources/Clojure/src/RandomBot.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Clojure/src/RandomBot.clj -------------------------------------------------------------------------------- /airesources/Clojure/src/game.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Clojure/src/game.clj -------------------------------------------------------------------------------- /airesources/Clojure/src/io.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Clojure/src/io.clj -------------------------------------------------------------------------------- /airesources/Go/MyBot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Go/MyBot.go -------------------------------------------------------------------------------- /airesources/Go/RandomBot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Go/RandomBot.go -------------------------------------------------------------------------------- /airesources/Go/runGame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Go/runGame.bat -------------------------------------------------------------------------------- /airesources/Go/runGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Go/runGame.sh -------------------------------------------------------------------------------- /airesources/Go/src/hlt/gamemap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Go/src/hlt/gamemap.go -------------------------------------------------------------------------------- /airesources/Go/src/hlt/networking.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Go/src/hlt/networking.go -------------------------------------------------------------------------------- /airesources/Java/Direction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Java/Direction.java -------------------------------------------------------------------------------- /airesources/Java/GameMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Java/GameMap.java -------------------------------------------------------------------------------- /airesources/Java/InitPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Java/InitPackage.java -------------------------------------------------------------------------------- /airesources/Java/Location.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Java/Location.java -------------------------------------------------------------------------------- /airesources/Java/Move.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Java/Move.java -------------------------------------------------------------------------------- /airesources/Java/MyBot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Java/MyBot.java -------------------------------------------------------------------------------- /airesources/Java/Networking.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Java/Networking.java -------------------------------------------------------------------------------- /airesources/Java/RandomBot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Java/RandomBot.java -------------------------------------------------------------------------------- /airesources/Java/Site.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Java/Site.java -------------------------------------------------------------------------------- /airesources/Java/runGame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Java/runGame.bat -------------------------------------------------------------------------------- /airesources/Java/runGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Java/runGame.sh -------------------------------------------------------------------------------- /airesources/JavaScript/MyBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/JavaScript/MyBot.js -------------------------------------------------------------------------------- /airesources/JavaScript/RandomBot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/JavaScript/RandomBot.js -------------------------------------------------------------------------------- /airesources/JavaScript/hlt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/JavaScript/hlt.js -------------------------------------------------------------------------------- /airesources/JavaScript/networking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/JavaScript/networking.js -------------------------------------------------------------------------------- /airesources/JavaScript/runGame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/JavaScript/runGame.bat -------------------------------------------------------------------------------- /airesources/JavaScript/runGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/JavaScript/runGame.sh -------------------------------------------------------------------------------- /airesources/Julia/MyBot.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Julia/MyBot.jl -------------------------------------------------------------------------------- /airesources/Julia/RandomBot.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Julia/RandomBot.jl -------------------------------------------------------------------------------- /airesources/Julia/hlt.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Julia/hlt.jl -------------------------------------------------------------------------------- /airesources/Julia/networking.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Julia/networking.jl -------------------------------------------------------------------------------- /airesources/Julia/runGame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Julia/runGame.bat -------------------------------------------------------------------------------- /airesources/Julia/runGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Julia/runGame.sh -------------------------------------------------------------------------------- /airesources/OCaml/MyBot.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/OCaml/MyBot.ml -------------------------------------------------------------------------------- /airesources/OCaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/OCaml/README.md -------------------------------------------------------------------------------- /airesources/OCaml/RandomBot.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/OCaml/RandomBot.ml -------------------------------------------------------------------------------- /airesources/OCaml/debug.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/OCaml/debug.ml -------------------------------------------------------------------------------- /airesources/OCaml/halite.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/OCaml/halite.ml -------------------------------------------------------------------------------- /airesources/OCaml/runGame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/OCaml/runGame.bat -------------------------------------------------------------------------------- /airesources/OCaml/runGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/OCaml/runGame.sh -------------------------------------------------------------------------------- /airesources/OCaml/td.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/OCaml/td.ml -------------------------------------------------------------------------------- /airesources/PHP/MyBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/PHP/MyBot.php -------------------------------------------------------------------------------- /airesources/PHP/RandomBot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/PHP/RandomBot.php -------------------------------------------------------------------------------- /airesources/PHP/hlt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/PHP/hlt.php -------------------------------------------------------------------------------- /airesources/PHP/networking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/PHP/networking.php -------------------------------------------------------------------------------- /airesources/PHP/runGame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/PHP/runGame.bat -------------------------------------------------------------------------------- /airesources/PHP/runGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/PHP/runGame.sh -------------------------------------------------------------------------------- /airesources/Python/MyBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Python/MyBot.py -------------------------------------------------------------------------------- /airesources/Python/RandomBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Python/RandomBot.py -------------------------------------------------------------------------------- /airesources/Python/hlt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Python/hlt.py -------------------------------------------------------------------------------- /airesources/Python/runGame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Python/runGame.bat -------------------------------------------------------------------------------- /airesources/Python/runGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Python/runGame.sh -------------------------------------------------------------------------------- /airesources/Ruby/MyBot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Ruby/MyBot.rb -------------------------------------------------------------------------------- /airesources/Ruby/RandomBot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Ruby/RandomBot.rb -------------------------------------------------------------------------------- /airesources/Ruby/game_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Ruby/game_map.rb -------------------------------------------------------------------------------- /airesources/Ruby/location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Ruby/location.rb -------------------------------------------------------------------------------- /airesources/Ruby/move.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Ruby/move.rb -------------------------------------------------------------------------------- /airesources/Ruby/networking.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Ruby/networking.rb -------------------------------------------------------------------------------- /airesources/Ruby/runGame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Ruby/runGame.bat -------------------------------------------------------------------------------- /airesources/Ruby/runGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Ruby/runGame.sh -------------------------------------------------------------------------------- /airesources/Ruby/site.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Ruby/site.rb -------------------------------------------------------------------------------- /airesources/Rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Rust/Cargo.toml -------------------------------------------------------------------------------- /airesources/Rust/runGame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Rust/runGame.bat -------------------------------------------------------------------------------- /airesources/Rust/runGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Rust/runGame.sh -------------------------------------------------------------------------------- /airesources/Rust/src/MyBot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Rust/src/MyBot.rs -------------------------------------------------------------------------------- /airesources/Rust/src/RandomBot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Rust/src/RandomBot.rs -------------------------------------------------------------------------------- /airesources/Rust/src/hlt/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Rust/src/hlt/mod.rs -------------------------------------------------------------------------------- /airesources/Rust/src/hlt/networking.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Rust/src/hlt/networking.rs -------------------------------------------------------------------------------- /airesources/Rust/src/hlt/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Rust/src/hlt/types.rs -------------------------------------------------------------------------------- /airesources/Scala/Bot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Scala/Bot.scala -------------------------------------------------------------------------------- /airesources/Scala/Direction.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Scala/Direction.scala -------------------------------------------------------------------------------- /airesources/Scala/Env.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Scala/Env.scala -------------------------------------------------------------------------------- /airesources/Scala/Grid.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Scala/Grid.scala -------------------------------------------------------------------------------- /airesources/Scala/Move.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Scala/Move.scala -------------------------------------------------------------------------------- /airesources/Scala/MyBot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Scala/MyBot.scala -------------------------------------------------------------------------------- /airesources/Scala/RandomBot.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Scala/RandomBot.scala -------------------------------------------------------------------------------- /airesources/Scala/Runner.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Scala/Runner.scala -------------------------------------------------------------------------------- /airesources/Scala/runGame.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Scala/runGame.bat -------------------------------------------------------------------------------- /airesources/Scala/runGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Scala/runGame.sh -------------------------------------------------------------------------------- /airesources/Sockets/HaliteSocketHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Sockets/HaliteSocketHelper.cs -------------------------------------------------------------------------------- /airesources/Sockets/SocketNetworking.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Sockets/SocketNetworking.java -------------------------------------------------------------------------------- /airesources/Sockets/pipe_socket_translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Sockets/pipe_socket_translator.py -------------------------------------------------------------------------------- /airesources/Sockets/socket_networking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Sockets/socket_networking.hpp -------------------------------------------------------------------------------- /airesources/Sockets/socket_networking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/airesources/Sockets/socket_networking.py -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/appveyor.yml -------------------------------------------------------------------------------- /environment/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/Makefile -------------------------------------------------------------------------------- /environment/core/Halite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/core/Halite.cpp -------------------------------------------------------------------------------- /environment/core/Halite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/core/Halite.hpp -------------------------------------------------------------------------------- /environment/core/hlt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/core/hlt.hpp -------------------------------------------------------------------------------- /environment/core/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/core/json.hpp -------------------------------------------------------------------------------- /environment/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/install.sh -------------------------------------------------------------------------------- /environment/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/main.cpp -------------------------------------------------------------------------------- /environment/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/make.bat -------------------------------------------------------------------------------- /environment/networking/Networking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/networking/Networking.cpp -------------------------------------------------------------------------------- /environment/networking/Networking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/networking/Networking.hpp -------------------------------------------------------------------------------- /environment/tclap/Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/Arg.h -------------------------------------------------------------------------------- /environment/tclap/ArgException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/ArgException.h -------------------------------------------------------------------------------- /environment/tclap/ArgTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/ArgTraits.h -------------------------------------------------------------------------------- /environment/tclap/CmdLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/CmdLine.h -------------------------------------------------------------------------------- /environment/tclap/CmdLineInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/CmdLineInterface.h -------------------------------------------------------------------------------- /environment/tclap/CmdLineOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/CmdLineOutput.h -------------------------------------------------------------------------------- /environment/tclap/Constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/Constraint.h -------------------------------------------------------------------------------- /environment/tclap/DocBookOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/DocBookOutput.h -------------------------------------------------------------------------------- /environment/tclap/HelpVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/HelpVisitor.h -------------------------------------------------------------------------------- /environment/tclap/IgnoreRestVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/IgnoreRestVisitor.h -------------------------------------------------------------------------------- /environment/tclap/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/Makefile.am -------------------------------------------------------------------------------- /environment/tclap/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/Makefile.in -------------------------------------------------------------------------------- /environment/tclap/MultiArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/MultiArg.h -------------------------------------------------------------------------------- /environment/tclap/MultiSwitchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/MultiSwitchArg.h -------------------------------------------------------------------------------- /environment/tclap/OptionalUnlabeledTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/OptionalUnlabeledTracker.h -------------------------------------------------------------------------------- /environment/tclap/StandardTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/StandardTraits.h -------------------------------------------------------------------------------- /environment/tclap/StdOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/StdOutput.h -------------------------------------------------------------------------------- /environment/tclap/SwitchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/SwitchArg.h -------------------------------------------------------------------------------- /environment/tclap/UnlabeledMultiArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/UnlabeledMultiArg.h -------------------------------------------------------------------------------- /environment/tclap/UnlabeledValueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/UnlabeledValueArg.h -------------------------------------------------------------------------------- /environment/tclap/ValueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/ValueArg.h -------------------------------------------------------------------------------- /environment/tclap/ValuesConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/ValuesConstraint.h -------------------------------------------------------------------------------- /environment/tclap/VersionVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/VersionVisitor.h -------------------------------------------------------------------------------- /environment/tclap/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/Visitor.h -------------------------------------------------------------------------------- /environment/tclap/XorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/XorHandler.h -------------------------------------------------------------------------------- /environment/tclap/ZshCompletionOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/environment/tclap/ZshCompletionOutput.h -------------------------------------------------------------------------------- /tests/environment/Fail10Bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/environment/Fail10Bot.py -------------------------------------------------------------------------------- /tests/environment/FailInitBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/environment/FailInitBot.py -------------------------------------------------------------------------------- /tests/environment/ModBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/environment/ModBot.py -------------------------------------------------------------------------------- /tests/environment/Timeout10Bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/environment/Timeout10Bot.py -------------------------------------------------------------------------------- /tests/environment/TimeoutInitBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/environment/TimeoutInitBot.py -------------------------------------------------------------------------------- /tests/environment/hlt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/environment/hlt.py -------------------------------------------------------------------------------- /tests/environment/networking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/environment/networking.py -------------------------------------------------------------------------------- /tests/environment/testenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/environment/testenv.py -------------------------------------------------------------------------------- /tests/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/install.sh -------------------------------------------------------------------------------- /tests/runTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/runTests.sh -------------------------------------------------------------------------------- /tests/scalabilityTests/BasicJavaBot.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/scalabilityTests/BasicJavaBot.zip -------------------------------------------------------------------------------- /tests/scalabilityTests/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/scalabilityTests/main.py -------------------------------------------------------------------------------- /tests/setupMysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/setupMysql.py -------------------------------------------------------------------------------- /tests/travisTests.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/travisTests.ini -------------------------------------------------------------------------------- /tests/website/APITest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/website/APITest.php -------------------------------------------------------------------------------- /tests/website/GameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/website/GameTest.php -------------------------------------------------------------------------------- /tests/website/HistoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/website/HistoryTest.php -------------------------------------------------------------------------------- /tests/website/UserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/website/UserTest.php -------------------------------------------------------------------------------- /tests/website/testFile.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/worker/languageBot/LANGUAGE: -------------------------------------------------------------------------------- 1 | TestLanguage 2 | -------------------------------------------------------------------------------- /tests/worker/languageBot/MyBot.py: -------------------------------------------------------------------------------- 1 | ../../../airesources/Python/MyBot.py -------------------------------------------------------------------------------- /tests/worker/languageBot/hlt.py: -------------------------------------------------------------------------------- 1 | ../../../airesources/Python/hlt.py -------------------------------------------------------------------------------- /tests/worker/languageBot/networking.py: -------------------------------------------------------------------------------- 1 | ../../../airesources/Python/networking.py -------------------------------------------------------------------------------- /tests/worker/languageBot/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/worker/languageBot/run.sh -------------------------------------------------------------------------------- /tests/worker/loseBot/MyBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/worker/loseBot/MyBot.py -------------------------------------------------------------------------------- /tests/worker/loseBot/hlt.py: -------------------------------------------------------------------------------- 1 | ../../../airesources/Python/hlt.py -------------------------------------------------------------------------------- /tests/worker/loseBot/run.sh: -------------------------------------------------------------------------------- 1 | python3 MyBot.py 2 | -------------------------------------------------------------------------------- /tests/worker/testWorker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/worker/testWorker.py -------------------------------------------------------------------------------- /tests/worker/winBot/MyBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/tests/worker/winBot/MyBot.py -------------------------------------------------------------------------------- /tests/worker/winBot/hlt.py: -------------------------------------------------------------------------------- 1 | ../../../airesources/Python/hlt.py -------------------------------------------------------------------------------- /tests/worker/winBot/run.sh: -------------------------------------------------------------------------------- 1 | python3 MyBot.py 2 | -------------------------------------------------------------------------------- /visualizer/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/visualizer/.editorconfig -------------------------------------------------------------------------------- /visualizer/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /visualizer/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- 1 | ../../website/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /visualizer/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- 1 | ../../website/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /visualizer/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- 1 | ../../website/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /visualizer/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- 1 | ../../website/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /visualizer/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- 1 | ../../website/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /visualizer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/visualizer/index.html -------------------------------------------------------------------------------- /visualizer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/visualizer/index.js -------------------------------------------------------------------------------- /visualizer/lib/bootstrap.min.css: -------------------------------------------------------------------------------- 1 | ../../website/lib/bootstrap.min.css -------------------------------------------------------------------------------- /visualizer/lib/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | ../../website/lib/bootstrap.min.js -------------------------------------------------------------------------------- /visualizer/lib/jquery.min.js: -------------------------------------------------------------------------------- 1 | ../../website/lib/jquery.min.js -------------------------------------------------------------------------------- /visualizer/lib/lodash.min.js: -------------------------------------------------------------------------------- 1 | ../../website/lib/lodash.min.js -------------------------------------------------------------------------------- /visualizer/lib/pixi.min.js: -------------------------------------------------------------------------------- 1 | ../../website/lib/pixi.min.js -------------------------------------------------------------------------------- /visualizer/lib/seedrandom.min.js: -------------------------------------------------------------------------------- 1 | ../../website/lib/seedrandom.min.js -------------------------------------------------------------------------------- /visualizer/lib/xss.js: -------------------------------------------------------------------------------- 1 | ../../website/lib/xss.js -------------------------------------------------------------------------------- /visualizer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/visualizer/main.js -------------------------------------------------------------------------------- /visualizer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/visualizer/package.json -------------------------------------------------------------------------------- /visualizer/script/parsereplay.js: -------------------------------------------------------------------------------- 1 | ../../website/script/parsereplay.js -------------------------------------------------------------------------------- /visualizer/script/visualizer.js: -------------------------------------------------------------------------------- 1 | ../../website/script/visualizer.js -------------------------------------------------------------------------------- /visualizer/style/general.css: -------------------------------------------------------------------------------- 1 | ../../website/style/general.css -------------------------------------------------------------------------------- /website/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/.htaccess -------------------------------------------------------------------------------- /website/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/404.php -------------------------------------------------------------------------------- /website/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/about.php -------------------------------------------------------------------------------- /website/advanced_command_line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/advanced_command_line.php -------------------------------------------------------------------------------- /website/advanced_development.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/advanced_development.php -------------------------------------------------------------------------------- /website/advanced_game_server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/advanced_game_server.php -------------------------------------------------------------------------------- /website/advanced_libraries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/advanced_libraries.php -------------------------------------------------------------------------------- /website/advanced_replay_file.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/advanced_replay_file.php -------------------------------------------------------------------------------- /website/advanced_strategy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/advanced_strategy.php -------------------------------------------------------------------------------- /website/advanced_third_party.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/advanced_third_party.php -------------------------------------------------------------------------------- /website/advanced_writing_sp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/advanced_writing_sp.php -------------------------------------------------------------------------------- /website/api/API.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/api/API.class.php -------------------------------------------------------------------------------- /website/api/manager/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/api/manager/.htaccess -------------------------------------------------------------------------------- /website/api/manager/ManagerAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/api/manager/ManagerAPI.php -------------------------------------------------------------------------------- /website/api/manager/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/api/manager/api.php -------------------------------------------------------------------------------- /website/api/manager/trueskillMatchQuality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/api/manager/trueskillMatchQuality.py -------------------------------------------------------------------------------- /website/api/manager/updateTrueskill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/api/manager/updateTrueskill.py -------------------------------------------------------------------------------- /website/api/web/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/api/web/.htaccess -------------------------------------------------------------------------------- /website/api/web/WebsiteAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/api/web/WebsiteAPI.php -------------------------------------------------------------------------------- /website/api/web/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/api/web/api.php -------------------------------------------------------------------------------- /website/api/web/openNewWorker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/api/web/openNewWorker.py -------------------------------------------------------------------------------- /website/archiveEnvironment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/archiveEnvironment.sh -------------------------------------------------------------------------------- /website/archiveStarterPackages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/archiveStarterPackages.sh -------------------------------------------------------------------------------- /website/assets/amino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/amino.png -------------------------------------------------------------------------------- /website/assets/combination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/combination.png -------------------------------------------------------------------------------- /website/assets/cornell_tech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/cornell_tech.png -------------------------------------------------------------------------------- /website/assets/example_vis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/example_vis.png -------------------------------------------------------------------------------- /website/assets/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /website/assets/favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /website/assets/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /website/assets/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/favicons/browserconfig.xml -------------------------------------------------------------------------------- /website/assets/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /website/assets/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /website/assets/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/favicons/favicon.ico -------------------------------------------------------------------------------- /website/assets/favicons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/favicons/manifest.json -------------------------------------------------------------------------------- /website/assets/favicons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/favicons/mstile-144x144.png -------------------------------------------------------------------------------- /website/assets/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /website/assets/favicons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/favicons/mstile-310x150.png -------------------------------------------------------------------------------- /website/assets/favicons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/favicons/mstile-310x310.png -------------------------------------------------------------------------------- /website/assets/favicons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/favicons/mstile-70x70.png -------------------------------------------------------------------------------- /website/assets/full_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/full_logo.png -------------------------------------------------------------------------------- /website/assets/full_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/full_logo.svg -------------------------------------------------------------------------------- /website/assets/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/hero.png -------------------------------------------------------------------------------- /website/assets/overkill-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/overkill-1.png -------------------------------------------------------------------------------- /website/assets/overkill-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/overkill-2.png -------------------------------------------------------------------------------- /website/assets/two_sigma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/two_sigma.png -------------------------------------------------------------------------------- /website/assets/vettery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/vettery.png -------------------------------------------------------------------------------- /website/assets/vis/dl_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/vis/dl_arrow.png -------------------------------------------------------------------------------- /website/assets/vis/dr_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/vis/dr_arrow.png -------------------------------------------------------------------------------- /website/assets/vis/l_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/vis/l_arrow.png -------------------------------------------------------------------------------- /website/assets/vis/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/vis/pause.png -------------------------------------------------------------------------------- /website/assets/vis/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/vis/play.png -------------------------------------------------------------------------------- /website/assets/vis/q_mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/vis/q_mark.png -------------------------------------------------------------------------------- /website/assets/vis/r_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/assets/vis/r_arrow.png -------------------------------------------------------------------------------- /website/associate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/associate.php -------------------------------------------------------------------------------- /website/basics_faqs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/basics_faqs.php -------------------------------------------------------------------------------- /website/basics_improve_random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/basics_improve_random.php -------------------------------------------------------------------------------- /website/basics_intro_halite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/basics_intro_halite.php -------------------------------------------------------------------------------- /website/basics_quickstart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/basics_quickstart.php -------------------------------------------------------------------------------- /website/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/composer.json -------------------------------------------------------------------------------- /website/cron/backupDatabase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/cron/backupDatabase -------------------------------------------------------------------------------- /website/cron/backupWebsite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/cron/backupWebsite -------------------------------------------------------------------------------- /website/downloads.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/downloads.php -------------------------------------------------------------------------------- /website/email.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/email.php -------------------------------------------------------------------------------- /website/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/favicon.ico -------------------------------------------------------------------------------- /website/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /website/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /website/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /website/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /website/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /website/game.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/game.php -------------------------------------------------------------------------------- /website/includes/dropdowns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/includes/dropdowns.php -------------------------------------------------------------------------------- /website/includes/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/includes/footer.php -------------------------------------------------------------------------------- /website/includes/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/includes/header.php -------------------------------------------------------------------------------- /website/includes/leaderTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/includes/leaderTable.php -------------------------------------------------------------------------------- /website/includes/learn_sidebar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/includes/learn_sidebar.php -------------------------------------------------------------------------------- /website/includes/login_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/includes/login_form.php -------------------------------------------------------------------------------- /website/includes/navbar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/includes/navbar.php -------------------------------------------------------------------------------- /website/includes/register_form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/includes/register_form.php -------------------------------------------------------------------------------- /website/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/index.php -------------------------------------------------------------------------------- /website/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/install.sh -------------------------------------------------------------------------------- /website/leaderboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/leaderboard.php -------------------------------------------------------------------------------- /website/lib/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap.min.css -------------------------------------------------------------------------------- /website/lib/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap.min.js -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/alerts.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/badges.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/bootstrap.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/breadcrumbs.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/button-groups.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/buttons.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/carousel.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/close.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/code.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/component-animations.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/dropdowns.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/forms.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/glyphicons.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/grid.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/input-groups.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/jumbotron.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/labels.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/list-group.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/media.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/alerts.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/background-variant.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/background-variant.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/border-radius.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/border-radius.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/buttons.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/center-block.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/center-block.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/clearfix.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/forms.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/gradients.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/grid-framework.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/grid-framework.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/grid.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/hide-text.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/image.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/labels.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/list-group.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/nav-divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/nav-divider.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/nav-vertical-align.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/opacity.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/pagination.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/panels.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/progress-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/progress-bar.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/reset-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/reset-filter.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/reset-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/reset-text.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/resize.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/responsive-visibility.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/size.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/tab-focus.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/table-row.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/text-emphasis.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/text-emphasis.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/text-overflow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/text-overflow.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/mixins/vendor-prefixes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/mixins/vendor-prefixes.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/modals.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/navbar.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/navs.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/normalize.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/pager.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/pagination.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/panels.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/popovers.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/print.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/progress-bars.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/responsive-embed.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/responsive-utilities.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/scaffolding.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/tables.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/theme.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/thumbnails.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/tooltip.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/type.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/utilities.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/variables.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootstrap/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootstrap/wells.less -------------------------------------------------------------------------------- /website/lib/bootstrap/bootswatch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/bootswatch.less -------------------------------------------------------------------------------- /website/lib/bootstrap/build.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/build.less -------------------------------------------------------------------------------- /website/lib/bootstrap/build.sh: -------------------------------------------------------------------------------- 1 | lessc -clean-css build.less > ../bootstrap.min.css 2 | -------------------------------------------------------------------------------- /website/lib/bootstrap/output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/output.css -------------------------------------------------------------------------------- /website/lib/bootstrap/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/bootstrap/variables.less -------------------------------------------------------------------------------- /website/lib/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/jquery.min.js -------------------------------------------------------------------------------- /website/lib/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/lodash.min.js -------------------------------------------------------------------------------- /website/lib/pixi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/pixi.min.js -------------------------------------------------------------------------------- /website/lib/seedrandom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/seedrandom.min.js -------------------------------------------------------------------------------- /website/lib/swiftmailer/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/.gitattributes -------------------------------------------------------------------------------- /website/lib/swiftmailer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/.gitignore -------------------------------------------------------------------------------- /website/lib/swiftmailer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/.travis.yml -------------------------------------------------------------------------------- /website/lib/swiftmailer/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/CHANGES -------------------------------------------------------------------------------- /website/lib/swiftmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/LICENSE -------------------------------------------------------------------------------- /website/lib/swiftmailer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/README -------------------------------------------------------------------------------- /website/lib/swiftmailer/VERSION: -------------------------------------------------------------------------------- 1 | Swift-5.4.2 2 | -------------------------------------------------------------------------------- /website/lib/swiftmailer/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/composer.json -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Attachment.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/ByteStream/AbstractFilterableInputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/ByteStream/AbstractFilterableInputStream.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/ByteStream/ArrayByteStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/ByteStream/ArrayByteStream.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/ByteStream/FileByteStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/ByteStream/FileByteStream.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/ByteStream/TemporaryFileByteStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/ByteStream/TemporaryFileByteStream.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/CharacterReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/CharacterReader.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/CharacterReader/GenericFixedWidthReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/CharacterReader/GenericFixedWidthReader.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/CharacterReader/UsAsciiReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/CharacterReader/UsAsciiReader.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/CharacterReader/Utf8Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/CharacterReader/Utf8Reader.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/CharacterReaderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/CharacterReaderFactory.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/CharacterReaderFactory/SimpleCharacterReaderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/CharacterReaderFactory/SimpleCharacterReaderFactory.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/CharacterStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/CharacterStream.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/CharacterStream/ArrayCharacterStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/CharacterStream/ArrayCharacterStream.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/CharacterStream/NgCharacterStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/CharacterStream/NgCharacterStream.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/ConfigurableSpool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/ConfigurableSpool.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/DependencyContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/DependencyContainer.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/DependencyException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/DependencyException.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/EmbeddedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/EmbeddedFile.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Encoder.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Encoder/Base64Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Encoder/Base64Encoder.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Encoder/QpEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Encoder/QpEncoder.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Encoder/Rfc2231Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Encoder/Rfc2231Encoder.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Encoding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Encoding.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Events/CommandEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Events/CommandEvent.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Events/CommandListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Events/CommandListener.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Events/Event.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Events/EventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Events/EventDispatcher.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Events/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Events/EventListener.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Events/EventObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Events/EventObject.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Events/ResponseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Events/ResponseEvent.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Events/ResponseListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Events/ResponseListener.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Events/SendEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Events/SendEvent.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Events/SendListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Events/SendListener.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Events/SimpleEventDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Events/SimpleEventDispatcher.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Events/TransportChangeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Events/TransportChangeEvent.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Events/TransportChangeListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Events/TransportChangeListener.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Events/TransportExceptionEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Events/TransportExceptionEvent.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Events/TransportExceptionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Events/TransportExceptionListener.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/FailoverTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/FailoverTransport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/FileSpool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/FileSpool.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/FileStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/FileStream.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Filterable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Filterable.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Image.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/InputByteStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/InputByteStream.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/IoException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/IoException.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/KeyCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/KeyCache.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/KeyCache/ArrayKeyCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/KeyCache/ArrayKeyCache.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/KeyCache/DiskKeyCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/KeyCache/DiskKeyCache.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/KeyCache/KeyCacheInputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/KeyCache/KeyCacheInputStream.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/KeyCache/NullKeyCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/KeyCache/NullKeyCache.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/KeyCache/SimpleKeyCacheInputStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/KeyCache/SimpleKeyCacheInputStream.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/LoadBalancedTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/LoadBalancedTransport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/MailTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/MailTransport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mailer.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mailer/ArrayRecipientIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mailer/ArrayRecipientIterator.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mailer/RecipientIterator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mailer/RecipientIterator.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/MemorySpool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/MemorySpool.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Message.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/Attachment.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/CharsetObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/CharsetObserver.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/ContentEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/ContentEncoder.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/Base64ContentEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/Base64ContentEncoder.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/NativeQpContentEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/NativeQpContentEncoder.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/PlainContentEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/PlainContentEncoder.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoder.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoderProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/QpContentEncoderProxy.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/RawContentEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/ContentEncoder/RawContentEncoder.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/EmbeddedFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/EmbeddedFile.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/EncodingObserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/EncodingObserver.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/Grammar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/Grammar.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/Header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/Header.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder/Base64HeaderEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder/Base64HeaderEncoder.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder/QpHeaderEncoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/HeaderEncoder/QpHeaderEncoder.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/HeaderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/HeaderFactory.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/HeaderSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/HeaderSet.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/AbstractHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/AbstractHeader.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/DateHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/DateHeader.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/IdentificationHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/IdentificationHeader.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/MailboxHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/MailboxHeader.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/OpenDKIMHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/OpenDKIMHeader.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/ParameterizedHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/ParameterizedHeader.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/PathHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/PathHeader.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/UnstructuredHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/Headers/UnstructuredHeader.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/Message.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/MimeEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/MimeEntity.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/MimePart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/MimePart.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/ParameterizedHeader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/ParameterizedHeader.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/SimpleHeaderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/SimpleHeaderFactory.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/SimpleHeaderSet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/SimpleHeaderSet.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/SimpleMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/SimpleMessage.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Mime/SimpleMimeEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Mime/SimpleMimeEntity.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/MimePart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/MimePart.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/NullTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/NullTransport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/OutputByteStream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/OutputByteStream.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/AntiFloodPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/AntiFloodPlugin.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/BandwidthMonitorPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/BandwidthMonitorPlugin.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/Decorator/Replacements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/Decorator/Replacements.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/DecoratorPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/DecoratorPlugin.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/ImpersonatePlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/ImpersonatePlugin.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/Logger.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/LoggerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/LoggerPlugin.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/Loggers/ArrayLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/Loggers/ArrayLogger.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/Loggers/EchoLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/Loggers/EchoLogger.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/MessageLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/MessageLogger.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/Pop/Pop3Connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/Pop/Pop3Connection.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/Pop/Pop3Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/Pop/Pop3Exception.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/PopBeforeSmtpPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/PopBeforeSmtpPlugin.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/RedirectingPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/RedirectingPlugin.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/Reporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/Reporter.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/ReporterPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/ReporterPlugin.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/Reporters/HitReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/Reporters/HitReporter.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/Reporters/HtmlReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/Reporters/HtmlReporter.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/Sleeper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/Sleeper.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/ThrottlerPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/ThrottlerPlugin.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Plugins/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Plugins/Timer.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Preferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Preferences.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/ReplacementFilterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/ReplacementFilterFactory.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/RfcComplianceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/RfcComplianceException.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/SendmailTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/SendmailTransport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/SignedMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/SignedMessage.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Signer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Signer.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Signers/BodySigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Signers/BodySigner.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Signers/DKIMSigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Signers/DKIMSigner.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Signers/DomainKeySigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Signers/DomainKeySigner.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Signers/HeaderSigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Signers/HeaderSigner.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Signers/OpenDKIMSigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Signers/OpenDKIMSigner.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Signers/SMimeSigner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Signers/SMimeSigner.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/SmtpTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/SmtpTransport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Spool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Spool.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/SpoolTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/SpoolTransport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/StreamFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/StreamFilter.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/StreamFilters/ByteArrayReplacementFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/StreamFilters/ByteArrayReplacementFilter.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/StreamFilters/StringReplacementFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/StreamFilters/StringReplacementFilter.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/StreamFilters/StringReplacementFilterFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/StreamFilters/StringReplacementFilterFactory.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/SwiftException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/SwiftException.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/AbstractSmtpTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/AbstractSmtpTransport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/CramMd5Authenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/CramMd5Authenticator.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/LoginAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/LoginAuthenticator.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/NTLMAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/NTLMAuthenticator.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/PlainAuthenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/PlainAuthenticator.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/XOAuth2Authenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/Esmtp/Auth/XOAuth2Authenticator.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/Esmtp/AuthHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/Esmtp/AuthHandler.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/Esmtp/Authenticator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/Esmtp/Authenticator.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/EsmtpHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/EsmtpHandler.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/EsmtpTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/EsmtpTransport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/FailoverTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/FailoverTransport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/IoBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/IoBuffer.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/LoadBalancedTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/LoadBalancedTransport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/MailInvoker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/MailInvoker.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/MailTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/MailTransport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/NullTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/NullTransport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/SendmailTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/SendmailTransport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/SimpleMailInvoker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/SimpleMailInvoker.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/SmtpAgent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/SmtpAgent.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/SpoolTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/SpoolTransport.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Transport/StreamBuffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Transport/StreamBuffer.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/TransportException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/TransportException.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/classes/Swift/Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/classes/Swift/Validate.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/dependency_maps/cache_deps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/dependency_maps/cache_deps.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/dependency_maps/message_deps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/dependency_maps/message_deps.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/dependency_maps/mime_deps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/dependency_maps/mime_deps.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/dependency_maps/transport_deps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/dependency_maps/transport_deps.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/mime_types.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/mime_types.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/preferences.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/preferences.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/swift_init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/swift_init.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/swift_required.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/swift_required.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/swift_required_pear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/swift_required_pear.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/lib/swiftmailer_generate_mimes_config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/lib/swiftmailer_generate_mimes_config.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/phpunit.xml.dist -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/IdenticalBinaryConstraint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/IdenticalBinaryConstraint.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/StreamCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/StreamCollector.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/SwiftMailerSmokeTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/SwiftMailerSmokeTestCase.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/SwiftMailerTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/SwiftMailerTestCase.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/charsets/iso-2022-jp/one.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/charsets/iso-2022-jp/one.txt -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/charsets/iso-8859-1/one.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/charsets/iso-8859-1/one.txt -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/charsets/utf-8/one.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/charsets/utf-8/one.txt -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/charsets/utf-8/three.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/charsets/utf-8/three.txt -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/charsets/utf-8/two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/charsets/utf-8/two.txt -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/dkim/dkim.test.priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/dkim/dkim.test.priv -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/dkim/dkim.test.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/dkim/dkim.test.pub -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/files/data.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/files/swiftmailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/files/swiftmailer.png -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/smime/CA.srl: -------------------------------------------------------------------------------- 1 | D42DA34CF90FA0DE 2 | -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/smime/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/smime/ca.crt -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/smime/ca.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/smime/ca.key -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/smime/create-cert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/smime/create-cert.sh -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/smime/encrypt.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/smime/encrypt.crt -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/smime/encrypt.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/smime/encrypt.key -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/smime/encrypt2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/smime/encrypt2.crt -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/smime/encrypt2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/smime/encrypt2.key -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/smime/intermediate.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/smime/intermediate.crt -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/smime/intermediate.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/smime/intermediate.key -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/smime/sign.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/smime/sign.crt -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/smime/sign.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/smime/sign.key -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/smime/sign2.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/smime/sign2.crt -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/_samples/smime/sign2.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/_samples/smime/sign2.key -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance.conf.php.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance.conf.php.default -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/AttachmentAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/AttachmentAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/ByteStream/FileByteStreamAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/ByteStream/FileByteStreamAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/CharacterReaderFactory/SimpleCharacterReaderFactoryAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/CharacterReaderFactory/SimpleCharacterReaderFactoryAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/DependencyContainerAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/DependencyContainerAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/EmbeddedFileAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/EmbeddedFileAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Encoder/Base64EncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Encoder/Base64EncoderAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Encoder/QpEncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Encoder/QpEncoderAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Encoder/Rfc2231EncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Encoder/Rfc2231EncoderAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/EncodingAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/EncodingAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/KeyCache/ArrayKeyCacheAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/KeyCache/ArrayKeyCacheAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/KeyCache/DiskKeyCacheAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/KeyCache/DiskKeyCacheAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/MessageAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/MessageAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Mime/AttachmentAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Mime/AttachmentAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/Base64ContentEncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/Base64ContentEncoderAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/NativeQpContentEncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/NativeQpContentEncoderAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/PlainContentEncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/PlainContentEncoderAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/QpContentEncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Mime/ContentEncoder/QpContentEncoderAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Mime/EmbeddedFileAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Mime/EmbeddedFileAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Mime/HeaderEncoder/Base64HeaderEncoderAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Mime/HeaderEncoder/Base64HeaderEncoderAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Mime/MimePartAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Mime/MimePartAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Mime/SimpleMessageAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Mime/SimpleMessageAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/MimePartAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/MimePartAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/AbstractStreamBufferAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/AbstractStreamBufferAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/BasicSocketAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/BasicSocketAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/ProcessAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/ProcessAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SocketTimeoutTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SocketTimeoutTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SslSocketAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/SslSocketAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/TlsSocketAcceptanceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/acceptance/Swift/Transport/StreamBuffer/TlsSocketAcceptanceTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/bootstrap.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/bug/Swift/Bug111Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/bug/Swift/Bug111Test.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/bug/Swift/Bug118Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/bug/Swift/Bug118Test.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/bug/Swift/Bug206Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/bug/Swift/Bug206Test.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/bug/Swift/Bug274Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/bug/Swift/Bug274Test.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/bug/Swift/Bug34Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/bug/Swift/Bug34Test.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/bug/Swift/Bug35Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/bug/Swift/Bug35Test.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/bug/Swift/Bug38Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/bug/Swift/Bug38Test.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/bug/Swift/Bug518Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/bug/Swift/Bug518Test.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/bug/Swift/Bug51Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/bug/Swift/Bug51Test.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/bug/Swift/Bug534Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/bug/Swift/Bug534Test.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/bug/Swift/Bug71Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/bug/Swift/Bug71Test.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/bug/Swift/Bug76Test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/bug/Swift/Bug76Test.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/bug/Swift/BugFileByteStreamConsecutiveReadCallsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/bug/Swift/BugFileByteStreamConsecutiveReadCallsTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/fixtures/MimeEntityFixture.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/fixtures/MimeEntityFixture.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/smoke.conf.php.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/smoke.conf.php.default -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/smoke/Swift/Smoke/AttachmentSmokeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/smoke/Swift/Smoke/AttachmentSmokeTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/smoke/Swift/Smoke/BasicSmokeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/smoke/Swift/Smoke/BasicSmokeTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/smoke/Swift/Smoke/HtmlWithAttachmentSmokeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/smoke/Swift/Smoke/HtmlWithAttachmentSmokeTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/smoke/Swift/Smoke/InternationalSmokeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/smoke/Swift/Smoke/InternationalSmokeTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/ByteStream/ArrayByteStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/ByteStream/ArrayByteStreamTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/CharacterReader/GenericFixedWidthReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/CharacterReader/GenericFixedWidthReaderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/CharacterReader/UsAsciiReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/CharacterReader/UsAsciiReaderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/CharacterReader/Utf8ReaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/CharacterReader/Utf8ReaderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/CharacterStream/ArrayCharacterStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/CharacterStream/ArrayCharacterStreamTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/DependencyContainerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/DependencyContainerTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Encoder/Base64EncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Encoder/Base64EncoderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Encoder/QpEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Encoder/QpEncoderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Encoder/Rfc2231EncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Encoder/Rfc2231EncoderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Events/CommandEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Events/CommandEventTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Events/EventObjectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Events/EventObjectTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Events/ResponseEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Events/ResponseEventTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Events/SendEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Events/SendEventTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Events/SimpleEventDispatcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Events/SimpleEventDispatcherTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Events/TransportChangeEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Events/TransportChangeEventTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Events/TransportExceptionEventTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Events/TransportExceptionEventTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/KeyCache/ArrayKeyCacheTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/KeyCache/ArrayKeyCacheTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/KeyCache/SimpleKeyCacheInputStreamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/KeyCache/SimpleKeyCacheInputStreamTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mailer/ArrayRecipientIteratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mailer/ArrayRecipientIteratorTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/MailerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/MailerTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/MessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/MessageTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/AbstractMimeEntityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/AbstractMimeEntityTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/AttachmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/AttachmentTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/Base64ContentEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/Base64ContentEncoderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/PlainContentEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/PlainContentEncoderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/QpContentEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/ContentEncoder/QpContentEncoderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/EmbeddedFileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/EmbeddedFileTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/HeaderEncoder/Base64HeaderEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/HeaderEncoder/Base64HeaderEncoderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/HeaderEncoder/QpHeaderEncoderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/HeaderEncoder/QpHeaderEncoderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/Headers/DateHeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/Headers/DateHeaderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/Headers/IdentificationHeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/Headers/IdentificationHeaderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/Headers/MailboxHeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/Headers/MailboxHeaderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/Headers/ParameterizedHeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/Headers/ParameterizedHeaderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/Headers/PathHeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/Headers/PathHeaderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/Headers/UnstructuredHeaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/Headers/UnstructuredHeaderTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/MimePartTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/MimePartTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/SimpleHeaderFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/SimpleHeaderFactoryTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/SimpleHeaderSetTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/SimpleHeaderSetTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/SimpleMessageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/SimpleMessageTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Mime/SimpleMimeEntityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Mime/SimpleMimeEntityTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Plugins/AntiFloodPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Plugins/AntiFloodPluginTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Plugins/BandwidthMonitorPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Plugins/BandwidthMonitorPluginTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Plugins/DecoratorPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Plugins/DecoratorPluginTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Plugins/LoggerPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Plugins/LoggerPluginTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Plugins/Loggers/ArrayLoggerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Plugins/Loggers/ArrayLoggerTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Plugins/Loggers/EchoLoggerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Plugins/Loggers/EchoLoggerTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Plugins/PopBeforeSmtpPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Plugins/PopBeforeSmtpPluginTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Plugins/RedirectingPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Plugins/RedirectingPluginTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Plugins/ReporterPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Plugins/ReporterPluginTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Plugins/Reporters/HitReporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Plugins/Reporters/HitReporterTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Plugins/Reporters/HtmlReporterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Plugins/Reporters/HtmlReporterTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Plugins/ThrottlerPluginTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Plugins/ThrottlerPluginTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Signers/DKIMSignerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Signers/DKIMSignerTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Signers/OpenDKIMSignerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Signers/OpenDKIMSignerTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Signers/SMimeSignerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Signers/SMimeSignerTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/StreamFilters/ByteArrayReplacementFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/StreamFilters/ByteArrayReplacementFilterTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/StreamFilters/StringReplacementFilterFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/StreamFilters/StringReplacementFilterFactoryTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/StreamFilters/StringReplacementFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/StreamFilters/StringReplacementFilterTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpEventSupportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpEventSupportTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Transport/AbstractSmtpTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/CramMd5AuthenticatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/CramMd5AuthenticatorTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/LoginAuthenticatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/LoginAuthenticatorTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/NTLMAuthenticatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/NTLMAuthenticatorTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/PlainAuthenticatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Transport/Esmtp/Auth/PlainAuthenticatorTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Transport/Esmtp/AuthHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Transport/Esmtp/AuthHandlerTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Transport/EsmtpTransport/ExtensionSupportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Transport/EsmtpTransport/ExtensionSupportTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Transport/EsmtpTransportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Transport/EsmtpTransportTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Transport/FailoverTransportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Transport/FailoverTransportTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Transport/LoadBalancedTransportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Transport/LoadBalancedTransportTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Transport/MailTransportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Transport/MailTransportTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Transport/SendmailTransportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Transport/SendmailTransportTest.php -------------------------------------------------------------------------------- /website/lib/swiftmailer/tests/unit/Swift/Transport/StreamBufferTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/swiftmailer/tests/unit/Swift/Transport/StreamBufferTest.php -------------------------------------------------------------------------------- /website/lib/xss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/lib/xss.js -------------------------------------------------------------------------------- /website/local_visualizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/local_visualizer.php -------------------------------------------------------------------------------- /website/organizationWhitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/organizationWhitelist.txt -------------------------------------------------------------------------------- /website/privacy_policy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/privacy_policy.php -------------------------------------------------------------------------------- /website/recent_games.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/recent_games.php -------------------------------------------------------------------------------- /website/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/robots.txt -------------------------------------------------------------------------------- /website/rules_contest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/rules_contest.php -------------------------------------------------------------------------------- /website/rules_game.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/rules_game.php -------------------------------------------------------------------------------- /website/script/associate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/script/associate.js -------------------------------------------------------------------------------- /website/script/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/script/backend.js -------------------------------------------------------------------------------- /website/script/basics_intro_halite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/script/basics_intro_halite.js -------------------------------------------------------------------------------- /website/script/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/script/email.js -------------------------------------------------------------------------------- /website/script/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/script/game.js -------------------------------------------------------------------------------- /website/script/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/script/general.js -------------------------------------------------------------------------------- /website/script/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/script/index.js -------------------------------------------------------------------------------- /website/script/leaderTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/script/leaderTable.js -------------------------------------------------------------------------------- /website/script/leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/script/leaderboard.js -------------------------------------------------------------------------------- /website/script/localVisualizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/script/localVisualizer.js -------------------------------------------------------------------------------- /website/script/parsereplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/script/parsereplay.js -------------------------------------------------------------------------------- /website/script/recent_games.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/script/recent_games.js -------------------------------------------------------------------------------- /website/script/status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/script/status.js -------------------------------------------------------------------------------- /website/script/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/script/user.js -------------------------------------------------------------------------------- /website/script/visualizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/script/visualizer.js -------------------------------------------------------------------------------- /website/sql/dummyData.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/sql/dummyData.sql -------------------------------------------------------------------------------- /website/sql/importDummyData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/sql/importDummyData.sh -------------------------------------------------------------------------------- /website/sql/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/sql/install.sh -------------------------------------------------------------------------------- /website/sql/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/sql/schema.sql -------------------------------------------------------------------------------- /website/status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/status.php -------------------------------------------------------------------------------- /website/style/general.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/style/general.css -------------------------------------------------------------------------------- /website/style/learn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/style/learn.css -------------------------------------------------------------------------------- /website/terms_of_service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/terms_of_service.php -------------------------------------------------------------------------------- /website/tutorials/basic/BasicBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/tutorials/basic/BasicBot.cpp -------------------------------------------------------------------------------- /website/tutorials/basic/BasicBot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/tutorials/basic/BasicBot.java -------------------------------------------------------------------------------- /website/tutorials/basic/BasicBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/tutorials/basic/BasicBot.py -------------------------------------------------------------------------------- /website/tutorials/basic/BasicBot.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/tutorials/basic/BasicBot.rs -------------------------------------------------------------------------------- /website/tutorials/bfs/BfsBot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/tutorials/bfs/BfsBot.java -------------------------------------------------------------------------------- /website/tutorials/machinelearning/MattBot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/tutorials/machinelearning/MattBot.py -------------------------------------------------------------------------------- /website/tutorials/machinelearning/TrainMatt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/tutorials/machinelearning/TrainMatt.py -------------------------------------------------------------------------------- /website/tutorials/machinelearning/hlt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/tutorials/machinelearning/hlt.py -------------------------------------------------------------------------------- /website/tutorials/machinelearning/my_model_architecture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/tutorials/machinelearning/my_model_architecture.json -------------------------------------------------------------------------------- /website/tutorials/machinelearning/my_model_weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/tutorials/machinelearning/my_model_weights.h5 -------------------------------------------------------------------------------- /website/tutorials/machinelearning/networking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/tutorials/machinelearning/networking.py -------------------------------------------------------------------------------- /website/tutorials/random/ImprovedRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/tutorials/random/ImprovedRandom.cpp -------------------------------------------------------------------------------- /website/tutorials/random/ImprovedRandom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/tutorials/random/ImprovedRandom.java -------------------------------------------------------------------------------- /website/tutorials/random/ImprovedRandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/tutorials/random/ImprovedRandom.py -------------------------------------------------------------------------------- /website/user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/website/user.php -------------------------------------------------------------------------------- /worker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/worker/Dockerfile -------------------------------------------------------------------------------- /worker/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/worker/archive.py -------------------------------------------------------------------------------- /worker/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/worker/backend.py -------------------------------------------------------------------------------- /worker/buildDocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/worker/buildDocker.sh -------------------------------------------------------------------------------- /worker/changeAPIKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/worker/changeAPIKey.py -------------------------------------------------------------------------------- /worker/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/worker/compiler.py -------------------------------------------------------------------------------- /worker/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/worker/install.sh -------------------------------------------------------------------------------- /worker/runGame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/worker/runGame.sh -------------------------------------------------------------------------------- /worker/startWorkerScreen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/worker/startWorkerScreen.sh -------------------------------------------------------------------------------- /worker/stopWorkerScreen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/worker/stopWorkerScreen.sh -------------------------------------------------------------------------------- /worker/worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HaliteChallenge/Halite/HEAD/worker/worker.py --------------------------------------------------------------------------------