├── .dockerignore ├── .eslintrc ├── .gitattributes ├── .github └── ISSUE_TEMPLATE.txt ├── .gitignore ├── .hhconfig ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── Gruntfile.js ├── LICENSE ├── README.md ├── Vagrantfile ├── Vagrantfile-multi ├── Vagrantfile-single ├── composer.json ├── composer.lock ├── database ├── countries.sql ├── logos.sql ├── schema.sql └── test_schema.sql ├── demo_levels ├── babys_first_bof │ ├── Makefile │ ├── README.md │ ├── babys_first_bof │ ├── babys_first_bof.c │ └── flag.txt ├── quiz_examples.md └── too_small │ ├── README.md │ ├── tooSmall.tar.gz │ ├── tooSmallflag.txt │ ├── tooSmallflag2.txt │ ├── tooSmallflag3.txt │ └── weakrsa.sh ├── docker-compose.yml ├── extra ├── cache │ ├── Dockerfile │ └── cache_startup.sh ├── format.sh ├── hash.php ├── hhvm.conf ├── hhvm │ ├── Dockerfile │ └── hhvm_startup.sh ├── lib.sh ├── load-tester.py ├── motd-ctf.sh ├── mysql │ ├── Dockerfile │ └── mysql_startup.sh ├── nginx.conf ├── nginx │ ├── Dockerfile │ ├── nginx.conf │ └── nginx_startup.sh ├── provision.sh ├── run_tests.sh ├── score_base.py ├── service_startup.sh ├── settings.ini.example └── unison.sh ├── package.json ├── screencapture.gif ├── src ├── .flowconfig ├── Db.php ├── RedirectException.php ├── Router.php ├── SessionUtils.php ├── Utils.php ├── controllers │ ├── AdminController.php │ ├── Controller.php │ ├── GameboardController.php │ ├── IndexController.php │ ├── ViewModeController.php │ ├── ajax │ │ ├── AdminAjaxController.php │ │ ├── AjaxController.php │ │ ├── GameAjaxController.php │ │ └── IndexAjaxController.php │ ├── exporters │ │ └── JSONExporterController.php │ ├── importers │ │ ├── BinaryImporterController.php │ │ └── JSONImporterController.php │ └── modals │ │ ├── ActionModalController.php │ │ ├── ChooseLogoModalController.php │ │ ├── CommandLineModalController.php │ │ ├── CountryModalController.php │ │ ├── ModalController.php │ │ ├── ScoreboardModalController.php │ │ ├── TeamModalController.php │ │ └── TutorialModalController.php ├── data │ ├── announcements.php │ ├── attachment.php │ ├── captures.php │ ├── command-line.php │ ├── configuration.php │ ├── controller.php │ ├── country-data.php │ ├── integration_login.php │ ├── integration_oauth.php │ ├── leaderboard.php │ ├── livesync.php │ ├── map-data.php │ ├── scores.php │ ├── session.php │ ├── stats.php │ └── teams.php ├── error.php ├── inc │ └── gameboard │ │ ├── listview.php │ │ ├── loading.php │ │ └── modules │ │ ├── activity-viewmode.php │ │ ├── activity.php │ │ ├── announcements.php │ │ ├── controller.php │ │ ├── filter.php │ │ ├── game-clock.php │ │ ├── leaderboard-viewmode.php │ │ ├── leaderboard.php │ │ └── teams.php ├── index.php ├── language │ ├── lang_basque.php │ ├── lang_cat.php │ ├── lang_de.php │ ├── lang_en.php │ ├── lang_es.php │ ├── lang_fa.php │ ├── lang_fr.php │ ├── lang_hi.php │ ├── lang_hu.php │ ├── lang_id.php │ ├── lang_it.php │ ├── lang_ms.php │ ├── lang_pt-br.php │ ├── lang_ru.php │ ├── lang_sv.php │ ├── lang_sw.php │ ├── lang_tr.php │ ├── lang_zh-tw.php │ └── language.php ├── models │ ├── ActivityLog.php │ ├── Announcement.php │ ├── Attachment.php │ ├── Cache.php │ ├── Category.php │ ├── Configuration.php │ ├── Control.php │ ├── Country.php │ ├── Exportable.php │ ├── FailureLog.php │ ├── GameLog.php │ ├── HintLog.php │ ├── Importable.php │ ├── Integration.php │ ├── Level.php │ ├── Link.php │ ├── Logo.php │ ├── Model.php │ ├── MultiTeam.php │ ├── Progressive.php │ ├── ScoreLog.php │ ├── Session.php │ ├── Team.php │ └── Token.php ├── scripts │ ├── .hhconfig │ ├── autorun.php │ ├── bases.php │ ├── liveimport.php │ └── progressive.php ├── static │ ├── .gitignore │ ├── css │ │ ├── fonts │ │ │ ├── carbonplus_bold.woff │ │ │ ├── carbonplus_bold.woff2 │ │ │ ├── carbonplus_regular.woff │ │ │ ├── carbonplus_regular.woff2 │ │ │ ├── purista_bold.woff │ │ │ ├── purista_bold.woff2 │ │ │ ├── purista_light.woff │ │ │ ├── purista_light.woff2 │ │ │ ├── purista_medium.woff │ │ │ ├── purista_medium.woff2 │ │ │ ├── purista_semibold.woff │ │ │ └── purista_semibold.woff2 │ │ ├── locals │ │ │ └── fa │ │ │ │ ├── fonts │ │ │ │ ├── IRANSansWeb_Bold.eot │ │ │ │ ├── IRANSansWeb_Bold.ttf │ │ │ │ ├── IRANSansWeb_Bold.woff │ │ │ │ ├── IRANSansWeb_Bold.woff2 │ │ │ │ ├── IRANSansWeb_Light.eot │ │ │ │ ├── IRANSansWeb_Light.ttf │ │ │ │ ├── IRANSansWeb_Light.woff │ │ │ │ └── IRANSansWeb_Light.woff2 │ │ │ │ └── style.css │ │ └── scss │ │ │ ├── _admin.scss │ │ │ ├── _components.scss │ │ │ ├── _gameboard.scss │ │ │ ├── _global.scss │ │ │ ├── _icons.scss │ │ │ ├── _layout.scss │ │ │ ├── _modals.scss │ │ │ ├── _navigation-branding.scss │ │ │ ├── _pages.scss │ │ │ ├── _reset.scss │ │ │ ├── _typography.scss │ │ │ ├── _variables.scss │ │ │ └── fb-ctf.scss │ ├── img │ │ ├── bg--world-2.png │ │ ├── bg--world.png │ │ ├── bg--world.svg │ │ ├── favicon.png │ │ ├── globe.png │ │ └── job-detail.jpg │ ├── js │ │ ├── admin.js │ │ ├── app.js │ │ ├── clock.js │ │ ├── fb-ctf.js │ │ ├── filter.js │ │ ├── graphics.js │ │ ├── index.js │ │ ├── modal.js │ │ ├── plugins.js │ │ ├── slider.js │ │ ├── utils.js │ │ └── widget.js │ └── svg │ │ ├── icons │ │ ├── arrow-down.svg │ │ ├── arrow-up.svg │ │ ├── badges │ │ │ ├── badge-4chan-2.svg │ │ │ ├── badge-4chan.svg │ │ │ ├── badge-8ball.svg │ │ │ ├── badge-admin.svg │ │ │ ├── badge-alien-2.svg │ │ │ ├── badge-alien-3.svg │ │ │ ├── badge-alien.svg │ │ │ ├── badge-anchor.svg │ │ │ ├── badge-apple.svg │ │ │ ├── badge-atom.svg │ │ │ ├── badge-ax.svg │ │ │ ├── badge-b.svg │ │ │ ├── badge-bar-graph.svg │ │ │ ├── badge-barking.svg │ │ │ ├── badge-baseball.svg │ │ │ ├── badge-basketball-hoop.svg │ │ │ ├── badge-basketball.svg │ │ │ ├── badge-bat.svg │ │ │ ├── badge-batman.svg │ │ │ ├── badge-battery.svg │ │ │ ├── badge-beaker.svg │ │ │ ├── badge-bike.svg │ │ │ ├── badge-bluetooth.svg │ │ │ ├── badge-boba-fett.svg │ │ │ ├── badge-bomb.svg │ │ │ ├── badge-bone.svg │ │ │ ├── badge-boomerang.svg │ │ │ ├── badge-bow-arrow.svg │ │ │ ├── badge-bowling-ball.svg │ │ │ ├── badge-bowling-pin.svg │ │ │ ├── badge-bowtie.svg │ │ │ ├── badge-box.svg │ │ │ ├── badge-boxing-glove.svg │ │ │ ├── badge-broomstick.svg │ │ │ ├── badge-burger.svg │ │ │ ├── badge-c3po.svg │ │ │ ├── badge-cactus.svg │ │ │ ├── badge-california.svg │ │ │ ├── badge-camera.svg │ │ │ ├── badge-captain-america.svg │ │ │ ├── badge-car.svg │ │ │ ├── badge-cat.svg │ │ │ ├── badge-centaur.svg │ │ │ ├── badge-checkmark.svg │ │ │ ├── badge-cherry.svg │ │ │ ├── badge-chess-knight.svg │ │ │ ├── badge-chess-rook.svg │ │ │ ├── badge-chevron-corporal.svg │ │ │ ├── badge-chevron-flag.svg │ │ │ ├── badge-cloud.svg │ │ │ ├── badge-coffee.svg │ │ │ ├── badge-command.svg │ │ │ ├── badge-compass.svg │ │ │ ├── badge-computer-mouse.svg │ │ │ ├── badge-cone.svg │ │ │ ├── badge-corndog.svg │ │ │ ├── badge-crown.svg │ │ │ ├── badge-cupcake.svg │ │ │ ├── badge-cursor.svg │ │ │ ├── badge-darth-vader.svg │ │ │ ├── badge-deadpool.svg │ │ │ ├── badge-deal-with-it.svg │ │ │ ├── badge-deathly-hollows.svg │ │ │ ├── badge-diamond.svg │ │ │ ├── badge-dirtbike.svg │ │ │ ├── badge-dog.svg │ │ │ ├── badge-double-ax.svg │ │ │ ├── badge-drop.svg │ │ │ ├── badge-dumbell.svg │ │ │ ├── badge-egg.svg │ │ │ ├── badge-elephant.svg │ │ │ ├── badge-eye.svg │ │ │ ├── badge-face-cloud.svg │ │ │ ├── badge-face-helmeted.svg │ │ │ ├── badge-face-sad.svg │ │ │ ├── badge-face-star.svg │ │ │ ├── badge-face-toast.svg │ │ │ ├── badge-face-tongue.svg │ │ │ ├── badge-feather.svg │ │ │ ├── badge-flag.svg │ │ │ ├── badge-flower-2.svg │ │ │ ├── badge-flower.svg │ │ │ ├── badge-football.svg │ │ │ ├── badge-fork.svg │ │ │ ├── badge-fries.svg │ │ │ ├── badge-game-controller.svg │ │ │ ├── badge-glasses.svg │ │ │ ├── badge-green-lantern.svg │ │ │ ├── badge-guy-fawkes.svg │ │ │ ├── badge-hat-viking.svg │ │ │ ├── badge-hat-witch.svg │ │ │ ├── badge-head-lego.svg │ │ │ ├── badge-headphones.svg │ │ │ ├── badge-heart.svg │ │ │ ├── badge-high-heel.svg │ │ │ ├── badge-home.svg │ │ │ ├── badge-hook.svg │ │ │ ├── badge-hotdog.svg │ │ │ ├── badge-html-file-2.svg │ │ │ ├── badge-html-file.svg │ │ │ ├── badge-html.svg │ │ │ ├── badge-ice-cream.svg │ │ │ ├── badge-infinity.svg │ │ │ ├── badge-invader-2.svg │ │ │ ├── badge-invader.svg │ │ │ ├── badge-iron-man.svg │ │ │ ├── badge-jack-o-lantern.svg │ │ │ ├── badge-jeep.svg │ │ │ ├── badge-kangaroo.svg │ │ │ ├── badge-kanye-glasses.svg │ │ │ ├── badge-key.svg │ │ │ ├── badge-kite.svg │ │ │ ├── badge-knife.svg │ │ │ ├── badge-lightbulb.svg │ │ │ ├── badge-lightning.svg │ │ │ ├── badge-location.svg │ │ │ ├── badge-man-newspaper.svg │ │ │ ├── badge-marker.svg │ │ │ ├── badge-monkey.svg │ │ │ ├── badge-monopoly-man.svg │ │ │ ├── badge-moon.svg │ │ │ ├── badge-moustache.svg │ │ │ ├── badge-music.svg │ │ │ ├── badge-mystery-man.svg │ │ │ ├── badge-nascar.svg │ │ │ ├── badge-pacman-ghost.svg │ │ │ ├── badge-pacman.svg │ │ │ ├── badge-paperclip.svg │ │ │ ├── badge-peace-sign.svg │ │ │ ├── badge-peace.svg │ │ │ ├── badge-pencil-sharpener.svg │ │ │ ├── badge-penguin.svg │ │ │ ├── badge-penrose-triangle.svg │ │ │ ├── badge-pi.svg │ │ │ ├── badge-picasa.svg │ │ │ ├── badge-plane.svg │ │ │ ├── badge-plasma-gun.svg │ │ │ ├── badge-plug.svg │ │ │ ├── badge-pokemon.svg │ │ │ ├── badge-puma.svg │ │ │ ├── badge-pyramid.svg │ │ │ ├── badge-r2d2.svg │ │ │ ├── badge-radiation.svg │ │ │ ├── badge-rainbow.svg │ │ │ ├── badge-reset.svg │ │ │ ├── badge-revolver.svg │ │ │ ├── badge-robber.svg │ │ │ ├── badge-robot.svg │ │ │ ├── badge-rocker.svg │ │ │ ├── badge-rocket.svg │ │ │ ├── badge-rollerblade.svg │ │ │ ├── badge-sailboat.svg │ │ │ ├── badge-saturn.svg │ │ │ ├── badge-sauron.svg │ │ │ ├── badge-sharethis.svg │ │ │ ├── badge-shark.svg │ │ │ ├── badge-shirt.svg │ │ │ ├── badge-shoe.svg │ │ │ ├── badge-skateboard.svg │ │ │ ├── badge-skateboarder.svg │ │ │ ├── badge-skiier.svg │ │ │ ├── badge-skull-crossbones.svg │ │ │ ├── badge-snowboarder.svg │ │ │ ├── badge-soccerball.svg │ │ │ ├── badge-sock.svg │ │ │ ├── badge-spaceship-2.svg │ │ │ ├── badge-spaceship.svg │ │ │ ├── badge-speech-bubble.svg │ │ │ ├── badge-speeding-ball.svg │ │ │ ├── badge-spiderweb.svg │ │ │ ├── badge-stars.svg │ │ │ ├── badge-stereo.svg │ │ │ ├── badge-stormtrooper.svg │ │ │ ├── badge-swimmer.svg │ │ │ ├── badge-swords.svg │ │ │ ├── badge-tank.svg │ │ │ ├── badge-tennis.svg │ │ │ ├── badge-tetris-j.svg │ │ │ ├── badge-tetris-t.svg │ │ │ ├── badge-tetris-z.svg │ │ │ ├── badge-thors-hammer.svg │ │ │ ├── badge-throwing-star.svg │ │ │ ├── badge-thumbsup.svg │ │ │ ├── badge-tooth.svg │ │ │ ├── badge-tophat.svg │ │ │ ├── badge-traffic-cone.svg │ │ │ ├── badge-trophy.svg │ │ │ ├── badge-turkey-leg.svg │ │ │ ├── badge-umbrella.svg │ │ │ ├── badge-unicorn.svg │ │ │ ├── badge-unicycle.svg │ │ │ ├── badge-vampire.svg │ │ │ ├── badge-venn-diagram.svg │ │ │ ├── badge-volleyball.svg │ │ │ ├── badge-vulcan-salute.svg │ │ │ ├── badge-watch.svg │ │ │ ├── badge-watergun.svg │ │ │ ├── badge-whale.svg │ │ │ ├── badge-whistle.svg │ │ │ ├── badge-wifi.svg │ │ │ ├── badge-x-and-o.svg │ │ │ └── badge-x-men.svg │ │ ├── build │ │ │ └── icons.svg │ │ ├── chevron-down.svg │ │ ├── close.svg │ │ ├── country-australia--captured.svg │ │ ├── country-group--europe.svg │ │ ├── country-mexico--captured.svg │ │ ├── globe.svg │ │ ├── pinned-post.svg │ │ ├── play.svg │ │ ├── slider-next.svg │ │ ├── slider-prev.svg │ │ ├── social-email.svg │ │ ├── social-facebook.svg │ │ ├── social-linkedin.svg │ │ ├── team-indicator.svg │ │ └── tutorial--zoom.svg │ │ └── map │ │ ├── world-view.php │ │ └── world.php └── xhp │ ├── Custombranding.php │ ├── EmblemCarousel.php │ ├── Fbbranding.php │ └── Svg.php ├── test.sh └── tests ├── FBCTFTest.php ├── _files └── seed.xml ├── models ├── AnnouncementTest.php ├── AttachmentTest.php ├── CategoryTest.php ├── ConfigurationTest.php ├── ControlTest.php ├── CountryTest.php ├── FailureLogTest.php ├── LevelTest.php ├── LinkTest.php ├── LogoTest.php ├── MultiTeamTest.php ├── PasswordTypesTest.php ├── ProgressiveTest.php ├── ScoreLogTest.php ├── SessionTest.php ├── TeamTest.php └── TokenTest.php ├── phpunit.xml └── server.ini /.dockerignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | LICENSE 3 | screencapture.gif 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | #Normalize line endings for Windows 2 | *.sh text eol=lf 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/.github/ISSUE_TEMPLATE.txt -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/.gitignore -------------------------------------------------------------------------------- /.hhconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/Vagrantfile -------------------------------------------------------------------------------- /Vagrantfile-multi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/Vagrantfile-multi -------------------------------------------------------------------------------- /Vagrantfile-single: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/Vagrantfile-single -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/composer.lock -------------------------------------------------------------------------------- /database/countries.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/database/countries.sql -------------------------------------------------------------------------------- /database/logos.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/database/logos.sql -------------------------------------------------------------------------------- /database/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/database/schema.sql -------------------------------------------------------------------------------- /database/test_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/database/test_schema.sql -------------------------------------------------------------------------------- /demo_levels/babys_first_bof/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/demo_levels/babys_first_bof/Makefile -------------------------------------------------------------------------------- /demo_levels/babys_first_bof/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/demo_levels/babys_first_bof/README.md -------------------------------------------------------------------------------- /demo_levels/babys_first_bof/babys_first_bof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/demo_levels/babys_first_bof/babys_first_bof -------------------------------------------------------------------------------- /demo_levels/babys_first_bof/babys_first_bof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/demo_levels/babys_first_bof/babys_first_bof.c -------------------------------------------------------------------------------- /demo_levels/babys_first_bof/flag.txt: -------------------------------------------------------------------------------- 1 | flag{yay!_your_first_bof} 2 | -------------------------------------------------------------------------------- /demo_levels/quiz_examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/demo_levels/quiz_examples.md -------------------------------------------------------------------------------- /demo_levels/too_small/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/demo_levels/too_small/README.md -------------------------------------------------------------------------------- /demo_levels/too_small/tooSmall.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/demo_levels/too_small/tooSmall.tar.gz -------------------------------------------------------------------------------- /demo_levels/too_small/tooSmallflag.txt: -------------------------------------------------------------------------------- 1 | flag{RS 2 | -------------------------------------------------------------------------------- /demo_levels/too_small/tooSmallflag2.txt: -------------------------------------------------------------------------------- 1 | A_i5 -------------------------------------------------------------------------------- /demo_levels/too_small/tooSmallflag3.txt: -------------------------------------------------------------------------------- 1 | _n00b} -------------------------------------------------------------------------------- /demo_levels/too_small/weakrsa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/demo_levels/too_small/weakrsa.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /extra/cache/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/cache/Dockerfile -------------------------------------------------------------------------------- /extra/cache/cache_startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/cache/cache_startup.sh -------------------------------------------------------------------------------- /extra/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/format.sh -------------------------------------------------------------------------------- /extra/hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/hash.php -------------------------------------------------------------------------------- /extra/hhvm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/hhvm.conf -------------------------------------------------------------------------------- /extra/hhvm/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/hhvm/Dockerfile -------------------------------------------------------------------------------- /extra/hhvm/hhvm_startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/hhvm/hhvm_startup.sh -------------------------------------------------------------------------------- /extra/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/lib.sh -------------------------------------------------------------------------------- /extra/load-tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/load-tester.py -------------------------------------------------------------------------------- /extra/motd-ctf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/motd-ctf.sh -------------------------------------------------------------------------------- /extra/mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/mysql/Dockerfile -------------------------------------------------------------------------------- /extra/mysql/mysql_startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/mysql/mysql_startup.sh -------------------------------------------------------------------------------- /extra/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/nginx.conf -------------------------------------------------------------------------------- /extra/nginx/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/nginx/Dockerfile -------------------------------------------------------------------------------- /extra/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/nginx/nginx.conf -------------------------------------------------------------------------------- /extra/nginx/nginx_startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/nginx/nginx_startup.sh -------------------------------------------------------------------------------- /extra/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/provision.sh -------------------------------------------------------------------------------- /extra/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/run_tests.sh -------------------------------------------------------------------------------- /extra/score_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/score_base.py -------------------------------------------------------------------------------- /extra/service_startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/service_startup.sh -------------------------------------------------------------------------------- /extra/settings.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/settings.ini.example -------------------------------------------------------------------------------- /extra/unison.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/extra/unison.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/package.json -------------------------------------------------------------------------------- /screencapture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/screencapture.gif -------------------------------------------------------------------------------- /src/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/.flowconfig -------------------------------------------------------------------------------- /src/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/Db.php -------------------------------------------------------------------------------- /src/RedirectException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/RedirectException.php -------------------------------------------------------------------------------- /src/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/Router.php -------------------------------------------------------------------------------- /src/SessionUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/SessionUtils.php -------------------------------------------------------------------------------- /src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/Utils.php -------------------------------------------------------------------------------- /src/controllers/AdminController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/AdminController.php -------------------------------------------------------------------------------- /src/controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/Controller.php -------------------------------------------------------------------------------- /src/controllers/GameboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/GameboardController.php -------------------------------------------------------------------------------- /src/controllers/IndexController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/IndexController.php -------------------------------------------------------------------------------- /src/controllers/ViewModeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/ViewModeController.php -------------------------------------------------------------------------------- /src/controllers/ajax/AdminAjaxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/ajax/AdminAjaxController.php -------------------------------------------------------------------------------- /src/controllers/ajax/AjaxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/ajax/AjaxController.php -------------------------------------------------------------------------------- /src/controllers/ajax/GameAjaxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/ajax/GameAjaxController.php -------------------------------------------------------------------------------- /src/controllers/ajax/IndexAjaxController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/ajax/IndexAjaxController.php -------------------------------------------------------------------------------- /src/controllers/exporters/JSONExporterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/exporters/JSONExporterController.php -------------------------------------------------------------------------------- /src/controllers/importers/BinaryImporterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/importers/BinaryImporterController.php -------------------------------------------------------------------------------- /src/controllers/importers/JSONImporterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/importers/JSONImporterController.php -------------------------------------------------------------------------------- /src/controllers/modals/ActionModalController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/modals/ActionModalController.php -------------------------------------------------------------------------------- /src/controllers/modals/ChooseLogoModalController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/modals/ChooseLogoModalController.php -------------------------------------------------------------------------------- /src/controllers/modals/CommandLineModalController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/modals/CommandLineModalController.php -------------------------------------------------------------------------------- /src/controllers/modals/CountryModalController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/modals/CountryModalController.php -------------------------------------------------------------------------------- /src/controllers/modals/ModalController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/modals/ModalController.php -------------------------------------------------------------------------------- /src/controllers/modals/ScoreboardModalController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/modals/ScoreboardModalController.php -------------------------------------------------------------------------------- /src/controllers/modals/TeamModalController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/modals/TeamModalController.php -------------------------------------------------------------------------------- /src/controllers/modals/TutorialModalController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/controllers/modals/TutorialModalController.php -------------------------------------------------------------------------------- /src/data/announcements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/announcements.php -------------------------------------------------------------------------------- /src/data/attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/attachment.php -------------------------------------------------------------------------------- /src/data/captures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/captures.php -------------------------------------------------------------------------------- /src/data/command-line.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/command-line.php -------------------------------------------------------------------------------- /src/data/configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/configuration.php -------------------------------------------------------------------------------- /src/data/controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/controller.php -------------------------------------------------------------------------------- /src/data/country-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/country-data.php -------------------------------------------------------------------------------- /src/data/integration_login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/integration_login.php -------------------------------------------------------------------------------- /src/data/integration_oauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/integration_oauth.php -------------------------------------------------------------------------------- /src/data/leaderboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/leaderboard.php -------------------------------------------------------------------------------- /src/data/livesync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/livesync.php -------------------------------------------------------------------------------- /src/data/map-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/map-data.php -------------------------------------------------------------------------------- /src/data/scores.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/scores.php -------------------------------------------------------------------------------- /src/data/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/session.php -------------------------------------------------------------------------------- /src/data/stats.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/stats.php -------------------------------------------------------------------------------- /src/data/teams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/data/teams.php -------------------------------------------------------------------------------- /src/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/error.php -------------------------------------------------------------------------------- /src/inc/gameboard/listview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/inc/gameboard/listview.php -------------------------------------------------------------------------------- /src/inc/gameboard/loading.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/inc/gameboard/loading.php -------------------------------------------------------------------------------- /src/inc/gameboard/modules/activity-viewmode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/inc/gameboard/modules/activity-viewmode.php -------------------------------------------------------------------------------- /src/inc/gameboard/modules/activity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/inc/gameboard/modules/activity.php -------------------------------------------------------------------------------- /src/inc/gameboard/modules/announcements.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/inc/gameboard/modules/announcements.php -------------------------------------------------------------------------------- /src/inc/gameboard/modules/controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/inc/gameboard/modules/controller.php -------------------------------------------------------------------------------- /src/inc/gameboard/modules/filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/inc/gameboard/modules/filter.php -------------------------------------------------------------------------------- /src/inc/gameboard/modules/game-clock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/inc/gameboard/modules/game-clock.php -------------------------------------------------------------------------------- /src/inc/gameboard/modules/leaderboard-viewmode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/inc/gameboard/modules/leaderboard-viewmode.php -------------------------------------------------------------------------------- /src/inc/gameboard/modules/leaderboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/inc/gameboard/modules/leaderboard.php -------------------------------------------------------------------------------- /src/inc/gameboard/modules/teams.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/inc/gameboard/modules/teams.php -------------------------------------------------------------------------------- /src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/index.php -------------------------------------------------------------------------------- /src/language/lang_basque.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_basque.php -------------------------------------------------------------------------------- /src/language/lang_cat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_cat.php -------------------------------------------------------------------------------- /src/language/lang_de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_de.php -------------------------------------------------------------------------------- /src/language/lang_en.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_en.php -------------------------------------------------------------------------------- /src/language/lang_es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_es.php -------------------------------------------------------------------------------- /src/language/lang_fa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_fa.php -------------------------------------------------------------------------------- /src/language/lang_fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_fr.php -------------------------------------------------------------------------------- /src/language/lang_hi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_hi.php -------------------------------------------------------------------------------- /src/language/lang_hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_hu.php -------------------------------------------------------------------------------- /src/language/lang_id.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_id.php -------------------------------------------------------------------------------- /src/language/lang_it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_it.php -------------------------------------------------------------------------------- /src/language/lang_ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_ms.php -------------------------------------------------------------------------------- /src/language/lang_pt-br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_pt-br.php -------------------------------------------------------------------------------- /src/language/lang_ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_ru.php -------------------------------------------------------------------------------- /src/language/lang_sv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_sv.php -------------------------------------------------------------------------------- /src/language/lang_sw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_sw.php -------------------------------------------------------------------------------- /src/language/lang_tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_tr.php -------------------------------------------------------------------------------- /src/language/lang_zh-tw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/lang_zh-tw.php -------------------------------------------------------------------------------- /src/language/language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/language/language.php -------------------------------------------------------------------------------- /src/models/ActivityLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/ActivityLog.php -------------------------------------------------------------------------------- /src/models/Announcement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Announcement.php -------------------------------------------------------------------------------- /src/models/Attachment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Attachment.php -------------------------------------------------------------------------------- /src/models/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Cache.php -------------------------------------------------------------------------------- /src/models/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Category.php -------------------------------------------------------------------------------- /src/models/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Configuration.php -------------------------------------------------------------------------------- /src/models/Control.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Control.php -------------------------------------------------------------------------------- /src/models/Country.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Country.php -------------------------------------------------------------------------------- /src/models/Exportable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Exportable.php -------------------------------------------------------------------------------- /src/models/FailureLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/FailureLog.php -------------------------------------------------------------------------------- /src/models/GameLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/GameLog.php -------------------------------------------------------------------------------- /src/models/HintLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/HintLog.php -------------------------------------------------------------------------------- /src/models/Importable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Importable.php -------------------------------------------------------------------------------- /src/models/Integration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Integration.php -------------------------------------------------------------------------------- /src/models/Level.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Level.php -------------------------------------------------------------------------------- /src/models/Link.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Link.php -------------------------------------------------------------------------------- /src/models/Logo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Logo.php -------------------------------------------------------------------------------- /src/models/Model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Model.php -------------------------------------------------------------------------------- /src/models/MultiTeam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/MultiTeam.php -------------------------------------------------------------------------------- /src/models/Progressive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Progressive.php -------------------------------------------------------------------------------- /src/models/ScoreLog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/ScoreLog.php -------------------------------------------------------------------------------- /src/models/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Session.php -------------------------------------------------------------------------------- /src/models/Team.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Team.php -------------------------------------------------------------------------------- /src/models/Token.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/models/Token.php -------------------------------------------------------------------------------- /src/scripts/.hhconfig: -------------------------------------------------------------------------------- 1 | Hack.Lang.LookForTypechecker = 0 2 | -------------------------------------------------------------------------------- /src/scripts/autorun.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/scripts/autorun.php -------------------------------------------------------------------------------- /src/scripts/bases.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/scripts/bases.php -------------------------------------------------------------------------------- /src/scripts/liveimport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/scripts/liveimport.php -------------------------------------------------------------------------------- /src/scripts/progressive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/scripts/progressive.php -------------------------------------------------------------------------------- /src/static/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /dist 3 | /css/fb-ctf.css 4 | -------------------------------------------------------------------------------- /src/static/css/fonts/carbonplus_bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/fonts/carbonplus_bold.woff -------------------------------------------------------------------------------- /src/static/css/fonts/carbonplus_bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/fonts/carbonplus_bold.woff2 -------------------------------------------------------------------------------- /src/static/css/fonts/carbonplus_regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/fonts/carbonplus_regular.woff -------------------------------------------------------------------------------- /src/static/css/fonts/carbonplus_regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/fonts/carbonplus_regular.woff2 -------------------------------------------------------------------------------- /src/static/css/fonts/purista_bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/fonts/purista_bold.woff -------------------------------------------------------------------------------- /src/static/css/fonts/purista_bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/fonts/purista_bold.woff2 -------------------------------------------------------------------------------- /src/static/css/fonts/purista_light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/fonts/purista_light.woff -------------------------------------------------------------------------------- /src/static/css/fonts/purista_light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/fonts/purista_light.woff2 -------------------------------------------------------------------------------- /src/static/css/fonts/purista_medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/fonts/purista_medium.woff -------------------------------------------------------------------------------- /src/static/css/fonts/purista_medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/fonts/purista_medium.woff2 -------------------------------------------------------------------------------- /src/static/css/fonts/purista_semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/fonts/purista_semibold.woff -------------------------------------------------------------------------------- /src/static/css/fonts/purista_semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/fonts/purista_semibold.woff2 -------------------------------------------------------------------------------- /src/static/css/locals/fa/fonts/IRANSansWeb_Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/locals/fa/fonts/IRANSansWeb_Bold.eot -------------------------------------------------------------------------------- /src/static/css/locals/fa/fonts/IRANSansWeb_Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/locals/fa/fonts/IRANSansWeb_Bold.ttf -------------------------------------------------------------------------------- /src/static/css/locals/fa/fonts/IRANSansWeb_Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/locals/fa/fonts/IRANSansWeb_Bold.woff -------------------------------------------------------------------------------- /src/static/css/locals/fa/fonts/IRANSansWeb_Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/locals/fa/fonts/IRANSansWeb_Bold.woff2 -------------------------------------------------------------------------------- /src/static/css/locals/fa/fonts/IRANSansWeb_Light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/locals/fa/fonts/IRANSansWeb_Light.eot -------------------------------------------------------------------------------- /src/static/css/locals/fa/fonts/IRANSansWeb_Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/locals/fa/fonts/IRANSansWeb_Light.ttf -------------------------------------------------------------------------------- /src/static/css/locals/fa/fonts/IRANSansWeb_Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/locals/fa/fonts/IRANSansWeb_Light.woff -------------------------------------------------------------------------------- /src/static/css/locals/fa/fonts/IRANSansWeb_Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/locals/fa/fonts/IRANSansWeb_Light.woff2 -------------------------------------------------------------------------------- /src/static/css/locals/fa/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/locals/fa/style.css -------------------------------------------------------------------------------- /src/static/css/scss/_admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/scss/_admin.scss -------------------------------------------------------------------------------- /src/static/css/scss/_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/scss/_components.scss -------------------------------------------------------------------------------- /src/static/css/scss/_gameboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/scss/_gameboard.scss -------------------------------------------------------------------------------- /src/static/css/scss/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/scss/_global.scss -------------------------------------------------------------------------------- /src/static/css/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/scss/_icons.scss -------------------------------------------------------------------------------- /src/static/css/scss/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/scss/_layout.scss -------------------------------------------------------------------------------- /src/static/css/scss/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/scss/_modals.scss -------------------------------------------------------------------------------- /src/static/css/scss/_navigation-branding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/scss/_navigation-branding.scss -------------------------------------------------------------------------------- /src/static/css/scss/_pages.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/scss/_pages.scss -------------------------------------------------------------------------------- /src/static/css/scss/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/scss/_reset.scss -------------------------------------------------------------------------------- /src/static/css/scss/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/scss/_typography.scss -------------------------------------------------------------------------------- /src/static/css/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/scss/_variables.scss -------------------------------------------------------------------------------- /src/static/css/scss/fb-ctf.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/css/scss/fb-ctf.scss -------------------------------------------------------------------------------- /src/static/img/bg--world-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/img/bg--world-2.png -------------------------------------------------------------------------------- /src/static/img/bg--world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/img/bg--world.png -------------------------------------------------------------------------------- /src/static/img/bg--world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/img/bg--world.svg -------------------------------------------------------------------------------- /src/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/img/favicon.png -------------------------------------------------------------------------------- /src/static/img/globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/img/globe.png -------------------------------------------------------------------------------- /src/static/img/job-detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/img/job-detail.jpg -------------------------------------------------------------------------------- /src/static/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/js/admin.js -------------------------------------------------------------------------------- /src/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/js/app.js -------------------------------------------------------------------------------- /src/static/js/clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/js/clock.js -------------------------------------------------------------------------------- /src/static/js/fb-ctf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/js/fb-ctf.js -------------------------------------------------------------------------------- /src/static/js/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/js/filter.js -------------------------------------------------------------------------------- /src/static/js/graphics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/js/graphics.js -------------------------------------------------------------------------------- /src/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/js/index.js -------------------------------------------------------------------------------- /src/static/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/js/modal.js -------------------------------------------------------------------------------- /src/static/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/js/plugins.js -------------------------------------------------------------------------------- /src/static/js/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/js/slider.js -------------------------------------------------------------------------------- /src/static/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/js/utils.js -------------------------------------------------------------------------------- /src/static/js/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/js/widget.js -------------------------------------------------------------------------------- /src/static/svg/icons/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/arrow-down.svg -------------------------------------------------------------------------------- /src/static/svg/icons/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/arrow-up.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-4chan-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-4chan-2.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-4chan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-4chan.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-8ball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-8ball.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-admin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-admin.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-alien-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-alien-2.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-alien-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-alien-3.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-alien.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-alien.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-anchor.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-apple.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-atom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-atom.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-ax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-ax.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-b.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-b.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-bar-graph.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-bar-graph.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-barking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-barking.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-baseball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-baseball.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-basketball-hoop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-basketball-hoop.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-basketball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-basketball.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-bat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-bat.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-batman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-batman.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-battery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-battery.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-beaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-beaker.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-bike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-bike.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-bluetooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-bluetooth.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-boba-fett.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-boba-fett.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-bomb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-bomb.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-bone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-bone.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-boomerang.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-boomerang.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-bow-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-bow-arrow.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-bowling-ball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-bowling-ball.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-bowling-pin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-bowling-pin.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-bowtie.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-bowtie.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-box.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-boxing-glove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-boxing-glove.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-broomstick.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-broomstick.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-burger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-burger.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-c3po.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-c3po.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-cactus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-cactus.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-california.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-california.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-camera.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-camera.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-captain-america.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-captain-america.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-car.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-car.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-cat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-cat.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-centaur.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-centaur.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-checkmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-checkmark.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-cherry.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-cherry.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-chess-knight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-chess-knight.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-chess-rook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-chess-rook.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-chevron-corporal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-chevron-corporal.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-chevron-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-chevron-flag.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-cloud.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-coffee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-coffee.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-command.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-command.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-compass.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-computer-mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-computer-mouse.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-cone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-cone.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-corndog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-corndog.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-crown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-crown.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-cupcake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-cupcake.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-cursor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-cursor.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-darth-vader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-darth-vader.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-deadpool.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-deadpool.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-deal-with-it.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-deal-with-it.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-deathly-hollows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-deathly-hollows.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-diamond.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-diamond.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-dirtbike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-dirtbike.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-dog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-dog.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-double-ax.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-double-ax.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-drop.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-dumbell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-dumbell.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-egg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-egg.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-elephant.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-elephant.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-eye.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-face-cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-face-cloud.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-face-helmeted.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-face-helmeted.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-face-sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-face-sad.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-face-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-face-star.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-face-toast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-face-toast.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-face-tongue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-face-tongue.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-feather.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-feather.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-flag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-flag.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-flower-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-flower-2.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-flower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-flower.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-football.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-football.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-fork.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-fork.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-fries.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-fries.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-game-controller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-game-controller.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-glasses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-glasses.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-green-lantern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-green-lantern.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-guy-fawkes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-guy-fawkes.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-hat-viking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-hat-viking.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-hat-witch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-hat-witch.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-head-lego.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-head-lego.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-headphones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-headphones.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-heart.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-high-heel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-high-heel.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-home.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-hook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-hook.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-hotdog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-hotdog.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-html-file-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-html-file-2.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-html-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-html-file.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-html.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-ice-cream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-ice-cream.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-infinity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-infinity.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-invader-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-invader-2.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-invader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-invader.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-iron-man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-iron-man.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-jack-o-lantern.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-jack-o-lantern.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-jeep.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-jeep.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-kangaroo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-kangaroo.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-kanye-glasses.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-kanye-glasses.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-key.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-kite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-kite.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-knife.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-knife.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-lightbulb.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-lightning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-lightning.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-location.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-man-newspaper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-man-newspaper.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-marker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-marker.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-monkey.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-monkey.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-monopoly-man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-monopoly-man.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-moon.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-moustache.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-moustache.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-music.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-music.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-mystery-man.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-mystery-man.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-nascar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-nascar.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-pacman-ghost.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-pacman-ghost.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-pacman.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-pacman.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-paperclip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-paperclip.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-peace-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-peace-sign.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-peace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-peace.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-pencil-sharpener.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-pencil-sharpener.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-penguin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-penguin.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-penrose-triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-penrose-triangle.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-pi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-pi.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-picasa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-picasa.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-plane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-plane.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-plasma-gun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-plasma-gun.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-plug.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-plug.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-pokemon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-pokemon.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-puma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-puma.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-pyramid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-pyramid.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-r2d2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-r2d2.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-radiation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-radiation.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-rainbow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-rainbow.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-reset.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-revolver.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-revolver.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-robber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-robber.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-robot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-robot.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-rocker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-rocker.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-rocket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-rocket.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-rollerblade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-rollerblade.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-sailboat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-sailboat.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-saturn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-saturn.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-sauron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-sauron.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-sharethis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-sharethis.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-shark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-shark.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-shirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-shirt.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-shoe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-shoe.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-skateboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-skateboard.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-skateboarder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-skateboarder.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-skiier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-skiier.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-skull-crossbones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-skull-crossbones.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-snowboarder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-snowboarder.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-soccerball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-soccerball.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-sock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-sock.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-spaceship-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-spaceship-2.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-spaceship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-spaceship.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-speech-bubble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-speech-bubble.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-speeding-ball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-speeding-ball.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-spiderweb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-spiderweb.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-stars.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-stereo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-stereo.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-stormtrooper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-stormtrooper.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-swimmer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-swimmer.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-swords.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-swords.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-tank.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-tank.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-tennis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-tennis.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-tetris-j.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-tetris-j.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-tetris-t.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-tetris-t.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-tetris-z.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-tetris-z.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-thors-hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-thors-hammer.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-throwing-star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-throwing-star.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-thumbsup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-thumbsup.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-tooth.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-tooth.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-tophat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-tophat.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-traffic-cone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-traffic-cone.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-trophy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-trophy.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-turkey-leg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-turkey-leg.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-umbrella.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-umbrella.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-unicorn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-unicorn.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-unicycle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-unicycle.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-vampire.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-vampire.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-venn-diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-venn-diagram.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-volleyball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-volleyball.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-vulcan-salute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-vulcan-salute.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-watch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-watch.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-watergun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-watergun.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-whale.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-whale.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-whistle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-whistle.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-wifi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-wifi.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-x-and-o.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-x-and-o.svg -------------------------------------------------------------------------------- /src/static/svg/icons/badges/badge-x-men.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/badges/badge-x-men.svg -------------------------------------------------------------------------------- /src/static/svg/icons/build/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/build/icons.svg -------------------------------------------------------------------------------- /src/static/svg/icons/chevron-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/chevron-down.svg -------------------------------------------------------------------------------- /src/static/svg/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/close.svg -------------------------------------------------------------------------------- /src/static/svg/icons/country-australia--captured.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/country-australia--captured.svg -------------------------------------------------------------------------------- /src/static/svg/icons/country-group--europe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/country-group--europe.svg -------------------------------------------------------------------------------- /src/static/svg/icons/country-mexico--captured.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/country-mexico--captured.svg -------------------------------------------------------------------------------- /src/static/svg/icons/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/globe.svg -------------------------------------------------------------------------------- /src/static/svg/icons/pinned-post.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/pinned-post.svg -------------------------------------------------------------------------------- /src/static/svg/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/play.svg -------------------------------------------------------------------------------- /src/static/svg/icons/slider-next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/slider-next.svg -------------------------------------------------------------------------------- /src/static/svg/icons/slider-prev.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/slider-prev.svg -------------------------------------------------------------------------------- /src/static/svg/icons/social-email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/social-email.svg -------------------------------------------------------------------------------- /src/static/svg/icons/social-facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/social-facebook.svg -------------------------------------------------------------------------------- /src/static/svg/icons/social-linkedin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/social-linkedin.svg -------------------------------------------------------------------------------- /src/static/svg/icons/team-indicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/team-indicator.svg -------------------------------------------------------------------------------- /src/static/svg/icons/tutorial--zoom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/icons/tutorial--zoom.svg -------------------------------------------------------------------------------- /src/static/svg/map/world-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/map/world-view.php -------------------------------------------------------------------------------- /src/static/svg/map/world.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/static/svg/map/world.php -------------------------------------------------------------------------------- /src/xhp/Custombranding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/xhp/Custombranding.php -------------------------------------------------------------------------------- /src/xhp/EmblemCarousel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/xhp/EmblemCarousel.php -------------------------------------------------------------------------------- /src/xhp/Fbbranding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/xhp/Fbbranding.php -------------------------------------------------------------------------------- /src/xhp/Svg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/src/xhp/Svg.php -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/test.sh -------------------------------------------------------------------------------- /tests/FBCTFTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/FBCTFTest.php -------------------------------------------------------------------------------- /tests/_files/seed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/_files/seed.xml -------------------------------------------------------------------------------- /tests/models/AnnouncementTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/AnnouncementTest.php -------------------------------------------------------------------------------- /tests/models/AttachmentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/AttachmentTest.php -------------------------------------------------------------------------------- /tests/models/CategoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/CategoryTest.php -------------------------------------------------------------------------------- /tests/models/ConfigurationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/ConfigurationTest.php -------------------------------------------------------------------------------- /tests/models/ControlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/ControlTest.php -------------------------------------------------------------------------------- /tests/models/CountryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/CountryTest.php -------------------------------------------------------------------------------- /tests/models/FailureLogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/FailureLogTest.php -------------------------------------------------------------------------------- /tests/models/LevelTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/LevelTest.php -------------------------------------------------------------------------------- /tests/models/LinkTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/LinkTest.php -------------------------------------------------------------------------------- /tests/models/LogoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/LogoTest.php -------------------------------------------------------------------------------- /tests/models/MultiTeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/MultiTeamTest.php -------------------------------------------------------------------------------- /tests/models/PasswordTypesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/PasswordTypesTest.php -------------------------------------------------------------------------------- /tests/models/ProgressiveTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/ProgressiveTest.php -------------------------------------------------------------------------------- /tests/models/ScoreLogTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/ScoreLogTest.php -------------------------------------------------------------------------------- /tests/models/SessionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/SessionTest.php -------------------------------------------------------------------------------- /tests/models/TeamTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/TeamTest.php -------------------------------------------------------------------------------- /tests/models/TokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/models/TokenTest.php -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/fbctf/HEAD/tests/phpunit.xml -------------------------------------------------------------------------------- /tests/server.ini: -------------------------------------------------------------------------------- 1 | xdebug.enable=1 2 | --------------------------------------------------------------------------------